using System.Collections.Generic; using UnityEngine; using MLAgents; public class BasicDecision : Decision { public override float[] Decide( List vectorObs, List visualObs, float reward, bool done, List memory) { return new[] { 1f }; } public override List MakeMemory( List vectorObs, List visualObs, float reward, bool done, List memory) { return new List(); } }