Skip to content

Commit

Permalink
πŸ› Fix "Level Completed!" overflow
Browse files Browse the repository at this point in the history
πŸ’„ Change "Perfect!" and "Level Completed!" colors
  • Loading branch information
David Arutiunian committed Jun 26, 2020
1 parent 49f606f commit af4bacd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Assets/Scenes/MainScene.unity
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 240, y: -111.149994}
m_AnchoredPosition: {x: 239.99998, y: -111.15}
m_SizeDelta: {x: 450, y: 222.3}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &143244709
Expand Down Expand Up @@ -1571,7 +1571,7 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.5411765, g: 0.7882353, b: 0.14901961, a: 1}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_Maskable: 1
m_OnCullStateChanged:
Expand Down Expand Up @@ -2196,7 +2196,7 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.9843137, g: 0.99607843, b: 0.9764706, a: 1}
m_Color: {r: 1, g: 0.34901962, b: 0.36862746, a: 1}
m_RaycastTarget: 1
m_Maskable: 1
m_OnCullStateChanged:
Expand Down Expand Up @@ -2710,15 +2710,15 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.96862745, g: 0.65882355, b: 0.72156864, a: 1}
m_Color: {r: 1, g: 0.7921569, b: 0.22745098, a: 1}
m_RaycastTarget: 1
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_FontData:
m_Font: {fileID: 12800000, guid: f4c99a340a6e6504aa6e992b7a253612, type: 3}
m_FontSize: 74
m_FontSize: 72
m_FontStyle: 1
m_BestFit: 0
m_MinSize: 0
Expand Down
4 changes: 2 additions & 2 deletions Assets/Scripts/WinController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ public void DoOnWin()
if (GameStore.instance.IsEndOfLevel())
{
win.text = TEXT_LEVEL_COMPLETED;
win.color = new Color32(255, 255, 255, 255);
win.color = new Color32(138, 201, 38, 255);
}
else
{
win.color = new Color32(247, 168, 184, 255);
win.color = new Color32(255, 202, 58, 255);
win.text = TEXT_PERFECT;
}

Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Triangles"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.3.0
PROJECT_NUMBER = 1.3.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
bundleVersion: 1.3.0
bundleVersion: 1.3.1
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down

0 comments on commit af4bacd

Please sign in to comment.