hedphelym
20-12-2010 11:24:51
I'm writing a physx example application,
I've based it on the "CameraTrack" sample.
This one uses the "Demo Example application".
I have some keyboard shortcuts that I need.
Let's say pressing P does something.
Obviously I won't add it to the "example application", I want the code
for this to be in my project.
I need to override this and put my code in my application..
How do I do this?..
I've based it on the "CameraTrack" sample.
This one uses the "Demo Example application".
I have some keyboard shortcuts that I need.
Let's say pressing P does something.
Obviously I won't add it to the "example application", I want the code
for this to be in my project.
protected virtual void HandleInput(FrameEvent evt)
{
//here's the example application stuff
}
I need to override this and put my code in my application..
How do I do this?..