Thank you, idb, for a patch that implements the stubs for llGetAgentLanguage()

0.6.0-stable
Melanie Thielker 2008-09-26 18:40:16 +00:00
parent 698ecec6f7
commit 54ef88c12c
3 changed files with 13 additions and 0 deletions

View File

@ -4508,6 +4508,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
return 0; return 0;
} }
public LSL_String llGetAgentLanguage(string id)
{
m_host.AddScriptLPS(1);
NotImplemented("llGetAgentLanguage");
return "";
}
public void llAdjustSoundVolume(double volume) public void llAdjustSoundVolume(double volume)
{ {
m_host.AddScriptLPS(1); m_host.AddScriptLPS(1);

View File

@ -103,6 +103,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
LSL_Float llFrand(double mag); LSL_Float llFrand(double mag);
LSL_Vector llGetAccel(); LSL_Vector llGetAccel();
LSL_Integer llGetAgentInfo(string id); LSL_Integer llGetAgentInfo(string id);
LSL_String llGetAgentLanguage(string id);
LSL_Vector llGetAgentSize(string id); LSL_Vector llGetAgentSize(string id);
LSL_Float llGetAlpha(int face); LSL_Float llGetAlpha(int face);
LSL_Float llGetAndResetTime(); LSL_Float llGetAndResetTime();

View File

@ -374,6 +374,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_LSL_Functions.llGetAgentInfo(id); return m_LSL_Functions.llGetAgentInfo(id);
} }
public LSL_String llGetAgentLanguage(string id)
{
return m_LSL_Functions.llGetAgentLanguage(id);
}
public LSL_Vector llGetAgentSize(string id) public LSL_Vector llGetAgentSize(string id)
{ {
return m_LSL_Functions.llGetAgentSize(id); return m_LSL_Functions.llGetAgentSize(id);