implementation of drecon in unity 2022 lts
forked from:
https://github.com/joanllobera/marathon-envs
12 lines
214 B
12 lines
214 B
using UnityEngine;
|
|
|
|
namespace Unity.MLAgents
|
|
{
|
|
[System.Serializable]
|
|
public class MarathonSensor
|
|
{
|
|
public Collider SiteObject;
|
|
public string Name;
|
|
public string SiteName;
|
|
}
|
|
}
|