State exit/ja
From Second Life Wiki
Second Life Wiki > State exit/ja
警告
- state_exit の間にキューに入ったイベントは、次の state に入る前に捨てられます。これを避けるために、なるべく state_entry を使いましょう。 state にさらに警告が載っています。
サンプル
default { state_entry() { llOwnerSay("in default state"); } touch_start(integer detected) { state other; } state_exit() { llOwnerSay("leaving default state"); } } state other { state_entry() { llOwnerSay("in state \"other\""); } touch_start(integer detected) { state default; } state_exit() { llOwnerSay("leaving state \"other\""); } }
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。

