In Nominal Editor, our simulations run through multiple events. Our system allows users to schedule function calls at particular point in time. There are 2 main types of events:

⏱️ Interval Events

This event get's called at a fixed timestep in a simulation. They can be used for physics calculations or any event that should be called frequently.

🚩 Timeout Events

This event get's called once during the simulation. They can be used to trigger tasks or any event that needs to be called after a certain amount of time.

Tutorials