├── .gitignore ├── LICENSE ├── README.md ├── assets └── teaser.png └── src ├── Common.hlsl ├── FetchVertex.hlsl ├── GrassCollider.cs ├── GrassCommon.hlsl ├── GrassCutter.cs ├── GrassEditRT.compute ├── GrassGenRT.compute ├── GrassInitRT.compute ├── GrassRendererRT.cs ├── GrassShader.shadergraph └── Math.hlsl /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/README.md -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /src/Common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/Common.hlsl -------------------------------------------------------------------------------- /src/FetchVertex.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/FetchVertex.hlsl -------------------------------------------------------------------------------- /src/GrassCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/GrassCollider.cs -------------------------------------------------------------------------------- /src/GrassCommon.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/GrassCommon.hlsl -------------------------------------------------------------------------------- /src/GrassCutter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/GrassCutter.cs -------------------------------------------------------------------------------- /src/GrassEditRT.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/GrassEditRT.compute -------------------------------------------------------------------------------- /src/GrassGenRT.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/GrassGenRT.compute -------------------------------------------------------------------------------- /src/GrassInitRT.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/GrassInitRT.compute -------------------------------------------------------------------------------- /src/GrassRendererRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/GrassRendererRT.cs -------------------------------------------------------------------------------- /src/GrassShader.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/GrassShader.shadergraph -------------------------------------------------------------------------------- /src/Math.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzark/HyperfGrassURP/HEAD/src/Math.hlsl --------------------------------------------------------------------------------