├── .gitattributes.txt ├── .gitignore ├── Assets ├── InteractiveGrass.meta ├── InteractiveGrass │ ├── CaptureSheepMovement.cs │ ├── CaptureSheepMovement.cs.meta │ ├── CgvI3.png │ ├── CgvI3.png.meta │ ├── InteractiveGrass.unity │ ├── InteractiveGrass.unity.meta │ ├── Resources.meta │ ├── Resources │ │ ├── DepthPass.shader │ │ ├── DepthPass.shader.meta │ │ ├── InteractiveGrass.shader │ │ ├── InteractiveGrass.shader.meta │ │ ├── MergePass.shader │ │ ├── MergePass.shader.meta │ │ ├── SheepFluff.shader │ │ ├── SheepFluff.shader.meta │ │ ├── TracePass.shader │ │ ├── TracePass.shader.meta │ │ ├── recievShadowWithOutline.shader │ │ └── recievShadowWithOutline.shader.meta │ ├── T_Noise_Cloud.png │ ├── T_Noise_Cloud.png.meta │ ├── T_Swirlmap.png │ ├── T_Swirlmap.png.meta │ ├── Unlit_InteractiveGrass.mat │ ├── Unlit_InteractiveGrass.mat.meta │ ├── Unlit_recieveShadowMapWithOutline.mat │ ├── Unlit_recieveShadowMapWithOutline.mat.meta │ ├── WhiteNoiseDithering.png │ ├── WhiteNoiseDithering.png.meta │ ├── meshes.meta │ └── meshes │ │ ├── PineTree.obj │ │ ├── PineTree.obj.meta │ │ ├── blinn3SG.mat │ │ └── blinn3SG.mat.meta ├── LinearEquationSolver.meta └── LinearEquationSolver │ ├── EquationSolver.cs │ ├── EquationSolver.cs.meta │ ├── Example.meta │ ├── Example │ ├── Agent.cs │ ├── Agent.cs.meta │ ├── Manager.cs │ ├── Manager.cs.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Plane.mat │ │ └── Plane.mat.meta │ ├── MoveCamera.cs │ ├── MoveCamera.cs.meta │ ├── SampleScene.unity │ ├── SampleScene.unity.meta │ ├── SheepMaker.cs │ └── SheepMaker.cs.meta │ ├── Matrix2X2.cs │ └── Matrix2X2.cs.meta ├── LICENSE.md ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README.md /.gitattributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/.gitattributes.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/InteractiveGrass.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/CaptureSheepMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/CaptureSheepMovement.cs -------------------------------------------------------------------------------- /Assets/InteractiveGrass/CaptureSheepMovement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/CaptureSheepMovement.cs.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/CgvI3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/CgvI3.png -------------------------------------------------------------------------------- /Assets/InteractiveGrass/CgvI3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/CgvI3.png.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/InteractiveGrass.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/InteractiveGrass.unity -------------------------------------------------------------------------------- /Assets/InteractiveGrass/InteractiveGrass.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/InteractiveGrass.unity.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/DepthPass.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/DepthPass.shader -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/DepthPass.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/DepthPass.shader.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/InteractiveGrass.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/InteractiveGrass.shader -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/InteractiveGrass.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/InteractiveGrass.shader.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/MergePass.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/MergePass.shader -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/MergePass.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/MergePass.shader.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/SheepFluff.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/SheepFluff.shader -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/SheepFluff.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/SheepFluff.shader.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/TracePass.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/TracePass.shader -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/TracePass.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/TracePass.shader.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/recievShadowWithOutline.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/recievShadowWithOutline.shader -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Resources/recievShadowWithOutline.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Resources/recievShadowWithOutline.shader.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/T_Noise_Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/T_Noise_Cloud.png -------------------------------------------------------------------------------- /Assets/InteractiveGrass/T_Noise_Cloud.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/T_Noise_Cloud.png.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/T_Swirlmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/T_Swirlmap.png -------------------------------------------------------------------------------- /Assets/InteractiveGrass/T_Swirlmap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/T_Swirlmap.png.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Unlit_InteractiveGrass.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Unlit_InteractiveGrass.mat -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Unlit_InteractiveGrass.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Unlit_InteractiveGrass.mat.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Unlit_recieveShadowMapWithOutline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Unlit_recieveShadowMapWithOutline.mat -------------------------------------------------------------------------------- /Assets/InteractiveGrass/Unlit_recieveShadowMapWithOutline.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/Unlit_recieveShadowMapWithOutline.mat.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/WhiteNoiseDithering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/WhiteNoiseDithering.png -------------------------------------------------------------------------------- /Assets/InteractiveGrass/WhiteNoiseDithering.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/WhiteNoiseDithering.png.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/meshes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/meshes.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/meshes/PineTree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/meshes/PineTree.obj -------------------------------------------------------------------------------- /Assets/InteractiveGrass/meshes/PineTree.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/meshes/PineTree.obj.meta -------------------------------------------------------------------------------- /Assets/InteractiveGrass/meshes/blinn3SG.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/meshes/blinn3SG.mat -------------------------------------------------------------------------------- /Assets/InteractiveGrass/meshes/blinn3SG.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/InteractiveGrass/meshes/blinn3SG.mat.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/EquationSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/EquationSolver.cs -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/EquationSolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/EquationSolver.cs.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/Agent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/Agent.cs -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/Agent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/Agent.cs.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/Manager.cs -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/Manager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/Manager.cs.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/Materials.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/Materials/Plane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/Materials/Plane.mat -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/Materials/Plane.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/Materials/Plane.mat.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/MoveCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/MoveCamera.cs -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/MoveCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/MoveCamera.cs.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/SampleScene.unity -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/SheepMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/SheepMaker.cs -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Example/SheepMaker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Example/SheepMaker.cs.meta -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Matrix2X2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Matrix2X2.cs -------------------------------------------------------------------------------- /Assets/LinearEquationSolver/Matrix2X2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/Assets/LinearEquationSolver/Matrix2X2.cs.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/LICENSE.md -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.2.14f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/Interactive-Grass/HEAD/README.md --------------------------------------------------------------------------------