This Unity editor extension provides T4 text templates processor. T4 template is a mixture of text blocks and control logic that can generate a text file. The control logic is written as fragments of program code in C#. The generated file can be text of any kind, such as resource file, source code or web page.
T4 template example:
<html><body>
The date and time now is: <#= DateTime.Now #>
</body></html>
- Source code generation
- Project resources catalogization
- Resource loading/reading code generation
- Code generation by DSL
- Code generation for ORM (BLToolkit for example)
- Embedding environment information into project's build
Create or copy file with .tt extension. Select this file in Project window (Window -> Project), then in Inspector window (Window -> Inspector) setup T4 template's parameters. Click "Generate" button. Inspector window for T4 template contains following parameters:
- Output Type - type of generated file
- Text - normal template's output. It corresponds to "Design-time T4 text templates" in Microsoft's terminology.
- Text Generator - generator-class which can generate content when TransformText() is called. It corresponds to "Run time T4 text templates" in Microsoft's terminology.
- Output Path - path to generated file. If not specified, generated file will have file name of template and file extension from output directive.
- Auto-Gen Triggers - list of events which trigger auto-generation.
- Code Compilation - after each code compilation
- Asset Changes - after watched assets are changed, look for Assets to Watch
- Auto-Gen Delay (Ms) - delay before triggered auto-generation starts
- Assets to Watch - list of assets and folders which trigger auto-generation
T4 template can use hostspecific=true property to access Host.ResolvePath method, which maps path relatively to template's location.
By default UnityEngine.dll and UnityEditor.dll assemblies are referenced in all templates. You can reference project's assemblies Assembly-CSharp and Assembly-CSharp-firstpass by adding assembly directive:
<#@ assembly name="Assembly-CSharp" #>
<#@ assembly name="Assembly-CSharp-firstpass" #>
The template always uses the current runtime and core libraries of Unity Editor.
You could specify C# language version with language=
directive.
List of available language versions:
- language="C#v3.5" - C# version 3.5.
- language="C#" - C# up to version 6, depending on Unity Editor's version.
- language="C#/Unity" - C# version based on Roslyn shipped with Unity Editor.
- unspecified - It is currently the equivalent of "C#/Unity".
MSBuild Macros are not available.
You can run template generation from your code with UnityTemplateGenerator.RunForTemplate(templatePath) call.
there is some breaking changes due renaming in this version
fixed missing 's' in project name 'TextTran_S_form', files, namespaces, folders has been renamed. executable name of tools has been changed to 'GameDevWare.TextTransform.exe' new NuGet package will be published
Please send any questions at [email protected]