1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
| { "model":{ "carBody":[ { "name":"body1", "dir":"./CustomModel/car1/body1.obj", "position":{"x":0,"y":0,"z":0}, "eulerRotation":{"x":0,"y":0,"z":0}, "scale":{"x":0,"y":0,"z":0}, "shader":"Standard" }, { "name":"body2", "dir":"./CustomModel/car1/body2.obj", "position":{"x":0,"y":0,"z":0}, "eulerRotation":{"x":0,"y":0,"z":0}, "scale":{"x":0,"y":0,"z":0}, "shader":"Standard" } ], "wheel":[ { "name":"wheel1", "dir":"./CustomModel/car1/wheel1.obj", "scale":{"x":0,"y":0,"z":0}, "shader":"Standard" } ] }, "physics":{ "collider":[ { "type":"box", "position":{"x":0,"y":0,"z":0}, "eulerRotation":{"x":0,"y":0,"z":0}, "scale":{"x":0,"y":0,"z":0} }, { "type":"sphere", "position":{"x":0,"y":0,"z":0}, "eulerRotation":{"x":0,"y":0,"z":0}, "scale":{"x":0,"y":0,"z":0} } ], "centerOfMass":{"x":0,"y":0,"z":0}, "bodyMass":700, "wheel":[ { "type":{"powered":true,"steering":{"use":true,"inverse":false}}, "mass":7, "radius":0.5, "position":{"x":0,"y":0,"z":0}, "suspension":{ "spring":25000, "damper":9000, "distance":0.3, "initialPosition":0.5 }, "forwardFriction":{ "extremumSlip":0.1, "extremumValue:":1, "AsymptoteSlip":0.2, "AsymptoteValue":0.8 }, "sidewayFriction":{ "extremumSlip":0.05, "extremumValue:":1, "AsymptoteSlip":0.2, "AsymptoteValue":0.8 } } ] } }
|