How can i accees to the OS instance (c++)?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By player0815

hi,
i want to use

os->get_ticks_msec();

in my module. How can i do this?

thx

:bust_in_silhouette: Reply From: Xrayez

You need to retrieve OS singleton first:

uint32_t time = OS::get_singleton()->get_ticks_msec();

Don’t forget to include this header file before using it:

#include "core/os/os.h"

Most other stuff could be retrieved similarly, like VisualServer or PhysicsServer:

VisualServer *vs = VisualServer::get_singleton();
PhysicsServer *ps = PhysicsServer::get_singleton();

Though appropriate headers need to be included as well.

1 Like