Formatting cleanup.
parent
71f074839c
commit
2382342c65
|
@ -532,8 +532,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
LLUUID.TryParse(id, out keyID);
|
||||
|
||||
m_ScriptEngine.m_ASYNCLSLCommandManager.m_SensorRepeat.SenseOnce(m_localID, m_itemID, name, keyID, type, range, arc, m_host);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
public void llSensorRepeat(string name, string id, int type, double range, double arc, double rate)
|
||||
|
@ -543,14 +541,12 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
LLUUID.TryParse(id, out keyID);
|
||||
|
||||
m_ScriptEngine.m_ASYNCLSLCommandManager.m_SensorRepeat.SetSenseRepeatEvent(m_localID, m_itemID, name, keyID, type, range, arc, rate, m_host);
|
||||
return;
|
||||
}
|
||||
|
||||
public void llSensorRemove()
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
m_ScriptEngine.m_ASYNCLSLCommandManager.m_SensorRepeat.UnSetSenseRepeaterEvents(m_localID, m_itemID);
|
||||
return;
|
||||
}
|
||||
|
||||
public string resolveName(LLUUID objecUUID)
|
||||
|
@ -762,7 +758,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
World.DeleteSceneObjectGroup(m_host.ParentGroup);
|
||||
return;
|
||||
}
|
||||
|
||||
public double llGround(LSL_Types.Vector3 offset)
|
||||
|
@ -849,7 +844,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
m_host.SetAxisRotation(statusrotationaxis, value);
|
||||
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
public LSL_Types.LSLInteger llGetStatus(int status)
|
||||
|
@ -921,7 +915,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
tmp.Z = (float)scale.z;
|
||||
part.Scale = tmp;
|
||||
part.SendFullUpdateToAllClients();
|
||||
return;
|
||||
}
|
||||
|
||||
public LSL_Types.Vector3 llGetScale()
|
||||
|
@ -2547,7 +2540,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
|
||||
public void llSetScriptState(string name, int run)
|
||||
{
|
||||
|
||||
LLUUID item;
|
||||
ScriptManager sm;
|
||||
IScript script = null;
|
||||
|
@ -2576,11 +2568,8 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
if (script == null)
|
||||
ShoutError("llSetScriptState: script "+name+" not found");
|
||||
|
||||
// If we didn;t find it, then it's safe to
|
||||
// If we didn't find it, then it's safe to
|
||||
// assume it is not running.
|
||||
|
||||
return;
|
||||
|
||||
}
|
||||
|
||||
public double llGetEnergy()
|
||||
|
@ -4363,7 +4352,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
|
||||
public void llResetOtherScript(string name)
|
||||
{
|
||||
|
||||
LLUUID item;
|
||||
ScriptManager sm;
|
||||
IScript script = null;
|
||||
|
@ -4382,16 +4370,12 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
if (script == null)
|
||||
ShoutError("llResetOtherScript: script "+name+" not found");
|
||||
|
||||
// If we didn;t find it, then it's safe to
|
||||
// If we didn't find it, then it's safe to
|
||||
// assume it is not running.
|
||||
|
||||
return;
|
||||
|
||||
}
|
||||
|
||||
public LSL_Types.LSLInteger llGetScriptState(string name)
|
||||
{
|
||||
|
||||
LLUUID item;
|
||||
ScriptManager sm;
|
||||
IScript script = null;
|
||||
|
@ -4417,11 +4401,10 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
if (script == null)
|
||||
ShoutError("llGetScriptState: script "+name+" not found");
|
||||
|
||||
// If we didn;t find it, then it's safe to
|
||||
// If we didn't find it, then it's safe to
|
||||
// assume it is not running.
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
public void llRemoteLoadScript()
|
||||
|
@ -4516,7 +4499,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
if (part == null)
|
||||
return;
|
||||
|
||||
|
||||
int idx = 0;
|
||||
|
||||
while (idx < rules.Length)
|
||||
|
@ -4586,7 +4568,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
SetScale(part, v);
|
||||
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -5141,7 +5122,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
|
||||
public string llIntegerToBase64(int number)
|
||||
{
|
||||
|
||||
// uninitialized string
|
||||
|
||||
char[] imdt = new char[8];
|
||||
|
@ -5160,7 +5140,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
imdt[0] = i2ctable[number>>26 & 0x3F];
|
||||
|
||||
return new string(imdt);
|
||||
|
||||
}
|
||||
|
||||
// <summary>
|
||||
|
@ -5206,7 +5185,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
|
||||
public LSL_Types.LSLInteger llBase64ToInteger(string str)
|
||||
{
|
||||
|
||||
int number = 0;
|
||||
int digit;
|
||||
|
||||
|
@ -5263,7 +5241,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
// ignore trailing padding
|
||||
|
||||
return number;
|
||||
|
||||
}
|
||||
|
||||
public double llGetGMTclock()
|
||||
|
@ -5334,7 +5311,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
|
||||
public LSL_Types.list llParseStringKeepNulls(string src, LSL_Types.list separators, LSL_Types.list spacers)
|
||||
{
|
||||
|
||||
int beginning = 0;
|
||||
int srclen = src.Length;
|
||||
int seplen = separators.Length;
|
||||
|
@ -5456,7 +5432,6 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
}
|
||||
|
||||
return tokens;
|
||||
|
||||
}
|
||||
|
||||
public void llRezAtRoot(string inventory, LSL_Types.Vector3 position, LSL_Types.Vector3 velocity,
|
||||
|
|
Loading…
Reference in New Issue