18 lines
212 B
C#
18 lines
212 B
C#
using UnityEngine;
|
|
|
|
namespace RootMotion
|
|
{
|
|
public class TQ
|
|
{
|
|
public Vector3 t;
|
|
|
|
public Quaternion q;
|
|
|
|
public TQ(Vector3 translation, Quaternion rotation)
|
|
{
|
|
t = translation;
|
|
q = rotation;
|
|
}
|
|
}
|
|
}
|