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

AnimToString

(Difference between revisions)
Return to current revision
  1.  
    Retrieves the string representation of an [wiki]Actor animation[/wiki].
    [h="2"] Declaration [/h]
    [highlight=cpp]
    VAULTSCRIPT vaultmp::String (*AnimToString)(vaultmp::Index);
    native AnimToString(index, value{});
    [/highlight]
    [h="2"] Parameters [/h]
    [b][wiki="Index"]vaultmp::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]
  2. -
    The C++ version returns a std::string containing the string representation of the actor animation. The PAWN version has no return value.
  3. +
    The C++ version returns a [wiki="String"]vaultmp::String[/wiki] containing the string representation of the actor animation. The PAWN version has no return value.
  4.  
    [h="2"] Usage example (C++) [/h]
    [highlight=cpp]
    vaultmp::String value;
    value = AnimToString(index);
    [/highlight]
    [h="2"] Usage example (PAWN) [/h]
    [highlight=c]
    new value{64};
    AnimToString(index, value);
    [/highlight]
    [category]VaultMP interface[/category]
    [category]Scripting functions[/category]
    [category]Misc functions[/category]