summaryrefslogtreecommitdiff
path: root/games/devtest/mods/experimental/lighting.lua
diff options
context:
space:
mode:
Diffstat (limited to 'games/devtest/mods/experimental/lighting.lua')
-rw-r--r--games/devtest/mods/experimental/lighting.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/games/devtest/mods/experimental/lighting.lua b/games/devtest/mods/experimental/lighting.lua
new file mode 100644
index 000000000..2b350550f
--- /dev/null
+++ b/games/devtest/mods/experimental/lighting.lua
@@ -0,0 +1,8 @@
+core.register_chatcommand("set_lighting", {
+ params = "shadow_intensity",
+ description = "Set lighting parameters.",
+ func = function(player_name, param)
+ local shadow_intensity = tonumber(param)
+ minetest.get_player_by_name(player_name):set_lighting({shadows = { intensity = shadow_intensity} })
+ end
+}) \ No newline at end of file