2023-02-03 22:59:49 +08:00
|
|
|
|
using System;
|
|
|
|
|
using SHADE;
|
|
|
|
|
|
|
|
|
|
public class QuitButton : Script
|
|
|
|
|
{
|
2023-02-03 23:28:08 +08:00
|
|
|
|
protected override void start()
|
2023-02-03 22:59:49 +08:00
|
|
|
|
{
|
|
|
|
|
UIElement ui = GetComponent<UIElement>();
|
|
|
|
|
ui.OnClick.RegisterAction(() =>
|
|
|
|
|
{
|
|
|
|
|
Audio.StopAllSounds();
|
|
|
|
|
Application.Quit();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
protected override void update()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|