mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
minor changes on llgettime
This commit is contained in:
@@ -78,14 +78,14 @@ namespace OpenSim.Region.ScriptEngine.Yengine
|
||||
inst.Die();
|
||||
}
|
||||
|
||||
public void SetLSLTimer(double time)
|
||||
public void SetLSLTimerMS(double timeMS)
|
||||
{
|
||||
m_timer = time;
|
||||
m_timer = 0.001 * timeMS;
|
||||
}
|
||||
|
||||
public double getLSLTimer()
|
||||
public double getLSLTimerMS()
|
||||
{
|
||||
return(m_timer);
|
||||
return m_timer * 1000.0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user