refactoring llGetPos() to take advantage of implicit converter
parent
bffdf20721
commit
3148a231db
|
@ -2062,8 +2062,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
|||
public LSL_Vector llGetPos()
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
Vector3 pos = m_host.GetWorldPosition();
|
||||
return new LSL_Vector(pos.X, pos.Y, pos.Z);
|
||||
return m_host.GetWorldPosition();
|
||||
}
|
||||
|
||||
public LSL_Vector llGetLocalPos()
|
||||
|
|
Loading…
Reference in New Issue