aboutsummaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
authorne_mene <[email protected]>2026-03-17 10:59:57 +0100
committerne_mene <[email protected]>2026-03-17 10:59:57 +0100
commit2f44ed090c9456beae47fc51457b7fc19208fb0c (patch)
treea0be812ac0c892fd29d3e82b84ca65bcf828cf8e /main.lua
parentc405cb81de9dba2ff8947870c09650bda7533550 (diff)
particles working a bit
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.lua b/main.lua
index f6ea661..c909c95 100644
--- a/main.lua
+++ b/main.lua
@@ -10,9 +10,12 @@ function love.load()
event_bind(scn.on_update, "Player", player_update_sys)
event_bind(scn.on_update, "State_Machine", state_update_sys)
event_bind(scn.on_update, "Sprite", sprite_anim_sys)
+ event_bind(scn.on_update, "Sprite", sprite_anim_sys)
+ event_bind(scn.on_update, "Speck_System", speck_update_sys)
event_bind(scn.on_draw, "Sprite", sprite_draw_sys)
event_bind(scn.on_draw, "Tilemap", tilemap_draw_sys)
+ event_bind(scn.on_draw, "Speck_System", speck_draw_sys)
event_bind(scn.on_update, "Room_Editor", room_editor_ui_sys)
event_bind(scn.on_ui, "Room_Editor", tile_place_sys)