Expose Thread::get_main_id in core bindings

(cherry picked from commit c558263d84)
This commit is contained in:
Brian Semrau
2021-11-12 19:10:33 -05:00
committed by Rémi Verschelde
parent 43fbd3adc7
commit 04846156c3
3 changed files with 13 additions and 0 deletions

View File

@ -624,6 +624,10 @@ Thread::ID _OS::get_thread_caller_id() const {
return Thread::get_caller_id();
};
Thread::ID _OS::get_main_thread_id() const {
return Thread::get_main_id();
};
bool _OS::has_feature(const String &p_feature) const {
return OS::get_singleton()->has_feature(p_feature);
}
@ -1398,6 +1402,7 @@ void _OS::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_thread_name", "name"), &_OS::set_thread_name);
ClassDB::bind_method(D_METHOD("get_thread_caller_id"), &_OS::get_thread_caller_id);
ClassDB::bind_method(D_METHOD("get_main_thread_id"), &_OS::get_main_thread_id);
ClassDB::bind_method(D_METHOD("set_use_vsync", "enable"), &_OS::set_use_vsync);
ClassDB::bind_method(D_METHOD("is_vsync_enabled"), &_OS::is_vsync_enabled);

View File

@ -367,6 +367,7 @@ public:
Error set_thread_name(const String &p_name);
Thread::ID get_thread_caller_id() const;
Thread::ID get_main_thread_id() const;
void set_use_vsync(bool p_enable);
bool is_vsync_enabled() const;