diff options
| author | Wuzzy <Wuzzy@disroot.org> | 2022-10-08 18:29:22 +0200 |
|---|---|---|
| committer | sfan5 <sfan5@live.de> | 2022-10-23 21:58:56 +0200 |
| commit | 2da92ed81e9867483a4d49bc1f9cbfb104755ff7 (patch) | |
| tree | 13a66263e22c2b87a1c18f482c38cdccffb8cd86 /games/devtest | |
| parent | cb7b96fc90c4432938b0be4a98a3067e6a07b215 (diff) | |
| download | minetest-2da92ed81e9867483a4d49bc1f9cbfb104755ff7.tar.xz | |
DevTest: Move callback entities to callbacks mod
Diffstat (limited to 'games/devtest')
| -rw-r--r-- | games/devtest/mods/callbacks/entities.lua (renamed from games/devtest/mods/testentities/callbacks.lua) | 8 | ||||
| -rw-r--r-- | games/devtest/mods/callbacks/init.lua | 1 | ||||
| -rw-r--r-- | games/devtest/mods/callbacks/textures/callbacks_callback_entity.png (renamed from games/devtest/mods/testentities/textures/testentities_callback.png) | bin | 156 -> 156 bytes | |||
| -rw-r--r-- | games/devtest/mods/callbacks/textures/callbacks_callback_entity_step.png (renamed from games/devtest/mods/testentities/textures/testentities_callback_step.png) | bin | 166 -> 166 bytes | |||
| -rw-r--r-- | games/devtest/mods/testentities/init.lua | 1 |
5 files changed, 5 insertions, 5 deletions
diff --git a/games/devtest/mods/testentities/callbacks.lua b/games/devtest/mods/callbacks/entities.lua index a212fbfbe..6a7f13d75 100644 --- a/games/devtest/mods/testentities/callbacks.lua +++ b/games/devtest/mods/callbacks/entities.lua @@ -22,10 +22,10 @@ local spos = function(self) end -- Callback test entity (all callbacks except on_step) -minetest.register_entity("testentities:callback", { +minetest.register_entity("callbacks:callback", { initial_properties = { visual = "upright_sprite", - textures = { "testentities_callback.png" }, + textures = { "callbacks_callback_entity.png" }, }, on_activate = function(self, staticdata, dtime_s) @@ -69,9 +69,9 @@ minetest.register_entity("testentities:callback", { }) -- Only test on_step callback -minetest.register_entity("testentities:callback_step", { +minetest.register_entity("callbacks:callback_step", { visual = "upright_sprite", - textures = { "testentities_callback_step.png" }, + textures = { "callbacks_callback_entity_step.png" }, on_step = function(self, dtime) message("on_step callback entity: on_step! pos="..spos(self).."; dtime="..dtime) end, diff --git a/games/devtest/mods/callbacks/init.lua b/games/devtest/mods/callbacks/init.lua index c5b0984d5..8f719a3f8 100644 --- a/games/devtest/mods/callbacks/init.lua +++ b/games/devtest/mods/callbacks/init.lua @@ -1,2 +1,3 @@ dofile(minetest.get_modpath("callbacks").."/items.lua") dofile(minetest.get_modpath("callbacks").."/nodes.lua") +dofile(minetest.get_modpath("callbacks").."/entities.lua") diff --git a/games/devtest/mods/testentities/textures/testentities_callback.png b/games/devtest/mods/callbacks/textures/callbacks_callback_entity.png Binary files differindex c4c9066d1..c4c9066d1 100644 --- a/games/devtest/mods/testentities/textures/testentities_callback.png +++ b/games/devtest/mods/callbacks/textures/callbacks_callback_entity.png diff --git a/games/devtest/mods/testentities/textures/testentities_callback_step.png b/games/devtest/mods/callbacks/textures/callbacks_callback_entity_step.png Binary files differindex b67506a97..b67506a97 100644 --- a/games/devtest/mods/testentities/textures/testentities_callback_step.png +++ b/games/devtest/mods/callbacks/textures/callbacks_callback_entity_step.png diff --git a/games/devtest/mods/testentities/init.lua b/games/devtest/mods/testentities/init.lua index df8c72ea7..94d8d47c2 100644 --- a/games/devtest/mods/testentities/init.lua +++ b/games/devtest/mods/testentities/init.lua @@ -1,3 +1,2 @@ dofile(minetest.get_modpath("testentities").."/visuals.lua") dofile(minetest.get_modpath("testentities").."/armor.lua") -dofile(minetest.get_modpath("testentities").."/callbacks.lua") |
