Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Devtest: Automatically enable zoom capability (#10493)
Make minor improvements to the zoom testing chat command.
Delete incorrect line about creative mode from README.md.
  • Loading branch information
paramat committed Oct 20, 2020
1 parent c7aa92a commit 4d9c918
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion games/devtest/README.md
Expand Up @@ -23,7 +23,6 @@ Basically, just create a world and start. A few important things to note:
* Use the `/infplace` command to toggle infinite node placement in-game
* Use the Param2 Tool to change the param2 of nodes; it's useful to experiment with the various drawtype test nodes
* Check out the game settings and server commands for additional tests and features
* Creative Mode does nothing (apart from default engine behavior)

Confused by a certain node or item? Check out for inline code comments. The usages of most tools are explained in their tooltips.

Expand Down
10 changes: 6 additions & 4 deletions games/devtest/mods/util_commands/init.lua
Expand Up @@ -36,8 +36,12 @@ minetest.register_chatcommand("hp", {
end,
})

minetest.register_chatcommand("zoom", {
params = "[<zoom_fov>]",
minetest.register_on_joinplayer(function(player)
player:set_properties({zoom_fov = 15})
end)

minetest.register_chatcommand("zoomfov", {
params = "[<FOV>]",
description = "Set or display your zoom_fov",
func = function(name, param)
local player = minetest.get_player_by_name(name)
Expand All @@ -58,8 +62,6 @@ minetest.register_chatcommand("zoom", {
end,
})



local s_infplace = minetest.settings:get("devtest_infplace")
if s_infplace == "true" then
infplace = true
Expand Down

0 comments on commit 4d9c918

Please sign in to comment.