OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.InitLSL C# (CSharp) Method

InitLSL() private method

Initialize the LSL interface.
FIXME: This is an abomination. We should be able to set this up earlier but currently we have no guarantee the interface is present on Initialize(). There needs to be another post initialize call from ScriptInstance.
private InitLSL ( ) : void
return void
        private void InitLSL()
        {
            if (m_LSL_Api != null)
                return;

            m_LSL_Api = (ILSL_Api)m_ScriptEngine.GetApi(m_item.ItemID, "LSL");
        }
OSSL_Api