├── .gitattributes ├── .gitignore ├── Assets ├── Editor.meta ├── Editor │ ├── GrassPainter.cs │ └── GrassPainter.cs.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── Scripts.meta ├── Scripts │ ├── CullingTreeNode.cs │ ├── CullingTreeNode.cs.meta │ ├── Cutgrass.cs │ ├── Cutgrass.cs.meta │ ├── GamePlay.meta │ ├── GamePlay │ │ ├── CircularMotion.cs │ │ ├── CircularMotion.cs.meta │ │ ├── SmoothCameraFollow.cs │ │ └── SmoothCameraFollow.cs.meta │ ├── GrassControl.cs │ └── GrassControl.cs.meta ├── Shader.meta ├── Shader │ ├── Custom_GrassBlades.mat │ ├── Custom_GrassBlades.mat.meta │ ├── GrassBlade.shader │ ├── GrassBlade.shader.meta │ ├── GrassCS.compute │ └── GrassCS.compute.meta ├── Texture.meta └── Texture │ ├── Floor 5.png │ ├── Floor 5.png.meta │ ├── Floor5_Material.mat │ └── Floor5_Material.mat.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── AutoStreamingSettings.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Editor.meta -------------------------------------------------------------------------------- /Assets/Editor/GrassPainter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Editor/GrassPainter.cs -------------------------------------------------------------------------------- /Assets/Editor/GrassPainter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Editor/GrassPainter.cs.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/CullingTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/CullingTreeNode.cs -------------------------------------------------------------------------------- /Assets/Scripts/CullingTreeNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/CullingTreeNode.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Cutgrass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/Cutgrass.cs -------------------------------------------------------------------------------- /Assets/Scripts/Cutgrass.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/Cutgrass.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/GamePlay.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/GamePlay.meta -------------------------------------------------------------------------------- /Assets/Scripts/GamePlay/CircularMotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/GamePlay/CircularMotion.cs -------------------------------------------------------------------------------- /Assets/Scripts/GamePlay/CircularMotion.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/GamePlay/CircularMotion.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/GamePlay/SmoothCameraFollow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/GamePlay/SmoothCameraFollow.cs -------------------------------------------------------------------------------- /Assets/Scripts/GamePlay/SmoothCameraFollow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/GamePlay/SmoothCameraFollow.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/GrassControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/GrassControl.cs -------------------------------------------------------------------------------- /Assets/Scripts/GrassControl.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Scripts/GrassControl.cs.meta -------------------------------------------------------------------------------- /Assets/Shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Shader.meta -------------------------------------------------------------------------------- /Assets/Shader/Custom_GrassBlades.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Shader/Custom_GrassBlades.mat -------------------------------------------------------------------------------- /Assets/Shader/Custom_GrassBlades.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Shader/Custom_GrassBlades.mat.meta -------------------------------------------------------------------------------- /Assets/Shader/GrassBlade.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Shader/GrassBlade.shader -------------------------------------------------------------------------------- /Assets/Shader/GrassBlade.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Shader/GrassBlade.shader.meta -------------------------------------------------------------------------------- /Assets/Shader/GrassCS.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Shader/GrassCS.compute -------------------------------------------------------------------------------- /Assets/Shader/GrassCS.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Shader/GrassCS.compute.meta -------------------------------------------------------------------------------- /Assets/Texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Texture.meta -------------------------------------------------------------------------------- /Assets/Texture/Floor 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Texture/Floor 5.png -------------------------------------------------------------------------------- /Assets/Texture/Floor 5.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Texture/Floor 5.png.meta -------------------------------------------------------------------------------- /Assets/Texture/Floor5_Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Texture/Floor5_Material.mat -------------------------------------------------------------------------------- /Assets/Texture/Floor5_Material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Assets/Texture/Floor5_Material.mat.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/AutoStreamingSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/AutoStreamingSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remyuu/Unity-Interactive-Grass/HEAD/README.md --------------------------------------------------------------------------------