コード例 #1
0
ファイル: Sprite.cs プロジェクト: DavidKay/SuperSecret
 public void StopAnimate()
 {
     this._animation = null;
     this._isAnimating = false;
 }
コード例 #2
0
ファイル: Sprite.cs プロジェクト: DavidKay/SuperSecret
 public void Animate(string AnimationName)
 {
     this._animation = GraphicsManager.GetAnimation(AnimationName);
     this._isAnimating = true;
 }