implementation of drecon in unity 2022 lts forked from: https://github.com/joanllobera/marathon-envs
 
 
 
 

10 lines
260 B

using UnityEngine;
namespace Unity.MLAgents
{
public interface IOnSensorCollision
{
void OnSensorCollisionEnter(Collider sensorCollider, GameObject other);
void OnSensorCollisionExit(Collider sensorCollider, GameObject other);
}
}