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

9 lines
146 B

using UnityEngine;
public interface IAnimationController
{
void OnAgentInitialize();
void OnReset();
Vector3 GetDesiredVelocity();
}