
三次元の塗り絵は、やっとここまで作れました。
お世辞にも綺麗とは言えません。下手との自覚はあります。
Skinの小学校があるならば、入学したいくらいです。
でも何事も完成して形になるのは、とても嬉しいですね。
体は「Another」という公開データを修正使用しました。
人様が作成したデータを使わせて戴いたわけです。
きちんと明記しておかなければなりません。
これは「C'z PARTY」の閉店フェアにてFreebieで出す予定です。
ライセンスカードも入ってます。
祭り上げられ店主の独り言Blog
float speed = 1.0;
default
{
state_entry()
{
llTargetOmega(<0,0,1>,speed,1);
}
}
float speed = 0.3;
default
{
state_entry()
{
state stop_music;
}
}
state stop_music
{
touch_start(integer total_number)
{
llTargetOmega(<0,0,1>, speed, 1);
state play_music;
}
}
state play_music
{
touch_start(integer total_number)
{
llTargetOmega(<0,0,0>, speed, 1);
state stop_music;
}
}
string czmusic = "音ファイル名";
default
{
state_entry()
{
string czmusic;
state stop_music;
}
}
state stop_music
{
state_entry()
{
llSetTouchText("Play!");
llPreloadSound(czmusic);
}
touch_start(integer total_number)
{
llLoopSound(czmusic, 1);
state play_music;
}
}
state play_music
{
state_entry()
{
llSetTouchText("Stop!");
}
touch_start(integer total_number)
{
llStopSound();
state stop_music;
}
}