├── .gitattributes ├── .gitignore ├── Assets ├── HDRPDefaultResources.meta ├── HDRPDefaultResources │ ├── DefaultSceneRoot.prefab │ ├── DefaultSceneRoot.prefab.meta │ ├── Foliage Diffusion Profile.asset │ ├── Foliage Diffusion Profile.asset.meta │ ├── HDRenderPipelineAsset.asset │ ├── HDRenderPipelineAsset.asset.meta │ ├── Scene PostProcess Profile.asset │ ├── Scene PostProcess Profile.asset.meta │ ├── Skin Diffusion Profile.asset │ ├── Skin Diffusion Profile.asset.meta │ ├── Sky and Fog Settings Profile.asset │ ├── Sky and Fog Settings Profile.asset.meta │ ├── VFXDefaultResources.asset │ └── VFXDefaultResources.asset.meta ├── Script.meta ├── Script │ ├── DelayFollower.cs │ ├── DelayFollower.cs.meta │ ├── SpiralMove.cs │ ├── SpiralMove.cs.meta │ ├── VFXTexturePropertyBinder.cs │ └── VFXTexturePropertyBinder.cs.meta ├── VFX.meta ├── VFX │ ├── ADSR Particles VFX.vfx │ ├── ADSR Particles VFX.vfx.meta │ ├── CurvesMaterial.mat │ ├── CurvesMaterial.mat.meta │ ├── CurvesParticleScene.unity │ ├── CurvesParticleScene.unity.meta │ ├── CurvesRenderTexture.renderTexture │ ├── CurvesRenderTexture.renderTexture.meta │ ├── CurvesShaderGraph.shadergraph │ ├── CurvesShaderGraph.shadergraph.meta │ ├── DefaultRenderTexture.renderTexture │ ├── DefaultRenderTexture.renderTexture.meta │ ├── EnvelopeFunctions.hlsl │ └── EnvelopeFunctions.hlsl.meta ├── Volume.meta └── Volume │ ├── Post Process.asset │ └── Post Process.asset.meta ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── HDRPProjectSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md ├── screenshot0.png └── screenshot1.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSceneRoot.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/DefaultSceneRoot.prefab -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSceneRoot.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/DefaultSceneRoot.prefab.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/Foliage Diffusion Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/Foliage Diffusion Profile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/Foliage Diffusion Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/Foliage Diffusion Profile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineAsset.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineAsset.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/Scene PostProcess Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/Scene PostProcess Profile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/Scene PostProcess Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/Scene PostProcess Profile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/Skin Diffusion Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/Skin Diffusion Profile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/Skin Diffusion Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/Skin Diffusion Profile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/Sky and Fog Settings Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/Sky and Fog Settings Profile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/Sky and Fog Settings Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/Sky and Fog Settings Profile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/VFXDefaultResources.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/VFXDefaultResources.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/VFXDefaultResources.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/HDRPDefaultResources/VFXDefaultResources.asset.meta -------------------------------------------------------------------------------- /Assets/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Script.meta -------------------------------------------------------------------------------- /Assets/Script/DelayFollower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Script/DelayFollower.cs -------------------------------------------------------------------------------- /Assets/Script/DelayFollower.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Script/DelayFollower.cs.meta -------------------------------------------------------------------------------- /Assets/Script/SpiralMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Script/SpiralMove.cs -------------------------------------------------------------------------------- /Assets/Script/SpiralMove.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Script/SpiralMove.cs.meta -------------------------------------------------------------------------------- /Assets/Script/VFXTexturePropertyBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Script/VFXTexturePropertyBinder.cs -------------------------------------------------------------------------------- /Assets/Script/VFXTexturePropertyBinder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Script/VFXTexturePropertyBinder.cs.meta -------------------------------------------------------------------------------- /Assets/VFX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX.meta -------------------------------------------------------------------------------- /Assets/VFX/ADSR Particles VFX.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/ADSR Particles VFX.vfx -------------------------------------------------------------------------------- /Assets/VFX/ADSR Particles VFX.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/ADSR Particles VFX.vfx.meta -------------------------------------------------------------------------------- /Assets/VFX/CurvesMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/CurvesMaterial.mat -------------------------------------------------------------------------------- /Assets/VFX/CurvesMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/CurvesMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/VFX/CurvesParticleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/CurvesParticleScene.unity -------------------------------------------------------------------------------- /Assets/VFX/CurvesParticleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/CurvesParticleScene.unity.meta -------------------------------------------------------------------------------- /Assets/VFX/CurvesRenderTexture.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/CurvesRenderTexture.renderTexture -------------------------------------------------------------------------------- /Assets/VFX/CurvesRenderTexture.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/CurvesRenderTexture.renderTexture.meta -------------------------------------------------------------------------------- /Assets/VFX/CurvesShaderGraph.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/CurvesShaderGraph.shadergraph -------------------------------------------------------------------------------- /Assets/VFX/CurvesShaderGraph.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/CurvesShaderGraph.shadergraph.meta -------------------------------------------------------------------------------- /Assets/VFX/DefaultRenderTexture.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/DefaultRenderTexture.renderTexture -------------------------------------------------------------------------------- /Assets/VFX/DefaultRenderTexture.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/DefaultRenderTexture.renderTexture.meta -------------------------------------------------------------------------------- /Assets/VFX/EnvelopeFunctions.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/EnvelopeFunctions.hlsl -------------------------------------------------------------------------------- /Assets/VFX/EnvelopeFunctions.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/VFX/EnvelopeFunctions.hlsl.meta -------------------------------------------------------------------------------- /Assets/Volume.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Volume.meta -------------------------------------------------------------------------------- /Assets/Volume/Post Process.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Volume/Post Process.asset -------------------------------------------------------------------------------- /Assets/Volume/Post Process.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Assets/Volume/Post Process.asset.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/HDRPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/README.md -------------------------------------------------------------------------------- /screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/screenshot0.png -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopervfx/unity-vfx-shadergraph-curves/HEAD/screenshot1.png --------------------------------------------------------------------------------