mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 01:53:45 +01:00
Clarify use of minetest.request_insecure_environment() (#9597)
This commit is contained in:
parent
f45ba78a72
commit
143a37e947
@ -5413,8 +5413,8 @@ Misc.
|
|||||||
insecure functions if the calling mod has been listed as trusted in the
|
insecure functions if the calling mod has been listed as trusted in the
|
||||||
`secure.trusted_mods` setting or security is disabled, otherwise returns
|
`secure.trusted_mods` setting or security is disabled, otherwise returns
|
||||||
`nil`.
|
`nil`.
|
||||||
* Only works at init time and must be called from the mod's main scope (not
|
* Only works at init time and must be called from the mod's main scope
|
||||||
from a function).
|
(ie: the init.lua of the mod, not from another Lua file or within a function).
|
||||||
* **DO NOT ALLOW ANY OTHER MODS TO ACCESS THE RETURNED ENVIRONMENT, STORE
|
* **DO NOT ALLOW ANY OTHER MODS TO ACCESS THE RETURNED ENVIRONMENT, STORE
|
||||||
IT IN A LOCAL VARIABLE!**
|
IT IN A LOCAL VARIABLE!**
|
||||||
|
|
||||||
@ -6002,7 +6002,7 @@ object you are working with still exists.
|
|||||||
* `sky_color`: A table containing the following values, alpha is ignored:
|
* `sky_color`: A table containing the following values, alpha is ignored:
|
||||||
* `day_sky`: ColorSpec, for the top half of the `"regular"`
|
* `day_sky`: ColorSpec, for the top half of the `"regular"`
|
||||||
sky during the day. (default: `#8cbafa`)
|
sky during the day. (default: `#8cbafa`)
|
||||||
* `day_horizon`: ColorSpec, for the bottom half of the
|
* `day_horizon`: ColorSpec, for the bottom half of the
|
||||||
`"regular"` sky during the day. (default: `#9bc1f0`)
|
`"regular"` sky during the day. (default: `#9bc1f0`)
|
||||||
* `dawn_sky`: ColorSpec, for the top half of the `"regular"`
|
* `dawn_sky`: ColorSpec, for the top half of the `"regular"`
|
||||||
sky during dawn/sunset. (default: `#b4bafa`)
|
sky during dawn/sunset. (default: `#b4bafa`)
|
||||||
@ -6020,7 +6020,7 @@ object you are working with still exists.
|
|||||||
sky during the night. (default: `#4090ff`)
|
sky during the night. (default: `#4090ff`)
|
||||||
The resulting sky color will be a dark version of the ColorSpec.
|
The resulting sky color will be a dark version of the ColorSpec.
|
||||||
Warning: The darkening of the ColorSpec is subject to change.
|
Warning: The darkening of the ColorSpec is subject to change.
|
||||||
* `indoors`: ColorSpec, for when you're either indoors or
|
* `indoors`: ColorSpec, for when you're either indoors or
|
||||||
underground. Only applies to the `"regular"` sky.
|
underground. Only applies to the `"regular"` sky.
|
||||||
(default: `#646464`)
|
(default: `#646464`)
|
||||||
* `fog_sun_tint`: ColorSpec, changes the fog tinting for the sun
|
* `fog_sun_tint`: ColorSpec, changes the fog tinting for the sun
|
||||||
@ -6064,7 +6064,7 @@ object you are working with still exists.
|
|||||||
* `parameters` is a table with the following optional fields:
|
* `parameters` is a table with the following optional fields:
|
||||||
* `visible`: Boolean for whether the stars are visible.
|
* `visible`: Boolean for whether the stars are visible.
|
||||||
(default: `true`)
|
(default: `true`)
|
||||||
* `count`: Integer number to set the number of stars in
|
* `count`: Integer number to set the number of stars in
|
||||||
the skybox. Only applies to `"skybox"` and `"regular"` sky types.
|
the skybox. Only applies to `"skybox"` and `"regular"` sky types.
|
||||||
(default: `1000`)
|
(default: `1000`)
|
||||||
* `star_color`: ColorSpec, sets the colors of the stars,
|
* `star_color`: ColorSpec, sets the colors of the stars,
|
||||||
|
Loading…
Reference in New Issue
Block a user