Entity.GetSequenceName
From GMod Wiki
Function | |
Syntax | Entity:GetSequenceName( Integer index ) |
Description: | |
Return the name of the sequence for the index provided. | |
Returns: | String |
In Object: | Entity |
Realm: | |
BBCode Link: | [b][url=http://wiki.garrysmod.com/?title=Entity.GetSequenceName]Entity.GetSequenceName [img]http://wiki.garrysmod.com/favicon.ico[/img][/url][/b] |
Example
Description | Print out the name of the sequence. |
---|---|
Used on | |
Code | local sequence = self:GetSequence() print( self:GetSequenceName( sequence ) ) |
Output | idle_all |