Beispiel #1
0
    protected override void Attach(NVRAttachPoint point)
    {
        base.Attach(point);

        _attachCoroutine = StartCoroutine(AttachEvents());

        if (_detachCoroutine != null)
        {
            StopCoroutine(_detachCoroutine);
        }
    }
Beispiel #2
0
 void Awake()
 {
     card = GetComponent <NVRAttachPoint>();
 }
Beispiel #3
0
 protected override void Attach(NVRAttachPoint point)
 {
     base.Attach(point);
     StartCoroutine(AttachTriggers());
 }