diff --git a/namedropper/Assets/Scenes/Game.unity b/namedropper/Assets/Scenes/Game.unity index 1ec4f36..eb12aa8 100644 --- a/namedropper/Assets/Scenes/Game.unity +++ b/namedropper/Assets/Scenes/Game.unity @@ -315,7 +315,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 9049015333349338420, guid: 56b5ab1b6ee02794ab9664e282d1930a, type: 3} propertyPath: m_AnchoredPosition.y - value: 430 + value: 483.03 objectReference: {fileID: 0} - target: {fileID: 9049015333349338420, guid: 56b5ab1b6ee02794ab9664e282d1930a, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -692,7 +692,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 9049015333349338420, guid: 56b5ab1b6ee02794ab9664e282d1930a, type: 3} propertyPath: m_AnchoredPosition.y - value: 430 + value: 483.03 objectReference: {fileID: 0} - target: {fileID: 9049015333349338420, guid: 56b5ab1b6ee02794ab9664e282d1930a, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -1785,7 +1785,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 9049015333349338420, guid: 56b5ab1b6ee02794ab9664e282d1930a, type: 3} propertyPath: m_AnchoredPosition.y - value: 430 + value: 483.03 objectReference: {fileID: 0} - target: {fileID: 9049015333349338420, guid: 56b5ab1b6ee02794ab9664e282d1930a, type: 3} propertyPath: m_LocalEulerAnglesHint.x @@ -2114,7 +2114,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 9049015333349338420, guid: 56b5ab1b6ee02794ab9664e282d1930a, type: 3} propertyPath: m_AnchoredPosition.y - value: 430 + value: 483.03 objectReference: {fileID: 0} - target: {fileID: 9049015333349338420, guid: 56b5ab1b6ee02794ab9664e282d1930a, type: 3} propertyPath: m_LocalEulerAnglesHint.x diff --git a/namedropper/Assets/Scenes/Title.unity b/namedropper/Assets/Scenes/Title.unity index 21255a3..04e64bd 100644 --- a/namedropper/Assets/Scenes/Title.unity +++ b/namedropper/Assets/Scenes/Title.unity @@ -391,8 +391,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} + rgba: 4282493183 + m_fontColor: {r: 1, g: 0.65882355, b: 0.25490198, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -489,7 +489,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: _numPlayersReadyText: {fileID: 330190470} - _readyKeys: 61000000730000006400000066000000 + _readyKeys: 0d000000750000007200000071000000 --- !u!4 &884138491 Transform: m_ObjectHideFlags: 0 @@ -663,7 +663,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: "Press button to join\n\nPress 1 to start Co-op mode\n or 2 to start + m_text: "Press Start to join\n\nPress 1 to start Co-op mode\n or 2 to start VS. mode" m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} diff --git a/namedropper/Assets/Scripts/Game.cs b/namedropper/Assets/Scripts/Game.cs index dc32219..d62b94e 100644 --- a/namedropper/Assets/Scripts/Game.cs +++ b/namedropper/Assets/Scripts/Game.cs @@ -5,7 +5,7 @@ using UnityEngine.SceneManagement; public class Game : MonoBehaviour { - int _seconds = 90; + int _seconds = 70; [SerializeField] Text Score1; [SerializeField] Text Score2; diff --git a/namedropper/Assets/Scripts/Player.cs b/namedropper/Assets/Scripts/Player.cs index 2c86677..483e494 100644 --- a/namedropper/Assets/Scripts/Player.cs +++ b/namedropper/Assets/Scripts/Player.cs @@ -6,7 +6,7 @@ using UnityEngine.SceneManagement; public class Player : MonoBehaviour { - const bool ALLOW_DROP = true; + const bool ALLOW_DROP = false; const float SPEED = 3000f; [SerializeField] KeyCode _keyLeft; [SerializeField] KeyCode _keyRight;