diff options
Diffstat (limited to 'servers/visual_server.cpp')
-rw-r--r-- | servers/visual_server.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/servers/visual_server.cpp b/servers/visual_server.cpp index b345a2ea77..83efbabc36 100644 --- a/servers/visual_server.cpp +++ b/servers/visual_server.cpp @@ -1583,12 +1583,6 @@ void VisualServer::_bind_methods() { ClassDB::bind_method(D_METHOD("force_sync"), &VisualServer::sync); ClassDB::bind_method(D_METHOD("force_draw", "swap_buffers", "frame_step"), &VisualServer::draw, DEFVAL(true), DEFVAL(0.0)); - // "draw" and "sync" are deprecated duplicates of "force_draw" and "force_sync" - // FIXME: Add deprecation messages using GH-4397 once available, and retire - // once the warnings have been enabled for a full release cycle - ClassDB::bind_method(D_METHOD("sync"), &VisualServer::sync); - ClassDB::bind_method(D_METHOD("draw", "swap_buffers", "frame_step"), &VisualServer::draw, DEFVAL(true), DEFVAL(0.0)); - #ifndef _MSC_VER #warning TODO all texture methods need re-binding #endif |