Ugrás a fő tartalomhoz

TextDrawGetPreviewRot

vigyázat

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

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

NameDescription
Text:textidThe ID of the textdraw to get rotation and zoom of.
&Float:rotationXA float variable into which to store rotationX coordinate, passed by reference.
&Float:rotationYA float variable into which to store rotationY coordinate, passed by reference.
&Float:rotationZA float variable into which to store rotationZ coordinate, passed by reference.
&Float:zoomA float variable into which to store zoom value, passed by reference.

Examples

new Text:gMyTextdraw;

public OnGameModeInit()
{
gMyTextdraw = TextDrawCreate(320.0, 240.0, "_");
TextDrawFont(gMyTextdraw, TEXT_DRAW_FONT_MODEL_PREVIEW);
TextDrawUseBox(gMyTextdraw, true);
TextDrawBoxColor(gMyTextdraw, 0x000000FF);
TextDrawTextSize(gMyTextdraw, 40.0, 40.0);
TextDrawSetPreviewModel(gMyTextdraw, 411);
TextDrawSetPreviewRot(gMyTextdraw, -10.0, 0.0, -20.0, 1.0);

new Float:rotationX, Float:rotationY, Float:rotationZ, Float:zoom;
TextDrawGetPreviewRot(gMyTextdraw, rotationX, rotationY, rotationZ, zoom);
// rotationX = -10.0
// rotationY = 0.0
// rotationZ = -20.0
// zoom = 1.0
return 1;
}