mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-28 23:09:55 +02:00
Fix initialization order
This commit is contained in:
parent
8093e3e5ae
commit
f3a745b6cb
1 changed files with 2 additions and 2 deletions
|
@ -40,10 +40,10 @@ ModelOverlay::ModelOverlay(const ModelOverlay* modelOverlay) :
|
||||||
_animationURL(modelOverlay->_animationURL),
|
_animationURL(modelOverlay->_animationURL),
|
||||||
_animationFPS(modelOverlay->_animationFPS),
|
_animationFPS(modelOverlay->_animationFPS),
|
||||||
_animationCurrentFrame(modelOverlay->_animationCurrentFrame),
|
_animationCurrentFrame(modelOverlay->_animationCurrentFrame),
|
||||||
_animationFirstFrame(modelOverlay->_animationFirstFrame),
|
|
||||||
_animationLastFrame(modelOverlay->_animationLastFrame),
|
|
||||||
_animationRunning(modelOverlay->_animationRunning),
|
_animationRunning(modelOverlay->_animationRunning),
|
||||||
_animationLoop(modelOverlay->_animationLoop),
|
_animationLoop(modelOverlay->_animationLoop),
|
||||||
|
_animationFirstFrame(modelOverlay->_animationFirstFrame),
|
||||||
|
_animationLastFrame(modelOverlay->_animationLastFrame),
|
||||||
_animationHold(modelOverlay->_animationHold),
|
_animationHold(modelOverlay->_animationHold),
|
||||||
_animationAllowTranslation(modelOverlay->_animationAllowTranslation)
|
_animationAllowTranslation(modelOverlay->_animationAllowTranslation)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue