├── .gitignore ├── Examples.meta ├── Examples ├── TestColor.asset ├── TestColor.asset.meta ├── TestGlobal.shader ├── TestGlobal.shader.meta ├── TestTimeline.playable ├── TestTimeline.playable.meta ├── Unlit_TestGlobal.mat ├── Unlit_TestGlobal.mat.meta ├── testscene.unity └── testscene.unity.meta ├── LICENSE ├── LICENSE.meta ├── MicroSplat.meta ├── MicroSplat ├── MicroSplatSnowHeightRange.asset ├── MicroSplatSnowHeightRange.asset.meta ├── MicroSplatSnowLevel.asset ├── MicroSplatSnowLevel.asset.meta ├── test.playable └── test.playable.meta ├── ReadMe.txt ├── ReadMe.txt.meta ├── Scripts.meta └── Scripts ├── Editor.meta ├── Editor ├── PlayableShaderGlobalBehaviourDrawer.cs └── PlayableShaderGlobalBehaviourDrawer.cs.meta ├── PlayableShaderGlobalBehaviour.cs ├── PlayableShaderGlobalBehaviour.cs.meta ├── PlayableShaderGlobalClip.cs ├── PlayableShaderGlobalClip.cs.meta ├── PlayableShaderGlobalConfig.cs ├── PlayableShaderGlobalConfig.cs.meta ├── PlayableShaderGlobalTrack.cs └── PlayableShaderGlobalTrack.cs.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples.meta -------------------------------------------------------------------------------- /Examples/TestColor.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/TestColor.asset -------------------------------------------------------------------------------- /Examples/TestColor.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/TestColor.asset.meta -------------------------------------------------------------------------------- /Examples/TestGlobal.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/TestGlobal.shader -------------------------------------------------------------------------------- /Examples/TestGlobal.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/TestGlobal.shader.meta -------------------------------------------------------------------------------- /Examples/TestTimeline.playable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/TestTimeline.playable -------------------------------------------------------------------------------- /Examples/TestTimeline.playable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/TestTimeline.playable.meta -------------------------------------------------------------------------------- /Examples/Unlit_TestGlobal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/Unlit_TestGlobal.mat -------------------------------------------------------------------------------- /Examples/Unlit_TestGlobal.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/Unlit_TestGlobal.mat.meta -------------------------------------------------------------------------------- /Examples/testscene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/testscene.unity -------------------------------------------------------------------------------- /Examples/testscene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Examples/testscene.unity.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /MicroSplat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/MicroSplat.meta -------------------------------------------------------------------------------- /MicroSplat/MicroSplatSnowHeightRange.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/MicroSplat/MicroSplatSnowHeightRange.asset -------------------------------------------------------------------------------- /MicroSplat/MicroSplatSnowHeightRange.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/MicroSplat/MicroSplatSnowHeightRange.asset.meta -------------------------------------------------------------------------------- /MicroSplat/MicroSplatSnowLevel.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/MicroSplat/MicroSplatSnowLevel.asset -------------------------------------------------------------------------------- /MicroSplat/MicroSplatSnowLevel.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/MicroSplat/MicroSplatSnowLevel.asset.meta -------------------------------------------------------------------------------- /MicroSplat/test.playable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/MicroSplat/test.playable -------------------------------------------------------------------------------- /MicroSplat/test.playable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/MicroSplat/test.playable.meta -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /ReadMe.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/ReadMe.txt.meta -------------------------------------------------------------------------------- /Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts.meta -------------------------------------------------------------------------------- /Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/Editor.meta -------------------------------------------------------------------------------- /Scripts/Editor/PlayableShaderGlobalBehaviourDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/Editor/PlayableShaderGlobalBehaviourDrawer.cs -------------------------------------------------------------------------------- /Scripts/Editor/PlayableShaderGlobalBehaviourDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/Editor/PlayableShaderGlobalBehaviourDrawer.cs.meta -------------------------------------------------------------------------------- /Scripts/PlayableShaderGlobalBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/PlayableShaderGlobalBehaviour.cs -------------------------------------------------------------------------------- /Scripts/PlayableShaderGlobalBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/PlayableShaderGlobalBehaviour.cs.meta -------------------------------------------------------------------------------- /Scripts/PlayableShaderGlobalClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/PlayableShaderGlobalClip.cs -------------------------------------------------------------------------------- /Scripts/PlayableShaderGlobalClip.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/PlayableShaderGlobalClip.cs.meta -------------------------------------------------------------------------------- /Scripts/PlayableShaderGlobalConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/PlayableShaderGlobalConfig.cs -------------------------------------------------------------------------------- /Scripts/PlayableShaderGlobalConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/PlayableShaderGlobalConfig.cs.meta -------------------------------------------------------------------------------- /Scripts/PlayableShaderGlobalTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/PlayableShaderGlobalTrack.cs -------------------------------------------------------------------------------- /Scripts/PlayableShaderGlobalTrack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slipster216/PlayableShaderGlobals/HEAD/Scripts/PlayableShaderGlobalTrack.cs.meta --------------------------------------------------------------------------------