implementing osDropAttachment & osDropAttachmentAt

This commit is contained in:
SignpostMarv
2012-07-31 14:45:23 +01:00
committed by Justin Clark-Casey (justincc)
parent e81e19a3b4
commit 35b7c80e0b
5 changed files with 72 additions and 3 deletions

View File

@@ -972,5 +972,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
{
m_OSSL_Functions.osSetContentType(id,type);
}
public void osDropAttachment()
{
m_OSSL_Functions.osDropAttachment();
}
public void osDropAttachmentAt(vector pos, rotation rot)
{
m_OSSL_Functions.osDropAttachmentAt(pos, rot);
}
}
}