diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2015-12-08 17:06:45 -0300 |
|---|---|---|
| committer | Juan Linietsky <reduzio@gmail.com> | 2015-12-08 17:06:45 -0300 |
| commit | b6d6c2220fbdda9c8e29bd1333b64889e0c867a7 (patch) | |
| tree | a2f8affd404524f92debdccc844bcf3b4c273d14 /scene/3d/spatial.cpp | |
| parent | eff81965af5a7c8180889d55eb55992680e896a4 (diff) | |
| parent | 0b4830f3bebaaec75cecf48253068d35bb344859 (diff) | |
Merge pull request #2922 from romulox-x/set_hidden
Added set_hidden method to Spatial and CanvasItem
Diffstat (limited to 'scene/3d/spatial.cpp')
| -rw-r--r-- | scene/3d/spatial.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scene/3d/spatial.cpp b/scene/3d/spatial.cpp index a65f68ed2c..7d48420a83 100644 --- a/scene/3d/spatial.cpp +++ b/scene/3d/spatial.cpp @@ -594,6 +594,15 @@ bool Spatial::is_hidden() const{ return !data.visible; } +void Spatial::set_hidden(bool p_hidden) { + + if (data.visible != p_hidden) { + return; + } + + _set_visible_(!p_hidden); +} + void Spatial::_set_visible_(bool p_visible) { if (p_visible) @@ -742,6 +751,7 @@ void Spatial::_bind_methods() { ObjectTypeDB::bind_method(_MD("hide"), &Spatial::hide); ObjectTypeDB::bind_method(_MD("is_visible"), &Spatial::is_visible); ObjectTypeDB::bind_method(_MD("is_hidden"), &Spatial::is_hidden); + ObjectTypeDB::bind_method(_MD("set_hidden","hidden"), &Spatial::set_hidden); ObjectTypeDB::bind_method(_MD("_set_visible_"), &Spatial::_set_visible_); ObjectTypeDB::bind_method(_MD("_is_visible_"), &Spatial::_is_visible_); |