removes dirty from ActionCamera

This commit is contained in:
Ricardo Quesada 2013-12-20 19:45:30 -08:00
parent eadbaa3bf5
commit 72d77bb035
2 changed files with 0 additions and 4 deletions

View File

@ -61,8 +61,6 @@ void ActionCamera::restore()
_upX = 0.0f;
_upY = 1.0f;
_upZ = 0.0f;
_dirty = false;
}
void ActionCamera::setEye(float x, float y, float z)

View File

@ -58,7 +58,6 @@ public:
,_upX(0)
,_upY(1)
,_upZ(0)
,_dirty(false)
{}
/**
* @js NA
@ -88,7 +87,6 @@ protected:
float _upX;
float _upY;
float _upZ;
bool _dirty;
};
/**