Difference between revisions of "GetWorldSpace - ObjectReference"
Jump to navigation
Jump to search
imported>Jlundin |
imported>Terra Nova m (Undo revision 45568 by Terra Nova2 (talk)) |
(One intermediate revision by one other user not shown) | |
(No difference)
|
Latest revision as of 02:50, 7 March 2016
Member of: ObjectReference Script
Obtains the WorldSpace the object reference is in.
Syntax[edit | edit source]
WorldSpace Function GetWorldSpace() native
Parameters[edit | edit source]
None
Return Value[edit | edit source]
The WorldSpace the reference is currently in.
Examples[edit | edit source]
; Is our object in the super awesome worldspace?
if myObject.GetWorldSpace() == SuperAwesomeWorldSpace
Debug.Trace("Object is in position, do something cool!")
endIf