Skip to content

Commit d1a0abb

Browse files
committed
Configures app icon and splash screen. Set up builds.
1 parent 751e1d3 commit d1a0abb

File tree

11 files changed

+309
-18
lines changed

11 files changed

+309
-18
lines changed

Assets/Resources.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

Assets/_Client/Scripts/Core/AppManager.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ private void HandleClipSaved(string filePath)
108108
_uiController.AppendChatOutput($"Bot: {response}\n");
109109
}, () =>
110110
{
111-
// Speech synthesis finished.
111+
_uiController.CurrentState = UIController.UIState.Idle;
112112
});
113-
});
114113
});
115114
});
116-
117-
_uiController.CurrentState = UIController.UIState.Idle;
115+
});
116+
117+
_uiController.CurrentState = UIController.UIState.Processing;
118118
}
119119

120120
private void HandleTalkButtonClicked()

Assets/_Client/Scripts/UI/UIController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ public UIState CurrentState
5555
if (value == UIState.Processing)
5656
{
5757
_talkButton.SetEnabled(false);
58-
_progressBar.value = 0.5f;
58+
_progressBar.visible = true;
5959
}
6060
else
6161
{
6262
_talkButton.SetEnabled(true);
63-
_progressBar.value = 0f;
63+
_progressBar.visible = false;
6464
}
6565
}
6666
}

Assets/_Client/icon.png

Lines changed: 3 additions & 0 deletions
Loading

Assets/_Client/icon.png.meta

Lines changed: 143 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/_Client/logo-UNIFOR.png

Lines changed: 3 additions & 0 deletions
Loading

Assets/_Client/logo-UNIFOR.png.meta

Lines changed: 143 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Packages/manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"dependencies": {
3+
"com.unity.2d.sprite": "1.0.0",
34
"com.unity.ai.navigation": "2.0.9",
45
"com.unity.ide.rider": "3.0.38",
56
"com.unity.ide.visualstudio": "2.0.25",

Packages/packages-lock.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
{
22
"dependencies": {
3+
"com.unity.2d.sprite": {
4+
"version": "1.0.0",
5+
"depth": 0,
6+
"source": "builtin",
7+
"dependencies": {}
8+
},
39
"com.unity.ai.navigation": {
410
"version": "2.0.9",
511
"depth": 0,

ProjectSettings/ProjectSettings.asset

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ PlayerSettings:
4040
width: 1
4141
height: 1
4242
m_SplashScreenLogos:
43-
- logo: {fileID: 21300000, guid: 73174073f4faf0b499bcc2686a91b245, type: 3}
43+
- logo: {fileID: 21300000, guid: a439cfa2040ab9040ae59d9917a93d91, type: 3}
4444
duration: 2
45-
m_VirtualRealitySplashScreen: {fileID: 0}
45+
m_VirtualRealitySplashScreen: {fileID: 2800000, guid: a439cfa2040ab9040ae59d9917a93d91, type: 3}
4646
m_HolographicTrackingLossScreen: {fileID: 0}
4747
defaultScreenWidth: 1024
4848
defaultScreenHeight: 768
@@ -301,7 +301,7 @@ PlayerSettings:
301301
- m_BuildTarget:
302302
m_Icons:
303303
- serializedVersion: 2
304-
m_Icon: {fileID: 2800000, guid: 488ec052a76c67f46815456f022b91fc, type: 3}
304+
m_Icon: {fileID: 2800000, guid: b2930323200bee5439365b550da90801, type: 3}
305305
m_Width: 128
306306
m_Height: 128
307307
m_Kind: 0

0 commit comments

Comments
 (0)