Hey guys - I've been asking over on the programming side with no results for a bit, but since this is a menu problem, I guess I should have been over here as well.
Basically at the moment, when I start up UDKGame (or my packaged game too), when I hit the 'instant action' button, I want only my game to be available. As it is, it starts with Deathmatch, and you have to go to 'Game Mode' to change it.
I've got my .ini's set up to use my game as the default, but I don't know that that's the problem - My guess is it's hard coded in to the menu system somewhere?
I did find the default properties of GFxUDKFrontEnd_LaunchGame
which had a bunch of DefaultGame Properties.
I changed it to mine
but no luck. This looks like more the right track though. Any ideas what I should look for?
I have like no experience with this Scaleform stuff, I've just been trying to modify everything through the .uc/.ini files, so... maybe not the best way, but... any help would be wonderful! Thanks!
Basically at the moment, when I start up UDKGame (or my packaged game too), when I hit the 'instant action' button, I want only my game to be available. As it is, it starts with Deathmatch, and you have to go to 'Game Mode' to change it.
I've got my .ini's set up to use my game as the default, but I don't know that that's the problem - My guess is it's hard coded in to the menu system somewhere?
I did find the default properties of GFxUDKFrontEnd_LaunchGame
which had a bunch of DefaultGame Properties.
I changed it to mine
DefaultProperties
{ /*
DefaultMapName="DM-Deck"
DefaultGameMode="UTGame.UTDeathmatch"
DefaultGameModeSettings="UTgameSettingsDM"
DefaultMapImage="UI_FrontEnd_Art.MapPics.___map-pic-dm-deck"
DefaultGameModePrefixes="DM"
*/
DefaultMapName="FD-Largefort"
DefaultGameMode="FadeGame.FadeGame"
DefaultGameModeSettings="UTgameSettingsCTF"
DefaultMapImage="UI_FADE_Art.Maps.Absolute"
DefaultGameModePrefixes="FD"
}
{ /*
DefaultMapName="DM-Deck"
DefaultGameMode="UTGame.UTDeathmatch"
DefaultGameModeSettings="UTgameSettingsDM"
DefaultMapImage="UI_FrontEnd_Art.MapPics.___map-pic-dm-deck"
DefaultGameModePrefixes="DM"
*/
DefaultMapName="FD-Largefort"
DefaultGameMode="FadeGame.FadeGame"
DefaultGameModeSettings="UTgameSettingsCTF"
DefaultMapImage="UI_FADE_Art.Maps.Absolute"
DefaultGameModePrefixes="FD"
}
I have like no experience with this Scaleform stuff, I've just been trying to modify everything through the .uc/.ini files, so... maybe not the best way, but... any help would be wonderful! Thanks!
Comment