TextCreateDisplay: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 3: Line 3:


==Syntax==
==Syntax==
  textCreateDisplay( )
  [[textdisplay]] textCreateDisplay( )


==Example==
==Example==
  textDisplay = '''textCreateDisplay''' ();
  textDisplay = '''textCreateDisplay''' ();
  textDisplayAddObserver ( textDisplay, player );
  [[textDisplayAddObserver]] ( textDisplay, player );
  textItem = textCreateTextItem ( "Hello world!", 0.5, 0.5 );
  textItem = [[textCreateTextItem]] ( "Hello world!", 0.5, 0.5 );
  textDisplayAddText ( textDisplay, textItem );
  [[textDisplayAddText]] ( textDisplay, textItem );

Revision as of 19:49, 23 March 2006

Description

A text display is like a canvas that can contain many items of text. Each display can be seen by multiple observers (players) and each player can see multiple displays. For example, you could have a display that showed a score, and a display that showed information specific to one team, such as the location of the flag. Every player would be an observer of the first display and each team would have their own display that its players would be observers of.

Syntax

textdisplay textCreateDisplay( )

Example

textDisplay = textCreateDisplay ();
textDisplayAddObserver ( textDisplay, player );
textItem = textCreateTextItem ( "Hello world!", 0.5, 0.5 );
textDisplayAddText ( textDisplay, textItem );