Neodroid  0.2.0
Machine Learning Environment Prototyping Tool
IHasRigidbody.cs
Go to the documentation of this file.
2 using UnityEngine;
3 
4 namespace droid.Runtime.Interfaces {
7  public interface IHasRigidbody {
10  Vector3 Velocity { get; }
11 
14  Vector3 AngularVelocity { get; }
15 
18  Space3 VelocitySpace { get; }
19 
22  Space3 AngularSpace { get; }
23  }
24 }