mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
19 lines
463 B
C#
19 lines
463 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace RimWorldAnimationStudio
|
|
{
|
|
public class AddonAnchorDropdown : MonoBehaviour
|
|
{
|
|
private void Start()
|
|
{
|
|
Dropdown dropdown = GetComponent<Dropdown>();
|
|
|
|
dropdown.ClearOptions();
|
|
dropdown.AddOptions(Constants.bodyPartAnchorNames.Values.ToList());
|
|
}
|
|
}
|
|
}
|