diff options
| author | ne_mene <[email protected]> | 2026-03-17 10:59:57 +0100 |
|---|---|---|
| committer | ne_mene <[email protected]> | 2026-03-17 10:59:57 +0100 |
| commit | 2f44ed090c9456beae47fc51457b7fc19208fb0c (patch) | |
| tree | a0be812ac0c892fd29d3e82b84ca65bcf828cf8e /main.lua | |
| parent | c405cb81de9dba2ff8947870c09650bda7533550 (diff) | |
particles working a bit
Diffstat (limited to 'main.lua')
| -rw-r--r-- | main.lua | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |
