替换素材,增加打孔带溢出表现

This commit is contained in:
2024-12-30 11:31:02 +08:00
parent 588571f9dc
commit cf0db07839
15 changed files with 5001 additions and 10 deletions
@@ -79,7 +79,7 @@ namespace AibisDream
public static void Temp_RemoveChip()
{
var _UFCover = BodyModuleSystem.FindBodyModuleByName("Color").transform.Find("Chip").gameObject;
if(_UFCover.activeInHierarchy)
if(_UFCover.activeInHierarchy)
{
_UFCover.SetActive(false);
}
@@ -147,5 +147,15 @@ namespace AibisDream
{
yield return PunchTapeSystem.StartCoroutine(PunchTapeSystem.PrintPunchTapes(count));
}
[YarnCommand("HidePunchTapeGroup")]
public static IEnumerator HidePunchTapeGroup()
{
yield return PunchTapeSystem.StartCoroutine(PunchTapeSystem.Temp_HidePunchTapeGroup());
}
[YarnCommand("ShowPunchTapeGroup")]
public static void ShowPunchTapeGroup()
{
PunchTapeSystem.Temp_showPunchTapeGroup();
}
}
}