aboutsummaryrefslogtreecommitdiff
path: root/builtin/common/after.lua
diff options
context:
space:
mode:
authorParamat <paramat@users.noreply.github.com>2020-04-03 02:57:15 +0100
committerGitHub <noreply@github.com>2020-04-03 02:57:15 +0100
commit45a2ca0af2285ab32003bd0d07690551b895b480 (patch)
tree6e0701ece974158eb935b6dfa951da358cf3ba72 /builtin/common/after.lua
parent3d6b55d3e9b91e6afdbfdcea0268dfb88c69c1c2 (diff)
downloadminetest-45a2ca0af2285ab32003bd0d07690551b895b480.tar.gz
minetest-45a2ca0af2285ab32003bd0d07690551b895b480.tar.bz2
minetest-45a2ca0af2285ab32003bd0d07690551b895b480.zip
Add warning to set_sky() docs about unstable dawn and night sky colours (#9578)
Also clean up confusing double meaning usage of the word 'skybox'.
Diffstat (limited to 'builtin/common/after.lua')
0 files changed, 0 insertions, 0 deletions
itemdef.h" using namespace irr; using namespace gui; GUIButtonItemImage::GUIButtonItemImage(gui::IGUIEnvironment *environment, gui::IGUIElement *parent, s32 id, core::rect<s32> rectangle, ISimpleTextureSource *tsrc, std::string item, Client *client, bool noclip) : GUIButton (environment, parent, id, rectangle, tsrc, noclip) { m_image = new GUIItemImage(environment, this, id, core::rect<s32>(0,0,rectangle.getWidth(),rectangle.getHeight()), item, getActiveFont(), client); sendToBack(m_image); m_client = client; } GUIButtonItemImage *GUIButtonItemImage::addButton(IGUIEnvironment *environment, const core::rect<s32> &rectangle, ISimpleTextureSource *tsrc, IGUIElement *parent, s32 id, const wchar_t *text, std::string item, Client *client) { GUIButtonItemImage *button = new GUIButtonItemImage(environment, parent ? parent : environment->getRootGUIElement(), id, rectangle, tsrc, item, client); if (text) button->setText(text); button->drop(); return button; }