Implement LSL-function llSetClickAction.

This commit is contained in:
Homer Horwitz
2008-09-25 20:37:56 +00:00
parent c713dcbada
commit 91e0369f83
2 changed files with 13 additions and 1 deletions

View File

@@ -1042,7 +1042,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public void llSetClickAction(int action)
{
m_host.AddScriptLPS(1);
NotImplemented("llSetClickAction");
m_host.ClickAction = (byte)action;
if (m_host.ParentGroup != null) m_host.ParentGroup.HasGroupChanged = true;
m_host.ScheduleFullUpdate();
return;
}