示例#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);
        }
示例#2
0
 public CustomCapturerHandler(AlembicCustomComponentCapturer target)
 {
     m_obj    = target.gameObject;
     m_target = target;
 }
示例#3
0
 public CustomCapturerHandler(ComponentCapturer parent, AlembicCustomComponentCapturer target)
     : base(parent)
 {
     m_obj    = target.gameObject;
     m_target = target;
 }