View this PageEdit this PageAttachments to this PageHistory of this PageHomeRecent ChangesSearch the SwikiHelp Guide

アニメーションなのだ

back


前のページで読み込んだキャラクタを使って
アニメーションさせてみよおお。




■移動アニメなのだ

前進してもらっちゃうのだ。
(一行目は何度も試せるように元の位置に戻らせてるっす)
----------------------------------------
tframe translationX: 0 y: -3.5 z: 0.
[30 timesRepeat: [
	(Delay forMilliseconds: 50) wait.
	tframe translation: (tframe translation + (0@0@0.3))
	]]fork.
----------------------------------------
Alt + d ( Cmd + d )

Uploaded Image: image20.jpg



■回転アニメなのだ

キャラを一回転させちゃいまする。
----------------------------------------
[36 timesRepeat: [
	(Delay forMilliseconds: 100) wait.
	tframe addRotationAroundY: 10]]fork.
----------------------------------------
Alt + d ( Cmd + d )

Uploaded Image: image21.jpg



■移動方向に向かせグラウンド一周!!

キャラを移動方向に向かせながら一周させちゃうのれす。
(一行目は何度も試せるように元の位置に戻らせてるっす)
----------------------------------------
tframe translationX: 0 y: -3.5 z: 0.
angle _ 0.
x _ 0.
z _ 0.
tframe rotationAroundY: 90.	
[60 timesRepeat: [
	(Delay forMilliseconds: 100) wait.
	fp _ (Point r: 1 degrees: angle).
	angle _ angle + 6.
	x _ x + fp x.
	z _ z + fp y.
	tframe addRotationAroundY: -6.
	tframe translation: x@ -3.5@z]] fork.
----------------------------------------
Alt + d ( Cmd + d )

Uploaded Image: image22.jpg







下の入力ボックスに書き込んで”add to the page”ボタンで登録出来ます。
修正したい場合はページ左のアイコンの”edit”で出てくる画面で編集可能です。
ページ左のアイコンの”uploads”で画像(JPEG,GIF,PNG)のアップロードもできます。


Tuesday, 27 December 2005, 2:03:37 pm
tframe translationX: 0 y: -3.5 z: 0.
angle _ 0.
x _ 0.
z _ 0.
tframe rotationAroundY: 90.
[60 timesRepeat: [
(Delay forMilliseconds: 100) wait.
fp _ (Point r: 1 degrees: angle).
angle _ angle + 6.
x _ x + fp x.
z _ z + fp y.
tframe addRotationAroundY: -6.
tframe translation: x@ -3.5@z]] fork.

Link to this Page

  • Enjoy CROQUET last edited on 5 November 2022 at 11:40:11 am by localhost