├── .gitattributes ├── .gitignore ├── Assets ├── HDRPDefaultResources.meta ├── HDRPDefaultResources │ ├── DefaultHDRISky.exr │ ├── DefaultHDRISky.exr.meta │ ├── DefaultHDRPAsset.asset │ ├── DefaultHDRPAsset.asset.meta │ ├── DefaultLookDevProfile.asset │ ├── DefaultLookDevProfile.asset.meta │ ├── DefaultSceneRoot.prefab │ ├── DefaultSceneRoot.prefab.meta │ ├── DefaultSettingsVolumeProfile.asset │ ├── DefaultSettingsVolumeProfile.asset.meta │ ├── DefaultVFXResources.asset │ ├── DefaultVFXResources.asset.meta │ ├── HDRenderPipelineGlobalSettings.asset │ └── HDRenderPipelineGlobalSettings.asset.meta ├── Scenes.meta ├── Scenes │ ├── Flocking.meta │ ├── Flocking │ │ ├── AnimatorControllers.meta │ │ ├── AnimatorControllers │ │ │ ├── Target Fish.controller │ │ │ └── Target Fish.controller.meta │ │ ├── ComputeShaders.meta │ │ ├── ComputeShaders │ │ │ ├── ComputeFlocking.compute │ │ │ └── ComputeFlocking.compute.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── FlockingEditor.cs │ │ │ └── FlockingEditor.cs.meta │ │ ├── Flocking.unity │ │ ├── Flocking.unity.meta │ │ ├── License │ │ ├── License.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Shadow Only.mat │ │ │ ├── Shadow Only.mat.meta │ │ │ ├── Target Fish.mat │ │ │ ├── Target Fish.mat.meta │ │ │ ├── Undersea.mat │ │ │ └── Undersea.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── Target Fish.fbx │ │ │ ├── Target Fish.fbx.meta │ │ │ ├── vertex_animation_textures1_mesh.fbx │ │ │ └── vertex_animation_textures1_mesh.fbx.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Flocking.cs │ │ │ ├── Flocking.cs.meta │ │ │ ├── TargetFish.cs │ │ │ └── TargetFish.cs.meta │ │ ├── ShaderGraphs.meta │ │ ├── ShaderGraphs │ │ │ ├── Flocking Fish.shadergraph │ │ │ ├── Flocking Fish.shadergraph.meta │ │ │ ├── Shadow Only.shadergraph │ │ │ ├── Shadow Only.shadergraph.meta │ │ │ ├── Target Fish.shadergraph │ │ │ ├── Target Fish.shadergraph.meta │ │ │ ├── Undersea.shadergraph │ │ │ └── Undersea.shadergraph.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ │ ├── blue_fish.png │ │ │ ├── blue_fish.png.meta │ │ │ ├── vertex_animation_textures1_pos.exr │ │ │ └── vertex_animation_textures1_pos.exr.meta │ │ ├── VFXGraphs.meta │ │ ├── VFXGraphs │ │ │ ├── Flocking.vfx │ │ │ └── Flocking.vfx.meta │ │ ├── VolumeProfile.asset │ │ └── VolumeProfile.asset.meta │ ├── Flower Garden.meta │ └── Flower Garden │ │ ├── FlowerGarden.unity │ │ ├── FlowerGarden.unity.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── Background.mat │ │ ├── Background.mat.meta │ │ ├── Circle.mat │ │ └── Circle.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ ├── Leaf.obj │ │ ├── Leaf.obj.meta │ │ ├── Petal.obj │ │ └── Petal.obj.meta │ │ ├── ShaderGraphs.meta │ │ ├── ShaderGraphs │ │ ├── Background.shadergraph │ │ ├── Background.shadergraph.meta │ │ ├── Circle With Edge.shadergraph │ │ ├── Circle With Edge.shadergraph.meta │ │ ├── Circle.shadergraph │ │ └── Circle.shadergraph.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ ├── ButterFiles_8x1.tif │ │ └── ButterFiles_8x1.tif.meta │ │ ├── VFXGraphs.meta │ │ ├── VFXGraphs │ │ ├── Butterflies.vfx │ │ ├── Butterflies.vfx.meta │ │ ├── Flowers.vfx │ │ ├── Flowers.vfx.meta │ │ ├── Grasses.vfx │ │ ├── Grasses.vfx.meta │ │ ├── Meteors.vfx │ │ ├── Meteors.vfx.meta │ │ ├── Stars.vfx │ │ └── Stars.vfx.meta │ │ ├── VolumeProfile.asset │ │ └── VolumeProfile.asset.meta ├── SubGraphs.meta └── SubGraphs │ ├── Degree To Radian.vfxoperator │ ├── Degree To Radian.vfxoperator.meta │ ├── Direction Spread.vfxoperator │ ├── Direction Spread.vfxoperator.meta │ ├── Radian To Degree.vfxoperator │ ├── Radian To Degree.vfxoperator.meta │ ├── Random Inside Circle.vfxoperator │ └── Random Inside Circle.vfxoperator.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── HDRPProjectSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultHDRISky.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultHDRISky.exr -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultHDRISky.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultHDRISky.exr.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultHDRPAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultHDRPAsset.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultHDRPAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultHDRPAsset.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultLookDevProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultLookDevProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultLookDevProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultLookDevProfile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSceneRoot.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultSceneRoot.prefab -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSceneRoot.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultSceneRoot.prefab.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultVFXResources.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultVFXResources.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultVFXResources.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/DefaultVFXResources.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/AnimatorControllers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/AnimatorControllers.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/AnimatorControllers/Target Fish.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/AnimatorControllers/Target Fish.controller -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/AnimatorControllers/Target Fish.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/AnimatorControllers/Target Fish.controller.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ComputeShaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ComputeShaders.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ComputeShaders/ComputeFlocking.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ComputeShaders/ComputeFlocking.compute -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ComputeShaders/ComputeFlocking.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ComputeShaders/ComputeFlocking.compute.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Editor.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Editor/FlockingEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Editor/FlockingEditor.cs -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Editor/FlockingEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Editor/FlockingEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Flocking.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Flocking.unity -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Flocking.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Flocking.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/License -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/License.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/License.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Materials.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Materials/Shadow Only.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Materials/Shadow Only.mat -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Materials/Shadow Only.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Materials/Shadow Only.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Materials/Target Fish.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Materials/Target Fish.mat -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Materials/Target Fish.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Materials/Target Fish.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Materials/Undersea.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Materials/Undersea.mat -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Materials/Undersea.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Materials/Undersea.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Models.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Models/Target Fish.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Models/Target Fish.fbx -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Models/Target Fish.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Models/Target Fish.fbx.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Models/vertex_animation_textures1_mesh.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Models/vertex_animation_textures1_mesh.fbx -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Models/vertex_animation_textures1_mesh.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Models/vertex_animation_textures1_mesh.fbx.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Scripts/Flocking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Scripts/Flocking.cs -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Scripts/Flocking.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Scripts/Flocking.cs.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Scripts/TargetFish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Scripts/TargetFish.cs -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Scripts/TargetFish.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Scripts/TargetFish.cs.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ShaderGraphs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ShaderGraphs.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ShaderGraphs/Flocking Fish.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ShaderGraphs/Flocking Fish.shadergraph -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ShaderGraphs/Flocking Fish.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ShaderGraphs/Flocking Fish.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ShaderGraphs/Shadow Only.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ShaderGraphs/Shadow Only.shadergraph -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ShaderGraphs/Shadow Only.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ShaderGraphs/Shadow Only.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ShaderGraphs/Target Fish.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ShaderGraphs/Target Fish.shadergraph -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ShaderGraphs/Target Fish.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ShaderGraphs/Target Fish.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ShaderGraphs/Undersea.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ShaderGraphs/Undersea.shadergraph -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/ShaderGraphs/Undersea.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/ShaderGraphs/Undersea.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Textures.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Textures/blue_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Textures/blue_fish.png -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Textures/blue_fish.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Textures/blue_fish.png.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Textures/vertex_animation_textures1_pos.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Textures/vertex_animation_textures1_pos.exr -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/Textures/vertex_animation_textures1_pos.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/Textures/vertex_animation_textures1_pos.exr.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/VFXGraphs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/VFXGraphs.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/VFXGraphs/Flocking.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/VFXGraphs/Flocking.vfx -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/VFXGraphs/Flocking.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/VFXGraphs/Flocking.vfx.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/VolumeProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/VolumeProfile.asset -------------------------------------------------------------------------------- /Assets/Scenes/Flocking/VolumeProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flocking/VolumeProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/FlowerGarden.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/FlowerGarden.unity -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/FlowerGarden.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/FlowerGarden.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Materials.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Materials/Background.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Materials/Background.mat -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Materials/Background.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Materials/Background.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Materials/Circle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Materials/Circle.mat -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Materials/Circle.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Materials/Circle.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Models.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Models/Leaf.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Models/Leaf.obj -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Models/Leaf.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Models/Leaf.obj.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Models/Petal.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Models/Petal.obj -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Models/Petal.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Models/Petal.obj.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/ShaderGraphs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/ShaderGraphs.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/ShaderGraphs/Background.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/ShaderGraphs/Background.shadergraph -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/ShaderGraphs/Background.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/ShaderGraphs/Background.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/ShaderGraphs/Circle With Edge.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/ShaderGraphs/Circle With Edge.shadergraph -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/ShaderGraphs/Circle With Edge.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/ShaderGraphs/Circle With Edge.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/ShaderGraphs/Circle.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/ShaderGraphs/Circle.shadergraph -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/ShaderGraphs/Circle.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/ShaderGraphs/Circle.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Textures.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Textures/ButterFiles_8x1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Textures/ButterFiles_8x1.tif -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/Textures/ButterFiles_8x1.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/Textures/ButterFiles_8x1.tif.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Butterflies.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Butterflies.vfx -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Butterflies.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Butterflies.vfx.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Flowers.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Flowers.vfx -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Flowers.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Flowers.vfx.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Grasses.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Grasses.vfx -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Grasses.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Grasses.vfx.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Meteors.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Meteors.vfx -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Meteors.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Meteors.vfx.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Stars.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Stars.vfx -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VFXGraphs/Stars.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VFXGraphs/Stars.vfx.meta -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VolumeProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VolumeProfile.asset -------------------------------------------------------------------------------- /Assets/Scenes/Flower Garden/VolumeProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/Scenes/Flower Garden/VolumeProfile.asset.meta -------------------------------------------------------------------------------- /Assets/SubGraphs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/SubGraphs.meta -------------------------------------------------------------------------------- /Assets/SubGraphs/Degree To Radian.vfxoperator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/SubGraphs/Degree To Radian.vfxoperator -------------------------------------------------------------------------------- /Assets/SubGraphs/Degree To Radian.vfxoperator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/SubGraphs/Degree To Radian.vfxoperator.meta -------------------------------------------------------------------------------- /Assets/SubGraphs/Direction Spread.vfxoperator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/SubGraphs/Direction Spread.vfxoperator -------------------------------------------------------------------------------- /Assets/SubGraphs/Direction Spread.vfxoperator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/SubGraphs/Direction Spread.vfxoperator.meta -------------------------------------------------------------------------------- /Assets/SubGraphs/Radian To Degree.vfxoperator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/SubGraphs/Radian To Degree.vfxoperator -------------------------------------------------------------------------------- /Assets/SubGraphs/Radian To Degree.vfxoperator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/SubGraphs/Radian To Degree.vfxoperator.meta -------------------------------------------------------------------------------- /Assets/SubGraphs/Random Inside Circle.vfxoperator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/SubGraphs/Random Inside Circle.vfxoperator -------------------------------------------------------------------------------- /Assets/SubGraphs/Random Inside Circle.vfxoperator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Assets/SubGraphs/Random Inside Circle.vfxoperator.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/HDRPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abecombe/VFXGraphStudy/HEAD/README.md --------------------------------------------------------------------------------