Skip to main content

TextDrawSetPreviewRot

คำอธิบาย

Sets the rotation and zoom of a 3D model preview textdraw.

NameDescription
Float:fRotXThe X rotation value.
Float:fRotYThe Y rotation value.
Float:fRotZThe Z rotation value.
Float:fZoomThe zoom value, default value 1.0, smaller values make the camera closer and larger values make the camera further away.

ส่งคืน

This function does not return any specific values.

ตัวอย่าง

new Text:textdraw

public OnGameModeInit()
{
textdraw = TextDrawCreate(320.0, 240.0, "_");
TextDrawFont(textdraw, TEXT_DRAW_FONT_MODEL_PREVIEW);
TextDrawUseBox(textdraw, 1);
TextDrawBoxColor(textdraw, 0x000000FF);
TextDrawTextSize(textdraw, 40.0, 40.0);
TextDrawSetPreviewModel(textdraw, 411);
TextDrawSetPreviewRot(textdraw, -10.0, 0.0, -20.0, 1.0);
//You still have to use TextDrawShowForAll/TextDrawShowForPlayer to make the textdraw visible.
return 1;
}

บันทึก

warning

The textdraw MUST use the font type TEXT_DRAW_FONT_MODEL_PREVIEW and already have a model set in order for this function to have effect.

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