Upload from upload_mods.ps1
This commit is contained in:
22
KFAttached/RigAdaptors/Adaptors/Data/TwistNode.cs
Normal file
22
KFAttached/RigAdaptors/Adaptors/Data/TwistNode.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace KFCommonUtilityLib.RigAdaptors.Adaptors.Data
|
||||
{
|
||||
[Serializable]
|
||||
public class TwistNode
|
||||
{
|
||||
[SerializeField]
|
||||
public string name;
|
||||
[SerializeField]
|
||||
public float weight;
|
||||
|
||||
public TwistNode() { }
|
||||
|
||||
public TwistNode(string name, float weight)
|
||||
{
|
||||
this.name = name;
|
||||
this.weight = weight;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user