{
tlog.Fatal(tag, $" [ERROR][{GetId()}](AnimatedVectorImageView) different LoopMode! gotten={ret}, loopMode={currentStates.loopMode}");
}
+ currentStates.loopMode = (LoopingModeType)ret;
return (LoopingModeType)ret;
}
}
{
tlog.Fatal(tag, $"[ERROR][{GetId()}](AnimatedVectorImageView) different loop count! gotten={ret}, loopCount={currentStates.loopCount}");
}
+ currentStates.loopCount = ret;
return currentStates.loopCount;
}
}
{
tlog.Fatal(tag, $"[ERROR][{GetId()}](AnimatedVectorImageView) different StopBehavior! gotten={ret}, StopBehavior={currentStates.stopEndAction}");
}
+ currentStates.stopEndAction = (StopBehaviorType)ret;
return (StopBehaviorType)ret;
}
}
}
else
{
- //SetPlayRange(0, TotalFrameNumber - 1);
+ SetPlayRange(0, TotalFrameNumber - 1);
}
+ //temporal fix
+ Extents tmp = base.Margin;
+ base.Margin = tmp;
+
base.Play();
AnimationState = AnimationStates.Playing;