public void OnEnable()
        {
            if (_targetsCache == null)
            {
                _targetsCache = setTargets();
            }

            if (_targetsCache != null)
            {
                _stickyNoteEditorBehaviour.OnEnable();
            }
        }
Exemplo n.º 2
0
        public override void OnEnable()
        {
            base.OnEnable();

            if (_targetsCache == null)
            {
                setRightTarget();
            }

            //Debug.Log($"Material OnEnable. _targetCache = {_targetCache}");
            if (_targetsCache != null)
            {
                _stickyNoteEditorBehaviour.OnEnable();
            }
        }
Exemplo n.º 3
0
 private void OnEnable()
 {
     _stickyNoteEditorBehaviour.OnEnable();
 }