private void OnTriggerEnter(Collider other) { var actuator = other.GetComponent <chibi.actuator.Actuator>(); if (actuator) { current_actuator = actuator; } }
private void OnTriggerExit(Collider other) { current_actuator = null; }