Skip to main content

AttachObjectToVehicle

คำอธิบาย

Attach an object to a vehicle.

NameDescription
objectidThe ID of the object to attach to the vehicle. Note that this is an object ID, not a model ID. The object must be CreateObject created first.
vehicleidThe ID of the vehicle to attach the object to.
Float:OffsetXThe X axis offset from the vehicle to attach the object to.
Float:OffsetYThe Y axis offset from the vehicle to attach the object to.
Float:OffsetZThe Z axis offset from the vehicle to attach the object to.
Float:RotXThe X rotation offset for the object.
Float:RotYThe Y rotation offset for the object.
Float:RotZThe Z rotation offset for the object.

ส่งคืน

This function does not return any specific values.

ตัวอย่าง

new objectid = CreateObject(...);
new vehicleid = GetPlayerVehicleID(playerid);
AttachObjectToVehicle(objectid, vehicleid, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0);

บันทึก

tip

The object must be created first.

warning

When the vehicle is destroyed or respawned, the attached objects won't be destroyed with it; they will remain stationary at the position the vehicle disappeared and be reattached to the next vehicle to claim the vehicle ID that the objects were attached to.

ฟังก์ชั่นที่เกี่ยวข้องกัน