Special scene node animator for FPS cameras. More...
#include <ISceneNodeAnimatorCameraFPS.h>
Public Member Functions | |
virtual const core::array< SKeyMap > & | getKeyMap () const =0 |
Gets the keyboard mapping for this animator. More... | |
virtual f32 | getMoveSpeed () const =0 |
Returns the speed of movement in units per millisecond. More... | |
virtual f32 | getRotateSpeed () const =0 |
Returns the rotation speed in degrees. More... | |
virtual void | setInvertMouse (bool invert)=0 |
Sets whether the Y axis of the mouse should be inverted. More... | |
virtual void | setKeyMap (const core::array< SKeyMap > &keymap)=0 |
virtual void | setKeyMap (SKeyMap *map, u32 count)=0 |
Sets the keyboard mapping for this animator (old style) More... | |
virtual void | setMoveSpeed (f32 moveSpeed)=0 |
Sets the speed of movement in units per millisecond. More... | |
virtual void | setRotateSpeed (f32 rotateSpeed)=0 |
Set the rotation speed in degrees. More... | |
virtual void | setVerticalMovement (bool allow)=0 |
Sets whether vertical movement should be allowed. More... | |
![]() | |
virtual void | animateNode (ISceneNode *node, u32 timeMs)=0 |
Animates a scene node. More... | |
virtual ISceneNodeAnimator * | createClone (ISceneNode *node, ISceneManager *newManager=0)=0 |
Creates a clone of this animator. More... | |
virtual ESCENE_NODE_ANIMATOR_TYPE | getType () const |
Returns type of the scene node animator. More... | |
virtual bool | hasFinished (void) const |
Returns if the animator has finished. More... | |
virtual bool | isEventReceiverEnabled () const |
Returns true if this animator receives events. More... | |
virtual bool | OnEvent (const SEvent &event) |
Event receiver, override this function for camera controlling animators. More... | |
![]() | |
virtual void | deserializeAttributes (io::IAttributes *in, io::SAttributeReadWriteOptions *options=0) |
Reads attributes of the object. More... | |
virtual void | serializeAttributes (io::IAttributes *out, io::SAttributeReadWriteOptions *options=0) const |
Writes attributes of the object. More... | |
![]() | |
IReferenceCounted () | |
Constructor. More... | |
virtual | ~IReferenceCounted () |
Destructor. More... | |
bool | drop () const |
Drops the object. Decrements the reference counter by one. More... | |
const c8 * | getDebugName () const |
Returns the debug name of the object. More... | |
s32 | getReferenceCount () const |
Get the reference count. More... | |
void | grab () const |
Grabs the object. Increments the reference counter by one. More... | |
![]() | |
virtual | ~IEventReceiver () |
Destructor. More... | |
virtual bool | OnEvent (const SEvent &event)=0 |
Called if an event happened. More... | |
Additional Inherited Members | |
![]() | |
void | setDebugName (const c8 *newName) |
Sets the debug name of the object. More... | |
Special scene node animator for FPS cameras.
This scene node animator can be attached to a camera to make it act like a first person shooter
Definition at line 23 of file ISceneNodeAnimatorCameraFPS.h.
|
pure virtual |
Gets the keyboard mapping for this animator.
|
pure virtual |
Returns the speed of movement in units per millisecond.
|
pure virtual |
Returns the rotation speed in degrees.
The degrees are equivalent to a half screen movement of the mouse, i.e. if the mouse cursor had been moved to the border of the screen since the last animation.
|
pure virtual |
Sets whether the Y axis of the mouse should be inverted.
If enabled then moving the mouse down will cause the camera to look up. It is disabled by default.
|
pure virtual |
Sets the keyboard mapping for this animator
keymap | The new keymap array |
|
pure virtual |
Sets the keyboard mapping for this animator (old style)
map | Array of keyboard mappings, see irr::SKeyMap |
count | Size of the keyboard map array. |
|
pure virtual |
Sets the speed of movement in units per millisecond.
|
pure virtual |
Set the rotation speed in degrees.
|
pure virtual |
Sets whether vertical movement should be allowed.
If vertical movement is enabled then the camera may fight with gravity causing camera shake. Disable this if the camera has a collision animator with gravity enabled.