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

AnimToString

(Difference between revisions)
Return to current revision
Current Revision 08-23-2012, 11:55 PM
  1. -
    Retrieves the string representation of an [[Actor animation]].

    == Declaration ==
    <code cpp>
    VAULTSCRIPT std::string (*AnimToString)(vaultmp::Index);
  2. +
    Retrieves the string representation of an [wiki]Actor animation[/wiki].
    [h="2"] Declaration [/h]
    [highlight=cpp]
    VAULTSCRIPT VAULTSPACE cRawString (*VAULTAPI(AnimToString))(VAULTSPACE Index) _CPP(noexcept);
    [/highlight]
    [highlight=c]
  3.  
    native AnimToString(index, value{});
  4. -
    </code>
    == Parameters ==

    '''[[Index|vaultmp::Index]]''' - the index of the [[Actor animation]]

    '''value''' (PAWN only) - an array large enough to hold at least 64 characters

    == Return value ==

    The C++ version returns a std::string containing the string representation of the actor animation. The PAWN version has no return value.

    == Usage example (C++) ==

    <code cpp>
    std::string value;
    value = AnimToString(index);
    </code>

    == Usage example (PAWN) ==

    <code c>
    new value{64};
    AnimToString(index, value);
    </code>
  5. +
    [/highlight]
    [h="2"] Parameters [/h]
    [b][wiki="Index"]Index[/wiki][/b] - the index of the [wiki]Actor animation[/wiki]
    [b]value[/b] (PAWN only) - an array large enough to hold at least 64 characters
    [h="2"] Return value [/h]
    The C version returns a [wiki="cRawString"]cRawString[/wiki] containing the string representation of the actor animation. The PAWN version has no return value.
    [category]VaultMP interface[/category]
    [category]Scripting functions[/category]
    [category]Misc functions[/category]