3D Text Labels in all Virtual Worlds
#1

Hello,
How can i make, That a 3DTextLabel Shows in all Virtual worlds,
Do you know how to make this?
Reply
#2

Loop through all virtual worlds and use that variable to set vw in the Create3DTextLabel function.

pawn Код:
new iVW = 0;
while( iVW < the_highest_virtualworld_id_here )
{
    Create3DdTextLabel( "something", color, x, y, z, draw, iVW );
    iVW++;
}
Reply
#3

or try only

Код:
Create3DTextLabel( "Text", color, X, Y, Z, draw_distance, -1 );
-1 = all virtual worlds (I think)
Reply
#4

Quote:
Originally Posted by costel_nistor96
Посмотреть сообщение
or try only

Код:
Create3DTextLabel( "Text", color, X, Y, Z, draw_distance, -1 );
-1 = all virtual worlds (I think)
Might be.
I've never worked with 3D labels, so I won't know.
Reply
#5

-1 shows for all virtual worlds so its easier then, LarzI-s.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)