|
Gearsawe Stonecutter
Over there
Join date: 14 Sep 2005
Posts: 614
|
03-31-2007 16:43
I swear if you click and hold on an object and there was a state change the a touch event in the new state would trigger. Now it seems you have to move the mouse a little to make it start triggering. Does anyone remember if it was this way? or has this changed in a recent update? default { touch_start(integer total_number) { llOwnerSay("touch start"); state hold_touch; } }
state hold_touch { touch(integer num) { llOwnerSay("touching"); } touch_end(integer num) { llOwnerSay("touch end"); state default; } }
|