├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── Assets ├── Materials.meta ├── Materials │ ├── Green.mat │ ├── Green.mat.meta │ ├── Grey.mat │ ├── Grey.mat.meta │ ├── NotGreen.mat │ └── NotGreen.mat.meta ├── MovementInput.cs ├── MovementInput.cs.meta ├── MovementSettings.cs ├── MovementSettings.cs.meta ├── NetworkManager.cs ├── NetworkManager.cs.meta ├── PlayerController.cs ├── PlayerController.cs.meta ├── PlayerMovement.cs ├── PlayerMovement.cs.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── StandardMovement.asset └── StandardMovement.asset.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Green.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Materials/Green.mat -------------------------------------------------------------------------------- /Assets/Materials/Green.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Materials/Green.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Grey.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Materials/Grey.mat -------------------------------------------------------------------------------- /Assets/Materials/Grey.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Materials/Grey.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/NotGreen.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Materials/NotGreen.mat -------------------------------------------------------------------------------- /Assets/Materials/NotGreen.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Materials/NotGreen.mat.meta -------------------------------------------------------------------------------- /Assets/MovementInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/MovementInput.cs -------------------------------------------------------------------------------- /Assets/MovementInput.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/MovementInput.cs.meta -------------------------------------------------------------------------------- /Assets/MovementSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/MovementSettings.cs -------------------------------------------------------------------------------- /Assets/MovementSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/MovementSettings.cs.meta -------------------------------------------------------------------------------- /Assets/NetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/NetworkManager.cs -------------------------------------------------------------------------------- /Assets/NetworkManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/NetworkManager.cs.meta -------------------------------------------------------------------------------- /Assets/PlayerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/PlayerController.cs -------------------------------------------------------------------------------- /Assets/PlayerController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/PlayerController.cs.meta -------------------------------------------------------------------------------- /Assets/PlayerMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/PlayerMovement.cs -------------------------------------------------------------------------------- /Assets/PlayerMovement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/PlayerMovement.cs.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/StandardMovement.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/StandardMovement.asset -------------------------------------------------------------------------------- /Assets/StandardMovement.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Assets/StandardMovement.asset.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoctorWh012/Client-Side-Prediction-Physics/HEAD/README.md --------------------------------------------------------------------------------