[Opensim-users] Hardcoded 0.5s minimum timer interval

Jorge Lima jorge.manuel at gmail.com
Thu Jun 16 16:14:56 UTC 2011


Is there any special rationale for this 0.5 second minimum value, or
am I free to mess around with it?
If so, shouldn't it be an option in the config files?

llSensorRepeat in OpenSim can handle 0.1 seconds, and LSL timers in
Second Life can go all the way down to 0.05 so...

LSL_API.cs :

protected float m_MinTimerInterval = 0.5f;
(...)
public void llSetTimerEvent(double sec)
{
           if (sec != 0.0 && sec < m_MinTimerInterval)
               sec = m_MinTimerInterval;
(...)
}



More information about the Opensim-users mailing list