Skip to main content

Attach3DTextLabelToVehicle

คำอธิบาย

Attaches a 3D Text Label to a specific vehicle.

NameDescription
Text3D:textidThe 3D Text Label you want to attach.
vehicleidThe vehicle you want to attach the 3D Text Label to.
OffsetXThe Offset-X coordinate of the player vehicle (the vehicle is 0.0,0.0,0.0)..
OffsetYThe Offset-Y coordinate of the player vehicle (the vehicle is 0.0,0.0,0.0)..
OffsetZThe Offset-Z coordinate of the player vehicle (the vehicle is 0.0,0.0,0.0)..

ส่งคืน

This function does not return any specific values.

ตัวอย่าง

new
Text3D:vehicle3Dtext[MAX_VEHICLES], // Creating the TextLabel for later use
vehicle_id;

public OnGameModeInit ( )
{
vehicle_id = CreateVehicle( 510, 0.0. 0.0, 15.0, 5, 0, 120 ); // Creating the Vehicle.
vehicle3Dtext[ vehicle_id ] = Create3DTextLabel( "Example Text", 0xFF0000AA, 0.0, 0.0, 0.0, 50.0, 0, 1 );
Attach3DTextLabelToVehicle( vehicle3Dtext[ vehicle_id ] , vehicle_id, 0.0, 0.0, 2.0); // Attaching Text Label To Vehicle.
}
public OnGameModeExit ( )
{
Delete3DTextLabel( vehicle3Dtext[ vehicle_id ] );
return true;
}

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