├── .gitignore ├── Assets ├── BoidsSimulationOnVfxGraph.meta ├── BoidsSimulationOnVfxGraph │ ├── BoidsVFX.vfx │ ├── BoidsVFX.vfx.meta │ ├── ComputeShaders.meta │ ├── ComputeShaders │ │ ├── Boids.compute │ │ └── Boids.compute.meta │ ├── Plane.mat │ ├── Plane.mat.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── VFXBoids.meta │ │ ├── VFXBoids.unity │ │ ├── VFXBoids.unity.meta │ │ └── VFXBoids │ │ │ ├── Global Volume Profile.asset │ │ │ └── Global Volume Profile.asset.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── BoidsDataBinder.cs │ │ ├── BoidsDataBinder.cs.meta │ │ ├── BoidsRender.cs │ │ ├── BoidsRender.cs.meta │ │ ├── GPUBoids.cs │ │ └── GPUBoids.cs.meta ├── HDRPDefaultResources.meta ├── HDRPDefaultResources │ ├── DefaultLookDevProfile.asset │ ├── DefaultLookDevProfile.asset.meta │ ├── DefaultSettingsVolumeProfile.asset │ ├── DefaultSettingsVolumeProfile.asset.meta │ ├── FoliageDiffusionProfile.asset │ ├── FoliageDiffusionProfile.asset.meta │ ├── HDRenderPipelineGlobalSettings.asset │ ├── HDRenderPipelineGlobalSettings.asset.meta │ ├── SkinDiffusionProfile.asset │ └── SkinDiffusionProfile.asset.meta ├── HDRenderPipelineAsset.asset ├── HDRenderPipelineAsset.asset.meta ├── thumbnail.png └── thumbnail.png.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── HDRPProjectSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/BoidsVFX.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/BoidsVFX.vfx -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/BoidsVFX.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/BoidsVFX.vfx.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/ComputeShaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/ComputeShaders.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/ComputeShaders/Boids.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/ComputeShaders/Boids.compute -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/ComputeShaders/Boids.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/ComputeShaders/Boids.compute.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Plane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Plane.mat -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Plane.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Plane.mat.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scenes.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids.unity -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids.unity.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids/Global Volume Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids/Global Volume Profile.asset -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids/Global Volume Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scenes/VFXBoids/Global Volume Profile.asset.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scripts.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scripts/BoidsDataBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scripts/BoidsDataBinder.cs -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scripts/BoidsDataBinder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scripts/BoidsDataBinder.cs.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scripts/BoidsRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scripts/BoidsRender.cs -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scripts/BoidsRender.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scripts/BoidsRender.cs.meta -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scripts/GPUBoids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scripts/GPUBoids.cs -------------------------------------------------------------------------------- /Assets/BoidsSimulationOnVfxGraph/Scripts/GPUBoids.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/BoidsSimulationOnVfxGraph/Scripts/GPUBoids.cs.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultLookDevProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/DefaultLookDevProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultLookDevProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/DefaultLookDevProfile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/FoliageDiffusionProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/FoliageDiffusionProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/FoliageDiffusionProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/FoliageDiffusionProfile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/SkinDiffusionProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/SkinDiffusionProfile.asset -------------------------------------------------------------------------------- /Assets/HDRPDefaultResources/SkinDiffusionProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRPDefaultResources/SkinDiffusionProfile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRenderPipelineAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRenderPipelineAsset.asset -------------------------------------------------------------------------------- /Assets/HDRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/HDRenderPipelineAsset.asset.meta -------------------------------------------------------------------------------- /Assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/thumbnail.png -------------------------------------------------------------------------------- /Assets/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Assets/thumbnail.png.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/HDRPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodai100/BoidsSimulationOnVfxGraph/HEAD/README.md --------------------------------------------------------------------------------