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

AxisToString

(Difference between revisions)
Return to current revision
  1.  
    Retrieves the string representation of an [wiki]Axis[/wiki].
    [h="2"] Declaration [/h]
    [highlight=cpp]
  2. -
    VAULTSCRIPT vaultmp::String (*AxisToString)(vaultmp::Index);
  3. +
    VAULTSCRIPT VAULTSPACE cRawString (*VAULTAPI(AxisToString))(VAULTSPACE Index) _CPP(noexcept);
    [/highlight]
    [highlight=c]
  4.  
    native AxisToString(index, value{});
    [/highlight]
    [h="2"] Parameters [/h]
  5. -
    [b][wiki="Index"]vaultmp::Index[/wiki][/b] - the index of the [wiki]Axis[/wiki]
  6. +
    [b][wiki="Index"]Index[/wiki][/b] - the index of the [wiki]Axis[/wiki]
  7.  
    [b]value[/b] (PAWN only) - an array large enough to hold at least 64 characters
    [h="2"] Return value [/h]
  8. -
    The C++ version returns a [wiki="String"]vaultmp::String[/wiki] containing the string representation of the axis. The PAWN version has no return value.
    [h="2"] Usage example (C++) [/h]
    [highlight=cpp]
    vaultmp::String value;
    value = AxisToString(index);
    [/highlight]
    [h="2"] Usage example (PAWN) [/h]
    [highlight=c]
    new value{64};
    AxisToString(index, value);
    [/highlight]
  9. +
    The C version returns a [wiki="cRawString"]cRawString[/wiki] containing the string representation of the axis. The PAWN version has no return value.
  10.  
    [category]VaultMP interface[/category]
    [category]Scripting functions[/category]
    [category]Misc functions[/category]