diff --git a/src/myou_engine.nim b/src/myou_engine.nim index e368af1..9c5dc01 100644 --- a/src/myou_engine.nim +++ b/src/myou_engine.nim @@ -188,6 +188,7 @@ proc myou_main_loop*(self: MyouEngine) = for _,scene in self.scenes.pairs: if not scene.enabled: continue + scene.time += delta_seconds for f in scene.pre_draw_callbacks: f(scene, delta_seconds) self.renderer.draw_all() diff --git a/src/types.nim b/src/types.nim index b8d0479..75558a4 100644 --- a/src/types.nim +++ b/src/types.nim @@ -373,6 +373,7 @@ type active_camera*: Camera physics_enabled*: bool world*: World + time*: float # render options background_color*: Vec4