mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
llstrenglength (thanks ldvoipeng!)
This commit is contained in:
@@ -207,7 +207,19 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL
|
||||
public void llMinEventDelay(double delay) { }
|
||||
public void llSoundPreload() { }
|
||||
public void llRotLookAt(Axiom.Math.Quaternion target, double strength, double damping) { }
|
||||
public int llStringLength(string str) { return 0; }
|
||||
|
||||
public int llStringLength(string str)
|
||||
{
|
||||
if(str.Length > 0)
|
||||
{
|
||||
return str.Length;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
public void llStartAnimation(string anim) { }
|
||||
public void llStopAnimation(string anim) { }
|
||||
public void llPointAt() { }
|
||||
|
||||
Reference in New Issue
Block a user