SHADE_Y3/Assets/Scripts/UI/SC_MainMenu.cs

66 lines
1.8 KiB
C#
Raw Normal View History

2022-11-22 16:18:16 +08:00
using System;
using SHADE;
2023-02-04 00:23:05 +08:00
using SHADE_Scripting.Audio;
2022-11-22 16:18:16 +08:00
public class MainMenu : Script
2022-11-22 16:18:16 +08:00
{
2023-02-03 00:03:05 +08:00
public uint sceneID;
2023-02-21 19:31:50 +08:00
public GameObject obj;
private Renderable renderable;
2022-11-22 16:18:16 +08:00
protected override void awake()
{
2023-02-04 00:23:05 +08:00
AudioHandler.audioClipHandlers["BGMMainMenu"] = Audio.CreateAudioClip("event:/Music/main_menu");
AudioHandler.audioClipHandlers["SFXMouseDownElement"] = Audio.CreateAudioClip("event:/UI/mouse_down_element");
AudioHandler.audioClipHandlers["SFXUISuccess"] = Audio.CreateAudioClip("event:/UI/success");
//Audio.PlayBGMOnce2D("event:/Music/main_menu");
AudioHandler.audioClipHandlers["BGMMainMenu"].Play();
2023-02-21 19:31:50 +08:00
renderable = obj.GetComponent<Renderable>();
}
protected override void start()
{
2022-11-22 16:18:16 +08:00
}
protected override void update()
{
2023-02-21 19:31:50 +08:00
if (Input.GetKeyDown(Input.KeyCode.K) && obj)
{
if (renderable.Material.GetProperty<float>("data.alpha") == 1)
{
Debug.Log("ALPHA ZERO");
Debug.Log($"{obj.EntityId}");
obj.GetComponent<Renderable>().Material.SetProperty<float>("data.alpha", 0);
}
else if (renderable.Material.GetProperty<float>("data.alpha") == 0)
{
Debug.Log("ALPHA ONE");
Debug.Log($"{obj.EntityId}");
obj.GetComponent<Renderable>().Material.SetProperty<float>("data.alpha", 1);
}
}
if (Input.GetKeyDown(Input.KeyCode.Space))
{
2023-02-04 00:23:05 +08:00
//Audio.PlaySFXOnce2D("event:/UI/mouse_down_element");
AudioHandler.audioClipHandlers["SFXMouseDownElement"].Play();
}
if (Input.GetKeyUp(Input.KeyCode.Space))
{
2023-02-04 00:23:05 +08:00
//Audio.PlaySFXOnce2D("event:/UI/success");
AudioHandler.audioClipHandlers["SFXUISuccess"].Play();
2023-02-03 00:03:05 +08:00
SceneManager.ChangeScene(sceneID);
Audio.StopAllSounds();
}
2022-11-23 00:44:27 +08:00
if (Input.GetKeyDown(Input.KeyCode.Escape))
2022-11-23 00:44:27 +08:00
{
Audio.StopAllSounds();
2022-11-23 00:44:27 +08:00
Application.Quit();
}
2022-11-22 16:18:16 +08:00
}
}