├── .gitignore ├── AssemblyUpdater.meta ├── AssemblyUpdater ├── Editor.meta ├── Editor │ ├── VegetationStudioAssemblyUpdater.cs │ └── VegetationStudioAssemblyUpdater.cs.meta ├── VegetationStudioAssemblyUpdater.asmdef └── VegetationStudioAssemblyUpdater.asmdef.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── VegetationStudioNodes.meta ├── VegetationStudioNodes ├── Editor.meta ├── Editor │ ├── IndirectNodeHD.cs │ ├── IndirectNodeHD.cs.meta │ ├── IndirectNodeLW.cs │ └── IndirectNodeLW.cs.meta ├── VegetationStudioCustomNodes.asmdef └── VegetationStudioCustomNodes.asmdef.meta └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/.gitignore -------------------------------------------------------------------------------- /AssemblyUpdater.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/AssemblyUpdater.meta -------------------------------------------------------------------------------- /AssemblyUpdater/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/AssemblyUpdater/Editor.meta -------------------------------------------------------------------------------- /AssemblyUpdater/Editor/VegetationStudioAssemblyUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/AssemblyUpdater/Editor/VegetationStudioAssemblyUpdater.cs -------------------------------------------------------------------------------- /AssemblyUpdater/Editor/VegetationStudioAssemblyUpdater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/AssemblyUpdater/Editor/VegetationStudioAssemblyUpdater.cs.meta -------------------------------------------------------------------------------- /AssemblyUpdater/VegetationStudioAssemblyUpdater.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/AssemblyUpdater/VegetationStudioAssemblyUpdater.asmdef -------------------------------------------------------------------------------- /AssemblyUpdater/VegetationStudioAssemblyUpdater.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/AssemblyUpdater/VegetationStudioAssemblyUpdater.asmdef.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/README.md.meta -------------------------------------------------------------------------------- /VegetationStudioNodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/VegetationStudioNodes.meta -------------------------------------------------------------------------------- /VegetationStudioNodes/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/VegetationStudioNodes/Editor.meta -------------------------------------------------------------------------------- /VegetationStudioNodes/Editor/IndirectNodeHD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/VegetationStudioNodes/Editor/IndirectNodeHD.cs -------------------------------------------------------------------------------- /VegetationStudioNodes/Editor/IndirectNodeHD.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/VegetationStudioNodes/Editor/IndirectNodeHD.cs.meta -------------------------------------------------------------------------------- /VegetationStudioNodes/Editor/IndirectNodeLW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/VegetationStudioNodes/Editor/IndirectNodeLW.cs -------------------------------------------------------------------------------- /VegetationStudioNodes/Editor/IndirectNodeLW.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/VegetationStudioNodes/Editor/IndirectNodeLW.cs.meta -------------------------------------------------------------------------------- /VegetationStudioNodes/VegetationStudioCustomNodes.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/VegetationStudioNodes/VegetationStudioCustomNodes.asmdef -------------------------------------------------------------------------------- /VegetationStudioNodes/VegetationStudioCustomNodes.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/VegetationStudioNodes/VegetationStudioCustomNodes.asmdef.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeTechnologies/VegetationStudioPro-ShaderGraphNodes/HEAD/package.json --------------------------------------------------------------------------------