Skip to main content

Create3DTextLabel

คำอธิบาย

Creates a 3D Text Label at a specific location in the world

NameDescription
text[]The initial text string.
colorThe text Color, as an integer or hex in RGBA color format
xX-Coordinate
yY-Coordinate
zZ-Coordinate
DrawDistanceThe distance from where you are able to see the 3D Text Label
VirtualWorldThe virtual world in which you are able to see the 3D Text
testLOS0/1 Test the line-of-sight so this text can't be seen through objects

ส่งคืน

The ID of the newly created 3D Text Label, or INVALID_3DTEXT_ID if the 3D Text Label limit (MAX_3DTEXT_GLOBAL) was reached.

ตัวอย่าง

public OnGameModeInit()
{
Create3DTextLabel("I'm at the coordinates:\n30.0, 40.0, 50.0", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0, 0);
return 1;
}

บันทึก

tip

drawdistance seems to be a lot smaller when spectating.

tip

Use color embedding for multiple colors in the text.

warning

If text[] is empty, the server/clients next to the text might crash! If the virtualworld is set as -1 the text will not appear.

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