8 lines
200 B
C#
8 lines
200 B
C#
using UnityEngine;
|
|
|
|
[System.Serializable]
|
|
public class Leg {
|
|
public Transform femur; // UpperLeg, Thigh
|
|
public Transform tibia; // LowerLeg, Shank
|
|
public Transform tarsus; // Foot
|
|
} |