コード例 #1
0
ファイル: BarData.cs プロジェクト: cjarec1/dmCapstone
 public void Animate(int targetValue)
 {
     if (targetValue != CurrentValue)
     {
         if (Animation != null)
         {
             Proxy.StopCoroutine(Animation);
         }
         CurrentValue = targetValue;
         Animation    = Proxy.StartCoroutine(AnimationRoutine(targetValue));
     }
 }