Ejemplo n.º 1
0
        public void AbcLoad(bool createMissingNodes = false)
        {
            if (m_pathToAbc == null)
            {
                return;
            }

            m_trans  = GetComponent <Transform>();
            m_abc    = AbcAPI.aiCreateContext(gameObject.GetInstanceID());
            m_loaded = AbcAPI.aiLoad(m_abc, Application.streamingAssetsPath + "/" + m_pathToAbc);

            if (m_loaded)
            {
                m_startTime         = AbcAPI.aiGetStartTime(m_abc);
                m_endTime           = AbcAPI.aiGetEndTime(m_abc);
                m_timeOffset        = -m_startTime;
                m_timeScale         = 1.0f;
                m_preserveStartTime = true;
                m_forceRefresh      = true;

                AbcSyncConfig();

                AbcAPI.UpdateAbcTree(m_abc, m_trans, AbcTime(m_time), createMissingNodes);
            }
        }
Ejemplo n.º 2
0
        bool AbcRecoverContext()
        {
            if (!AbcIsValid())
            {
                if (m_verbose)
                {
                    Debug.Log("AlembicStream.AbcRecoverContext: Try to recover alembic context");
                }

                m_abc = AbcAPI.aiCreateContext(gameObject.GetInstanceID());

                if (AbcIsValid())
                {
                    m_startTime         = AbcAPI.aiGetStartTime(m_abc);
                    m_endTime           = AbcAPI.aiGetEndTime(m_abc);
                    m_timeOffset        = -m_startTime;
                    m_timeScale         = 1.0f;
                    m_preserveStartTime = true;
                    m_forceRefresh      = true;
                    m_trans             = GetComponent <Transform>();
                    m_elements.Clear();

                    AbcSyncConfig();

                    AbcAPI.UpdateAbcTree(m_abc, m_trans, AbcTime(m_time), false);

                    if (m_verbose)
                    {
                        Debug.Log("AlembicStream.AbcRecoverContext: Succeeded (" + m_elements.Count + " element(s))");
                    }

                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            else
            {
                return(true);
            }
        }
Ejemplo n.º 3
0
        void OnDestroy()
        {
            if (!AbcIsValid())
            {
                return;
            }

            if (!Application.isPlaying)
            {
    #if UNITY_EDITOR
                if (!EditorApplication.isPlayingOrWillChangePlaymode)
                {
                    AbcDetachElements();
                    AbcAPI.aiDestroyContext(m_abc);
                    m_abc = default(AbcAPI.aiContext);
                }
    #else
                AbcDetachElements();
                AbcAPI.aiDestroyContext(m_abc);
                m_abc = default(AbcAPI.aiContext);
    #endif
            }
        }