2025-02-11 17:11:14 +08:00

24 lines
383 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using ZXK.BYSS;
public class TestModel : MonoBehaviour
{
// Update is called once per frame
void Update()
{
if (Input.GetKeyDown(KeyCode.P)) {
GameObject.Find("HoverPanel").GetComponent<HoverPanel>().
SwitchZuZhuang();
}
}
}