State exit
De DigiWiki.
Version du 5 décembre 2012 à 01:56 par Djphil  (discuter | contributions)
				
			Triggered on a qualifying state transition.
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\""); } }


