State exit/ja
From Second Life Wiki
例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\""); } } |

