Garry's Mod Wiki

Revision Difference

DModelPanel:RunAnimation#513464

<function name="RunAnimation" parent="DModelPanel" type="panelfunc">⤶ <ispanel>yes</ispanel>⤶ <description>This function is used in the **DModelPanel:LayoutEntity**. It will set the active model to the last set animation using <page>Entity:SetSequence</page>. By default, it is the walking animation.</description>⤶ <realm>Client</realm>⤶ </function>⤶ ⤶ <example>⤶ <description>Sets the model to alyx and puts her in a walking animation</description>⤶ <code>⤶ local ModelPanel = vgui.Create( "DModelPanel", Panel )⤶ ModelPanel:SetModel( "models/player/alyx.mdl" )⤶ function ModelPanel:LayoutEntity( ent )⤶ ModelPanel:RunAnimation()⤶ end⤶ </code>⤶ ⤶ </example>