LSL: Long Touch

default {
    touch_start(integer num) {
        warning("*idle touch_start("+(string)num+")");
        llResetTime();
    }
 
    touch_end(integer num) {
        warning("*idle touch_end("+(string)num+")");
        if (llGetTime() > 2.0) {
            // Reposition on long-touch
            debug("~~~~~~~touch_end()");
        }
    }
}