Esempio n. 1
0
        protected WindowObject(WindowObject parent, Transform transform = null)
        {
            m_parent    = parent;
            m_transform = transform == null ? new Transform() : transform;
            if (parent != null)
            {
                m_transform.Parent = parent.Transform;
            }

            m_flags = WindowObjectFlags.Default;
        }
Esempio n. 2
0
 public virtual void Remove()
 {
     m_flags |= WindowObjectFlags.Removing;
 }
Esempio n. 3
0
        public virtual void Reset()
        {
            m_flags = WindowObjectFlags.Default;

            Animator.RemoveAnimation(this);
        }