言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Animation.Stop

Switch to Manual
public function Stop(): void;

Description

Animationクラスから再生した全てのアニメーションの再生を停止します。

アニメーションを停止させるとスタート位置に巻き戻されます。

	// Stop all animations
	animation.Stop();
public function Stop(name: string): void;

Description

/name/ の名からアニメーションを停止します

アニメーションを停止させるとスタート位置に巻き戻されます。

	// Stop the walk animation
	animation.Stop("walk");