Skip to main content

Implement an Update Function

A plugin may wish to be notified regularly of updates. To do this it should register a callback using VRAddCallbackUpdate.

Lua plugins may use __registerCallback to register themselves with the timestep function which is called every frame.

static void myUpdate(double deltaTime, void* userData)
{
//perform an operation regularly
}

PLUGIN_ENTRY_POINT int VRTREE_APIENTRY VRPInit()
{
VRPLUGIN_LOADVRTREE;
VRAddCallbackUpdate(&myUpdate, NULL);
}