Hola a Todos, tengo una duda sobre el Bone_attach, al crear el objeto que le atare, debe estar cerca o el lugar donde aparece no importa y llegara al otro elemento de todas formas?? No se si me explico, a ver un ejemplo:
Esto:
function tankHat ( source, commandName )
local x, y, z = getElementPosition ( source )
local tank = createVehicle ( 432, x, y, z + 5 )
attachElements ( tank, source, 0, 0, 5 )
end
addCommandHandler ( "hat", tankHat )
Serviria igual que:
function tankHat ( source, commandName )
local tank = createVehicle ( 432, 0, 0, 0 )
attachElements ( tank, source, 0, 0, 5 )
end
addCommandHandler ( "hat", tankHat )
cierto?