mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
21 lines
365 B
Beef
21 lines
365 B
Beef
using GlitchyEngine.Math;
|
|
using System;
|
|
|
|
namespace GlitchyEngine.Renderer.Animation
|
|
{
|
|
public struct Joint
|
|
{
|
|
/// Converts vertices from model space to joint space
|
|
public Matrix InverseBindPose;
|
|
public String Name;
|
|
public uint8 ParentID;
|
|
}
|
|
|
|
public struct JointPose
|
|
{
|
|
public Quaternion Rotation;
|
|
public float3 Translation;
|
|
public float3 Scale;
|
|
}
|
|
}
|