├── .gitignore ├── Code.meta ├── Code ├── Editor.meta ├── Editor │ ├── Components.meta │ ├── Components │ │ ├── PiranhaTargetEditor.cs │ │ └── PiranhaTargetEditor.cs.meta │ ├── PiranhaEditor.asmdef │ └── PiranhaEditor.asmdef.meta ├── Runtime.meta └── Runtime │ ├── Components.meta │ ├── Components │ ├── PiranhaTarget.cs │ └── PiranhaTarget.cs.meta │ ├── Piranha.asmdef │ └── Piranha.asmdef.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── Samples.meta └── Samples ├── DragRigidbody.cs ├── DragRigidbody.cs.meta ├── Example.unity ├── Example.unity.meta ├── Materials.meta ├── Materials ├── Floor.mat ├── Floor.mat.meta ├── Piranha1.mat ├── Piranha1.mat.meta ├── Piranha2.mat ├── Piranha2.mat.meta ├── Target1.mat ├── Target1.mat.meta ├── Target2.mat ├── Target2.mat.meta ├── Wall.mat ├── Wall.mat.meta ├── Water.mat └── Water.mat.meta ├── Prefabs.meta └── Prefabs ├── Piranha.prefab └── Piranha.prefab.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/.gitignore -------------------------------------------------------------------------------- /Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code.meta -------------------------------------------------------------------------------- /Code/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Editor.meta -------------------------------------------------------------------------------- /Code/Editor/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Editor/Components.meta -------------------------------------------------------------------------------- /Code/Editor/Components/PiranhaTargetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Editor/Components/PiranhaTargetEditor.cs -------------------------------------------------------------------------------- /Code/Editor/Components/PiranhaTargetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Editor/Components/PiranhaTargetEditor.cs.meta -------------------------------------------------------------------------------- /Code/Editor/PiranhaEditor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Editor/PiranhaEditor.asmdef -------------------------------------------------------------------------------- /Code/Editor/PiranhaEditor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Editor/PiranhaEditor.asmdef.meta -------------------------------------------------------------------------------- /Code/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Runtime.meta -------------------------------------------------------------------------------- /Code/Runtime/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Runtime/Components.meta -------------------------------------------------------------------------------- /Code/Runtime/Components/PiranhaTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Runtime/Components/PiranhaTarget.cs -------------------------------------------------------------------------------- /Code/Runtime/Components/PiranhaTarget.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Runtime/Components/PiranhaTarget.cs.meta -------------------------------------------------------------------------------- /Code/Runtime/Piranha.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Runtime/Piranha.asmdef -------------------------------------------------------------------------------- /Code/Runtime/Piranha.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Code/Runtime/Piranha.asmdef.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/README.md.meta -------------------------------------------------------------------------------- /Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples.meta -------------------------------------------------------------------------------- /Samples/DragRigidbody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/DragRigidbody.cs -------------------------------------------------------------------------------- /Samples/DragRigidbody.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/DragRigidbody.cs.meta -------------------------------------------------------------------------------- /Samples/Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Example.unity -------------------------------------------------------------------------------- /Samples/Example.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Example.unity.meta -------------------------------------------------------------------------------- /Samples/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials.meta -------------------------------------------------------------------------------- /Samples/Materials/Floor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Floor.mat -------------------------------------------------------------------------------- /Samples/Materials/Floor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Floor.mat.meta -------------------------------------------------------------------------------- /Samples/Materials/Piranha1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Piranha1.mat -------------------------------------------------------------------------------- /Samples/Materials/Piranha1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Piranha1.mat.meta -------------------------------------------------------------------------------- /Samples/Materials/Piranha2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Piranha2.mat -------------------------------------------------------------------------------- /Samples/Materials/Piranha2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Piranha2.mat.meta -------------------------------------------------------------------------------- /Samples/Materials/Target1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Target1.mat -------------------------------------------------------------------------------- /Samples/Materials/Target1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Target1.mat.meta -------------------------------------------------------------------------------- /Samples/Materials/Target2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Target2.mat -------------------------------------------------------------------------------- /Samples/Materials/Target2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Target2.mat.meta -------------------------------------------------------------------------------- /Samples/Materials/Wall.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Wall.mat -------------------------------------------------------------------------------- /Samples/Materials/Wall.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Wall.mat.meta -------------------------------------------------------------------------------- /Samples/Materials/Water.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Water.mat -------------------------------------------------------------------------------- /Samples/Materials/Water.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Materials/Water.mat.meta -------------------------------------------------------------------------------- /Samples/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Prefabs.meta -------------------------------------------------------------------------------- /Samples/Prefabs/Piranha.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Prefabs/Piranha.prefab -------------------------------------------------------------------------------- /Samples/Prefabs/Piranha.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenanwoodall/Piranha/HEAD/Samples/Prefabs/Piranha.prefab.meta --------------------------------------------------------------------------------