💻
pasteware
  • Introduction
  • Namespaces
    • engine_client
    • global_vars
    • renderer
    • config
    • math
    • input
    • cheat
  • Hooks
    • CreateMove
    • PaintTraverse
    • FrameStageNotify
  • Types
    • CUserCmd
    • ang_t
    • vec3_t
    • vec2_t
    • color_t
Powered by GitBook
On this page

Was this helpful?

  1. Hooks

FrameStageNotify

Called for each frame stage.

Example

function on_frame_stage_notify( stage ) {
    print( "Hello, world!" );
}

hook.add( "FrameStageNotify", "on_frame_stage_notify" );
PreviousPaintTraverseNextCUserCmd

Last updated 4 years ago

Was this helpful?