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?

CODE

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;
}
}