PxSceneWriteLock

Defined in include/PxSceneLock.h

class PxSceneWriteLock

RAII wrapper for the PxScene write lock.

Use this class as follows to lock the scene for writing by the current thread for the duration of the enclosing scope:

PxSceneWriteLock lock(sceneRef);

Public Functions

inline PxSceneWriteLock(PxScene &scene, const char *file = NULL, PxU32 line = 0)

Constructor.

Parameters
  • scene – The scene to lock for writing

  • file – Optional string for debugging purposes

  • line – Optional line number for debugging purposes

inline ~PxSceneWriteLock()