18 lines
381 B
C#
18 lines
381 B
C#
using System;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
using UnityEngine.UI;
|
|
|
|
namespace ToolsPack
|
|
{
|
|
public class ToolsPackSceneJump : MonoBehaviour
|
|
{
|
|
public void Start()
|
|
{
|
|
this.GetComponent<Button>().onClick.AddListener(delegate
|
|
{
|
|
SceneManager.LoadScene("现场 _Test");
|
|
});
|
|
}
|
|
}
|
|
} |