|
@@ -494,6 +494,10 @@ uint64_t _OS::get_unix_time() const {
|
|
|
return OS::get_singleton()->get_unix_time();
|
|
|
};
|
|
|
|
|
|
+uint64_t _OS::get_system_time_msec() const {
|
|
|
+ return OS::get_singleton()->get_system_time_msec();
|
|
|
+}
|
|
|
+
|
|
|
void _OS::delay_usec(uint32_t p_usec) const {
|
|
|
|
|
|
OS::get_singleton()->delay_usec(p_usec);
|
|
@@ -801,6 +805,7 @@ void _OS::_bind_methods() {
|
|
|
ObjectTypeDB::bind_method(_MD("get_time","utc"),&_OS::get_time,DEFVAL(false));
|
|
|
ObjectTypeDB::bind_method(_MD("get_time_zone_info"),&_OS::get_time_zone_info);
|
|
|
ObjectTypeDB::bind_method(_MD("get_unix_time"),&_OS::get_unix_time);
|
|
|
+ ObjectTypeDB::bind_method(_MD("get_system_time_msec"), &_OS::get_system_time_msec);
|
|
|
|
|
|
ObjectTypeDB::bind_method(_MD("set_icon"),&_OS::set_icon);
|
|
|
|