12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class BonesName : MonoBehaviour
- {
- public List<string> bones = new List<string>();
- public string rootBones;
-
-
- void Start()
- {
- }
-
- void Update()
- {
- }
- }
|