Add chat IPC and gameplay screen integration

This commit is contained in:
Dean Herbert
2018-11-16 19:43:54 +09:00
parent c9e2ee8f56
commit e3e92f4302
6 changed files with 63 additions and 7 deletions

View File

@ -62,7 +62,7 @@ namespace osu.Game.Tournament.Components
set
{
expanded = value;
panel.ResizeWidthTo(panelWidth, 800, Easing.OutQuint);
panel?.ResizeWidthTo(panelWidth, 800, Easing.OutQuint);
if (expanded)
{
@ -72,7 +72,7 @@ namespace osu.Game.Tournament.Components
else
{
innerPanel.ResizeWidthTo(1, 800, Easing.OutQuint);
outerPanel.ResizeWidthTo(0.2f, 800, Easing.OutQuint);
outerPanel.ResizeWidthTo(0.25f, 800, Easing.OutQuint);
}
}
}