| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using SharpGLTF.SchemaReflection;
- namespace SharpGLTF
- {
- class UnlitExtension : SchemaProcessor
- {
- private static string SchemaUri => Constants.KhronosExtensionPath("KHR_materials_unlit", "material.KHR_materials_unlit.schema.json");
- private const string ExtensionRootClassName = "KHR_materials_unlit glTF Material Extension";
- public override IEnumerable<(string, SchemaType.Context)> Process()
- {
- var ctx = SchemaProcessing.LoadSchemaContext(SchemaUri);
- ctx.IgnoredByCodeEmitter("glTF Property");
- ctx.IgnoredByCodeEmitter("glTF Child of Root Property");
- yield return("ext.Unlit.g", ctx);
- }
- public override void PrepareTypes(CodeGen.CSharpEmitter newEmitter, SchemaType.Context ctx)
- {
- newEmitter.SetRuntimeName(ExtensionRootClassName, "MaterialUnlit");
- }
- }
- }
|