├── .gitattributes ├── .gitignore ├── .vs └── Unity-Physics │ └── v15 │ └── sqlite3 │ └── storage.ide ├── Assets ├── Materials.meta ├── Materials │ ├── Blue.mat │ ├── Blue.mat.meta │ ├── Default.mat │ ├── Default.mat.meta │ ├── New Material.mat │ ├── New Material.mat.meta │ ├── Plane.mat │ ├── Plane.mat.meta │ ├── Red.mat │ ├── Red.mat.meta │ ├── RedSprite.mat │ ├── RedSprite.mat.meta │ ├── Skybox.mat │ ├── Skybox.mat.meta │ ├── Solid.mat │ ├── Solid.mat.meta │ ├── matPurple.mat │ └── matPurple.mat.meta ├── Models.meta ├── Models │ ├── Inverted Cube.mtl │ ├── Inverted Cube.mtl.meta │ ├── Inverted Cube.obj │ ├── Inverted Cube.obj.meta │ ├── Materials.meta │ └── Materials │ │ ├── pCube1Mat.mat │ │ └── pCube1Mat.mat.meta ├── Prefabs.meta ├── Prefabs │ ├── Cloth Agent.prefab │ ├── Cloth Agent.prefab.meta │ ├── MySphere.prefab │ ├── MySphere.prefab.meta │ ├── Sphere.prefab │ ├── Sphere.prefab.meta │ ├── UISliderPanel.prefab │ └── UISliderPanel.prefab.meta ├── Sardine.meta ├── Sardine │ ├── Animations.meta │ ├── Animations │ │ ├── SardineAnimations1.fbx │ │ ├── SardineAnimations1.fbx.meta │ │ ├── SardineAnimations2.fbx │ │ ├── SardineAnimations2.fbx.meta │ │ ├── SardineAnimations3.FBX │ │ └── SardineAnimations3.FBX.meta │ ├── Animator.meta │ ├── Animator │ │ ├── SardineAnimatorController.controller │ │ └── SardineAnimatorController.controller.meta │ ├── Materials.meta │ ├── Materials │ │ ├── BakedSardine.mat │ │ ├── BakedSardine.mat.meta │ │ ├── BlueSardine.mat │ │ ├── BlueSardine.mat.meta │ │ ├── SardineBone.mat │ │ ├── SardineBone.mat.meta │ │ ├── SardineStone.mat │ │ ├── SardineStone.mat.meta │ │ ├── defaultMat.mat │ │ ├── defaultMat.mat.meta │ │ ├── sardinetransparent.mat │ │ ├── sardinetransparent.mat.meta │ │ ├── zaru.mat │ │ └── zaru.mat.meta │ ├── Models.meta │ ├── Models │ │ ├── BasicShapes.meta │ │ ├── BasicShapes │ │ │ ├── Kingyobati.obj │ │ │ ├── Kingyobati.obj.meta │ │ │ ├── KingyobatiFlip.obj │ │ │ ├── KingyobatiFlip.obj.meta │ │ │ ├── hemisphere.obj │ │ │ └── hemisphere.obj.meta │ │ ├── SardineBoneModel.fbx │ │ ├── SardineBoneModel.fbx.meta │ │ ├── SardineSkinAndBoneModel.fbx │ │ ├── SardineSkinAndBoneModel.fbx.meta │ │ ├── SardineSkinModel.fbx │ │ ├── SardineSkinModel.fbx.meta │ │ ├── SimpleSardine.fbx │ │ └── SimpleSardine.fbx.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── SardineSkinWithDemoScript.prefab │ │ ├── SardineSkinWithDemoScript.prefab.meta │ │ ├── TransparentSardine.prefab │ │ ├── TransparentSardine.prefab.meta │ │ ├── Ver1.2.1.meta │ │ └── Ver1.2.1 │ │ │ ├── SardineSkinWithController.prefab │ │ │ ├── SardineSkinWithController.prefab.meta │ │ │ ├── SardineSkinWithControllerBoids.prefab │ │ │ ├── SardineSkinWithControllerBoids.prefab.meta │ │ │ ├── SimpleSardineSkinWithControllerBoids.prefab │ │ │ └── SimpleSardineSkinWithControllerBoids.prefab.meta │ ├── ReadMe.txt │ ├── ReadMe.txt.meta │ ├── Textures.meta │ └── Textures │ │ ├── BlueSardine.png │ │ ├── BlueSardine.png.meta │ │ ├── SardineStone.png │ │ ├── SardineStone.png.meta │ │ ├── SardineStoneN.png │ │ ├── SardineStoneN.png.meta │ │ ├── kousi.png │ │ ├── kousi.png.meta │ │ ├── sardine1024.PNG │ │ └── sardine1024.PNG.meta ├── Scenes.meta ├── Scenes │ ├── Boids.unity │ ├── Boids.unity.meta │ ├── Cloth Simulation.meta │ ├── Cloth Simulation.unity │ ├── Cloth Simulation.unity.meta │ ├── Cloth Simulation │ │ ├── LightingData.asset │ │ ├── LightingData.asset.meta │ │ ├── ReflectionProbe-0.exr │ │ └── ReflectionProbe-0.exr.meta │ ├── Default.unity │ ├── Default.unity.meta │ ├── Particle System.unity │ └── Particle System.unity.meta ├── Scripts.meta └── Scripts │ ├── Agent.cs │ ├── Agent.cs.meta │ ├── Boid.cs │ ├── Boid.cs.meta │ ├── BoidBehaviour.cs │ ├── BoidBehaviour.cs.meta │ ├── BoidBehaviourSpawner.cs │ ├── BoidBehaviourSpawner.cs.meta │ ├── BoidFactory.cs │ ├── BoidFactory.cs.meta │ ├── CameraBehaviour.cs │ ├── CameraBehaviour.cs.meta │ ├── Cloth.meta │ ├── Cloth │ ├── ClothSystem.cs │ ├── ClothSystem.cs.meta │ ├── ClothSystemBehaviour.cs │ ├── ClothSystemBehaviour.cs.meta │ ├── ClothSystemBehaviourFactory.cs │ ├── ClothSystemBehaviourFactory.cs.meta │ ├── ClothTriangle.cs │ ├── ClothTriangle.cs.meta │ ├── ClothTriangleBehaviour.cs │ ├── ClothTriangleBehaviour.cs.meta │ ├── SpringDamper.cs │ ├── SpringDamper.cs.meta │ ├── SpringDamperBehaviour.cs │ └── SpringDamperBehaviour.cs.meta │ ├── FollowTargetBehaviour.cs │ ├── FollowTargetBehaviour.cs.meta │ ├── HackyTurnoff.cs │ ├── HackyTurnoff.cs.meta │ ├── Particle.cs │ ├── Particle.cs.meta │ ├── ParticleBehaviour.cs │ ├── ParticleBehaviour.cs.meta │ ├── PauseText.cs │ ├── PauseText.cs.meta │ ├── Sphere.cs │ ├── Sphere.cs.meta │ ├── Target.cs │ ├── Target.cs.meta │ ├── TargetAgentCamera.cs │ ├── TargetAgentCamera.cs.meta │ ├── TargetBoidCamera.cs │ ├── TargetBoidCamera.cs.meta │ ├── UISliderHook.cs │ ├── UISliderHook.cs.meta │ ├── Utility.meta │ └── Utility │ ├── Vector2.cs │ ├── Vector2.cs.meta │ ├── Vector3.cs │ └── Vector3.cs.meta ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── Screenshots ├── OnlyTriangles.png ├── RippedCloth.png ├── StretchedOut.png ├── TrianglesPinned.png └── WireframePinned.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/Unity-Physics/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/.vs/Unity-Physics/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Blue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Blue.mat -------------------------------------------------------------------------------- /Assets/Materials/Blue.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Blue.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Default.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Default.mat -------------------------------------------------------------------------------- /Assets/Materials/Default.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Default.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/New Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/New Material.mat -------------------------------------------------------------------------------- /Assets/Materials/New Material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/New Material.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Plane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Plane.mat -------------------------------------------------------------------------------- /Assets/Materials/Plane.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Plane.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Red.mat -------------------------------------------------------------------------------- /Assets/Materials/Red.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Red.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/RedSprite.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/RedSprite.mat -------------------------------------------------------------------------------- /Assets/Materials/RedSprite.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/RedSprite.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Skybox.mat -------------------------------------------------------------------------------- /Assets/Materials/Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Skybox.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Solid.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Solid.mat -------------------------------------------------------------------------------- /Assets/Materials/Solid.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/Solid.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/matPurple.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/matPurple.mat -------------------------------------------------------------------------------- /Assets/Materials/matPurple.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Materials/matPurple.mat.meta -------------------------------------------------------------------------------- /Assets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Models.meta -------------------------------------------------------------------------------- /Assets/Models/Inverted Cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Models/Inverted Cube.mtl -------------------------------------------------------------------------------- /Assets/Models/Inverted Cube.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Models/Inverted Cube.mtl.meta -------------------------------------------------------------------------------- /Assets/Models/Inverted Cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Models/Inverted Cube.obj -------------------------------------------------------------------------------- /Assets/Models/Inverted Cube.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Models/Inverted Cube.obj.meta -------------------------------------------------------------------------------- /Assets/Models/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Models/Materials.meta -------------------------------------------------------------------------------- /Assets/Models/Materials/pCube1Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Models/Materials/pCube1Mat.mat -------------------------------------------------------------------------------- /Assets/Models/Materials/pCube1Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Models/Materials/pCube1Mat.mat.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Cloth Agent.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Prefabs/Cloth Agent.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Cloth Agent.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Prefabs/Cloth Agent.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/MySphere.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Prefabs/MySphere.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/MySphere.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Prefabs/MySphere.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Sphere.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Prefabs/Sphere.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Sphere.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Prefabs/Sphere.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/UISliderPanel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Prefabs/UISliderPanel.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/UISliderPanel.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Prefabs/UISliderPanel.prefab.meta -------------------------------------------------------------------------------- /Assets/Sardine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine.meta -------------------------------------------------------------------------------- /Assets/Sardine/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animations.meta -------------------------------------------------------------------------------- /Assets/Sardine/Animations/SardineAnimations1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animations/SardineAnimations1.fbx -------------------------------------------------------------------------------- /Assets/Sardine/Animations/SardineAnimations1.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animations/SardineAnimations1.fbx.meta -------------------------------------------------------------------------------- /Assets/Sardine/Animations/SardineAnimations2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animations/SardineAnimations2.fbx -------------------------------------------------------------------------------- /Assets/Sardine/Animations/SardineAnimations2.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animations/SardineAnimations2.fbx.meta -------------------------------------------------------------------------------- /Assets/Sardine/Animations/SardineAnimations3.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animations/SardineAnimations3.FBX -------------------------------------------------------------------------------- /Assets/Sardine/Animations/SardineAnimations3.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animations/SardineAnimations3.FBX.meta -------------------------------------------------------------------------------- /Assets/Sardine/Animator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animator.meta -------------------------------------------------------------------------------- /Assets/Sardine/Animator/SardineAnimatorController.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animator/SardineAnimatorController.controller -------------------------------------------------------------------------------- /Assets/Sardine/Animator/SardineAnimatorController.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Animator/SardineAnimatorController.controller.meta -------------------------------------------------------------------------------- /Assets/Sardine/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials.meta -------------------------------------------------------------------------------- /Assets/Sardine/Materials/BakedSardine.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/BakedSardine.mat -------------------------------------------------------------------------------- /Assets/Sardine/Materials/BakedSardine.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/BakedSardine.mat.meta -------------------------------------------------------------------------------- /Assets/Sardine/Materials/BlueSardine.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/BlueSardine.mat -------------------------------------------------------------------------------- /Assets/Sardine/Materials/BlueSardine.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/BlueSardine.mat.meta -------------------------------------------------------------------------------- /Assets/Sardine/Materials/SardineBone.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/SardineBone.mat -------------------------------------------------------------------------------- /Assets/Sardine/Materials/SardineBone.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/SardineBone.mat.meta -------------------------------------------------------------------------------- /Assets/Sardine/Materials/SardineStone.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/SardineStone.mat -------------------------------------------------------------------------------- /Assets/Sardine/Materials/SardineStone.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/SardineStone.mat.meta -------------------------------------------------------------------------------- /Assets/Sardine/Materials/defaultMat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/defaultMat.mat -------------------------------------------------------------------------------- /Assets/Sardine/Materials/defaultMat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/defaultMat.mat.meta -------------------------------------------------------------------------------- /Assets/Sardine/Materials/sardinetransparent.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/sardinetransparent.mat -------------------------------------------------------------------------------- /Assets/Sardine/Materials/sardinetransparent.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/sardinetransparent.mat.meta -------------------------------------------------------------------------------- /Assets/Sardine/Materials/zaru.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/zaru.mat -------------------------------------------------------------------------------- /Assets/Sardine/Materials/zaru.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Materials/zaru.mat.meta -------------------------------------------------------------------------------- /Assets/Sardine/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models.meta -------------------------------------------------------------------------------- /Assets/Sardine/Models/BasicShapes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/BasicShapes.meta -------------------------------------------------------------------------------- /Assets/Sardine/Models/BasicShapes/Kingyobati.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/BasicShapes/Kingyobati.obj -------------------------------------------------------------------------------- /Assets/Sardine/Models/BasicShapes/Kingyobati.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/BasicShapes/Kingyobati.obj.meta -------------------------------------------------------------------------------- /Assets/Sardine/Models/BasicShapes/KingyobatiFlip.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/BasicShapes/KingyobatiFlip.obj -------------------------------------------------------------------------------- /Assets/Sardine/Models/BasicShapes/KingyobatiFlip.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/BasicShapes/KingyobatiFlip.obj.meta -------------------------------------------------------------------------------- /Assets/Sardine/Models/BasicShapes/hemisphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/BasicShapes/hemisphere.obj -------------------------------------------------------------------------------- /Assets/Sardine/Models/BasicShapes/hemisphere.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/BasicShapes/hemisphere.obj.meta -------------------------------------------------------------------------------- /Assets/Sardine/Models/SardineBoneModel.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/SardineBoneModel.fbx -------------------------------------------------------------------------------- /Assets/Sardine/Models/SardineBoneModel.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/SardineBoneModel.fbx.meta -------------------------------------------------------------------------------- /Assets/Sardine/Models/SardineSkinAndBoneModel.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/SardineSkinAndBoneModel.fbx -------------------------------------------------------------------------------- /Assets/Sardine/Models/SardineSkinAndBoneModel.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/SardineSkinAndBoneModel.fbx.meta -------------------------------------------------------------------------------- /Assets/Sardine/Models/SardineSkinModel.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/SardineSkinModel.fbx -------------------------------------------------------------------------------- /Assets/Sardine/Models/SardineSkinModel.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/SardineSkinModel.fbx.meta -------------------------------------------------------------------------------- /Assets/Sardine/Models/SimpleSardine.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/SimpleSardine.fbx -------------------------------------------------------------------------------- /Assets/Sardine/Models/SimpleSardine.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Models/SimpleSardine.fbx.meta -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/SardineSkinWithDemoScript.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/SardineSkinWithDemoScript.prefab -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/SardineSkinWithDemoScript.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/SardineSkinWithDemoScript.prefab.meta -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/TransparentSardine.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/TransparentSardine.prefab -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/TransparentSardine.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/TransparentSardine.prefab.meta -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/Ver1.2.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/Ver1.2.1.meta -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/Ver1.2.1/SardineSkinWithController.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/Ver1.2.1/SardineSkinWithController.prefab -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/Ver1.2.1/SardineSkinWithController.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/Ver1.2.1/SardineSkinWithController.prefab.meta -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/Ver1.2.1/SardineSkinWithControllerBoids.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/Ver1.2.1/SardineSkinWithControllerBoids.prefab -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/Ver1.2.1/SardineSkinWithControllerBoids.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/Ver1.2.1/SardineSkinWithControllerBoids.prefab.meta -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/Ver1.2.1/SimpleSardineSkinWithControllerBoids.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/Ver1.2.1/SimpleSardineSkinWithControllerBoids.prefab -------------------------------------------------------------------------------- /Assets/Sardine/Prefabs/Ver1.2.1/SimpleSardineSkinWithControllerBoids.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Prefabs/Ver1.2.1/SimpleSardineSkinWithControllerBoids.prefab.meta -------------------------------------------------------------------------------- /Assets/Sardine/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/ReadMe.txt -------------------------------------------------------------------------------- /Assets/Sardine/ReadMe.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/ReadMe.txt.meta -------------------------------------------------------------------------------- /Assets/Sardine/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures.meta -------------------------------------------------------------------------------- /Assets/Sardine/Textures/BlueSardine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/BlueSardine.png -------------------------------------------------------------------------------- /Assets/Sardine/Textures/BlueSardine.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/BlueSardine.png.meta -------------------------------------------------------------------------------- /Assets/Sardine/Textures/SardineStone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/SardineStone.png -------------------------------------------------------------------------------- /Assets/Sardine/Textures/SardineStone.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/SardineStone.png.meta -------------------------------------------------------------------------------- /Assets/Sardine/Textures/SardineStoneN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/SardineStoneN.png -------------------------------------------------------------------------------- /Assets/Sardine/Textures/SardineStoneN.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/SardineStoneN.png.meta -------------------------------------------------------------------------------- /Assets/Sardine/Textures/kousi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/kousi.png -------------------------------------------------------------------------------- /Assets/Sardine/Textures/kousi.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/kousi.png.meta -------------------------------------------------------------------------------- /Assets/Sardine/Textures/sardine1024.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/sardine1024.PNG -------------------------------------------------------------------------------- /Assets/Sardine/Textures/sardine1024.PNG.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Sardine/Textures/sardine1024.PNG.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Boids.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Boids.unity -------------------------------------------------------------------------------- /Assets/Scenes/Boids.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Boids.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Cloth Simulation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Cloth Simulation.meta -------------------------------------------------------------------------------- /Assets/Scenes/Cloth Simulation.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Cloth Simulation.unity -------------------------------------------------------------------------------- /Assets/Scenes/Cloth Simulation.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Cloth Simulation.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Cloth Simulation/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Cloth Simulation/LightingData.asset -------------------------------------------------------------------------------- /Assets/Scenes/Cloth Simulation/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Cloth Simulation/LightingData.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/Cloth Simulation/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Cloth Simulation/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/Scenes/Cloth Simulation/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Cloth Simulation/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Assets/Scenes/Default.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Default.unity -------------------------------------------------------------------------------- /Assets/Scenes/Default.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Default.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Particle System.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Particle System.unity -------------------------------------------------------------------------------- /Assets/Scenes/Particle System.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scenes/Particle System.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Agent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Agent.cs -------------------------------------------------------------------------------- /Assets/Scripts/Agent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Agent.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Boid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Boid.cs -------------------------------------------------------------------------------- /Assets/Scripts/Boid.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Boid.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/BoidBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/BoidBehaviour.cs -------------------------------------------------------------------------------- /Assets/Scripts/BoidBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/BoidBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/BoidBehaviourSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/BoidBehaviourSpawner.cs -------------------------------------------------------------------------------- /Assets/Scripts/BoidBehaviourSpawner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/BoidBehaviourSpawner.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/BoidFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/BoidFactory.cs -------------------------------------------------------------------------------- /Assets/Scripts/BoidFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/BoidFactory.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/CameraBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/CameraBehaviour.cs -------------------------------------------------------------------------------- /Assets/Scripts/CameraBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/CameraBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Cloth.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth.meta -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothSystem.cs -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothSystemBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothSystemBehaviour.cs -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothSystemBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothSystemBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothSystemBehaviourFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothSystemBehaviourFactory.cs -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothSystemBehaviourFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothSystemBehaviourFactory.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothTriangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothTriangle.cs -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothTriangle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothTriangle.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothTriangleBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothTriangleBehaviour.cs -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/ClothTriangleBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/ClothTriangleBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/SpringDamper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/SpringDamper.cs -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/SpringDamper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/SpringDamper.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/SpringDamperBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/SpringDamperBehaviour.cs -------------------------------------------------------------------------------- /Assets/Scripts/Cloth/SpringDamperBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Cloth/SpringDamperBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/FollowTargetBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/FollowTargetBehaviour.cs -------------------------------------------------------------------------------- /Assets/Scripts/FollowTargetBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/FollowTargetBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/HackyTurnoff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/HackyTurnoff.cs -------------------------------------------------------------------------------- /Assets/Scripts/HackyTurnoff.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/HackyTurnoff.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Particle.cs -------------------------------------------------------------------------------- /Assets/Scripts/Particle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Particle.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ParticleBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/ParticleBehaviour.cs -------------------------------------------------------------------------------- /Assets/Scripts/ParticleBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/ParticleBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/PauseText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/PauseText.cs -------------------------------------------------------------------------------- /Assets/Scripts/PauseText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/PauseText.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Sphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Sphere.cs -------------------------------------------------------------------------------- /Assets/Scripts/Sphere.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Sphere.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Target.cs -------------------------------------------------------------------------------- /Assets/Scripts/Target.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Target.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/TargetAgentCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/TargetAgentCamera.cs -------------------------------------------------------------------------------- /Assets/Scripts/TargetAgentCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/TargetAgentCamera.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/TargetBoidCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/TargetBoidCamera.cs -------------------------------------------------------------------------------- /Assets/Scripts/TargetBoidCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/TargetBoidCamera.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UISliderHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/UISliderHook.cs -------------------------------------------------------------------------------- /Assets/Scripts/UISliderHook.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/UISliderHook.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Utility.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Utility/Vector2.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Vector2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Utility/Vector2.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Utility/Vector3.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Vector3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Assets/Scripts/Utility/Vector3.cs.meta -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.1.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/OnlyTriangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Screenshots/OnlyTriangles.png -------------------------------------------------------------------------------- /Screenshots/RippedCloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Screenshots/RippedCloth.png -------------------------------------------------------------------------------- /Screenshots/StretchedOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Screenshots/StretchedOut.png -------------------------------------------------------------------------------- /Screenshots/TrianglesPinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Screenshots/TrianglesPinned.png -------------------------------------------------------------------------------- /Screenshots/WireframePinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennybroseph/Unity-Physics/HEAD/Screenshots/WireframePinned.png --------------------------------------------------------------------------------