ANIMATE (macro): Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
mNo edit summary
m (→‎top: clean up, added orphan, stub tags)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
This macro is used to start a VGUI animation. <code>vgui_helpers.h</code> is a good place to paste it.
{{Orphan|date=January 2024}}
 
This macro is used to start a [[VGUI]] animation. <code>vgui_helpers.h</code> is a good place to paste it.


  #define VGUIANIMATE(string_animation) \
  #define VGUIANIMATE(string_animation) \
Line 7: Line 9:
[[Category:VGUI]]
[[Category:VGUI]]
[[Category:Macros]]
[[Category:Macros]]
{{stub}}

Latest revision as of 22:34, 21 January 2024

This macro is used to start a VGUI animation. vgui_helpers.h is a good place to paste it.

#define VGUIANIMATE(string_animation) \
		g_pClientMode->GetViewportAnimationController()->StartAnimationSequence(string_animation);


Stub

This article or section is a stub. You can help by expanding it.