summaryrefslogtreecommitdiff
path: root/editor/plugins/tiles/tiles_editor_plugin.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-11-05 09:35:23 +0100
committerGitHub <noreply@github.com>2021-11-05 09:35:23 +0100
commit2b46e2e1d4bd4b062a379b8adb791ffd9444934c (patch)
tree998ad37a2615b7baa868aec5ba05d4bd06e3b044 /editor/plugins/tiles/tiles_editor_plugin.h
parent578460f7fb7b694f4601e8e6fdc4a5ee67de4067 (diff)
parentac24070056871442b0559e7875372f40aadf8d02 (diff)
Merge pull request #54620 from briansemrau/request-frame-callable
Use Callable in RenderingServer `request_frame_drawn_callback`
Diffstat (limited to 'editor/plugins/tiles/tiles_editor_plugin.h')
-rw-r--r--editor/plugins/tiles/tiles_editor_plugin.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/plugins/tiles/tiles_editor_plugin.h b/editor/plugins/tiles/tiles_editor_plugin.h
index dd52bdc31a..34feee965f 100644
--- a/editor/plugins/tiles/tiles_editor_plugin.h
+++ b/editor/plugins/tiles/tiles_editor_plugin.h
@@ -78,13 +78,12 @@ private:
SafeFlag pattern_thread_exit;
SafeFlag pattern_thread_exited;
mutable SafeFlag pattern_preview_done;
- void _pattern_preview_done(const Variant &p_udata);
+ void _pattern_preview_done();
static void _thread_func(void *ud);
void _thread();
protected:
void _notification(int p_what);
- static void _bind_methods();
public:
_FORCE_INLINE_ static TilesEditorPlugin *get_singleton() { return singleton; }