13 lines
278 B
C#
13 lines
278 B
C#
using Unity.Entities;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
namespace Rukhanka
|
|
{
|
|
public struct TwoBoneIKComponent: IComponentData, IEnableableComponent
|
|
{
|
|
public Entity mid, tip, target, midBentHint;
|
|
public float weight;
|
|
}
|
|
}
|