implement LSL "print()" API function

This commit is contained in:
dahlia
2011-03-31 21:14:53 -07:00
parent 8f4bf43534
commit 8c8a0a182e
3 changed files with 13 additions and 1 deletions

View File

@@ -1847,5 +1847,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
{
return m_LSL_Functions.llClearPrimMedia(face);
}
public void print(string str)
{
m_LSL_Functions.print(str);
}
}
}