This site has been archived and made available for preservation purposes. No edits can be made.

GetPos

(Difference between revisions)
Return to current revision
  1. +
    Retrieves the current position (X, Y, Z coordinates) of an [wiki]Object[/wiki].
    [h="2"] Declaration [/h]
    [highlight=cpp]
    VAULTSCRIPT VAULTSPACE Void (*VAULTAPI(GetPos))(VAULTSPACE ID, VAULTSPACE Value*, VAULTSPACE Value*, VAULTSPACE Value*) VAULTCPP(noexcept);
    [/highlight]
    [highlight=c]
    native GetPos(ID, &Float:X, &Float:Y, &Float:Z);
    [/highlight]
    [h="2"] Parameters [/h]
    [b][wiki="ID"]ID[/wiki][/b] - the ID of the [wiki]Object[/wiki]
    [b][wiki="Value"]Value[/wiki]*[/b] - used to return a [wiki]Value[/wiki] (X coordinate)
    [b][wiki="Value"]Value[/wiki]*[/b] - used to return a [wiki]Value[/wiki] (Y coordinate)
    [b][wiki="Value"]Value[/wiki]*[/b] - used to return a [wiki]Value[/wiki] (Z coordinate)
    [h="2"] Return value [/h]
    None.
    [category]VaultMP interface[/category]
    [category]Scripting functions[/category]
    [category]Object functions[/category]