fixed vehicle bones

This commit is contained in:
Alexsandro Percy 2025-02-16 10:40:44 -03:00
parent 5a91b85460
commit 28818bca77
2 changed files with 2 additions and 2 deletions

View File

@ -259,9 +259,9 @@ minetest.register_entity("automobiles_motorcycle:motorcycle", {
if is_attached == false then
self._stopped_roll = math.rad(-12)
self.object:set_bone_position("descanso", {x=0, y=-2.55, z=5.9}, {x=180-90, y=180, z=0})
self.object:set_bone_position("descanso", {x=0, y=-2.55, z=5.9}, {x=-90, y=0, z=0})
else
self.object:set_bone_position("descanso", {x=0, y=-2.55, z=5.9}, {x=0, y=180, z=0})
self.object:set_bone_position("descanso", {x=0, y=-2.55, z=5.9}, {x=0, y=0, z=0})
end
end,