-
Notifications
You must be signed in to change notification settings - Fork 4
Installing Forms
To install Forms you must first fork/download this repository and choose the path *YOUR-UDK\Development\Src* it should look like **YOUR-UDK\Development\Src\Forms*, along with **YOUR-UDK\Development\Src\FormsExample*.
Next up is registering Forms. Open YOUR-UDK\UDKGame\Config\DefaultEngine.ini and look for the section: [UnrealEd.EditorEngine]
And add this line below the others: +ModEditPackages=Forms
Now that's done we can start compiling this project, open your UnrealFrontend.exe and hit Make(In debug mode). The project should be compiled, if not please report your issue and the UDK build that you're using.
Go to *YOUR-UDK\Development\Src\FormsExample* and execute the Test.bat, this will launch UDK with the MyGame.uc used as the gameinfo.
If your game is using an empty UDKFrontEndMap with no Scaleform integration etc, then you should be seeing the MyMainMenu.uc, your player name should be shown and a white exit button should be clickable. If you're not testing on a default map, then pressing escape should popup a similar menu but this time only with a exit button. If all of this worked then you're ready to begin making your own menus/pages for your game. Checkout the MyMainMenu.uc and the MyGameMenu.uc and start customizing :)