Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llSetCameraAtOffset C# (CSharp) Method

llSetCameraAtOffset() public method

public llSetCameraAtOffset ( Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3 offset ) : void
offset Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
return void
        public void llSetCameraAtOffset(LSL_Vector offset)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;

            m_host.CameraAtOffset = new Vector3((float)offset.x, (float)offset.y, (float)offset.z);
        }
LSL_Api