Skip to content

Instantly share code, notes, and snippets.

@Makopo
Created November 16, 2017 15:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Makopo/2db922b7f653b2796199794492c89f8b to your computer and use it in GitHub Desktop.
Save Makopo/2db922b7f653b2796199794492c89f8b to your computer and use it in GitHub Desktop.
Qiita Corrade入門その2記事 「枠を作る」まで
default
{
touch_start(integer num_detected)
{
llOwnerSay("ボットアバターを座らせます");
//
// ここで[地面に座る]を命令
//
state on_the_ground;
}
}
state on_the_ground
{
touch_start(integer num_detected)
{
llOwnerSay("ボットアバターを立たせます");
//
// ここで[立ち上がる]を命令
//
state default;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment