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

14 lines
298 B
C#

using Unity.Entities;
/////////////////////////////////////////////////////////////////////////////////
namespace Rukhanka
{
public struct FABRIKComponent: IComponentData, IEnableableComponent
{
public Entity tip, target;
public int numIterations;
public float weight, threshold;
}
}