| 123456789101112131415161718192021222324 |
- using QFramework;
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class PrincipleUIControl : MonoBehaviour
- {
- public static PrincipleUIControl instance;
- public string PrincipleName;
- // Start is called before the first frame update
- void Start()
- {
- instance = this;
- ResKit.Init();
- UIKit.OpenPanel<PrinciplePanel>(new PrinciplePanelData() {TitleName = PrincipleName });
- }
- // Update is called once per frame
- void Update()
- {
-
- }
- }
|