From a2024c4ebc654fe05ac94e64e9b992c4e5d30232 Mon Sep 17 00:00:00 2001 From: Alberto Torres Date: Tue, 18 Mar 2025 18:11:16 +0100 Subject: [PATCH] Scene: Add `time` as the amount of seconds it has been enabled. --- src/myou_engine.nim | 1 + src/types.nim | 1 + 2 files changed, 2 insertions(+) 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