Skip to main content

OnFrame

Usage​

  • Called each frame (frequent, so use sparingly)
  • For better performance, avoid using heavy calculations in this hook
  • No return behavior

Examples​

void OnFrame()
{
// Do lightweight stuff
}