Squirrel/Server/Functions/Blips/Pos
From Liberty Unleashed Wiki
(Difference between revisions)
Line 1: | Line 1: | ||
− | {{Squirrel/Title| | + | {{Squirrel/Title|Blip.Pos}} |
− | This '' | + | This ''Blip'' class member returns or sets the position of the blip on the radar. |
== Syntax == | == Syntax == | ||
− | |||
You can either return or set a new value using this member: | You can either return or set a new value using this member: | ||
− | <code> | + | <code>Vector Blip.Pos</code> |
− | <code> | + | <code>Blip.Pos = Vector newPos</code> |
== Arguments == | == Arguments == | ||
− | * ''' | + | * '''newPos''' - A vector representing the new position of the blip. |
== Example 1. Returning the value == | == Example 1. Returning the value == | ||
Line 36: | Line 35: | ||
== Related Functions == | == Related Functions == | ||
− | {{Squirrel/Server/Functions/ | + | {{Squirrel/Server/Functions/Blips}} |
Revision as of 03:05, 28 September 2010
This Blip class member returns or sets the position of the blip on the radar.
Syntax
You can either return or set a new value using this member:
Vector Blip.Pos
Blip.Pos = Vector newPos
Arguments
- newPos - A vector representing the new position of the blip.
Example 1. Returning the value
This function needs an example. You can help us complete the wiki by writing one, or maybe even more :o
-- todo
Notes
Example notes and used functions here.
Example 2. Setting a new value
This function needs an example. You can help us complete the wiki by writing one, or maybe even more :o
-- todo
Notes
Example notes and used functions here.