├── .gitattributes ├── Assets ├── Scenes.meta └── Scenes │ ├── 6089b642c0a5b0a4f7b22aae0d60b8bb 1.jpg │ ├── 6089b642c0a5b0a4f7b22aae0d60b8bb 1.jpg.meta │ ├── 6089b642c0a5b0a4f7b22aae0d60b8bb.jpg │ ├── 6089b642c0a5b0a4f7b22aae0d60b8bb.jpg.meta │ ├── Mesh.unity │ ├── Mesh.unity.meta │ ├── SampleScene.unity │ ├── SampleScene.unity.meta │ ├── circle.shader │ ├── circle.shader.meta │ ├── meshScript.cs │ ├── meshScript.cs.meta │ ├── rope.cs │ ├── rope.cs.meta │ ├── rope.mat │ ├── rope.mat.meta │ ├── rope.shader │ ├── rope.shader.meta │ ├── ropeCircle.mat │ ├── ropeCircle.mat.meta │ ├── ropeEnd.cs │ └── ropeEnd.cs.meta └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/.gitattributes -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/6089b642c0a5b0a4f7b22aae0d60b8bb 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/6089b642c0a5b0a4f7b22aae0d60b8bb 1.jpg -------------------------------------------------------------------------------- /Assets/Scenes/6089b642c0a5b0a4f7b22aae0d60b8bb 1.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/6089b642c0a5b0a4f7b22aae0d60b8bb 1.jpg.meta -------------------------------------------------------------------------------- /Assets/Scenes/6089b642c0a5b0a4f7b22aae0d60b8bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/6089b642c0a5b0a4f7b22aae0d60b8bb.jpg -------------------------------------------------------------------------------- /Assets/Scenes/6089b642c0a5b0a4f7b22aae0d60b8bb.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/6089b642c0a5b0a4f7b22aae0d60b8bb.jpg.meta -------------------------------------------------------------------------------- /Assets/Scenes/Mesh.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/Mesh.unity -------------------------------------------------------------------------------- /Assets/Scenes/Mesh.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/Mesh.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/circle.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/circle.shader -------------------------------------------------------------------------------- /Assets/Scenes/circle.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/circle.shader.meta -------------------------------------------------------------------------------- /Assets/Scenes/meshScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/meshScript.cs -------------------------------------------------------------------------------- /Assets/Scenes/meshScript.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/meshScript.cs.meta -------------------------------------------------------------------------------- /Assets/Scenes/rope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/rope.cs -------------------------------------------------------------------------------- /Assets/Scenes/rope.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/rope.cs.meta -------------------------------------------------------------------------------- /Assets/Scenes/rope.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/rope.mat -------------------------------------------------------------------------------- /Assets/Scenes/rope.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/rope.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/rope.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/rope.shader -------------------------------------------------------------------------------- /Assets/Scenes/rope.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/rope.shader.meta -------------------------------------------------------------------------------- /Assets/Scenes/ropeCircle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/ropeCircle.mat -------------------------------------------------------------------------------- /Assets/Scenes/ropeCircle.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/ropeCircle.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes/ropeEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/ropeEnd.cs -------------------------------------------------------------------------------- /Assets/Scenes/ropeEnd.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/Assets/Scenes/ropeEnd.cs.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yellowjump/unity_mesh_rope/HEAD/README.md --------------------------------------------------------------------------------