Commit 8050b2d0 authored by hybrid's avatar hybrid

Fixed reorder warning.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1557 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 51220879
......@@ -18,7 +18,7 @@ CSceneNodeAnimatorCameraMaya::CSceneNodeAnimatorCameraMaya(gui::ICursorControl*
ZoomSpeed(zoom), RotateSpeed(rotate), TranslateSpeed(translate),
RotateStartX(0.0f), RotateStartY(0.0f), ZoomStartX(0.0f), ZoomStartY(0.0f),
TranslateStartX(0.0f), TranslateStartY(0.0f), CurrentZoom(70.0f), RotX(0.0f), RotY(0.0f),
Target(0,0,0), OldTarget(0,0,0), MousePos(0.5f, 0.5f), OldCamera(0)
Target(0,0,0), OldTarget(0,0,0), OldCamera(0), MousePos(0.5f, 0.5f)
{
#ifdef _DEBUG
setDebugName("CSceneNodeAnimatorCameraMaya");
......
......@@ -81,7 +81,10 @@ namespace scene
gui::ICursorControl *CursorControl;
core::vector3df Pos;
bool Zooming, Rotating, Moving, Translating;
bool Zooming;
bool Rotating;
bool Moving;
bool Translating;
f32 ZoomSpeed;
f32 RotateSpeed;
f32 TranslateSpeed;
......@@ -90,11 +93,11 @@ namespace scene
f32 TranslateStartX, TranslateStartY;
f32 CurrentZoom;
f32 RotX, RotY;
core::vector3df Target, OldTarget;
core::vector3df Target;
core::vector3df OldTarget;
scene::ICameraSceneNode* OldCamera;
core::position2d<f32> MousePos;
};
} // end namespace scene
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment