Exemplo n.º 1
0
        public CustomCapturerHandler CreateComponentCapturer(AlembicCustomComponentCapturer target, AbcAPI.aeObject parent)
        {
            if (m_detailedLog)
            {
                Debug.Log("AlembicExporter: new CustomCapturerHandler(\"" + target.name + "\"");
            }

            target.CreateAbcObject(parent);
            var cap = new CustomCapturerHandler(target);

            m_capturers.Add(cap);
            return(cap);
        }
Exemplo n.º 2
0
 public CustomCapturerHandler(AlembicCustomComponentCapturer target)
 {
     m_obj    = target.gameObject;
     m_target = target;
 }
Exemplo n.º 3
0
 public CustomCapturerHandler(ComponentCapturer parent, AlembicCustomComponentCapturer target)
     : base(parent)
 {
     m_obj    = target.gameObject;
     m_target = target;
 }