├── .gitignore ├── Assets ├── Fonts.meta ├── Fonts │ ├── DefaultFont.ttf │ ├── DefaultFont.ttf.meta │ ├── LICENSE.txt │ └── LICENSE.txt.meta ├── Materials.meta ├── Materials │ ├── Environment.meta │ ├── Environment │ │ ├── Barrier.mat │ │ ├── Barrier.mat.meta │ │ ├── Concrete.mat │ │ ├── Concrete.mat.meta │ │ ├── Dirt.mat │ │ ├── Dirt.mat.meta │ │ ├── Metal.mat │ │ ├── Metal.mat.meta │ │ ├── Rock.mat │ │ ├── Rock.mat.meta │ │ ├── Skybox.mat │ │ ├── Skybox.mat.meta │ │ ├── Tarmac.mat │ │ ├── Tarmac.mat.meta │ │ ├── TarmacCaution.mat │ │ ├── TarmacCaution.mat.meta │ │ ├── Water.mat │ │ └── Water.mat.meta │ ├── Physics.meta │ ├── Physics │ │ ├── Car.physicMaterial │ │ └── Car.physicMaterial.meta │ ├── Vehicles.meta │ └── Vehicles │ │ ├── BrakeLights.mat │ │ ├── BrakeLights.mat.meta │ │ ├── CarMetal.mat │ │ ├── CarMetal.mat.meta │ │ ├── CarPaint.mat │ │ ├── CarPaint.mat.meta │ │ ├── Chrome.mat │ │ ├── Chrome.mat.meta │ │ ├── Glass.mat │ │ ├── Glass.mat.meta │ │ ├── Hub.mat │ │ ├── Hub.mat.meta │ │ ├── Light.mat │ │ ├── Light.mat.meta │ │ ├── Plastic.mat │ │ ├── Plastic.mat.meta │ │ ├── Tyre.mat │ │ ├── Tyre.mat.meta │ │ ├── VehicleUnderside.mat │ │ └── VehicleUnderside.mat.meta ├── Models.meta ├── Models │ ├── Environment.meta │ ├── Environment │ │ ├── Ramp.fbx │ │ ├── Ramp.fbx.meta │ │ ├── Rock.FBX │ │ ├── Rock.FBX.meta │ │ ├── RocksScatter.FBX │ │ ├── RocksScatter.FBX.meta │ │ ├── RumbleStrips.fbx │ │ ├── RumbleStrips.fbx.meta │ │ ├── SpeedBumps.fbx │ │ ├── SpeedBumps.fbx.meta │ │ ├── Track.fbx │ │ ├── Track.fbx.meta │ │ ├── TrackBarriers.fbx │ │ ├── TrackBarriers.fbx.meta │ │ ├── TrackBarriersCollision.fbx │ │ └── TrackBarriersCollision.fbx.meta │ ├── Vehicles.meta │ └── Vehicles │ │ ├── FamilyCarChassis.fbx │ │ ├── FamilyCarChassis.fbx.meta │ │ ├── FamilyCarCollision.fbx │ │ ├── FamilyCarCollision.fbx.meta │ │ ├── FamilyCarTyre.fbx │ │ ├── FamilyCarTyre.fbx.meta │ │ ├── SportsCarChassis.fbx │ │ ├── SportsCarChassis.fbx.meta │ │ ├── SportsCarCollision.fbx │ │ ├── SportsCarCollision.fbx.meta │ │ ├── SportsCarTyre.fbx │ │ ├── SportsCarTyre.fbx.meta │ │ ├── TruckChassis.FBX │ │ ├── TruckChassis.FBX.meta │ │ ├── TruckCollision.fbx │ │ ├── TruckCollision.fbx.meta │ │ ├── TruckTyre.FBX │ │ └── TruckTyre.FBX.meta ├── Prefabs.meta ├── Prefabs │ ├── Cameras.meta │ ├── Cameras │ │ ├── CamRig.prefab │ │ └── CamRig.prefab.meta │ ├── Environment.meta │ ├── Environment │ │ ├── Ramp.prefab │ │ ├── Ramp.prefab.meta │ │ ├── Rock.prefab │ │ ├── Rock.prefab.meta │ │ ├── RocksScatter.prefab │ │ ├── RocksScatter.prefab.meta │ │ ├── SpeedBumps.prefab │ │ └── SpeedBumps.prefab.meta │ ├── Vehicles.meta │ └── Vehicles │ │ ├── FamilyCar.prefab │ │ ├── FamilyCar.prefab.meta │ │ ├── FamilyCarTyre.prefab │ │ ├── FamilyCarTyre.prefab.meta │ │ ├── SportsCar.prefab │ │ ├── SportsCar.prefab.meta │ │ ├── SportsCarTyre.prefab │ │ ├── SportsCarTyre.prefab.meta │ │ ├── Truck.prefab │ │ ├── Truck.prefab.meta │ │ ├── TruckTyre.prefab │ │ └── TruckTyre.prefab.meta ├── Scenes.meta ├── Scenes │ ├── TestTrack.meta │ ├── TestTrack.unity │ ├── TestTrack.unity.meta │ ├── TestTrack │ │ ├── LightingData.asset │ │ ├── LightingData.asset.meta │ │ ├── ReflectionProbe-0.exr │ │ ├── ReflectionProbe-0.exr.meta │ │ ├── ReflectionProbe-1.exr │ │ ├── ReflectionProbe-1.exr.meta │ │ ├── TestTrackterrain.asset │ │ └── TestTrackterrain.asset.meta │ ├── TestTrack_Profiles.meta │ └── TestTrack_Profiles │ │ ├── Main Camera Profile.asset │ │ └── Main Camera Profile.asset.meta ├── Scripts.meta ├── Scripts │ ├── CarSwitcher.cs │ ├── CarSwitcher.cs.meta │ ├── DriftCamera.cs │ ├── DriftCamera.cs.meta │ ├── EasySuspension.cs │ ├── EasySuspension.cs.meta │ ├── Editor.meta │ ├── Editor │ │ ├── GraphOverlayEditor.cs │ │ ├── GraphOverlayEditor.cs.meta │ │ ├── PackageManagerAssembly.meta │ │ ├── PackageManagerAssembly │ │ │ ├── PackageImportList.txt │ │ │ ├── PackageImportList.txt.meta │ │ │ ├── PackageManagerAssembly.dll │ │ │ └── PackageManagerAssembly.dll.meta │ │ ├── VehicleSkeletonWizard.cs │ │ └── VehicleSkeletonWizard.cs.meta │ ├── GraphOverlay.cs │ ├── GraphOverlay.cs.meta │ ├── WheelDrive.cs │ └── WheelDrive.cs.meta ├── Sprites.meta ├── Sprites │ ├── UnityLogoSprite.tif │ └── UnityLogoSprite.tif.meta ├── VehicleToolsQuickStart.pdf ├── VehicleToolsQuickStart.pdf.meta ├── _TerrainAutoUpgrade.meta ├── _TerrainAutoUpgrade │ ├── layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.000,0.000.terrainlayer │ ├── layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.000,0.000.terrainlayer.meta │ ├── layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.740,0.000.terrainlayer │ ├── layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.740,0.000.terrainlayer.meta │ ├── layer_StoneAlbedoStoneNormal(20.000,20.000)(0.000,0.000)(0.000,0.000,0.000),0.280,0.000.terrainlayer │ └── layer_StoneAlbedoStoneNormal(20.000,20.000)(0.000,0.000)(0.000,0.000,0.000),0.280,0.000.terrainlayer.meta ├── textures.meta └── textures │ ├── Environment.meta │ └── Environment │ ├── CheckerAlbedo.tif │ ├── CheckerAlbedo.tif.meta │ ├── ConcreteAlbedo.tif │ ├── ConcreteAlbedo.tif.meta │ ├── ConcreteNormal.tif │ ├── ConcreteNormal.tif.meta │ ├── ConcreteSpecularGloss.tif │ ├── ConcreteSpecularGloss.tif.meta │ ├── DirtAlbedo.tif │ ├── DirtAlbedo.tif.meta │ ├── DirtNormal.tif │ ├── DirtNormal.tif.meta │ ├── RockAlbedo.tif │ ├── RockAlbedo.tif.meta │ ├── RockNormal.tif │ ├── RockNormal.tif.meta │ ├── RockSpecularGloss.tif │ ├── RockSpecularGloss.tif.meta │ ├── StoneAlbedo.tif │ ├── StoneAlbedo.tif.meta │ ├── StoneNormal.tif │ ├── StoneNormal.tif.meta │ ├── TarmacAlbedo.tif │ ├── TarmacAlbedo.tif.meta │ ├── TarmacCautionAlbedo.tif │ ├── TarmacCautionAlbedo.tif.meta │ ├── TarmacCautionNormal.tif │ ├── TarmacCautionNormal.tif.meta │ ├── TarmacDirtAlbedo.tif │ ├── TarmacDirtAlbedo.tif.meta │ ├── TarmacDirtNormal.tif │ ├── TarmacDirtNormal.tif.meta │ ├── TarmacDirtSpecularGloss.tif │ ├── TarmacDirtSpecularGloss.tif.meta │ ├── TarmacNormal.tif │ ├── TarmacNormal.tif.meta │ ├── TarmacSpecular.tif │ ├── TarmacSpecular.tif.meta │ ├── WaterBump.jpg │ └── WaterBump.jpg.meta ├── Packages ├── manifest.json ├── manifest.json.meta └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NavMeshProjectSettings.asset ├── NetworkManager.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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Fonts.meta -------------------------------------------------------------------------------- /Assets/Fonts/DefaultFont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Fonts/DefaultFont.ttf -------------------------------------------------------------------------------- /Assets/Fonts/DefaultFont.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Fonts/DefaultFont.ttf.meta -------------------------------------------------------------------------------- /Assets/Fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Fonts/LICENSE.txt -------------------------------------------------------------------------------- /Assets/Fonts/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Fonts/LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment/Barrier.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Barrier.mat -------------------------------------------------------------------------------- /Assets/Materials/Environment/Barrier.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Barrier.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment/Concrete.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Concrete.mat -------------------------------------------------------------------------------- /Assets/Materials/Environment/Concrete.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Concrete.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment/Dirt.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Dirt.mat -------------------------------------------------------------------------------- /Assets/Materials/Environment/Dirt.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Dirt.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment/Metal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Metal.mat -------------------------------------------------------------------------------- /Assets/Materials/Environment/Metal.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Metal.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment/Rock.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Rock.mat -------------------------------------------------------------------------------- /Assets/Materials/Environment/Rock.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Rock.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment/Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Skybox.mat -------------------------------------------------------------------------------- /Assets/Materials/Environment/Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Skybox.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment/Tarmac.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Tarmac.mat -------------------------------------------------------------------------------- /Assets/Materials/Environment/Tarmac.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Tarmac.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment/TarmacCaution.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/TarmacCaution.mat -------------------------------------------------------------------------------- /Assets/Materials/Environment/TarmacCaution.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/TarmacCaution.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Environment/Water.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Water.mat -------------------------------------------------------------------------------- /Assets/Materials/Environment/Water.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Environment/Water.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Physics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Physics.meta -------------------------------------------------------------------------------- /Assets/Materials/Physics/Car.physicMaterial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Physics/Car.physicMaterial -------------------------------------------------------------------------------- /Assets/Materials/Physics/Car.physicMaterial.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Physics/Car.physicMaterial.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/BrakeLights.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/BrakeLights.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/BrakeLights.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/BrakeLights.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/CarMetal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/CarMetal.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/CarMetal.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/CarMetal.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/CarPaint.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/CarPaint.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/CarPaint.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/CarPaint.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Chrome.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Chrome.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Chrome.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Chrome.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Glass.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Glass.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Glass.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Glass.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Hub.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Hub.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Hub.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Hub.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Light.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Light.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Light.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Light.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Plastic.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Plastic.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Plastic.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Plastic.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Tyre.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Tyre.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/Tyre.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/Tyre.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/VehicleUnderside.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/VehicleUnderside.mat -------------------------------------------------------------------------------- /Assets/Materials/Vehicles/VehicleUnderside.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Materials/Vehicles/VehicleUnderside.mat.meta -------------------------------------------------------------------------------- /Assets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models.meta -------------------------------------------------------------------------------- /Assets/Models/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment.meta -------------------------------------------------------------------------------- /Assets/Models/Environment/Ramp.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/Ramp.fbx -------------------------------------------------------------------------------- /Assets/Models/Environment/Ramp.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/Ramp.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Environment/Rock.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/Rock.FBX -------------------------------------------------------------------------------- /Assets/Models/Environment/Rock.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/Rock.FBX.meta -------------------------------------------------------------------------------- /Assets/Models/Environment/RocksScatter.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/RocksScatter.FBX -------------------------------------------------------------------------------- /Assets/Models/Environment/RocksScatter.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/RocksScatter.FBX.meta -------------------------------------------------------------------------------- /Assets/Models/Environment/RumbleStrips.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/RumbleStrips.fbx -------------------------------------------------------------------------------- /Assets/Models/Environment/RumbleStrips.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/RumbleStrips.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Environment/SpeedBumps.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/SpeedBumps.fbx -------------------------------------------------------------------------------- /Assets/Models/Environment/SpeedBumps.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/SpeedBumps.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Environment/Track.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/Track.fbx -------------------------------------------------------------------------------- /Assets/Models/Environment/Track.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/Track.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Environment/TrackBarriers.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/TrackBarriers.fbx -------------------------------------------------------------------------------- /Assets/Models/Environment/TrackBarriers.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/TrackBarriers.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Environment/TrackBarriersCollision.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/TrackBarriersCollision.fbx -------------------------------------------------------------------------------- /Assets/Models/Environment/TrackBarriersCollision.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Environment/TrackBarriersCollision.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles/FamilyCarChassis.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/FamilyCarChassis.fbx -------------------------------------------------------------------------------- /Assets/Models/Vehicles/FamilyCarChassis.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/FamilyCarChassis.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles/FamilyCarCollision.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/FamilyCarCollision.fbx -------------------------------------------------------------------------------- /Assets/Models/Vehicles/FamilyCarCollision.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/FamilyCarCollision.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles/FamilyCarTyre.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/FamilyCarTyre.fbx -------------------------------------------------------------------------------- /Assets/Models/Vehicles/FamilyCarTyre.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/FamilyCarTyre.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles/SportsCarChassis.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/SportsCarChassis.fbx -------------------------------------------------------------------------------- /Assets/Models/Vehicles/SportsCarChassis.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/SportsCarChassis.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles/SportsCarCollision.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/SportsCarCollision.fbx -------------------------------------------------------------------------------- /Assets/Models/Vehicles/SportsCarCollision.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/SportsCarCollision.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles/SportsCarTyre.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/SportsCarTyre.fbx -------------------------------------------------------------------------------- /Assets/Models/Vehicles/SportsCarTyre.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/SportsCarTyre.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles/TruckChassis.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/TruckChassis.FBX -------------------------------------------------------------------------------- /Assets/Models/Vehicles/TruckChassis.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/TruckChassis.FBX.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles/TruckCollision.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/TruckCollision.fbx -------------------------------------------------------------------------------- /Assets/Models/Vehicles/TruckCollision.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/TruckCollision.fbx.meta -------------------------------------------------------------------------------- /Assets/Models/Vehicles/TruckTyre.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/TruckTyre.FBX -------------------------------------------------------------------------------- /Assets/Models/Vehicles/TruckTyre.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Models/Vehicles/TruckTyre.FBX.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Cameras.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Cameras.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Cameras/CamRig.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Cameras/CamRig.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Cameras/CamRig.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Cameras/CamRig.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Environment.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/Ramp.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Environment/Ramp.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/Ramp.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Environment/Ramp.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/Rock.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Environment/Rock.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/Rock.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Environment/Rock.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/RocksScatter.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Environment/RocksScatter.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/RocksScatter.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Environment/RocksScatter.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/SpeedBumps.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Environment/SpeedBumps.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/SpeedBumps.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Environment/SpeedBumps.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/FamilyCar.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/FamilyCar.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/FamilyCar.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/FamilyCar.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/FamilyCarTyre.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/FamilyCarTyre.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/FamilyCarTyre.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/FamilyCarTyre.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/SportsCar.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/SportsCar.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/SportsCar.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/SportsCar.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/SportsCarTyre.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/SportsCarTyre.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/SportsCarTyre.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/SportsCarTyre.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/Truck.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/Truck.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/Truck.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/Truck.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/TruckTyre.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/TruckTyre.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Vehicles/TruckTyre.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Prefabs/Vehicles/TruckTyre.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack.unity -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack/LightingData.asset -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack/LightingData.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack/ReflectionProbe-1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack/ReflectionProbe-1.exr -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack/ReflectionProbe-1.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack/ReflectionProbe-1.exr.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack/TestTrackterrain.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack/TestTrackterrain.asset -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack/TestTrackterrain.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack/TestTrackterrain.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack_Profiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack_Profiles.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack_Profiles/Main Camera Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack_Profiles/Main Camera Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/TestTrack_Profiles/Main Camera Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scenes/TestTrack_Profiles/Main Camera Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/CarSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/CarSwitcher.cs -------------------------------------------------------------------------------- /Assets/Scripts/CarSwitcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/CarSwitcher.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/DriftCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/DriftCamera.cs -------------------------------------------------------------------------------- /Assets/Scripts/DriftCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/DriftCamera.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/EasySuspension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/EasySuspension.cs -------------------------------------------------------------------------------- /Assets/Scripts/EasySuspension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/EasySuspension.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/GraphOverlayEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/Editor/GraphOverlayEditor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/GraphOverlayEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/Editor/GraphOverlayEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/PackageManagerAssembly.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/Editor/PackageManagerAssembly.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/PackageManagerAssembly/PackageImportList.txt: -------------------------------------------------------------------------------- 1 | com.unity.postprocessing@2.0.3-preview 2 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/PackageManagerAssembly/PackageImportList.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/Editor/PackageManagerAssembly/PackageImportList.txt.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/PackageManagerAssembly/PackageManagerAssembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/Editor/PackageManagerAssembly/PackageManagerAssembly.dll -------------------------------------------------------------------------------- /Assets/Scripts/Editor/PackageManagerAssembly/PackageManagerAssembly.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/Editor/PackageManagerAssembly/PackageManagerAssembly.dll.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/VehicleSkeletonWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/Editor/VehicleSkeletonWizard.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/VehicleSkeletonWizard.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/Editor/VehicleSkeletonWizard.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/GraphOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/GraphOverlay.cs -------------------------------------------------------------------------------- /Assets/Scripts/GraphOverlay.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/GraphOverlay.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/WheelDrive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/WheelDrive.cs -------------------------------------------------------------------------------- /Assets/Scripts/WheelDrive.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Scripts/WheelDrive.cs.meta -------------------------------------------------------------------------------- /Assets/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Sprites.meta -------------------------------------------------------------------------------- /Assets/Sprites/UnityLogoSprite.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Sprites/UnityLogoSprite.tif -------------------------------------------------------------------------------- /Assets/Sprites/UnityLogoSprite.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/Sprites/UnityLogoSprite.tif.meta -------------------------------------------------------------------------------- /Assets/VehicleToolsQuickStart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/VehicleToolsQuickStart.pdf -------------------------------------------------------------------------------- /Assets/VehicleToolsQuickStart.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/VehicleToolsQuickStart.pdf.meta -------------------------------------------------------------------------------- /Assets/_TerrainAutoUpgrade.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/_TerrainAutoUpgrade.meta -------------------------------------------------------------------------------- /Assets/_TerrainAutoUpgrade/layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.000,0.000.terrainlayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/_TerrainAutoUpgrade/layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.000,0.000.terrainlayer -------------------------------------------------------------------------------- /Assets/_TerrainAutoUpgrade/layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.000,0.000.terrainlayer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/_TerrainAutoUpgrade/layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.000,0.000.terrainlayer.meta -------------------------------------------------------------------------------- /Assets/_TerrainAutoUpgrade/layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.740,0.000.terrainlayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/_TerrainAutoUpgrade/layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.740,0.000.terrainlayer -------------------------------------------------------------------------------- /Assets/_TerrainAutoUpgrade/layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.740,0.000.terrainlayer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/_TerrainAutoUpgrade/layer_DirtAlbedoDirtNormal(15.000,15.000)(0.000,0.000)(0.000,0.000,0.000),0.740,0.000.terrainlayer.meta -------------------------------------------------------------------------------- /Assets/_TerrainAutoUpgrade/layer_StoneAlbedoStoneNormal(20.000,20.000)(0.000,0.000)(0.000,0.000,0.000),0.280,0.000.terrainlayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/_TerrainAutoUpgrade/layer_StoneAlbedoStoneNormal(20.000,20.000)(0.000,0.000)(0.000,0.000,0.000),0.280,0.000.terrainlayer -------------------------------------------------------------------------------- /Assets/_TerrainAutoUpgrade/layer_StoneAlbedoStoneNormal(20.000,20.000)(0.000,0.000)(0.000,0.000,0.000),0.280,0.000.terrainlayer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/_TerrainAutoUpgrade/layer_StoneAlbedoStoneNormal(20.000,20.000)(0.000,0.000)(0.000,0.000,0.000),0.280,0.000.terrainlayer.meta -------------------------------------------------------------------------------- /Assets/textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures.meta -------------------------------------------------------------------------------- /Assets/textures/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/CheckerAlbedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/CheckerAlbedo.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/CheckerAlbedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/CheckerAlbedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/ConcreteAlbedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/ConcreteAlbedo.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/ConcreteAlbedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/ConcreteAlbedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/ConcreteNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/ConcreteNormal.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/ConcreteNormal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/ConcreteNormal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/ConcreteSpecularGloss.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/ConcreteSpecularGloss.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/ConcreteSpecularGloss.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/ConcreteSpecularGloss.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/DirtAlbedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/DirtAlbedo.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/DirtAlbedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/DirtAlbedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/DirtNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/DirtNormal.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/DirtNormal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/DirtNormal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/RockAlbedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/RockAlbedo.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/RockAlbedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/RockAlbedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/RockNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/RockNormal.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/RockNormal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/RockNormal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/RockSpecularGloss.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/RockSpecularGloss.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/RockSpecularGloss.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/RockSpecularGloss.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/StoneAlbedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/StoneAlbedo.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/StoneAlbedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/StoneAlbedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/StoneNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/StoneNormal.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/StoneNormal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/StoneNormal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacAlbedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacAlbedo.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacAlbedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacAlbedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacCautionAlbedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacCautionAlbedo.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacCautionAlbedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacCautionAlbedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacCautionNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacCautionNormal.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacCautionNormal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacCautionNormal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacDirtAlbedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacDirtAlbedo.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacDirtAlbedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacDirtAlbedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacDirtNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacDirtNormal.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacDirtNormal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacDirtNormal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacDirtSpecularGloss.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacDirtSpecularGloss.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacDirtSpecularGloss.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacDirtSpecularGloss.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacNormal.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacNormal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacNormal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacSpecular.tif -------------------------------------------------------------------------------- /Assets/textures/Environment/TarmacSpecular.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/TarmacSpecular.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Environment/WaterBump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/WaterBump.jpg -------------------------------------------------------------------------------- /Assets/textures/Environment/WaterBump.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Assets/textures/Environment/WaterBump.jpg.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/manifest.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Packages/manifest.json.meta -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/NavMeshProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/VehicleTools/HEAD/Readme.md --------------------------------------------------------------------------------