Upgraded to Unity 2019.4.16

This commit is contained in:
Andrew Lee 2020-12-05 19:52:15 -05:00
parent 0a843187ae
commit eff38cca28
Signed by: andrew
GPG key ID: 4DCE67C47836D125
5 changed files with 57 additions and 16 deletions

View file

@ -8,18 +8,20 @@ public class PauseMenu : MonoBehaviour
public bool lockCursor = true;
public GameObject panel;
private int counter;
private int m_counter;
// Update is called once per frame
public void showhidePanel()
public void ShowhidePanel()
{
counter++;
if (counter % 2 == 1)
m_counter++;
if (m_counter % 2 == 1)
{
panel.gameObject.SetActive(true);
Time.timeScale = 0;
}
else
{
panel.gameObject.SetActive(false);
Time.timeScale = 1;
}
}
@ -28,7 +30,7 @@ public class PauseMenu : MonoBehaviour
if (Input.GetKeyDown(KeyCode.Escape))
{
lockCursor = !lockCursor;
showhidePanel();
ShowhidePanel();
}

View file

@ -1,13 +1,13 @@
{
"dependencies": {
"com.unity.ads": "3.4.7",
"com.unity.ads": "3.5.2",
"com.unity.collab-proxy": "1.2.16",
"com.unity.ide.rider": "1.1.4",
"com.unity.ide.vscode": "1.2.1",
"com.unity.ide.vscode": "1.2.3",
"com.unity.inputsystem": "1.0.0",
"com.unity.probuilder": "4.2.3",
"com.unity.progrids": "3.0.3-preview.6",
"com.unity.test-framework": "1.1.16",
"com.unity.test-framework": "1.1.19",
"com.unity.textmeshpro": "2.0.1",
"com.unity.timeline": "1.2.13",
"com.unity.ugui": "1.0.0",

View file

@ -1,7 +1,7 @@
{
"dependencies": {
"com.unity.ads": {
"version": "3.4.7",
"version": "3.5.2",
"depth": 0,
"source": "registry",
"dependencies": {
@ -17,7 +17,7 @@
"url": "https://packages.unity.com"
},
"com.unity.ext.nunit": {
"version": "1.0.0",
"version": "1.0.5",
"depth": 1,
"source": "registry",
"dependencies": {},
@ -33,7 +33,7 @@
"url": "https://packages.unity.com"
},
"com.unity.ide.vscode": {
"version": "1.2.1",
"version": "1.2.3",
"depth": 0,
"source": "registry",
"dependencies": {},
@ -72,11 +72,11 @@
"url": "https://packages.unity.com"
},
"com.unity.test-framework": {
"version": "1.1.16",
"version": "1.1.19",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.ext.nunit": "1.0.0",
"com.unity.ext.nunit": "1.0.5",
"com.unity.modules.imgui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0"
},
@ -103,7 +103,8 @@
"depth": 0,
"source": "builtin",
"dependencies": {
"com.unity.modules.ui": "1.0.0"
"com.unity.modules.ui": "1.0.0",
"com.unity.modules.imgui": "1.0.0"
}
},
"com.unity.modules.ai": {

View file

@ -0,0 +1,38 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &1
MonoBehaviour:
m_ObjectHideFlags: 61
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 13960, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_ScopedRegistriesSettingsExpanded: 1
oneTimeWarningShown: 0
m_Registries:
- m_Id: main
m_Name:
m_Url: https://packages.unity.com
m_Scopes: []
m_IsDefault: 1
m_UserSelectedRegistryName:
m_UserAddingNewScopedRegistry: 0
m_RegistryInfoDraft:
m_ErrorMessage:
m_Original:
m_Id:
m_Name:
m_Url:
m_Scopes: []
m_IsDefault: 0
m_Modified: 0
m_Name:
m_Url:
m_Scopes:
-
m_SelectedScopeIndex: 0

View file

@ -1,2 +1,2 @@
m_EditorVersion: 2019.4.8f1
m_EditorVersionWithRevision: 2019.4.8f1 (60781d942082)
m_EditorVersion: 2019.4.16f1
m_EditorVersionWithRevision: 2019.4.16f1 (e05b6e02d63e)