13 lines
304 B
C#
13 lines
304 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace BNG {
|
|||
|
public class AutoGrabGrabbable : GrabbableEvents {
|
|||
|
public override void OnBecomesClosestGrabbable(Grabber touchingGrabber) {
|
|||
|
touchingGrabber.GrabGrabbable(grab);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|