So i'm working on a mod. And i want it to use those 5 lugs/ 6 lugs wheels. What do i need to add in the vehicle's jbeam?
You can see it in any of the stock vehicle's suspension jbeams (front or rear) either as it's own part, or as part of the suspension itself. Code: "coupe_hub_F_5": { "information":{ "authors":"BeamNG", "name":"5-Lug Front Wheel Hubs", "value":100, }, "slotType" : "coupe_hub_F", "slots": [ ["type", "default", "description"] ["coupe_brake_F","coupe_brake_F", "Front Brakes"], ["wheel_F_5","steelwheel_01a_15x7_F","Front Wheels"{"nodeOffset":{"x":"$trackwidth_F", "y":-1.245, "z":0.35}}], ], }, Basically you give the vehicle a slot named "wheel_x_y" where "x" is the position of the wheel (front or rear) and where "y" is the number of lugs the wheel uses (is usually five) some examples: wheel_F_5 (5-Lug front wheels) wheel_R_3 (3-Lug rear wheels) wheel_R_6 (6-Lug rear wheels) once you have the slot, you need to add a "nodeOffset" to the slot to position the wheel where it should be on the vehicle (since wheels tent to be spawned by default in the center of the vehicle. See the code example above)