Shifts the tools messageboxes to be distinct from any messageboxes in the main game

Reorged the canvas handling of gamepad inputs for the axis and triggers to use the SI_ versions in the right spots
Fixed issue where pause menu would be hidden and not display again
Made the pause menu active from the gamepad start button rather than back
This commit is contained in:
Areloch 2020-07-24 00:40:03 -05:00
parent ef4cc8b573
commit 5b289bce5e
57 changed files with 217 additions and 217 deletions

View file

@ -30,7 +30,7 @@ function VGroup::OnAdd( %this )
if ( %groupObject.isMemberOfClass( %ourClass ) )
{
// Alert Message.
messageBox( "Verve Editor", "You cannot have more than one \"" @ %ourClass @ "\" in your sequence.", "Ok", "Warning" );
toolsMessageBox( "Verve Editor", "You cannot have more than one \"" @ %ourClass @ "\" in your sequence.", "Ok", "Warning" );
// Invalid.
return false;

View file

@ -172,7 +172,7 @@ function VerveEditor::SavePrompt()
return true;
}
%result = messageBox( "Verve Editor", "Save Changes to your sequence?", "SaveDontSave", "Warning" );
%result = toolsMessageBox( "Verve Editor", "Save Changes to your sequence?", "SaveDontSave", "Warning" );
if ( %result $= $MROk )
{
// Save.
@ -189,7 +189,7 @@ function VerveEditor::SavePromptCancel()
return true;
}
%result = messageBox( "Verve Editor", "Save Changes to your sequence?", "SaveDontSaveCancel", "Warning" );
%result = toolsMessageBox( "Verve Editor", "Save Changes to your sequence?", "SaveDontSaveCancel", "Warning" );
if ( %result $= $MRCancel )
{
return false;

View file

@ -30,7 +30,7 @@ function VTrack::OnAdd( %this )
if ( %trackObject.isMemberOfClass( %ourClass ) )
{
// Alert Message.
messageBox( "Verve Editor", "You cannot have more than one \"" @ %ourClass @ "\" in a group.", "Ok", "Warning" );
toolsMessageBox( "Verve Editor", "You cannot have more than one \"" @ %ourClass @ "\" in a group.", "Ok", "Warning" );
// Invalid.
return false;