Skip to main content

Attach3DTextLabelToPlayer

คำอธิบาย

Attach a 3D text label to a player.

NameDescription
Text3D:textidThe ID of the 3D text label to attach. Returned by Create3DTextLabel.
playeridThe ID of the player to attach the label to.
OffsetXThe X offset from the player.
OffsetYThe Y offset from the player.
OffsetZThe Z offset from the player.

ส่งคืน

1: The function executed successfully.

0: The function failed to execute. This means the player and/or label do not exist.

ตัวอย่าง

public OnPlayerConnect(playerid)
{
new Text3D:label = Create3DTextLabel("Hello, I am new here!", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(label, playerid, 0.0, 0.0, 0.7);
return 1;
}

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