Difference between revisions of "NewtonWorldListenerSetPreUpdateCallback"

From Newton Wiki
Jump to: navigation, search
 
m (1 revision imported)
 
(No difference)

Latest revision as of 08:02, 10 June 2019

NewtonWorldListenerSetPreUpdateCallback

void NewtonWorldListenerSetPreUpdateCallback (const NewtonWorld* const newtonWorld, void* const listener, NewtonWorldUpdateListenerCallback update)

Usage

Adds a pre-update callback to newton world, this callback will be called when your application calls newtonupdate, but before any physics simulation begins.

Parameters

  • const NewtonWorld* const newtonWorld - instance of newton world
  • void* const listener - pointer to a listener created with NewtonWorldAddListener
  • NewtonWorldUpdateListenerCallback update - pointer to your callback

Return

  • (Procedure)

Description

See also

NewtonWorldAddListener, NewtonWorldGetListenerUserData, NewtonWorldListenerDebug, NewtonWorldListenerGetBodyDestroyCallback, NewtonWorldListenerSetBodyDestroyCallback, NewtonWorldListenerSetDebugCallback, NewtonWorldListenerSetDestroctorCallback, NewtonWorldListenerSetPostUpdateCallback, NewtonWorldListenerSetPreUpdateCallback