少年修仙传客户端基础资源
client_Wu Xijin
2018-10-30 d0a0f4e224e138f84bc4373fe4e9cc2c96d6160c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Snxxz.UI;
 
public class TestMonobehaviour : MonoBehaviour
{
 
    // Use this for initialization
    void Start()
    {
        CSharpCallLua.Init();
    }
 
    // Update is called once per frame
    void Update()
    {
        if (Input.GetKeyDown(KeyCode.F))
        {
            WindowCenter.Instance.Open("AbyssWin");
        }
 
        if (Input.GetKeyDown(KeyCode.G))
        {
            WindowCenter.Instance.Open("TestWin");
        }
    }
 
 
}