diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 14 | ||||
-rw-r--r-- | doc/menu_lua_api.txt | 6 |
2 files changed, 20 insertions, 0 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index f593b0db8..ebd70ea6e 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -1069,6 +1069,8 @@ minetest.pos_to_string({x=X,y=Y,z=Z}) -> "(X,Y,Z)" minetest.string_to_pos(string) -> position ^ Same but in reverse ^ escapes characters [ ] \ , ; that can not be used in formspecs +minetest.is_yes(string) +^ returns whether string can be interpreted as yes minetest namespace reference ----------------------------- @@ -1737,6 +1739,18 @@ methods: ^ from (minx,miny,minz) to (maxx,maxy,maxz) in the order of [z [y [x]]] - iterp(minp, maxp): same as above, except takes a vector +Settings: An interface to read config files in the format of minetest.conf +- Can be created via Settings(filename) +methods: +- get(key) -> value +- get_bool(key) -> boolean +- set(key, value) +- remove(key) -> success +- get_names() -> {key1,...} +- write() -> success + ^ write changes to file +- to_table() -> {[key1]=value1,...} + Mapgen objects --------------- A mapgen object is a construct used in map generation. Mapgen objects can be used by an on_generate diff --git a/doc/menu_lua_api.txt b/doc/menu_lua_api.txt index d4bc093b0..5763f875c 100644 --- a/doc/menu_lua_api.txt +++ b/doc/menu_lua_api.txt @@ -182,3 +182,9 @@ string:split(separator) ^ eg. string:split("a,b", ",") == {"a","b"} string:trim() ^ eg. string.trim("\n \t\tfoo bar\t ") == "foo bar" +minetest.is_yes(string) +^ returns whether string can be interpreted as yes + +Class reference +---------------- +Settings: see lua_api.txt |