forked from organicmaps/organicmaps-tmp
Getting of arrow animation properties fixed.
This commit is contained in:
parent
b7e1bea854
commit
f40a9d5884
2 changed files with 5 additions and 3 deletions
|
@ -93,7 +93,9 @@ PositionInterpolator::PositionInterpolator(double duration, double delay,
|
|||
, m_startPosition(startPosition)
|
||||
, m_endPosition(endPosition)
|
||||
, m_position(startPosition)
|
||||
{}
|
||||
{
|
||||
SetActive(m_startPosition != m_endPosition);
|
||||
}
|
||||
|
||||
PositionInterpolator::PositionInterpolator(m2::PointD const & startPosition,
|
||||
m2::PointD const & endPosition,
|
||||
|
|
|
@ -138,7 +138,7 @@ bool AnimationSystem::SwitchPerspective(Animation::SwitchPerspectiveParams & par
|
|||
bool AnimationSystem::GetArrowPosition(m2::PointD & position)
|
||||
{
|
||||
Animation::PropertyValue value;
|
||||
if (GetProperty(Animation::Arrow, Animation::Position, value))
|
||||
if (GetProperty(Animation::MyPositionArrow, Animation::Position, value))
|
||||
{
|
||||
position = value.m_valuePointD;
|
||||
return true;
|
||||
|
@ -149,7 +149,7 @@ bool AnimationSystem::GetArrowPosition(m2::PointD & position)
|
|||
bool AnimationSystem::GetArrowAngle(double & angle)
|
||||
{
|
||||
Animation::PropertyValue value;
|
||||
if (GetProperty(Animation::Arrow, Animation::Angle, value))
|
||||
if (GetProperty(Animation::MyPositionArrow, Animation::Angle, value))
|
||||
{
|
||||
angle = value.m_valueD;
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue