├── .gitattributes ├── .gitignore ├── Assets ├── Aircraft Physics.meta └── Aircraft Physics │ ├── Core.meta │ ├── Core │ ├── Config.meta │ ├── Config │ │ ├── AircraftPhysicsDisplaySettings.asset │ │ └── AircraftPhysicsDisplaySettings.asset.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── AeroSurface.cs │ │ ├── AeroSurface.cs.meta │ │ ├── AeroSurfaceConfig.cs │ │ ├── AeroSurfaceConfig.cs.meta │ │ ├── AircraftPhysics.cs │ │ ├── AircraftPhysics.cs.meta │ │ ├── BiVector3.cs │ │ ├── BiVector3.cs.meta │ │ ├── Editor.meta │ │ └── Editor │ │ ├── AeroSurfaceConfigDrawer.cs │ │ ├── AeroSurfaceConfigDrawer.cs.meta │ │ ├── AeroSurfaceConfigEditor.cs │ │ ├── AeroSurfaceConfigEditor.cs.meta │ │ ├── AeroSurfaceEditor.cs │ │ ├── AeroSurfaceEditor.cs.meta │ │ ├── AircraftGizmos.cs │ │ ├── AircraftGizmos.cs.meta │ │ ├── AircraftPhysicsDisplaySettings.cs │ │ └── AircraftPhysicsDisplaySettings.cs.meta │ ├── Example.meta │ └── Example │ ├── Asset Store Stuff.meta │ ├── Asset Store Stuff │ ├── Gridbox Prototype Materials.meta │ └── Gridbox Prototype Materials │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── Prototype Grid.meta │ │ └── Prototype Grid │ │ │ ├── Prototype_512x512_Blue1.mat │ │ │ ├── Prototype_512x512_Blue1.mat.meta │ │ │ ├── Prototype_512x512_Blue2.mat │ │ │ ├── Prototype_512x512_Blue2.mat.meta │ │ │ ├── Prototype_512x512_Blue3.mat │ │ │ ├── Prototype_512x512_Blue3.mat.meta │ │ │ ├── Prototype_512x512_Brown.mat │ │ │ ├── Prototype_512x512_Brown.mat.meta │ │ │ ├── Prototype_512x512_Cyan.mat │ │ │ ├── Prototype_512x512_Cyan.mat.meta │ │ │ ├── Prototype_512x512_Green1.mat │ │ │ ├── Prototype_512x512_Green1.mat.meta │ │ │ ├── Prototype_512x512_Green2.mat │ │ │ ├── Prototype_512x512_Green2.mat.meta │ │ │ ├── Prototype_512x512_Grey1.mat │ │ │ ├── Prototype_512x512_Grey1.mat.meta │ │ │ ├── Prototype_512x512_Grey2.mat │ │ │ ├── Prototype_512x512_Grey2.mat.meta │ │ │ ├── Prototype_512x512_Grey3.mat │ │ │ ├── Prototype_512x512_Grey3.mat.meta │ │ │ ├── Prototype_512x512_Grey4.mat │ │ │ ├── Prototype_512x512_Grey4.mat.meta │ │ │ ├── Prototype_512x512_Orange.mat │ │ │ ├── Prototype_512x512_Orange.mat.meta │ │ │ ├── Prototype_512x512_Purple.mat │ │ │ ├── Prototype_512x512_Purple.mat.meta │ │ │ ├── Prototype_512x512_Red.mat │ │ │ ├── Prototype_512x512_Red.mat.meta │ │ │ ├── Prototype_512x512_White.mat │ │ │ ├── Prototype_512x512_White.mat.meta │ │ │ ├── Prototype_512x512_Yellow.mat │ │ │ └── Prototype_512x512_Yellow.mat.meta │ │ ├── Textures.meta │ │ └── Textures │ │ ├── Prototype Grid.meta │ │ └── Prototype Grid │ │ ├── prototype_512x512_blue1.png │ │ ├── prototype_512x512_blue1.png.meta │ │ ├── prototype_512x512_blue2.png │ │ ├── prototype_512x512_blue2.png.meta │ │ ├── prototype_512x512_blue3.png │ │ ├── prototype_512x512_blue3.png.meta │ │ ├── prototype_512x512_brown.png │ │ ├── prototype_512x512_brown.png.meta │ │ ├── prototype_512x512_cyan.png │ │ ├── prototype_512x512_cyan.png.meta │ │ ├── prototype_512x512_green1.png │ │ ├── prototype_512x512_green1.png.meta │ │ ├── prototype_512x512_green2.png │ │ ├── prototype_512x512_green2.png.meta │ │ ├── prototype_512x512_grey1.png │ │ ├── prototype_512x512_grey1.png.meta │ │ ├── prototype_512x512_grey2.png │ │ ├── prototype_512x512_grey2.png.meta │ │ ├── prototype_512x512_grey3.png │ │ ├── prototype_512x512_grey3.png.meta │ │ ├── prototype_512x512_grey4.png │ │ ├── prototype_512x512_grey4.png.meta │ │ ├── prototype_512x512_orange.png │ │ ├── prototype_512x512_orange.png.meta │ │ ├── prototype_512x512_purple.png │ │ ├── prototype_512x512_purple.png.meta │ │ ├── prototype_512x512_red.png │ │ ├── prototype_512x512_red.png.meta │ │ ├── prototype_512x512_white.png │ │ ├── prototype_512x512_white.png.meta │ │ ├── prototype_512x512_yellow.png │ │ └── prototype_512x512_yellow.png.meta │ ├── Cessna172.fbx │ ├── Cessna172.fbx.meta │ ├── Materials.meta │ ├── Materials │ ├── Floor.mat │ └── Floor.mat.meta │ ├── Scenes.meta │ ├── Scenes │ ├── Cessna 172.meta │ ├── Cessna 172.unity │ ├── Cessna 172.unity.meta │ └── Cessna 172 │ │ ├── LightingData.asset │ │ ├── LightingData.asset.meta │ │ ├── ReflectionProbe-0.exr │ │ └── ReflectionProbe-0.exr.meta │ ├── Scripts.meta │ ├── Scripts │ ├── AirplaneController.cs │ └── AirplaneController.cs.meta │ ├── Slippery.physicMaterial │ ├── Slippery.physicMaterial.meta │ ├── SurfaceConfigs.meta │ └── SurfaceConfigs │ ├── Body0.asset │ ├── Body0.asset.meta │ ├── Body1.asset │ ├── Body1.asset.meta │ ├── Stabilizer_H.asset │ ├── Stabilizer_H.asset.meta │ ├── Stabilizer_V.asset │ ├── Stabilizer_V.asset.meta │ ├── Wing0.asset │ ├── Wing0.asset.meta │ ├── Wing1.asset │ └── Wing1.asset.meta ├── Images ├── Thumbnail.png ├── aerosurface_inspector.png ├── aerosurfaces_gizmos.png └── display_settings.png ├── 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 └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Aircraft Physics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Config.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Config/AircraftPhysicsDisplaySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Config/AircraftPhysicsDisplaySettings.asset -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Config/AircraftPhysicsDisplaySettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Config/AircraftPhysicsDisplaySettings.asset.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/AeroSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/AeroSurface.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/AeroSurface.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/AeroSurface.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/AeroSurfaceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/AeroSurfaceConfig.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/AeroSurfaceConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/AeroSurfaceConfig.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/AircraftPhysics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/AircraftPhysics.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/AircraftPhysics.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/AircraftPhysics.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/BiVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/BiVector3.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/BiVector3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/BiVector3.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceConfigDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceConfigDrawer.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceConfigDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceConfigDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceConfigEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceConfigEditor.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceConfigEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceConfigEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceEditor.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AeroSurfaceEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AircraftGizmos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AircraftGizmos.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AircraftGizmos.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AircraftGizmos.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AircraftPhysicsDisplaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AircraftPhysicsDisplaySettings.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Core/Scripts/Editor/AircraftPhysicsDisplaySettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Core/Scripts/Editor/AircraftPhysicsDisplaySettings.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue1.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue1.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue2.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue2.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue3.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue3.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Blue3.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Brown.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Brown.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Brown.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Brown.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Cyan.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Cyan.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Cyan.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Cyan.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Green1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Green1.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Green1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Green1.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Green2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Green2.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Green2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Green2.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey1.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey1.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey2.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey2.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey3.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey3.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey3.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey4.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey4.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Grey4.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Orange.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Orange.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Orange.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Orange.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Purple.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Purple.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Purple.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Purple.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Red.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Red.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Red.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_White.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_White.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_White.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_White.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Yellow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Yellow.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Yellow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Materials/Prototype Grid/Prototype_512x512_Yellow.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue1.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue1.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue2.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue2.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue3.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_blue3.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_brown.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_brown.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_brown.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_cyan.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_cyan.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_cyan.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_green1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_green1.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_green1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_green1.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_green2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_green2.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_green2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_green2.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey1.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey1.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey2.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey2.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey3.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey3.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey4.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey4.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_grey4.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_orange.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_orange.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_orange.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_purple.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_purple.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_purple.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_red.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_red.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_red.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_white.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_white.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_white.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_yellow.png -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_yellow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Asset Store Stuff/Gridbox Prototype Materials/Textures/Prototype Grid/prototype_512x512_yellow.png.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Cessna172.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Cessna172.fbx -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Cessna172.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Cessna172.fbx.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Materials.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Materials/Floor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Materials/Floor.mat -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Materials/Floor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Materials/Floor.mat.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scenes.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scenes/Cessna 172.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scenes/Cessna 172.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scenes/Cessna 172.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scenes/Cessna 172.unity -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scenes/Cessna 172.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scenes/Cessna 172.unity.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scenes/Cessna 172/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scenes/Cessna 172/LightingData.asset -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scenes/Cessna 172/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scenes/Cessna 172/LightingData.asset.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scenes/Cessna 172/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scenes/Cessna 172/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scenes/Cessna 172/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scenes/Cessna 172/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scripts.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scripts/AirplaneController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scripts/AirplaneController.cs -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Scripts/AirplaneController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Scripts/AirplaneController.cs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Slippery.physicMaterial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Slippery.physicMaterial -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/Slippery.physicMaterial.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/Slippery.physicMaterial.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Body0.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Body0.asset -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Body0.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Body0.asset.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Body1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Body1.asset -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Body1.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Body1.asset.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Stabilizer_H.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Stabilizer_H.asset -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Stabilizer_H.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Stabilizer_H.asset.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Stabilizer_V.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Stabilizer_V.asset -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Stabilizer_V.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Stabilizer_V.asset.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Wing0.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Wing0.asset -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Wing0.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Wing0.asset.meta -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Wing1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Wing1.asset -------------------------------------------------------------------------------- /Assets/Aircraft Physics/Example/SurfaceConfigs/Wing1.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Assets/Aircraft Physics/Example/SurfaceConfigs/Wing1.asset.meta -------------------------------------------------------------------------------- /Images/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Images/Thumbnail.png -------------------------------------------------------------------------------- /Images/aerosurface_inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Images/aerosurface_inspector.png -------------------------------------------------------------------------------- /Images/aerosurfaces_gizmos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Images/aerosurfaces_gizmos.png -------------------------------------------------------------------------------- /Images/display_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Images/display_settings.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasgiant/Aircraft-Physics/HEAD/README.md --------------------------------------------------------------------------------