Files
2026-05-31 14:27:52 -07:00

13 lines
278 B
C#

using Unity.Entities;
/////////////////////////////////////////////////////////////////////////////////
namespace Rukhanka
{
public struct TwoBoneIKComponent: IComponentData, IEnableableComponent
{
public Entity mid, tip, target, midBentHint;
public float weight;
}
}