3 namespace droid.Runtime.Utilities.GameObjects.ChildSensors {
8 void OnTriggerEnter(Collider other) { this._on_trigger_enter_delegate?.Invoke(this.gameObject, other); }
9 void OnTriggerStay(Collider other) { this._on_trigger_stay_delegate?.Invoke(this.gameObject, other); }
10 void OnTriggerExit(Collider other) { this._on_trigger_exit_delegate?.Invoke(this.gameObject, other); }
12 void OnCollisionEnter(Collision collision) {
13 this._on_collision_enter_delegate?.Invoke(this.gameObject, collision);
16 void OnCollisionStay(Collision collision) {
17 this._on_collision_stay_delegate?.Invoke(this.gameObject, collision);
20 void OnCollisionExit(Collision collision) {
21 this._on_collision_exit_delegate?.Invoke(this.gameObject, collision);