├── .docs ├── .gitignore ├── api │ ├── .gitignore │ └── index.md ├── docfx.json ├── guides │ ├── AdvancedTopics │ │ ├── EmbeddingLibrary.md │ │ ├── MigratingAssets.md │ │ └── ModularShaderDive.md │ ├── Code │ │ ├── BaseTemplate.txt │ │ ├── FragmentFunction.txt │ │ ├── ShaderCode.txt │ │ ├── TextureFunction.txt │ │ └── VertexTemplate.txt │ ├── GettingStarted.md │ ├── ModularShaderComponents │ │ ├── Keywords.md │ │ ├── ModularShader.md │ │ ├── ShaderModule.md │ │ ├── TemplateAssets.md │ │ └── TemplateCollectionAssets.md │ ├── ModularShaderDebugger │ │ ├── FunctionTimeline.md │ │ ├── ModularShaderDebugger.md │ │ └── TemplateGraph.md │ ├── ThirdPartyModule.md │ ├── index.md │ └── toc.yml ├── images │ └── docs │ │ ├── AdvancedTopics │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ │ ├── GettingStarted │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── ModularShaderDebugger │ │ ├── 1.png │ │ ├── 10-2.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ └── ThirdpartyModule │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png ├── index.md ├── logo-full.png ├── logo.png ├── templates │ ├── darkfx │ │ ├── index.html.tmpl │ │ ├── partials │ │ │ ├── class.header.tmpl.partial │ │ │ ├── head.tmpl.partial │ │ │ └── navbar.tmpl.partial │ │ └── styles │ │ │ ├── docfx.js │ │ │ └── main.css │ └── memberpage │ │ └── content │ │ ├── ManagedReference.extension.js │ │ ├── ManagedReference.overwrite.js │ │ ├── partials │ │ ├── class.tmpl.partial │ │ ├── collection.tmpl.partial │ │ ├── customMREFContent.tmpl.partial │ │ └── item.tmpl.partial │ │ ├── plugins │ │ ├── HtmlAgilityPack.dll │ │ ├── Microsoft.DocAsCode.Build.Common.dll │ │ ├── Microsoft.DocAsCode.Build.MemberLevelManagedReference.dll │ │ ├── Microsoft.DocAsCode.Common.dll │ │ ├── Microsoft.DocAsCode.DataContracts.Common.dll │ │ ├── Microsoft.DocAsCode.DataContracts.ManagedReference.dll │ │ ├── Microsoft.DocAsCode.MarkdownLite.dll │ │ ├── Microsoft.DocAsCode.Plugins.dll │ │ ├── Microsoft.DocAsCode.YamlSerialization.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Buffers.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── System.Memory.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── YamlDotNet.dll │ │ └── docfx.plugins.config │ │ └── toc.html.js └── toc.yml ├── .github ├── local-test.sh ├── prepare-docfx-folder.js ├── release-notes-configuration.json └── workflows │ ├── build-docs.yml │ └── create-release.yml ├── .gitignore ├── .gitignore.meta ├── Editor.meta ├── Editor ├── Editors.meta ├── Editors │ ├── Components.meta │ ├── Components │ │ ├── FunctionTimeline.cs │ │ ├── FunctionTimeline.cs.meta │ │ ├── TemplateGraph.cs │ │ └── TemplateGraph.cs.meta │ ├── Drawers.meta │ ├── Drawers │ │ ├── EnablePropertyDrawer.cs │ │ ├── EnablePropertyDrawer.cs.meta │ │ ├── FunctionPropertyDrawer.cs │ │ ├── FunctionPropertyDrawer.cs.meta │ │ ├── ModuleTemplatePropertyDrawer.cs │ │ ├── ModuleTemplatePropertyDrawer.cs.meta │ │ ├── PropertyAttributeDrawer.cs │ │ ├── PropertyAttributeDrawer.cs.meta │ │ ├── ShaderPropertyDrawer.cs │ │ ├── ShaderPropertyDrawer.cs.meta │ │ ├── VariablePropertyDrawer.cs │ │ └── VariablePropertyDrawer.cs.meta │ ├── Elements.meta │ ├── Elements │ │ ├── CodeViewElement.cs │ │ ├── CodeViewElement.cs.meta │ │ ├── InspectorList.cs │ │ ├── InspectorList.cs.meta │ │ ├── LabelField.cs │ │ ├── LabelField.cs.meta │ │ ├── ModuleInspectorList.cs │ │ ├── ModuleInspectorList.cs.meta │ │ ├── VariableField.cs │ │ └── VariableField.cs.meta │ ├── Inspectors.meta │ ├── Inspectors │ │ ├── ModularShaderEditor.cs │ │ ├── ModularShaderEditor.cs.meta │ │ ├── ShaderModuleEditor.cs │ │ ├── ShaderModuleEditor.cs.meta │ │ ├── TemplateAssetEditor.cs │ │ └── TemplateAssetEditor.cs.meta │ ├── Windows.meta │ └── Windows │ │ ├── Migrator.cs │ │ ├── Migrator.cs.meta │ │ ├── ModularShaderDebugger.cs │ │ ├── ModularShaderDebugger.cs.meta │ │ ├── TextPopup.cs │ │ └── TextPopup.cs.meta ├── MSSConstants.cs ├── MSSConstants.cs.meta ├── ModularShaderSystemDefinition.asmdef ├── ModularShaderSystemDefinition.asmdef.meta ├── Resources.meta ├── Resources │ ├── MSS.meta │ └── MSS │ │ ├── MSSDeleteIcon.png │ │ ├── MSSDeleteIcon.png.meta │ │ ├── MSSDownIcon.png │ │ ├── MSSDownIcon.png.meta │ │ ├── MSSLogoFull.png │ │ ├── MSSLogoFull.png.meta │ │ ├── MSSUIElements.meta │ │ ├── MSSUIElements │ │ ├── EmbedLibraryWindow.uxml │ │ ├── EmbedLibraryWindow.uxml.meta │ │ ├── EnablePropertyDrawer.uxml │ │ ├── EnablePropertyDrawer.uxml.meta │ │ ├── FunctionPropertyDrawer.uxml │ │ ├── FunctionPropertyDrawer.uxml.meta │ │ ├── FunctionTimelineStyle.uss │ │ ├── FunctionTimelineStyle.uss.meta │ │ ├── FunctionView.uxml │ │ ├── FunctionView.uxml.meta │ │ ├── InspectorList.uss │ │ ├── InspectorList.uss.meta │ │ ├── MigratorDark.uss │ │ ├── MigratorDark.uss.meta │ │ ├── MigratorLight.uss │ │ ├── MigratorLight.uss.meta │ │ ├── ModularShaderDebuggerStyle.uss │ │ ├── ModularShaderDebuggerStyle.uss.meta │ │ ├── ModularShaderEditor.uxml │ │ ├── ModularShaderEditor.uxml.meta │ │ ├── ModuleTemplatePropertyDrawer.uxml │ │ ├── ModuleTemplatePropertyDrawer.uxml.meta │ │ ├── PropertyView.uxml │ │ ├── PropertyView.uxml.meta │ │ ├── ShaderModuleEditor.uxml │ │ ├── ShaderModuleEditor.uxml.meta │ │ ├── ShaderPropertyDrawer.uxml │ │ ├── ShaderPropertyDrawer.uxml.meta │ │ ├── TemplateGraphStyle.uss │ │ ├── TemplateGraphStyle.uss.meta │ │ ├── VariablePropertyDrawer.uxml │ │ └── VariablePropertyDrawer.uxml.meta │ │ ├── MSSUpIcon.png │ │ ├── MSSUpIcon.png.meta │ │ ├── ModularShaderIcon.png │ │ ├── ModularShaderIcon.png.meta │ │ ├── RobotoMono-Regular.ttf │ │ ├── RobotoMono-Regular.ttf.meta │ │ ├── ShaderModuleIcon.png │ │ ├── ShaderModuleIcon.png.meta │ │ ├── TemplateCollectionIcon.png │ │ ├── TemplateCollectionIcon.png.meta │ │ ├── TemplateIcon.png │ │ └── TemplateIcon.png.meta ├── Scriptables.meta ├── Scriptables │ ├── DefaultTexture.cs │ ├── DefaultTexture.cs.meta │ ├── EnableProperty.cs │ ├── EnableProperty.cs.meta │ ├── ModularShader.cs │ ├── ModularShader.cs.meta │ ├── ModuleTemplate.cs │ ├── ModuleTemplate.cs.meta │ ├── Property.cs │ ├── Property.cs.meta │ ├── ShaderFunction.cs │ ├── ShaderFunction.cs.meta │ ├── ShaderModule.cs │ ├── ShaderModule.cs.meta │ ├── TemplateAsset.cs │ ├── TemplateAsset.cs.meta │ ├── TemplateAssetImporter.cs │ ├── TemplateAssetImporter.cs.meta │ ├── TemplateCollectionAsset.cs │ ├── TemplateCollectionAsset.cs.meta │ ├── TemplateCollectionAssetImporter.cs │ ├── TemplateCollectionAssetImporter.cs.meta │ ├── Variable.cs │ └── Variable.cs.meta ├── ShaderGenerator.cs ├── ShaderGenerator.cs.meta ├── ShaderStringBuilderExtensions.cs ├── ShaderStringBuilderExtensions.cs.meta ├── Tools.meta └── Tools │ ├── EmbedLibraryWindow.cs │ └── EmbedLibraryWindow.cs.meta ├── Examples.meta ├── Examples ├── Editor.meta ├── Editor │ ├── Base Template.stemplate │ ├── Base Template.stemplate.meta │ ├── ExampleModularShader.asset │ ├── ExampleModularShader.asset.meta │ ├── ExampleModule.asset │ ├── ExampleModule.asset.meta │ ├── FragmentFunction.stemplate │ ├── FragmentFunction.stemplate.meta │ ├── TextureFunction.stemplate │ ├── TextureFunction.stemplate.meta │ ├── TextureModule.asset │ ├── TextureModule.asset.meta │ ├── VertexTemplate.stemplate │ └── VertexTemplate.stemplate.meta ├── Example Shader.shader └── Example Shader.shader.meta ├── LICENSE ├── LICENSE.meta ├── README.md └── README.md.meta /.docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/.gitignore -------------------------------------------------------------------------------- /.docs/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/api/.gitignore -------------------------------------------------------------------------------- /.docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/api/index.md -------------------------------------------------------------------------------- /.docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/docfx.json -------------------------------------------------------------------------------- /.docs/guides/AdvancedTopics/EmbeddingLibrary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/AdvancedTopics/EmbeddingLibrary.md -------------------------------------------------------------------------------- /.docs/guides/AdvancedTopics/MigratingAssets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/AdvancedTopics/MigratingAssets.md -------------------------------------------------------------------------------- /.docs/guides/AdvancedTopics/ModularShaderDive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/AdvancedTopics/ModularShaderDive.md -------------------------------------------------------------------------------- /.docs/guides/Code/BaseTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/Code/BaseTemplate.txt -------------------------------------------------------------------------------- /.docs/guides/Code/FragmentFunction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/Code/FragmentFunction.txt -------------------------------------------------------------------------------- /.docs/guides/Code/ShaderCode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/Code/ShaderCode.txt -------------------------------------------------------------------------------- /.docs/guides/Code/TextureFunction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/Code/TextureFunction.txt -------------------------------------------------------------------------------- /.docs/guides/Code/VertexTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/Code/VertexTemplate.txt -------------------------------------------------------------------------------- /.docs/guides/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/GettingStarted.md -------------------------------------------------------------------------------- /.docs/guides/ModularShaderComponents/Keywords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/ModularShaderComponents/Keywords.md -------------------------------------------------------------------------------- /.docs/guides/ModularShaderComponents/ModularShader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/ModularShaderComponents/ModularShader.md -------------------------------------------------------------------------------- /.docs/guides/ModularShaderComponents/ShaderModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/ModularShaderComponents/ShaderModule.md -------------------------------------------------------------------------------- /.docs/guides/ModularShaderComponents/TemplateAssets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/ModularShaderComponents/TemplateAssets.md -------------------------------------------------------------------------------- /.docs/guides/ModularShaderComponents/TemplateCollectionAssets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/ModularShaderComponents/TemplateCollectionAssets.md -------------------------------------------------------------------------------- /.docs/guides/ModularShaderDebugger/FunctionTimeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/ModularShaderDebugger/FunctionTimeline.md -------------------------------------------------------------------------------- /.docs/guides/ModularShaderDebugger/ModularShaderDebugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/ModularShaderDebugger/ModularShaderDebugger.md -------------------------------------------------------------------------------- /.docs/guides/ModularShaderDebugger/TemplateGraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/ModularShaderDebugger/TemplateGraph.md -------------------------------------------------------------------------------- /.docs/guides/ThirdPartyModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/ThirdPartyModule.md -------------------------------------------------------------------------------- /.docs/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/index.md -------------------------------------------------------------------------------- /.docs/guides/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/guides/toc.yml -------------------------------------------------------------------------------- /.docs/images/docs/AdvancedTopics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/AdvancedTopics/1.png -------------------------------------------------------------------------------- /.docs/images/docs/AdvancedTopics/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/AdvancedTopics/2.png -------------------------------------------------------------------------------- /.docs/images/docs/AdvancedTopics/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/AdvancedTopics/3.png -------------------------------------------------------------------------------- /.docs/images/docs/GettingStarted/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/GettingStarted/1.png -------------------------------------------------------------------------------- /.docs/images/docs/GettingStarted/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/GettingStarted/2.png -------------------------------------------------------------------------------- /.docs/images/docs/GettingStarted/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/GettingStarted/3.png -------------------------------------------------------------------------------- /.docs/images/docs/GettingStarted/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/GettingStarted/4.png -------------------------------------------------------------------------------- /.docs/images/docs/GettingStarted/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/GettingStarted/5.png -------------------------------------------------------------------------------- /.docs/images/docs/GettingStarted/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/GettingStarted/6.png -------------------------------------------------------------------------------- /.docs/images/docs/GettingStarted/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/GettingStarted/7.png -------------------------------------------------------------------------------- /.docs/images/docs/GettingStarted/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/GettingStarted/8.png -------------------------------------------------------------------------------- /.docs/images/docs/GettingStarted/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/GettingStarted/9.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/1.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/10-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/10-2.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/10.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/11.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/12.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/13.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/14.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/15.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/2.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/3.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/4.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/5.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/6.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/7.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/8.png -------------------------------------------------------------------------------- /.docs/images/docs/ModularShaderDebugger/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ModularShaderDebugger/9.png -------------------------------------------------------------------------------- /.docs/images/docs/ThirdpartyModule/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ThirdpartyModule/1.png -------------------------------------------------------------------------------- /.docs/images/docs/ThirdpartyModule/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ThirdpartyModule/2.png -------------------------------------------------------------------------------- /.docs/images/docs/ThirdpartyModule/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ThirdpartyModule/3.png -------------------------------------------------------------------------------- /.docs/images/docs/ThirdpartyModule/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ThirdpartyModule/4.png -------------------------------------------------------------------------------- /.docs/images/docs/ThirdpartyModule/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ThirdpartyModule/5.png -------------------------------------------------------------------------------- /.docs/images/docs/ThirdpartyModule/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ThirdpartyModule/6.png -------------------------------------------------------------------------------- /.docs/images/docs/ThirdpartyModule/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/images/docs/ThirdpartyModule/7.png -------------------------------------------------------------------------------- /.docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/index.md -------------------------------------------------------------------------------- /.docs/logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/logo-full.png -------------------------------------------------------------------------------- /.docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/logo.png -------------------------------------------------------------------------------- /.docs/templates/darkfx/index.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/darkfx/index.html.tmpl -------------------------------------------------------------------------------- /.docs/templates/darkfx/partials/class.header.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/darkfx/partials/class.header.tmpl.partial -------------------------------------------------------------------------------- /.docs/templates/darkfx/partials/head.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/darkfx/partials/head.tmpl.partial -------------------------------------------------------------------------------- /.docs/templates/darkfx/partials/navbar.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/darkfx/partials/navbar.tmpl.partial -------------------------------------------------------------------------------- /.docs/templates/darkfx/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/darkfx/styles/docfx.js -------------------------------------------------------------------------------- /.docs/templates/darkfx/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/darkfx/styles/main.css -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/ManagedReference.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/ManagedReference.extension.js -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/ManagedReference.overwrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/ManagedReference.overwrite.js -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/partials/class.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/partials/class.tmpl.partial -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/partials/collection.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/partials/collection.tmpl.partial -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/partials/customMREFContent.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/partials/customMREFContent.tmpl.partial -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/partials/item.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/partials/item.tmpl.partial -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.Build.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.Build.Common.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.Build.MemberLevelManagedReference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.Build.MemberLevelManagedReference.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.Common.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.DataContracts.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.DataContracts.Common.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.DataContracts.ManagedReference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.DataContracts.ManagedReference.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.MarkdownLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.MarkdownLite.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.Plugins.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.YamlSerialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/Microsoft.DocAsCode.YamlSerialization.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Buffers.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Composition.Convention.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Memory.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/YamlDotNet.dll -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/plugins/docfx.plugins.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/plugins/docfx.plugins.config -------------------------------------------------------------------------------- /.docs/templates/memberpage/content/toc.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/templates/memberpage/content/toc.html.js -------------------------------------------------------------------------------- /.docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.docs/toc.yml -------------------------------------------------------------------------------- /.github/local-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.github/local-test.sh -------------------------------------------------------------------------------- /.github/prepare-docfx-folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.github/prepare-docfx-folder.js -------------------------------------------------------------------------------- /.github/release-notes-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.github/release-notes-configuration.json -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .docsOutput/ 2 | .idea/ 3 | -------------------------------------------------------------------------------- /.gitignore.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0064a0e5d76f4b0b88d9bc19a7109bea 3 | timeCreated: 1642342268 -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/Editors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors.meta -------------------------------------------------------------------------------- /Editor/Editors/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Components.meta -------------------------------------------------------------------------------- /Editor/Editors/Components/FunctionTimeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Components/FunctionTimeline.cs -------------------------------------------------------------------------------- /Editor/Editors/Components/FunctionTimeline.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c30e8863a36c4d0898c94666f30ab166 3 | timeCreated: 1640810301 -------------------------------------------------------------------------------- /Editor/Editors/Components/TemplateGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Components/TemplateGraph.cs -------------------------------------------------------------------------------- /Editor/Editors/Components/TemplateGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5175597670245d882d461e402395296 3 | timeCreated: 1640810301 -------------------------------------------------------------------------------- /Editor/Editors/Drawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers.meta -------------------------------------------------------------------------------- /Editor/Editors/Drawers/EnablePropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers/EnablePropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/Editors/Drawers/EnablePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers/EnablePropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/Editors/Drawers/FunctionPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers/FunctionPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/Editors/Drawers/FunctionPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers/FunctionPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/Editors/Drawers/ModuleTemplatePropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers/ModuleTemplatePropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/Editors/Drawers/ModuleTemplatePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers/ModuleTemplatePropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/Editors/Drawers/PropertyAttributeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers/PropertyAttributeDrawer.cs -------------------------------------------------------------------------------- /Editor/Editors/Drawers/PropertyAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d6294f9455f4dcd94af0f682efa08d4 3 | timeCreated: 1643740582 -------------------------------------------------------------------------------- /Editor/Editors/Drawers/ShaderPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers/ShaderPropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/Editors/Drawers/ShaderPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb5bbedc120a44b5bdec085b4fb42922 3 | timeCreated: 1627575084 -------------------------------------------------------------------------------- /Editor/Editors/Drawers/VariablePropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Drawers/VariablePropertyDrawer.cs -------------------------------------------------------------------------------- /Editor/Editors/Drawers/VariablePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 027daabfdcb54044b0be21c47e3b9ee2 3 | timeCreated: 1633881046 -------------------------------------------------------------------------------- /Editor/Editors/Elements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Elements.meta -------------------------------------------------------------------------------- /Editor/Editors/Elements/CodeViewElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Elements/CodeViewElement.cs -------------------------------------------------------------------------------- /Editor/Editors/Elements/CodeViewElement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Elements/CodeViewElement.cs.meta -------------------------------------------------------------------------------- /Editor/Editors/Elements/InspectorList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Elements/InspectorList.cs -------------------------------------------------------------------------------- /Editor/Editors/Elements/InspectorList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6536e52dc4344f29a83bef0a79b4d8c4 3 | timeCreated: 1625349020 -------------------------------------------------------------------------------- /Editor/Editors/Elements/LabelField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Elements/LabelField.cs -------------------------------------------------------------------------------- /Editor/Editors/Elements/LabelField.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Elements/LabelField.cs.meta -------------------------------------------------------------------------------- /Editor/Editors/Elements/ModuleInspectorList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Elements/ModuleInspectorList.cs -------------------------------------------------------------------------------- /Editor/Editors/Elements/ModuleInspectorList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0b35f2b67f94a1e8a3307e7b0737997 3 | timeCreated: 1627736308 -------------------------------------------------------------------------------- /Editor/Editors/Elements/VariableField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Elements/VariableField.cs -------------------------------------------------------------------------------- /Editor/Editors/Elements/VariableField.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Elements/VariableField.cs.meta -------------------------------------------------------------------------------- /Editor/Editors/Inspectors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Inspectors.meta -------------------------------------------------------------------------------- /Editor/Editors/Inspectors/ModularShaderEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Inspectors/ModularShaderEditor.cs -------------------------------------------------------------------------------- /Editor/Editors/Inspectors/ModularShaderEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Inspectors/ModularShaderEditor.cs.meta -------------------------------------------------------------------------------- /Editor/Editors/Inspectors/ShaderModuleEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Inspectors/ShaderModuleEditor.cs -------------------------------------------------------------------------------- /Editor/Editors/Inspectors/ShaderModuleEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Inspectors/ShaderModuleEditor.cs.meta -------------------------------------------------------------------------------- /Editor/Editors/Inspectors/TemplateAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Inspectors/TemplateAssetEditor.cs -------------------------------------------------------------------------------- /Editor/Editors/Inspectors/TemplateAssetEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f26763a0daf04fab95b4e5ad8c23d14b 3 | timeCreated: 1625925825 -------------------------------------------------------------------------------- /Editor/Editors/Windows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Windows.meta -------------------------------------------------------------------------------- /Editor/Editors/Windows/Migrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Windows/Migrator.cs -------------------------------------------------------------------------------- /Editor/Editors/Windows/Migrator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e7fabefa5c74f808e1d46bb14bea17b 3 | timeCreated: 1643238149 -------------------------------------------------------------------------------- /Editor/Editors/Windows/ModularShaderDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Windows/ModularShaderDebugger.cs -------------------------------------------------------------------------------- /Editor/Editors/Windows/ModularShaderDebugger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25f072d56af14105a77baf70b1406d10 3 | timeCreated: 1640810301 -------------------------------------------------------------------------------- /Editor/Editors/Windows/TextPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Windows/TextPopup.cs -------------------------------------------------------------------------------- /Editor/Editors/Windows/TextPopup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Editors/Windows/TextPopup.cs.meta -------------------------------------------------------------------------------- /Editor/MSSConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/MSSConstants.cs -------------------------------------------------------------------------------- /Editor/MSSConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 490e36907d6b470b85f2c4a738567a10 3 | timeCreated: 1625749875 -------------------------------------------------------------------------------- /Editor/ModularShaderSystemDefinition.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/ModularShaderSystemDefinition.asmdef -------------------------------------------------------------------------------- /Editor/ModularShaderSystemDefinition.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/ModularShaderSystemDefinition.asmdef.meta -------------------------------------------------------------------------------- /Editor/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSDeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSDeleteIcon.png -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSDeleteIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSDeleteIcon.png.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSDownIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSDownIcon.png -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSDownIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSDownIcon.png.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSLogoFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSLogoFull.png -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSLogoFull.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSLogoFull.png.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/EmbedLibraryWindow.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/EmbedLibraryWindow.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/EmbedLibraryWindow.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/EmbedLibraryWindow.uxml.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/EnablePropertyDrawer.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/EnablePropertyDrawer.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/EnablePropertyDrawer.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/EnablePropertyDrawer.uxml.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/FunctionPropertyDrawer.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/FunctionPropertyDrawer.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/FunctionPropertyDrawer.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/FunctionPropertyDrawer.uxml.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/FunctionTimelineStyle.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/FunctionTimelineStyle.uss -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/FunctionTimelineStyle.uss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f79ac3d6316a4098b4f9e0f95df42920 3 | timeCreated: 1640810258 -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/FunctionView.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/FunctionView.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/FunctionView.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/FunctionView.uxml.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/InspectorList.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/InspectorList.uss -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/InspectorList.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/InspectorList.uss.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/MigratorDark.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/MigratorDark.uss -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/MigratorDark.uss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae0ccc8967e84a25b629fa1f4f5dbec9 3 | timeCreated: 1643331247 -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/MigratorLight.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/MigratorLight.uss -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/MigratorLight.uss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eab948c62aed45a7827a72f9c63e03ae 3 | timeCreated: 1643331277 -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ModularShaderDebuggerStyle.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/ModularShaderDebuggerStyle.uss -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ModularShaderDebuggerStyle.uss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 534a6e250b434bc3946b3ec7854ba1b0 3 | timeCreated: 1640810258 -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ModularShaderEditor.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/ModularShaderEditor.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ModularShaderEditor.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/ModularShaderEditor.uxml.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ModuleTemplatePropertyDrawer.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/ModuleTemplatePropertyDrawer.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ModuleTemplatePropertyDrawer.uxml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a8c27dd1cb84339b936d6d197b9d7c4 3 | timeCreated: 1628702915 -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/PropertyView.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/PropertyView.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/PropertyView.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/PropertyView.uxml.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ShaderModuleEditor.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/ShaderModuleEditor.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ShaderModuleEditor.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/ShaderModuleEditor.uxml.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ShaderPropertyDrawer.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/ShaderPropertyDrawer.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/ShaderPropertyDrawer.uxml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5703689b2e948329cf81f10ba9ffa59 3 | timeCreated: 1627575230 -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/TemplateGraphStyle.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/TemplateGraphStyle.uss -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/TemplateGraphStyle.uss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e14723b5b91e492d80c46712593ba999 3 | timeCreated: 1640810258 -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/VariablePropertyDrawer.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUIElements/VariablePropertyDrawer.uxml -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUIElements/VariablePropertyDrawer.uxml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292cec2ffd5b4facbc10a1ae5c20a456 3 | timeCreated: 1633881097 -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUpIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUpIcon.png -------------------------------------------------------------------------------- /Editor/Resources/MSS/MSSUpIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/MSSUpIcon.png.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/ModularShaderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/ModularShaderIcon.png -------------------------------------------------------------------------------- /Editor/Resources/MSS/ModularShaderIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/ModularShaderIcon.png.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /Editor/Resources/MSS/RobotoMono-Regular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/RobotoMono-Regular.ttf.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/ShaderModuleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/ShaderModuleIcon.png -------------------------------------------------------------------------------- /Editor/Resources/MSS/ShaderModuleIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/ShaderModuleIcon.png.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/TemplateCollectionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/TemplateCollectionIcon.png -------------------------------------------------------------------------------- /Editor/Resources/MSS/TemplateCollectionIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/TemplateCollectionIcon.png.meta -------------------------------------------------------------------------------- /Editor/Resources/MSS/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/TemplateIcon.png -------------------------------------------------------------------------------- /Editor/Resources/MSS/TemplateIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Resources/MSS/TemplateIcon.png.meta -------------------------------------------------------------------------------- /Editor/Scriptables.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables.meta -------------------------------------------------------------------------------- /Editor/Scriptables/DefaultTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/DefaultTexture.cs -------------------------------------------------------------------------------- /Editor/Scriptables/DefaultTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b12a2d45a4844fd78ce4e159cccc2cb3 3 | timeCreated: 1658760266 -------------------------------------------------------------------------------- /Editor/Scriptables/EnableProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/EnableProperty.cs -------------------------------------------------------------------------------- /Editor/Scriptables/EnableProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8b94e68e29e42ec8920637f09609982 3 | timeCreated: 1623748709 -------------------------------------------------------------------------------- /Editor/Scriptables/ModularShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/ModularShader.cs -------------------------------------------------------------------------------- /Editor/Scriptables/ModularShader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/ModularShader.cs.meta -------------------------------------------------------------------------------- /Editor/Scriptables/ModuleTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/ModuleTemplate.cs -------------------------------------------------------------------------------- /Editor/Scriptables/ModuleTemplate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab8e2a4abddd4560b07bc7a425d2f791 3 | timeCreated: 1623748662 -------------------------------------------------------------------------------- /Editor/Scriptables/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/Property.cs -------------------------------------------------------------------------------- /Editor/Scriptables/Property.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21c45257ac0e443e85f8687dd7b4d77a 3 | timeCreated: 1623747506 -------------------------------------------------------------------------------- /Editor/Scriptables/ShaderFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/ShaderFunction.cs -------------------------------------------------------------------------------- /Editor/Scriptables/ShaderFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c2ea900892449d589f135b3fb9ee59e 3 | timeCreated: 1623748654 -------------------------------------------------------------------------------- /Editor/Scriptables/ShaderModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/ShaderModule.cs -------------------------------------------------------------------------------- /Editor/Scriptables/ShaderModule.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/ShaderModule.cs.meta -------------------------------------------------------------------------------- /Editor/Scriptables/TemplateAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/TemplateAsset.cs -------------------------------------------------------------------------------- /Editor/Scriptables/TemplateAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/TemplateAsset.cs.meta -------------------------------------------------------------------------------- /Editor/Scriptables/TemplateAssetImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/TemplateAssetImporter.cs -------------------------------------------------------------------------------- /Editor/Scriptables/TemplateAssetImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5010b0cb4518447f82b5d22e17227d8c 3 | timeCreated: 1623751909 -------------------------------------------------------------------------------- /Editor/Scriptables/TemplateCollectionAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/TemplateCollectionAsset.cs -------------------------------------------------------------------------------- /Editor/Scriptables/TemplateCollectionAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/TemplateCollectionAsset.cs.meta -------------------------------------------------------------------------------- /Editor/Scriptables/TemplateCollectionAssetImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/TemplateCollectionAssetImporter.cs -------------------------------------------------------------------------------- /Editor/Scriptables/TemplateCollectionAssetImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5804451949ef48febb3c1aadf5a8d521 3 | timeCreated: 1628703790 -------------------------------------------------------------------------------- /Editor/Scriptables/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Scriptables/Variable.cs -------------------------------------------------------------------------------- /Editor/Scriptables/Variable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a394fd158674b63862a63722e826010 3 | timeCreated: 1623748676 -------------------------------------------------------------------------------- /Editor/ShaderGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/ShaderGenerator.cs -------------------------------------------------------------------------------- /Editor/ShaderGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b519f5c80e3e4fb2a0896b02eb6aea20 3 | timeCreated: 1623763050 -------------------------------------------------------------------------------- /Editor/ShaderStringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/ShaderStringBuilderExtensions.cs -------------------------------------------------------------------------------- /Editor/ShaderStringBuilderExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dae9e093e9d94576ba0ed34b2d0c4804 3 | timeCreated: 1623762923 -------------------------------------------------------------------------------- /Editor/Tools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Tools.meta -------------------------------------------------------------------------------- /Editor/Tools/EmbedLibraryWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Tools/EmbedLibraryWindow.cs -------------------------------------------------------------------------------- /Editor/Tools/EmbedLibraryWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Editor/Tools/EmbedLibraryWindow.cs.meta -------------------------------------------------------------------------------- /Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples.meta -------------------------------------------------------------------------------- /Examples/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor.meta -------------------------------------------------------------------------------- /Examples/Editor/Base Template.stemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/Base Template.stemplate -------------------------------------------------------------------------------- /Examples/Editor/Base Template.stemplate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/Base Template.stemplate.meta -------------------------------------------------------------------------------- /Examples/Editor/ExampleModularShader.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/ExampleModularShader.asset -------------------------------------------------------------------------------- /Examples/Editor/ExampleModularShader.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/ExampleModularShader.asset.meta -------------------------------------------------------------------------------- /Examples/Editor/ExampleModule.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/ExampleModule.asset -------------------------------------------------------------------------------- /Examples/Editor/ExampleModule.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/ExampleModule.asset.meta -------------------------------------------------------------------------------- /Examples/Editor/FragmentFunction.stemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/FragmentFunction.stemplate -------------------------------------------------------------------------------- /Examples/Editor/FragmentFunction.stemplate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/FragmentFunction.stemplate.meta -------------------------------------------------------------------------------- /Examples/Editor/TextureFunction.stemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/TextureFunction.stemplate -------------------------------------------------------------------------------- /Examples/Editor/TextureFunction.stemplate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/TextureFunction.stemplate.meta -------------------------------------------------------------------------------- /Examples/Editor/TextureModule.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/TextureModule.asset -------------------------------------------------------------------------------- /Examples/Editor/TextureModule.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/TextureModule.asset.meta -------------------------------------------------------------------------------- /Examples/Editor/VertexTemplate.stemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/VertexTemplate.stemplate -------------------------------------------------------------------------------- /Examples/Editor/VertexTemplate.stemplate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Editor/VertexTemplate.stemplate.meta -------------------------------------------------------------------------------- /Examples/Example Shader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Example Shader.shader -------------------------------------------------------------------------------- /Examples/Example Shader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/Examples/Example Shader.shader.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRLabs/Modular-Shader-System/HEAD/README.md.meta --------------------------------------------------------------------------------