Fix hit testing link sets properly. Fix raycasting for LSL.

This commit is contained in:
Melanie
2011-12-17 12:31:25 +01:00
parent 69f29cb53e
commit 8a9a8ed5c9
4 changed files with 345 additions and 106 deletions

View File

@@ -165,6 +165,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_LSL_Functions.llBreakLink(linknum);
}
public LSL_List llCastRay(LSL_Vector start, LSL_Vector end, LSL_List options)
{
return m_LSL_Functions.llCastRay(start, end, options);
}
public LSL_Integer llCeil(double f)
{
return m_LSL_Functions.llCeil(f);