diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index e6c2cb4486..1fd75e19be 100755 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs @@ -5559,8 +5559,7 @@ Environment.Exit(1); // Get terrain height at the specified location. // Presumes the underlying implementation is a heightmap which is a 1m grid. - // Finds heightmap grid points before and after the point and - // does a linear approximation of the height at this intermediate point. + public float GetGroundHeight(float x, float y) { return Heightmap.GetHeight(x, y); diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 2fc2cd0582..4211bd2f7d 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs @@ -1341,72 +1341,55 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_String llDetectedName(int number) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (detectedParams == null) - return String.Empty; - return detectedParams.Name; + return detectedParams is null ? LSL_String.Empty : detectedParams.Name; } public LSL_Key llDetectedKey(int number) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (detectedParams == null) - return String.Empty; - return detectedParams.Key.ToString(); + return detectedParams is null ? LSL_String.Empty : detectedParams.Key.ToString(); } public LSL_Key llDetectedOwner(int number) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (detectedParams == null) - return String.Empty; - return detectedParams.Owner.ToString(); + return detectedParams is null ? LSL_String.Empty : detectedParams.Owner.ToString(); } public LSL_Integer llDetectedType(int number) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (detectedParams == null) - return 0; - return new LSL_Integer(detectedParams.Type); + return detectedParams is null ? 0 : new LSL_Integer(detectedParams.Type); } public LSL_Vector llDetectedPos(int number) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (detectedParams == null) - return new LSL_Vector(); - return detectedParams.Position; + return detectedParams is null ? new LSL_Vector() : detectedParams.Position; } public LSL_Vector llDetectedVel(int number) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (detectedParams == null) - return new LSL_Vector(); - return detectedParams.Velocity; + return detectedParams == null ? new LSL_Vector() : detectedParams.Velocity; } public LSL_Vector llDetectedGrab(int number) { DetectParams parms = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (parms == null) - return new LSL_Vector(0, 0, 0); - - return parms.OffsetPos; + return parms is null ? new LSL_Vector() : parms.OffsetPos; } public LSL_Rotation llDetectedRot(int number) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (detectedParams == null) - return new LSL_Rotation(); - return detectedParams.Rotation; + return detectedParams is null ? new LSL_Rotation() : detectedParams.Rotation; } public LSL_Integer llDetectedGroup(int number) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (detectedParams == null) + if (detectedParams is null) return new LSL_Integer(0); if (m_host.GroupID.Equals(detectedParams.Group)) return new LSL_Integer(1); @@ -1416,10 +1399,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_Integer llDetectedLinkNumber(int number) { DetectParams parms = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); - if (parms == null) - return new LSL_Integer(0); - - return new LSL_Integer(parms.LinkNum); + return parms is null ? new LSL_Integer() : new LSL_Integer(parms.LinkNum); } /// @@ -1428,9 +1408,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_Vector llDetectedTouchBinormal(int index) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, index); - if (detectedParams == null) - return new LSL_Vector(); - return detectedParams.TouchBinormal; + return detectedParams is null ? new LSL_Vector() : detectedParams.TouchBinormal; } /// @@ -1439,9 +1417,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_Integer llDetectedTouchFace(int index) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, index); - if (detectedParams == null) - return new LSL_Integer(-1); - return new LSL_Integer(detectedParams.TouchFace); + return detectedParams is null ? new LSL_Integer(-1) : new LSL_Integer(detectedParams.TouchFace); } /// @@ -1450,9 +1426,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_Vector llDetectedTouchNormal(int index) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, index); - if (detectedParams == null) - return new LSL_Vector(); - return detectedParams.TouchNormal; + return detectedParams is null ? new LSL_Vector() : detectedParams.TouchNormal; } /// @@ -1461,9 +1435,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_Vector llDetectedTouchPos(int index) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, index); - if (detectedParams == null) - return new LSL_Vector(); - return detectedParams.TouchPos; + return detectedParams is null ? new LSL_Vector() : detectedParams.TouchPos; } /// @@ -1472,9 +1444,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_Vector llDetectedTouchST(int index) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, index); - if (detectedParams == null) - return new LSL_Vector(-1.0, -1.0, 0.0); - return detectedParams.TouchST; + return detectedParams is null ? new LSL_Vector(-1.0, -1.0, 0.0) : detectedParams.TouchST; } /// @@ -1483,9 +1453,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_Vector llDetectedTouchUV(int index) { DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, index); - if (detectedParams == null) - return new LSL_Vector(-1.0, -1.0, 0.0); - return detectedParams.TouchUV; + return detectedParams is null ? new LSL_Vector(-1.0, -1.0, 0.0) : detectedParams.TouchUV; } [DebuggerNonUserCode] @@ -1505,25 +1473,23 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_Float llCloud(LSL_Vector offset) { - float cloudCover = 0f; ICloudModule module = World.RequestModuleInterface(); - if (module != null) + if (module is not null) { Vector3 pos = m_host.GetWorldPosition(); int x = (int)(pos.X + offset.x); int y = (int)(pos.Y + offset.y); - cloudCover = module.CloudCover(x, y, 0); - + return module.CloudCover(x, y, 0); } - return cloudCover; + return 0; } public LSL_Vector llWind(LSL_Vector offset) { - LSL_Vector wind = new LSL_Vector(0, 0, 0); + LSL_Vector wind = new(); IWindModule module = World.RequestModuleInterface(); - if (module != null) + if (module is not null) { Vector3 pos = m_host.GetWorldPosition(); int x = (int)(pos.X + offset.x); @@ -1539,49 +1505,46 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public void llSetStatus(int status, int value) { - if (m_host == null || m_host.ParentGroup == null || m_host.ParentGroup.IsDeleted) + if (m_host is null || m_host.ParentGroup is null || m_host.ParentGroup.IsDeleted) return; int statusrotationaxis = 0; - if ((status & ScriptBaseClass.STATUS_PHYSICS) == ScriptBaseClass.STATUS_PHYSICS) + if ((status & ScriptBaseClass.STATUS_PHYSICS) != 0) { if (value != 0) { SceneObjectGroup group = m_host.ParentGroup; - bool allow = true; - - int maxprims = World.m_linksetPhysCapacity; - bool checkShape = (maxprims > 0 && group.PrimCount > maxprims); - - foreach (SceneObjectPart part in group.Parts) + if (group.RootPart.PhysActor is null || !group.RootPart.PhysActor.IsPhysical) { - if (part.PhysicsShapeType == (byte)PhysicsShapeType.None) - continue; + bool allow = true; + int maxprims = World.m_linksetPhysCapacity; + bool checkShape = (maxprims > 0 && group.PrimCount > maxprims); - if (part.Scale.X > World.m_maxPhys || part.Scale.Y > World.m_maxPhys || part.Scale.Z > World.m_maxPhys) + foreach (SceneObjectPart part in group.Parts) { - allow = false; - break; - } - if (checkShape) - { - if (--maxprims < 0) + if (part.PhysicsShapeType == (byte)PhysicsShapeType.None) + continue; + + if (checkShape) + { + if (--maxprims < 0) + { + allow = false; + break; + } + } + + if (part.Scale.X > World.m_maxPhys || part.Scale.Y > World.m_maxPhys || part.Scale.Z > World.m_maxPhys) { allow = false; break; } } + + if (allow) + m_host.ScriptSetPhysicsStatus(true); } - - if (!allow) - return; - - if (m_host.ParentGroup.RootPart.PhysActor != null && - m_host.ParentGroup.RootPart.PhysActor.IsPhysical) - return; - - m_host.ScriptSetPhysicsStatus(true); } else { @@ -1589,70 +1552,43 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api } } - if ((status & ScriptBaseClass.STATUS_PHANTOM) == ScriptBaseClass.STATUS_PHANTOM) - { + if ((status & ScriptBaseClass.STATUS_PHANTOM) != 0) m_host.ParentGroup.ScriptSetPhantomStatus(value != 0); - } - if ((status & ScriptBaseClass.STATUS_CAST_SHADOWS) == ScriptBaseClass.STATUS_CAST_SHADOWS) - { + if ((status & ScriptBaseClass.STATUS_CAST_SHADOWS) != 0) m_host.AddFlag(PrimFlags.CastShadows); - } - if ((status & ScriptBaseClass.STATUS_ROTATE_X) == ScriptBaseClass.STATUS_ROTATE_X) - { + if ((status & ScriptBaseClass.STATUS_ROTATE_X) != 0) statusrotationaxis |= ScriptBaseClass.STATUS_ROTATE_X; - } - if ((status & ScriptBaseClass.STATUS_ROTATE_Y) == ScriptBaseClass.STATUS_ROTATE_Y) - { + if ((status & ScriptBaseClass.STATUS_ROTATE_Y) !=0) statusrotationaxis |= ScriptBaseClass.STATUS_ROTATE_Y; - } - if ((status & ScriptBaseClass.STATUS_ROTATE_Z) == ScriptBaseClass.STATUS_ROTATE_Z) - { + if ((status & ScriptBaseClass.STATUS_ROTATE_Z) != 0) statusrotationaxis |= ScriptBaseClass.STATUS_ROTATE_Z; - } - if ((status & ScriptBaseClass.STATUS_BLOCK_GRAB) == ScriptBaseClass.STATUS_BLOCK_GRAB) + if ((status & ScriptBaseClass.STATUS_BLOCK_GRAB) != 0) m_host.BlockGrab = value != 0; - if ((status & ScriptBaseClass.STATUS_BLOCK_GRAB_OBJECT) == ScriptBaseClass.STATUS_BLOCK_GRAB_OBJECT) + if ((status & ScriptBaseClass.STATUS_BLOCK_GRAB_OBJECT) != 0) m_host.ParentGroup.BlockGrabOverride = value != 0; - if ((status & ScriptBaseClass.STATUS_DIE_AT_EDGE) == ScriptBaseClass.STATUS_DIE_AT_EDGE) - { - if (value != 0) - m_host.SetDieAtEdge(true); - else - m_host.SetDieAtEdge(false); - } + if ((status & ScriptBaseClass.STATUS_DIE_AT_EDGE) != 0) + m_host.SetDieAtEdge(value != 0); - if ((status & ScriptBaseClass.STATUS_RETURN_AT_EDGE) == ScriptBaseClass.STATUS_RETURN_AT_EDGE) - { - if (value != 0) - m_host.SetReturnAtEdge(true); - else - m_host.SetReturnAtEdge(false); - } + if ((status & ScriptBaseClass.STATUS_RETURN_AT_EDGE) != 0) + m_host.SetReturnAtEdge(value != 0); - if ((status & ScriptBaseClass.STATUS_SANDBOX) == ScriptBaseClass.STATUS_SANDBOX) - { - if (value != 0) - m_host.SetStatusSandbox(true); - else - m_host.SetStatusSandbox(false); - } + if ((status & ScriptBaseClass.STATUS_SANDBOX) != 0) + m_host.SetStatusSandbox(value != 0); if (statusrotationaxis != 0) - { m_host.SetAxisRotation(statusrotationaxis, value); - } } private bool IsPhysical() { - return ((m_host.GetEffectiveObjectFlags() & (uint)PrimFlags.Physics) == (uint)PrimFlags.Physics); + return ((m_host.GetEffectiveObjectFlags() & (uint)PrimFlags.Physics) != 0); } public LSL_Integer llGetStatus(int status) @@ -6607,11 +6543,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public void llLinkAdjustSoundVolume(LSL_Integer linknumber, LSL_Float volume) { - List parts = GetLinkParts(linknumber); - foreach (SceneObjectPart part in parts) - { + foreach (SceneObjectPart part in GetLinkParts(linknumber)) part.AdjustSoundGain(volume); - } + ScriptSleep(m_sleepMsOnAdjustSoundVolume); } @@ -6631,17 +6565,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api if (UUID.TryParse(id, out UUID key) && key.IsNotZero()) { ScenePresence presence = World.GetScenePresence(key); - if (presence != null) - { + if (presence is not null) return presence.Name; - } + SceneObjectPart sop = World.GetSceneObjectPart(key); - if (sop != null) - { + if (sop is not null) return sop.Name; - } } - return String.Empty; + return LSL_String.Empty; } public LSL_Key llName2Key(LSL_String name) @@ -7941,7 +7872,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api { if (src.Length == 0) { - return String.Empty; + return LSL_String.Empty; } string ret = String.Empty; foreach (object o in src.Data) @@ -10823,7 +10754,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api catch { Error("llBase64ToString", "Error encoding string"); - return string.Empty; + return LSL_String.Empty; } } @@ -10837,7 +10768,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api catch { Error("llBase64ToString", "Error decoding string"); - return string.Empty; + return LSL_String.Empty; } } @@ -10893,7 +10824,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api ILandObject land = World.LandChannel.GetLandObject(m_host.AbsolutePosition); if (land.LandData.OwnerID != m_host.OwnerID) - return String.Empty; + return LSL_String.Empty; return land.GetMusicUrl(); } @@ -12302,7 +12233,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api if (m_UrlModule != null) return m_UrlModule.GetHttpHeader(new UUID(request_id), header); - return String.Empty; + return LSL_String.Empty; } @@ -12678,7 +12609,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api if (item is null) { Error("llGetInventoryAcquireTime", $"Can't find item '{itemName}'"); - return String.Empty; + return LSL_String.Empty; } DateTime date = Util.ToDateTime(item.CreationDate); @@ -13723,7 +13654,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api ScriptSleep(300); if (str1.Length == 0) - return string.Empty; + return LSL_String.Empty; if (str2.Length == 0) return str1; @@ -13753,7 +13684,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api } catch { - return string.Empty; + return LSL_String.Empty; } // Remove padding @@ -13805,7 +13736,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api { if (str1.Length == 0) - return string.Empty; + return LSL_String.Empty; if (str2.Length == 0) return str1; @@ -13837,7 +13768,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api } catch (Exception) { - return string.Empty; + return LSL_String.Empty; } int len2 = data2.Length; @@ -13882,16 +13813,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api input = input.Substring(0, paddingPos); int remainder = input.Length % 4; - switch(remainder) + return remainder switch { - case 0: - return input; - case 1: - return input.Substring(0, input.Length - 1); - case 2: - return input + "=="; - } - return input + "="; + 0 => input, + 1 => input.Substring(0, input.Length - 1), + 2 => input + "==", + _ => input + "=", + }; } public LSL_String llXorBase64(string str1, string str2) @@ -13902,7 +13830,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api str1 = truncateBase64(str1); if (string.IsNullOrEmpty(str1)) - return string.Empty; + return LSL_String.Empty; str2 = truncateBase64(str2); if (string.IsNullOrEmpty(str2)) @@ -13917,7 +13845,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api } catch (Exception) { - return string.Empty; + return LSL_String.Empty; } int len2 = data2.Length; @@ -15247,7 +15175,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api return presence.Name; } } - return String.Empty; + return LSL_String.Empty; } public LSL_Key llRequestDisplayName(LSL_Key id) @@ -17497,19 +17425,19 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api { ScenePresence presence = World.GetScenePresence(m_item.PermsGranter); - if (presence == null) - return String.Empty; + if (presence is null) + return LSL_String.Empty; if (m_item.PermsGranter.IsZero()) { llShout(ScriptBaseClass.DEBUG_CHANNEL, "No permission to override animations"); - return String.Empty; + return LSL_String.Empty; } if ((m_item.PermsMask & (ScriptBaseClass.PERMISSION_OVERRIDE_ANIMATIONS | ScriptBaseClass.PERMISSION_TRIGGER_ANIMATION)) == 0) { llShout(ScriptBaseClass.DEBUG_CHANNEL, "No permission to override animations"); - return String.Empty; + return LSL_String.Empty; } string state = String.Empty; @@ -17525,7 +17453,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api if (state.Length == 0) { - return String.Empty; + return LSL_String.Empty; } if (!presence.TryGetAnimationOverride(state, out UUID animID) || animID.IsZero()) @@ -17543,7 +17471,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api return item.Name; } - return String.Empty; + return LSL_String.Empty; } public LSL_Integer llGetDayLength() @@ -18438,7 +18366,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api public LSL_String llChar(LSL_Integer unicode) { if(unicode == 0) - return string.Empty; + return LSL_String.Empty; try { return Char.ConvertFromUtf32(unicode); diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs index f096e2b48e..94f5f72458 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs @@ -27,10 +27,7 @@ using System; using System.Diagnostics; //for [DebuggerNonUserCode] -using System.Threading; -using System.Reflection; -using System.Collections; -using System.Collections.Generic; +using System.Runtime.CompilerServices; using OpenSim.Region.ScriptEngine.Interfaces; using OpenSim.Region.ScriptEngine.Shared.Api.Interfaces; @@ -56,6 +53,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase m_LSL_Functions = p; } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void state(string newState) { m_LSL_Functions.state(newState); @@ -64,256 +62,307 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase // // Script functions // + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llAbs(LSL_Integer i) { return m_LSL_Functions.llAbs(i); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llAcos(LSL_Float val) { return m_LSL_Functions.llAcos(val); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llAddToLandBanList(LSL_Key avatar, LSL_Float hours) { m_LSL_Functions.llAddToLandBanList(avatar, hours); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llAddToLandPassList(LSL_Key avatar, LSL_Float hours) { m_LSL_Functions.llAddToLandPassList(avatar, hours); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llAdjustSoundVolume(LSL_Float volume) { m_LSL_Functions.llAdjustSoundVolume(volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llAllowInventoryDrop(LSL_Integer add) { m_LSL_Functions.llAllowInventoryDrop(add); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llAngleBetween(LSL_Rotation a, LSL_Rotation b) { return m_LSL_Functions.llAngleBetween(a, b); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llApplyImpulse(LSL_Vector force, LSL_Integer local) { m_LSL_Functions.llApplyImpulse(force, local); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llApplyRotationalImpulse(LSL_Vector force, int local) { m_LSL_Functions.llApplyRotationalImpulse(force, local); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llAsin(LSL_Float val) { return m_LSL_Functions.llAsin(val); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llAtan2(LSL_Float x, LSL_Float y) { return m_LSL_Functions.llAtan2(x, y); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llAttachToAvatar(LSL_Integer attachment) { m_LSL_Functions.llAttachToAvatar(attachment); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llAttachToAvatarTemp(LSL_Integer attachment) { m_LSL_Functions.llAttachToAvatarTemp(attachment); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llAvatarOnSitTarget() { return m_LSL_Functions.llAvatarOnSitTarget(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llAvatarOnLinkSitTarget(LSL_Integer linknum) { return m_LSL_Functions.llAvatarOnLinkSitTarget(linknum); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llAxes2Rot(LSL_Vector fwd, LSL_Vector left, LSL_Vector up) { return m_LSL_Functions.llAxes2Rot(fwd, left, up); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llAxisAngle2Rot(LSL_Vector axis, double angle) { return m_LSL_Functions.llAxisAngle2Rot(axis, angle); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llBase64ToInteger(string str) { return m_LSL_Functions.llBase64ToInteger(str); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llBase64ToString(string str) { return m_LSL_Functions.llBase64ToString(str); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llBreakAllLinks() { m_LSL_Functions.llBreakAllLinks(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llBreakLink(int linknum) { m_LSL_Functions.llBreakLink(linknum); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llCeil(double f) { return m_LSL_Functions.llCeil(f); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llClearCameraParams() { m_LSL_Functions.llClearCameraParams(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llCloseRemoteDataChannel(string channel) { m_LSL_Functions.llCloseRemoteDataChannel(channel); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llCloud(LSL_Vector offset) { return m_LSL_Functions.llCloud(offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llCollisionFilter(LSL_String name, LSL_Key id, LSL_Integer accept) { m_LSL_Functions.llCollisionFilter(name, id, accept); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llCollisionSound(LSL_String impact_sound, LSL_Float impact_volume) { m_LSL_Functions.llCollisionSound(impact_sound, impact_volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llCollisionSprite(LSL_String impact_sprite) { m_LSL_Functions.llCollisionSprite(impact_sprite); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llCos(double f) { return m_LSL_Functions.llCos(f); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llCreateLink(LSL_Key target, LSL_Integer parent) { m_LSL_Functions.llCreateLink(target, parent); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llCSV2List(string src) { return m_LSL_Functions.llCSV2List(src); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llDeleteSubList(LSL_List src, int start, int end) { return m_LSL_Functions.llDeleteSubList(src, start, end); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llDeleteSubString(string src, int start, int end) { return m_LSL_Functions.llDeleteSubString(src, start, end); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llDetachFromAvatar() { m_LSL_Functions.llDetachFromAvatar(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llDetectedGrab(int number) { return m_LSL_Functions.llDetectedGrab(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llDetectedGroup(int number) { return m_LSL_Functions.llDetectedGroup(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llDetectedKey(int number) { return m_LSL_Functions.llDetectedKey(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llDetectedLinkNumber(int number) { return m_LSL_Functions.llDetectedLinkNumber(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llDetectedName(int number) { return m_LSL_Functions.llDetectedName(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llDetectedOwner(int number) { return m_LSL_Functions.llDetectedOwner(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llDetectedPos(int number) { return m_LSL_Functions.llDetectedPos(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llDetectedRot(int number) { return m_LSL_Functions.llDetectedRot(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llDetectedType(int number) { return m_LSL_Functions.llDetectedType(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llDetectedTouchBinormal(int index) { return m_LSL_Functions.llDetectedTouchBinormal(index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llDetectedTouchFace(int index) { return m_LSL_Functions.llDetectedTouchFace(index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llDetectedTouchNormal(int index) { return m_LSL_Functions.llDetectedTouchNormal(index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llDetectedTouchPos(int index) { return m_LSL_Functions.llDetectedTouchPos(index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llDetectedTouchST(int index) { return m_LSL_Functions.llDetectedTouchST(index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llDetectedTouchUV(int index) { return m_LSL_Functions.llDetectedTouchUV(index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llDetectedVel(int number) { return m_LSL_Functions.llDetectedVel(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llDialog(LSL_Key avatar, LSL_String message, LSL_List buttons, int chat_channel) { m_LSL_Functions.llDialog(avatar, message, buttons, chat_channel); @@ -325,1916 +374,2298 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase m_LSL_Functions.llDie(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llDumpList2String(LSL_List src, string seperator) { return m_LSL_Functions.llDumpList2String(src, seperator); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llEdgeOfWorld(LSL_Vector pos, LSL_Vector dir) { return m_LSL_Functions.llEdgeOfWorld(pos, dir); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llEjectFromLand(LSL_Key pest) { m_LSL_Functions.llEjectFromLand(pest); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llEmail(string address, string subject, string message) { m_LSL_Functions.llEmail(address, subject, message); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llEscapeURL(string url) { return m_LSL_Functions.llEscapeURL(url); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llEuler2Rot(LSL_Vector v) { return m_LSL_Functions.llEuler2Rot(v); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llFabs(double f) { return m_LSL_Functions.llFabs(f); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llFloor(double f) { return m_LSL_Functions.llFloor(f); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llForceMouselook(int mouselook) { m_LSL_Functions.llForceMouselook(mouselook); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llFrand(double mag) { return m_LSL_Functions.llFrand(mag); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGenerateKey() { return m_LSL_Functions.llGenerateKey(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetAccel() { return m_LSL_Functions.llGetAccel(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetAgentInfo(LSL_Key id) { return m_LSL_Functions.llGetAgentInfo(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetAgentLanguage(LSL_Key id) { return m_LSL_Functions.llGetAgentLanguage(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetAgentList(LSL_Integer scope, LSL_List options) { return m_LSL_Functions.llGetAgentList(scope, options); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetAgentSize(LSL_Key id) { return m_LSL_Functions.llGetAgentSize(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetAlpha(int face) { return m_LSL_Functions.llGetAlpha(face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetAndResetTime() { return m_LSL_Functions.llGetAndResetTime(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetAnimation(LSL_Key id) { return m_LSL_Functions.llGetAnimation(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetAnimationList(LSL_Key id) { return m_LSL_Functions.llGetAnimationList(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetAttached() { return m_LSL_Functions.llGetAttached(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetAttachedList(LSL_Key id) { return m_LSL_Functions.llGetAttachedList(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetBoundingBox(string obj) { return m_LSL_Functions.llGetBoundingBox(obj); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetCameraPos() { return m_LSL_Functions.llGetCameraPos(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llGetCameraRot() { return m_LSL_Functions.llGetCameraRot(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetCenterOfMass() { return m_LSL_Functions.llGetCenterOfMass(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetColor(int face) { return m_LSL_Functions.llGetColor(face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetCreator() { return m_LSL_Functions.llGetCreator(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetDate() { return m_LSL_Functions.llGetDate(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetEnergy() { return m_LSL_Functions.llGetEnergy(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetEnv(LSL_String name) { return m_LSL_Functions.llGetEnv(name); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetForce() { return m_LSL_Functions.llGetForce(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetFreeMemory() { return m_LSL_Functions.llGetFreeMemory(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetUsedMemory() { return m_LSL_Functions.llGetUsedMemory(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetFreeURLs() { return m_LSL_Functions.llGetFreeURLs(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetGeometricCenter() { return m_LSL_Functions.llGetGeometricCenter(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetGMTclock() { return m_LSL_Functions.llGetGMTclock(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetHTTPHeader(LSL_Key request_id, string header) { return m_LSL_Functions.llGetHTTPHeader(request_id, header); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetInventoryAcquireTime(string item) { return m_LSL_Functions.llGetInventoryAcquireTime(item); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetInventoryCreator(string item) { return m_LSL_Functions.llGetInventoryCreator(item); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetInventoryKey(string name) { return m_LSL_Functions.llGetInventoryKey(name); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetInventoryName(int type, int number) { return m_LSL_Functions.llGetInventoryName(type, number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetInventoryNumber(int type) { return m_LSL_Functions.llGetInventoryNumber(type); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetInventoryPermMask(string item, int mask) { return m_LSL_Functions.llGetInventoryPermMask(item, mask); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetInventoryType(string name) { return m_LSL_Functions.llGetInventoryType(name); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetKey() { return m_LSL_Functions.llGetKey(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetLandOwnerAt(LSL_Vector pos) { return m_LSL_Functions.llGetLandOwnerAt(pos); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetLinkKey(int linknum) { return m_LSL_Functions.llGetLinkKey(linknum); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llObjectGetLinkKey(LSL_Key objectid, int linknum) { return m_LSL_Functions.llObjectGetLinkKey(objectid, linknum); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetLinkName(int linknum) { return m_LSL_Functions.llGetLinkName(linknum); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetLinkNumber() { return m_LSL_Functions.llGetLinkNumber(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetLinkNumberOfSides(int link) { return m_LSL_Functions.llGetLinkNumberOfSides(link); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetListEntryType(LSL_List src, int index) { return m_LSL_Functions.llGetListEntryType(src, index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetListLength(LSL_List src) { return m_LSL_Functions.llGetListLength(src); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetLocalPos() { return m_LSL_Functions.llGetLocalPos(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llGetLocalRot() { return m_LSL_Functions.llGetLocalRot(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetMass() { return m_LSL_Functions.llGetMass(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetMassMKS() { return m_LSL_Functions.llGetMassMKS(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetMemoryLimit() { return m_LSL_Functions.llGetMemoryLimit(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llGetNextEmail(string address, string subject) { m_LSL_Functions.llGetNextEmail(address, subject); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetNotecardLine(string name, int line) { return m_LSL_Functions.llGetNotecardLine(name, line); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetNumberOfNotecardLines(string name) { return m_LSL_Functions.llGetNumberOfNotecardLines(name); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetNumberOfPrims() { return m_LSL_Functions.llGetNumberOfPrims(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetNumberOfSides() { return m_LSL_Functions.llGetNumberOfSides(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetObjectDesc() { return m_LSL_Functions.llGetObjectDesc(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetObjectDetails(LSL_Key id, LSL_List args) { return m_LSL_Functions.llGetObjectDetails(id, args); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetObjectMass(string id) { return m_LSL_Functions.llGetObjectMass(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetObjectName() { return m_LSL_Functions.llGetObjectName(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetObjectPermMask(int mask) { return m_LSL_Functions.llGetObjectPermMask(mask); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetObjectPrimCount(LSL_Key object_id) { return m_LSL_Functions.llGetObjectPrimCount(object_id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetOmega() { return m_LSL_Functions.llGetOmega(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetOwner() { return m_LSL_Functions.llGetOwner(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetOwnerKey(string id) { return m_LSL_Functions.llGetOwnerKey(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetParcelDetails(LSL_Vector pos, LSL_List param) { return m_LSL_Functions.llGetParcelDetails(pos, param); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetParcelFlags(LSL_Vector pos) { return m_LSL_Functions.llGetParcelFlags(pos); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetParcelMaxPrims(LSL_Vector pos, int sim_wide) { return m_LSL_Functions.llGetParcelMaxPrims(pos, sim_wide); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetParcelMusicURL() { return m_LSL_Functions.llGetParcelMusicURL(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetParcelPrimCount(LSL_Vector pos, int category, int sim_wide) { return m_LSL_Functions.llGetParcelPrimCount(pos, category, sim_wide); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetParcelPrimOwners(LSL_Vector pos) { return m_LSL_Functions.llGetParcelPrimOwners(pos); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetPermissions() { return m_LSL_Functions.llGetPermissions(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llGetPermissionsKey() { return m_LSL_Functions.llGetPermissionsKey(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetPos() { return m_LSL_Functions.llGetPos(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetPrimitiveParams(LSL_List rules) { return m_LSL_Functions.llGetPrimitiveParams(rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetLinkPrimitiveParams(int linknum, LSL_List rules) { return m_LSL_Functions.llGetLinkPrimitiveParams(linknum, rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetRegionAgentCount() { return m_LSL_Functions.llGetRegionAgentCount(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetRegionCorner() { return m_LSL_Functions.llGetRegionCorner(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetRegionFlags() { return m_LSL_Functions.llGetRegionFlags(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetRegionFPS() { return m_LSL_Functions.llGetRegionFPS(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetRegionName() { return m_LSL_Functions.llGetRegionName(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetRegionTimeDilation() { return m_LSL_Functions.llGetRegionTimeDilation(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetRootPosition() { return m_LSL_Functions.llGetRootPosition(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llGetRootRotation() { return m_LSL_Functions.llGetRootRotation(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llGetRot() { return m_LSL_Functions.llGetRot(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetScale() { return m_LSL_Functions.llGetScale(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetScriptName() { return m_LSL_Functions.llGetScriptName(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetScriptState(string name) { return m_LSL_Functions.llGetScriptState(name); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetSimulatorHostname() { return m_LSL_Functions.llGetSimulatorHostname(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetSPMaxMemory() { return m_LSL_Functions.llGetSPMaxMemory(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetStartParameter() { return m_LSL_Functions.llGetStartParameter(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetStatus(int status) { return m_LSL_Functions.llGetStatus(status); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetSubString(string src, int start, int end) { return m_LSL_Functions.llGetSubString(src, start, end); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetTexture(int face) { return m_LSL_Functions.llGetTexture(face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetTextureOffset(int face) { return m_LSL_Functions.llGetTextureOffset(face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetTextureRot(int side) { return m_LSL_Functions.llGetTextureRot(side); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetTextureScale(int side) { return m_LSL_Functions.llGetTextureScale(side); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetTime() { return m_LSL_Functions.llGetTime(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetTimeOfDay() { return m_LSL_Functions.llGetTimeOfDay(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetTimestamp() { return m_LSL_Functions.llGetTimestamp(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetTorque() { return m_LSL_Functions.llGetTorque(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetUnixTime() { return m_LSL_Functions.llGetUnixTime(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetVel() { return m_LSL_Functions.llGetVel(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetWallclock() { return m_LSL_Functions.llGetWallclock(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llGiveInventory(LSL_Key destination, LSL_String inventory) { m_LSL_Functions.llGiveInventory(destination, inventory); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llGiveInventoryList(LSL_Key destination, LSL_String category, LSL_List inventory) { m_LSL_Functions.llGiveInventoryList(destination, category, inventory); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGiveMoney(LSL_Key destination, LSL_Integer amount) { return m_LSL_Functions.llGiveMoney(destination, amount); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llTransferLindenDollars(LSL_Key destination, LSL_Integer amount) { return m_LSL_Functions.llTransferLindenDollars(destination, amount); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llGodLikeRezObject(LSL_String inventory, LSL_Vector pos) { m_LSL_Functions.llGodLikeRezObject(inventory, pos); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGround(LSL_Vector offset) { return m_LSL_Functions.llGround(offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGroundContour(LSL_Vector offset) { return m_LSL_Functions.llGroundContour(offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGroundNormal(LSL_Vector offset) { return m_LSL_Functions.llGroundNormal(offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llGroundRepel(double height, int water, double tau) { m_LSL_Functions.llGroundRepel(height, water, tau); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGroundSlope(LSL_Vector offset) { return m_LSL_Functions.llGroundSlope(offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llHTTPRequest(LSL_String url, LSL_List parameters, LSL_String body) { return m_LSL_Functions.llHTTPRequest(url, parameters, body); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llHTTPResponse(LSL_Key id, int status, LSL_String body) { m_LSL_Functions.llHTTPResponse(id, status, body); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llInsertString(LSL_String dst, int position, LSL_String src) { return m_LSL_Functions.llInsertString(dst, position, src); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llInstantMessage(LSL_String user, LSL_String message) { m_LSL_Functions.llInstantMessage(user, message); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llIntegerToBase64(int number) { return m_LSL_Functions.llIntegerToBase64(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llKey2Name(LSL_Key id) { return m_LSL_Functions.llKey2Name(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetUsername(LSL_Key id) { return m_LSL_Functions.llGetUsername(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llRequestUsername(LSL_Key id) { return m_LSL_Functions.llRequestUsername(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetDisplayName(LSL_Key id) { return m_LSL_Functions.llGetDisplayName(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llRequestDisplayName(LSL_Key id) { return m_LSL_Functions.llRequestDisplayName(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llCastRay(LSL_Vector start, LSL_Vector end, LSL_List options) { return m_LSL_Functions.llCastRay(start, end, options); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLinkParticleSystem(int linknum, LSL_List rules) { m_LSL_Functions.llLinkParticleSystem(linknum, rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llList2CSV(LSL_List src) { return m_LSL_Functions.llList2CSV(src); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llList2Float(LSL_List src, int index) { return m_LSL_Functions.llList2Float(src, index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llList2Integer(LSL_List src, int index) { return m_LSL_Functions.llList2Integer(src, index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llList2Key(LSL_List src, int index) { return m_LSL_Functions.llList2Key(src, index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llList2List(LSL_List src, int start, int end) { return m_LSL_Functions.llList2List(src, start, end); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llList2ListStrided(LSL_List src, int start, int end, int stride) { return m_LSL_Functions.llList2ListStrided(src, start, end, stride); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llList2Rot(LSL_List src, int index) { return m_LSL_Functions.llList2Rot(src, index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llList2String(LSL_List src, int index) { return m_LSL_Functions.llList2String(src, index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llList2Vector(LSL_List src, int index) { return m_LSL_Functions.llList2Vector(src, index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llListen(int channelID, string name, string ID, string msg) { return m_LSL_Functions.llListen(channelID, name, ID, msg); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llListenControl(int number, int active) { m_LSL_Functions.llListenControl(number, active); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llListenRemove(int number) { m_LSL_Functions.llListenRemove(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llListFindList(LSL_List src, LSL_List test) { return m_LSL_Functions.llListFindList(src, test); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llListInsertList(LSL_List dest, LSL_List src, int start) { return m_LSL_Functions.llListInsertList(dest, src, start); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llListRandomize(LSL_List src, int stride) { return m_LSL_Functions.llListRandomize(src, stride); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llListReplaceList(LSL_List dest, LSL_List src, int start, int end) { return m_LSL_Functions.llListReplaceList(dest, src, start, end); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llListSort(LSL_List src, int stride, int ascending) { return m_LSL_Functions.llListSort(src, stride, ascending); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llListStatistics(int operation, LSL_List src) { return m_LSL_Functions.llListStatistics(operation, src); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLoadURL(string avatar_id, string message, string url) { m_LSL_Functions.llLoadURL(avatar_id, message, url); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llLog(double val) { return m_LSL_Functions.llLog(val); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llLog10(double val) { return m_LSL_Functions.llLog10(val); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLookAt(LSL_Vector target, double strength, double damping) { m_LSL_Functions.llLookAt(target, strength, damping); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLoopSound(string sound, double volume) { m_LSL_Functions.llLoopSound(sound, volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLoopSoundMaster(string sound, double volume) { m_LSL_Functions.llLoopSoundMaster(sound, volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLoopSoundSlave(string sound, double volume) { m_LSL_Functions.llLoopSoundSlave(sound, volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llManageEstateAccess(int action, string avatar) { return m_LSL_Functions.llManageEstateAccess(action, avatar); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llMakeExplosion(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset) { m_LSL_Functions.llMakeExplosion(particles, scale, vel, lifetime, arc, texture, offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llMakeFire(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset) { m_LSL_Functions.llMakeFire(particles, scale, vel, lifetime, arc, texture, offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llMakeFountain(int particles, double scale, double vel, double lifetime, double arc, int bounce, string texture, LSL_Vector offset, double bounce_offset) { m_LSL_Functions.llMakeFountain(particles, scale, vel, lifetime, arc, bounce, texture, offset, bounce_offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llMakeSmoke(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset) { m_LSL_Functions.llMakeSmoke(particles, scale, vel, lifetime, arc, texture, offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llMapDestination(string simname, LSL_Vector pos, LSL_Vector look_at) { m_LSL_Functions.llMapDestination(simname, pos, look_at); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llMD5String(string src, int nonce) { return m_LSL_Functions.llMD5String(src, nonce); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llSHA1String(string src) { return m_LSL_Functions.llSHA1String(src); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llSHA256String(LSL_String src) { return m_LSL_Functions.llSHA256String(src); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llMessageLinked(int linknum, int num, string str, string id) { m_LSL_Functions.llMessageLinked(linknum, num, str, id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llMinEventDelay(double delay) { m_LSL_Functions.llMinEventDelay(delay); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llModifyLand(int action, int brush) { m_LSL_Functions.llModifyLand(action, brush); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llModPow(int a, int b, int c) { return m_LSL_Functions.llModPow(a, b, c); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llMoveToTarget(LSL_Vector target, double tau) { m_LSL_Functions.llMoveToTarget(target, tau); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llName2Key(LSL_String name) { return m_LSL_Functions.llName2Key(name); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llOffsetTexture(double u, double v, int face) { m_LSL_Functions.llOffsetTexture(u, v, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llOpenRemoteDataChannel() { m_LSL_Functions.llOpenRemoteDataChannel(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llOverMyLand(string id) { return m_LSL_Functions.llOverMyLand(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llOwnerSay(string msg) { m_LSL_Functions.llOwnerSay(msg); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llParcelMediaCommandList(LSL_List commandList) { m_LSL_Functions.llParcelMediaCommandList(commandList); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llParcelMediaQuery(LSL_List aList) { return m_LSL_Functions.llParcelMediaQuery(aList); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llParseString2List(string str, LSL_List separators, LSL_List spacers) { return m_LSL_Functions.llParseString2List(str, separators, spacers); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llParseStringKeepNulls(string src, LSL_List seperators, LSL_List spacers) { return m_LSL_Functions.llParseStringKeepNulls(src, seperators, spacers); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llParticleSystem(LSL_List rules) { m_LSL_Functions.llParticleSystem(rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llPassCollisions(int pass) { m_LSL_Functions.llPassCollisions(pass); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llPassTouches(int pass) { m_LSL_Functions.llPassTouches(pass); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llPlaySound(string sound, double volume) { m_LSL_Functions.llPlaySound(sound, volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llPlaySoundSlave(string sound, double volume) { m_LSL_Functions.llPlaySoundSlave(sound, volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llPointAt(LSL_Vector pos) { m_LSL_Functions.llPointAt(pos); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llPow(double fbase, double fexponent) { return m_LSL_Functions.llPow(fbase, fexponent); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llPreloadSound(string sound) { m_LSL_Functions.llPreloadSound(sound); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llPushObject(string target, LSL_Vector impulse, LSL_Vector ang_impulse, int local) { m_LSL_Functions.llPushObject(target, impulse, ang_impulse, local); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRefreshPrimURL() { m_LSL_Functions.llRefreshPrimURL(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRegionSay(int channelID, string text) { m_LSL_Functions.llRegionSay(channelID, text); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRegionSayTo(string key, int channelID, string text) { m_LSL_Functions.llRegionSayTo(key, channelID, text); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llReleaseCamera(string avatar) { m_LSL_Functions.llReleaseCamera(avatar); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llReleaseURL(string url) { m_LSL_Functions.llReleaseURL(url); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llReleaseControls() { m_LSL_Functions.llReleaseControls(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRemoteDataReply(string channel, string message_id, string sdata, int idata) { m_LSL_Functions.llRemoteDataReply(channel, message_id, sdata, idata); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRemoteDataSetRegion() { m_LSL_Functions.llRemoteDataSetRegion(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRemoteLoadScript(string target, string name, int running, int start_param) { m_LSL_Functions.llRemoteLoadScript(target, name, running, start_param); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRemoteLoadScriptPin(string target, string name, int pin, int running, int start_param) { m_LSL_Functions.llRemoteLoadScriptPin(target, name, pin, running, start_param); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRemoveFromLandBanList(string avatar) { m_LSL_Functions.llRemoveFromLandBanList(avatar); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRemoveFromLandPassList(string avatar) { m_LSL_Functions.llRemoveFromLandPassList(avatar); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRemoveInventory(string item) { m_LSL_Functions.llRemoveInventory(item); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRemoveVehicleFlags(int flags) { m_LSL_Functions.llRemoveVehicleFlags(flags); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llRequestUserKey(LSL_String username) { return m_LSL_Functions.llRequestUserKey(username); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llRequestAgentData(string id, int data) { return m_LSL_Functions.llRequestAgentData(id, data); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llRequestInventoryData(LSL_String name) { return m_LSL_Functions.llRequestInventoryData(name); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRequestPermissions(string agent, int perm) { m_LSL_Functions.llRequestPermissions(agent, perm); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llRequestSecureURL() { return m_LSL_Functions.llRequestSecureURL(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llRequestSimulatorData(string simulator, int data) { return m_LSL_Functions.llRequestSimulatorData(simulator, data); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llRequestURL() { return m_LSL_Functions.llRequestURL(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llResetLandBanList() { m_LSL_Functions.llResetLandBanList(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llResetLandPassList() { m_LSL_Functions.llResetLandPassList(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llResetOtherScript(string name) { m_LSL_Functions.llResetOtherScript(name); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llResetScript() { m_LSL_Functions.llResetScript(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llResetTime() { m_LSL_Functions.llResetTime(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRezAtRoot(string inventory, LSL_Vector position, LSL_Vector velocity, LSL_Rotation rot, int param) { m_LSL_Functions.llRezAtRoot(inventory, position, velocity, rot, param); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRezObject(string inventory, LSL_Vector pos, LSL_Vector vel, LSL_Rotation rot, int param) { m_LSL_Functions.llRezObject(inventory, pos, vel, rot, param); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llRot2Angle(LSL_Rotation rot) { return m_LSL_Functions.llRot2Angle(rot); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llRot2Axis(LSL_Rotation rot) { return m_LSL_Functions.llRot2Axis(rot); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llRot2Euler(LSL_Rotation r) { return m_LSL_Functions.llRot2Euler(r); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llRot2Fwd(LSL_Rotation r) { return m_LSL_Functions.llRot2Fwd(r); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llRot2Left(LSL_Rotation r) { return m_LSL_Functions.llRot2Left(r); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llRot2Up(LSL_Rotation r) { return m_LSL_Functions.llRot2Up(r); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRotateTexture(double rotation, int face) { m_LSL_Functions.llRotateTexture(rotation, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llRotBetween(LSL_Vector start, LSL_Vector end) { return m_LSL_Functions.llRotBetween(start, end); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRotLookAt(LSL_Rotation target, double strength, double damping) { m_LSL_Functions.llRotLookAt(target, strength, damping); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llRotTarget(LSL_Rotation rot, double error) { return m_LSL_Functions.llRotTarget(rot, error); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llRotTargetRemove(int number) { m_LSL_Functions.llRotTargetRemove(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llRound(double f) { return m_LSL_Functions.llRound(f); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llSameGroup(string agent) { return m_LSL_Functions.llSameGroup(agent); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSay(int channelID, string text) { m_LSL_Functions.llSay(channelID, text); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llScaleByFactor(double scaling_factor) { return m_LSL_Functions.llScaleByFactor(scaling_factor); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetMaxScaleFactor() { return m_LSL_Functions.llGetMaxScaleFactor(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llGetMinScaleFactor() { return m_LSL_Functions.llGetMinScaleFactor(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llScaleTexture(double u, double v, int face) { m_LSL_Functions.llScaleTexture(u, v, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llScriptDanger(LSL_Vector pos) { return m_LSL_Functions.llScriptDanger(pos); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llScriptProfiler(LSL_Integer flags) { m_LSL_Functions.llScriptProfiler(flags); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Key llSendRemoteData(string channel, string dest, int idata, string sdata) { return m_LSL_Functions.llSendRemoteData(channel, dest, idata, sdata); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSensor(string name, string id, int type, double range, double arc) { m_LSL_Functions.llSensor(name, id, type, range, arc); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSensorRemove() { m_LSL_Functions.llSensorRemove(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSensorRepeat(string name, string id, int type, double range, double arc, double rate) { m_LSL_Functions.llSensorRepeat(name, id, type, range, arc, rate); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetAlpha(double alpha, int face) { m_LSL_Functions.llSetAlpha(alpha, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetBuoyancy(double buoyancy) { m_LSL_Functions.llSetBuoyancy(buoyancy); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetCameraAtOffset(LSL_Vector offset) { m_LSL_Functions.llSetCameraAtOffset(offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetCameraEyeOffset(LSL_Vector offset) { m_LSL_Functions.llSetCameraEyeOffset(offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetLinkCamera(LSL_Integer link, LSL_Vector eye, LSL_Vector at) { m_LSL_Functions.llSetLinkCamera(link, eye, at); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetCameraParams(LSL_List rules) { m_LSL_Functions.llSetCameraParams(rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetClickAction(int action) { m_LSL_Functions.llSetClickAction(action); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetColor(LSL_Vector color, int face) { m_LSL_Functions.llSetColor(color, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetContentType(LSL_Key id, LSL_Integer type) { m_LSL_Functions.llSetContentType(id, type); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetDamage(double damage) { m_LSL_Functions.llSetDamage(damage); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetForce(LSL_Vector force, int local) { m_LSL_Functions.llSetForce(force, local); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetForceAndTorque(LSL_Vector force, LSL_Vector torque, int local) { m_LSL_Functions.llSetForceAndTorque(force, torque, local); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetVelocity(LSL_Vector force, int local) { m_LSL_Functions.llSetVelocity(force, local); } - + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetAngularVelocity(LSL_Vector force, int local) { m_LSL_Functions.llSetAngularVelocity(force, local); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetHoverHeight(double height, int water, double tau) { m_LSL_Functions.llSetHoverHeight(height, water, tau); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetInventoryPermMask(string item, int mask, int value) { m_LSL_Functions.llSetInventoryPermMask(item, mask, value); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetLinkAlpha(int linknumber, double alpha, int face) { m_LSL_Functions.llSetLinkAlpha(linknumber, alpha, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetLinkColor(int linknumber, LSL_Vector color, int face) { m_LSL_Functions.llSetLinkColor(linknumber, color, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetLinkPrimitiveParams(int linknumber, LSL_List rules) { m_LSL_Functions.llSetLinkPrimitiveParams(linknumber, rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetLinkTexture(int linknumber, string texture, int face) { m_LSL_Functions.llSetLinkTexture(linknumber, texture, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetLinkTextureAnim(int linknum, int mode, int face, int sizex, int sizey, double start, double length, double rate) { m_LSL_Functions.llSetLinkTextureAnim(linknum, mode, face, sizex, sizey, start, length, rate); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetLocalRot(LSL_Rotation rot) { m_LSL_Functions.llSetLocalRot(rot); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llSetMemoryLimit(LSL_Integer limit) { return m_LSL_Functions.llSetMemoryLimit(limit); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetObjectDesc(string desc) { m_LSL_Functions.llSetObjectDesc(desc); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetObjectName(string name) { m_LSL_Functions.llSetObjectName(name); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetObjectPermMask(int mask, int value) { m_LSL_Functions.llSetObjectPermMask(mask, value); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetParcelMusicURL(string url) { m_LSL_Functions.llSetParcelMusicURL(url); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetPayPrice(int price, LSL_List quick_pay_buttons) { m_LSL_Functions.llSetPayPrice(price, quick_pay_buttons); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetPos(LSL_Vector pos) { m_LSL_Functions.llSetPos(pos); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llSetRegionPos(LSL_Vector pos) { return m_LSL_Functions.llSetRegionPos(pos); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetPrimitiveParams(LSL_List rules) { m_LSL_Functions.llSetPrimitiveParams(rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetLinkPrimitiveParamsFast(int linknum, LSL_List rules) { m_LSL_Functions.llSetLinkPrimitiveParamsFast(linknum, rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetPrimURL(string url) { m_LSL_Functions.llSetPrimURL(url); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetRemoteScriptAccessPin(int pin) { m_LSL_Functions.llSetRemoteScriptAccessPin(pin); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetRot(LSL_Rotation rot) { m_LSL_Functions.llSetRot(rot); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetScale(LSL_Vector scale) { m_LSL_Functions.llSetScale(scale); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetScriptState(string name, int run) { m_LSL_Functions.llSetScriptState(name, run); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetSitText(string text) { m_LSL_Functions.llSetSitText(text); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetSoundQueueing(int queue) { m_LSL_Functions.llSetSoundQueueing(queue); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetSoundRadius(double radius) { m_LSL_Functions.llSetSoundRadius(radius); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetStatus(int status, int value) { m_LSL_Functions.llSetStatus(status, value); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetText(string text, LSL_Vector color, double alpha) { m_LSL_Functions.llSetText(text, color, alpha); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetTexture(string texture, int face) { m_LSL_Functions.llSetTexture(texture, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetTextureAnim(int mode, int face, int sizex, int sizey, double start, double length, double rate) { m_LSL_Functions.llSetTextureAnim(mode, face, sizex, sizey, start, length, rate); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetTimerEvent(double sec) { m_LSL_Functions.llSetTimerEvent(sec); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetTorque(LSL_Vector torque, int local) { m_LSL_Functions.llSetTorque(torque, local); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetTouchText(string text) { m_LSL_Functions.llSetTouchText(text); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetVehicleFlags(int flags) { m_LSL_Functions.llSetVehicleFlags(flags); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetVehicleFloatParam(int param, LSL_Float value) { m_LSL_Functions.llSetVehicleFloatParam(param, value); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetVehicleRotationParam(int param, LSL_Rotation rot) { m_LSL_Functions.llSetVehicleRotationParam(param, rot); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetVehicleType(int type) { m_LSL_Functions.llSetVehicleType(type); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetVehicleVectorParam(int param, LSL_Vector vec) { m_LSL_Functions.llSetVehicleVectorParam(param, vec); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llShout(int channelID, string text) { m_LSL_Functions.llShout(channelID, text); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llSin(double f) { return m_LSL_Functions.llSin(f); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSitTarget(LSL_Vector offset, LSL_Rotation rot) { m_LSL_Functions.llSitTarget(offset, rot); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLinkSitTarget(LSL_Integer link, LSL_Vector offset, LSL_Rotation rot) { m_LSL_Functions.llLinkSitTarget(link, offset, rot); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSleep(double sec) { m_LSL_Functions.llSleep(sec); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSound(string sound, double volume, int queue, int loop) { m_LSL_Functions.llSound(sound, volume, queue, loop); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSoundPreload(string sound) { m_LSL_Functions.llSoundPreload(sound); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llSqrt(double f) { return m_LSL_Functions.llSqrt(f); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llStartAnimation(string anim) { m_LSL_Functions.llStartAnimation(anim); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llStopAnimation(string anim) { m_LSL_Functions.llStopAnimation(anim); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llStartObjectAnimation(string anim) { m_LSL_Functions.llStartObjectAnimation(anim); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llStopObjectAnimation(string anim) { m_LSL_Functions.llStopObjectAnimation(anim); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetObjectAnimationNames() { return m_LSL_Functions.llGetObjectAnimationNames(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llStopHover() { m_LSL_Functions.llStopHover(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llStopLookAt() { m_LSL_Functions.llStopLookAt(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llStopMoveToTarget() { m_LSL_Functions.llStopMoveToTarget(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llStopPointAt() { m_LSL_Functions.llStopPointAt(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llStopSound() { m_LSL_Functions.llStopSound(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llStringLength(string str) { return m_LSL_Functions.llStringLength(str); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llStringToBase64(string str) { return m_LSL_Functions.llStringToBase64(str); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llStringTrim(LSL_String src, LSL_Integer type) { return m_LSL_Functions.llStringTrim(src, type); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llSubStringIndex(string source, string pattern) { return m_LSL_Functions.llSubStringIndex(source, pattern); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTakeCamera(string avatar) { m_LSL_Functions.llTakeCamera(avatar); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTakeControls(int controls, int accept, int pass_on) { m_LSL_Functions.llTakeControls(controls, accept, pass_on); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llTan(double f) { return m_LSL_Functions.llTan(f); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llTarget(LSL_Vector position, double range) { return m_LSL_Functions.llTarget(position, range); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTargetOmega(LSL_Vector axis, double spinrate, double gain) { m_LSL_Functions.llTargetOmega(axis, spinrate, gain); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTargetRemove(int number) { m_LSL_Functions.llTargetRemove(number); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTargetedEmail(LSL_Integer target, LSL_String subject, LSL_String message) { m_LSL_Functions.llTargetedEmail(target, subject, message); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTeleportAgent(string agent, string simname, LSL_Vector pos, LSL_Vector lookAt) { m_LSL_Functions.llTeleportAgent(agent, simname, pos, lookAt); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTeleportAgentGlobalCoords(string agent, LSL_Vector global, LSL_Vector pos, LSL_Vector lookAt) { m_LSL_Functions.llTeleportAgentGlobalCoords(agent, global, pos, lookAt); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTeleportAgentHome(string agent) { m_LSL_Functions.llTeleportAgentHome(agent); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTextBox(string avatar, string message, int chat_channel) { m_LSL_Functions.llTextBox(avatar, message, chat_channel); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llToLower(string source) { return m_LSL_Functions.llToLower(source); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llToUpper(string source) { return m_LSL_Functions.llToUpper(source); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTriggerSound(string sound, double volume) { m_LSL_Functions.llTriggerSound(sound, volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llTriggerSoundLimited(string sound, double volume, LSL_Vector top_north_east, LSL_Vector bottom_south_west) { m_LSL_Functions.llTriggerSoundLimited(sound, volume, top_north_east, bottom_south_west); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llUnescapeURL(string url) { return m_LSL_Functions.llUnescapeURL(url); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llUnSit(string id) { m_LSL_Functions.llUnSit(id); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llVecDist(LSL_Vector a, LSL_Vector b) { return m_LSL_Functions.llVecDist(a, b); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llVecMag(LSL_Vector v) { return m_LSL_Functions.llVecMag(v); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llVecNorm(LSL_Vector v) { return m_LSL_Functions.llVecNorm(v); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llVolumeDetect(int detect) { m_LSL_Functions.llVolumeDetect(detect); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Float llWater(LSL_Vector offset) { return m_LSL_Functions.llWater(offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llWhisper(int channelID, string text) { m_LSL_Functions.llWhisper(channelID, text); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llWind(LSL_Vector offset) { return m_LSL_Functions.llWind(offset); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llXorBase64(string str1, string str2) { return m_LSL_Functions.llXorBase64(str1, str2); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llXorBase64Strings(string str1, string str2) { return m_LSL_Functions.llXorBase64Strings(str1, str2); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llXorBase64StringsCorrect(string str1, string str2) { return m_LSL_Functions.llXorBase64StringsCorrect(str1, str2); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetPrimMediaParams(int face, LSL_List rules) { return m_LSL_Functions.llGetPrimMediaParams(face, rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetLinkMedia(LSL_Integer link, LSL_Integer face, LSL_List rules) { return m_LSL_Functions.llGetLinkMedia(link, face, rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llSetPrimMediaParams(int face, LSL_List rules) { return m_LSL_Functions.llSetPrimMediaParams(face, rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llSetLinkMedia(LSL_Integer link, LSL_Integer face, LSL_List rules) { return m_LSL_Functions.llSetLinkMedia(link, face, rules); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llClearPrimMedia(LSL_Integer face) { return m_LSL_Functions.llClearPrimMedia(face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llClearLinkMedia(LSL_Integer link, LSL_Integer face) { return m_LSL_Functions.llClearLinkMedia(link, face); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetLinkNumberOfSides(LSL_Integer link) { return m_LSL_Functions.llGetLinkNumberOfSides(link); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetKeyframedMotion(LSL_List frames, LSL_List options) { m_LSL_Functions.llSetKeyframedMotion(frames, options); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetPhysicsMaterial(int material_bits, LSL_Float material_gravity_modifier, LSL_Float material_restitution, LSL_Float material_friction, LSL_Float material_density) { m_LSL_Functions.llSetPhysicsMaterial(material_bits, material_gravity_modifier, material_restitution, material_friction, material_density); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llGetPhysicsMaterial() { return m_LSL_Functions.llGetPhysicsMaterial(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llSetAnimationOverride(LSL_String animState, LSL_String anim) { m_LSL_Functions.llSetAnimationOverride(animState, anim); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llResetAnimationOverride(LSL_String anim_state) { m_LSL_Functions.llResetAnimationOverride(anim_state); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llGetAnimationOverride(LSL_String anim_state) { return m_LSL_Functions.llGetAnimationOverride(anim_state); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llJsonGetValue(LSL_String json, LSL_List specifiers) { return m_LSL_Functions.llJsonGetValue(json, specifiers); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_List llJson2List(LSL_String json) { return m_LSL_Functions.llJson2List(json); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llList2Json(LSL_String type, LSL_List values) { return m_LSL_Functions.llList2Json(type, values); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llJsonSetValue(LSL_String json, LSL_List specifiers, LSL_String value) { return m_LSL_Functions.llJsonSetValue(json, specifiers, value); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llJsonValueType(LSL_String json, LSL_List specifiers) { return m_LSL_Functions.llJsonValueType(json, specifiers); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetDayLength() { return m_LSL_Functions.llGetDayLength(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetRegionDayLength() { return m_LSL_Functions.llGetRegionDayLength(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetDayOffset() { return m_LSL_Functions.llGetDayOffset(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llGetRegionDayOffset() { return m_LSL_Functions.llGetRegionDayOffset(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetSunDirection() { return m_LSL_Functions.llGetSunDirection(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetRegionSunDirection() { return m_LSL_Functions.llGetRegionSunDirection(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetMoonDirection() { return m_LSL_Functions.llGetMoonDirection(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Vector llGetRegionMoonDirection() { return m_LSL_Functions.llGetRegionMoonDirection(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llGetSunRotation() { return m_LSL_Functions.llGetSunRotation(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llGetRegionSunRotation() { return m_LSL_Functions.llGetRegionSunRotation(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llGetMoonRotation() { return m_LSL_Functions.llGetMoonRotation(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Rotation llGetRegionMoonRotation() { return m_LSL_Functions.llGetRegionMoonRotation(); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llChar(LSL_Integer unicode) { return m_LSL_Functions.llChar(unicode); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llOrd(LSL_String s, LSL_Integer index) { return m_LSL_Functions.llOrd(s, index); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_Integer llHash(LSL_String s) { return m_LSL_Functions.llHash(s); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public LSL_String llReplaceSubString(LSL_String src, LSL_String pattern, LSL_String replacement, int count) { return m_LSL_Functions.llReplaceSubString(src, pattern, replacement, count); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLinkAdjustSoundVolume(LSL_Integer linknumber, LSL_Float volume) { m_LSL_Functions.llLinkAdjustSoundVolume(linknumber, volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLinkStopSound(LSL_Integer linknumber) { m_LSL_Functions.llLinkStopSound(linknumber); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLinkPlaySound(LSL_Integer linknumber, string sound, double volume) { m_LSL_Functions.llLinkPlaySound(linknumber, sound, volume); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLinkSetSoundQueueing(int linknumber, int queue) { m_LSL_Functions.llLinkSetSoundQueueing(linknumber, queue); } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public void llLinkSetSoundRadius(int linknumber, double radius) { m_LSL_Functions.llLinkSetSoundRadius(linknumber, radius);