浏览代码

Changed to L key instead of space bar for load (space used to jump)

/main
Unknown 4 年前
当前提交
770575c2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 2
      UOP1_Project/Assets/Scripts/MainMenu.cs

2
UOP1_Project/Assets/Scripts/MainMenu.cs


{
//We can load the main menu by pressing space bar in the Scenes Loader scene
//Just for test purpose
if (Keyboard.current.spaceKey.wasPressedThisFrame)
if (Keyboard.current.lKey.wasPressedThisFrame)
{
onGameStart.Raise();
}

正在加载...
取消
保存