diff options
Diffstat (limited to 'scene/3d/portal.cpp')
-rw-r--r-- | scene/3d/portal.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scene/3d/portal.cpp b/scene/3d/portal.cpp index d77dde1dd8..6c14f7dbc9 100644 --- a/scene/3d/portal.cpp +++ b/scene/3d/portal.cpp @@ -3,7 +3,7 @@ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ -/* http://www.godotengine.org */ +/* https://godotengine.org */ /*************************************************************************/ /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */ /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */ @@ -32,6 +32,8 @@ #include "scene/resources/surface_tool.h" #include "servers/visual_server.h" +// FIXME: This will be removed, kept as reference for new implementation +#if 0 bool Portal::_set(const StringName &p_name, const Variant &p_value) { if (p_name == "shape") { @@ -226,3 +228,4 @@ Portal::~Portal() { VisualServer::get_singleton()->free(portal); } +#endif |