8 lines
309 B (Stored with Git LFS)
C#
8 lines
309 B (Stored with Git LFS)
C#
namespace BehaviorDesigner.Runtime
|
|
{
|
|
[System.Serializable]
|
|
public class SharedHumanBodyBones : SharedVariable<UnityEngine.HumanBodyBones>
|
|
{
|
|
public static implicit operator SharedHumanBodyBones(UnityEngine.HumanBodyBones value) { return new SharedHumanBodyBones { Value = value }; }
|
|
}
|
|
} |