Merge pull request #370 from Areloch/MiscBaseGameUIFixes

Misc. BaseGame UI fixes
This commit is contained in:
Brian Roberts 2020-10-28 20:24:33 -05:00 committed by GitHub
commit 72ee2260ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 4 deletions

View file

@ -206,7 +206,7 @@
willFirstRespond = "1";
hScrollBar = "alwaysOff";
vScrollBar = "dynamic";
lockHorizScroll = "0";
lockHorizScroll = "1";
lockVertScroll = "0";
constantThumbHeight = "0";
childMargin = "0 0";

View file

@ -7,7 +7,12 @@ function PauseMenuList::onAdd(%this)
function PauseMenu::onWake(%this)
{
$timescale = 0;
if($Server::ServerType $= "SinglePlayer")
{
$timescale = 0;
sfxSetChannelVolume( $SimAudioType, $pref::SFX::channelVolume[ 0 ] );
}
PauseMenuList.hidden = false;
PauseMenuList.setFirstResponder();
@ -17,7 +22,11 @@ function PauseMenu::onWake(%this)
function PauseMenu::onSleep(%this)
{
$timescale = 1;
if($Server::ServerType $= "SinglePlayer")
{
$timescale = 1;
sfxSetChannelVolume( $SimAudioType, $pref::SFX::channelVolume[ $SimAudioType ] );
}
}
function PauseMenu::onReturnTo(%this)