This is an old revision of the document!


Introduction

Quickstart information about developing a mod in UDK here.

Installation

First of all - install UDK. Note that this guide was written for UDK version July 2012 (UDK-2012-07), but it should hold for other versions as well. Get UDK from www.udk.com .

When developing a project in UDK I strongly recommend to use Visual Studio along with nFringe.

  1. Download nFringe for Visual Studio (even free express edition works - I use 2008 express). nFringe is free for non-commercial purposes.

Compiling

To assure your new game or mod get compiled properly you need to tell UDK it should compile your mod as well. You do this in the file UDKEngine.ini (located in UDK-2012-07/UDKGame/Config folder). Find the part below and make sure it looks like this:

[UnrealEd.EditorEngine]
EditPackagesOutPath=..\..\UDKGame\Script
FRScriptOutputPath=..\..\UDKGame\ScriptFinalRelease
+EditPackages=Core
+EditPackages=Engine
+EditPackages=GFxUI
+EditPackages=GameFramework
+EditPackages=UnrealEd
+EditPackages=GFxUIEditor
+EditPackages=IpDrv
+EditPackages=OnlineSubsystemPC
+EditPackages=OnlineSubsystemGameSpy
+EditPackages=OnlineSubsystemLive
+EditPackages=OnlineSubsystemSteamworks
+EditPackages=UDKBase
+EditPackages=UTEditor
+EditPackages=UTGame
+EditPackages=UTGameContent
+EditPackages=YOUR_MOD_NAME

where YOUR_MOD_NAME is the name of your mod. Then you can compile code by manually calling “udk make” (Binaries/Win32 folder) or by building project in Visual Studio.

Note: +EditPackages=YOUR_MOD_NAME should be the LAST +EditPackages record in [UnrealEd.EditorEngine] (otherwise there could be problems with dependencies!)

Running Your Game

This assumes you have already set up your mod and created subclass of GameInfo class that is used for launching your game. To run your game simply type in console “udk DESIRED_MAP_NAME_WITHOUT_.upk?game=YOUR_MOD_NAME.YOUR_GAMEINFO_SUBCLASS_NAME” (Binaries/Win32 folder)

  • E.g. “udk DM-Deck?game=GameBotsUDK.BotDeathMatch”

Editor - UnrealEd

To run UnrealEd call manually “udk editor” command from Binaries/Win32 folder.

Indy Game open source example - Dungeon Defense

Dungeon Defense is an example of a game built entirely on UDK. Its open source, so it can serve as an inspiration on how to do things in UDK (note however that is was built using older version of UDK).

Online Sources

There are many online sources and large community around Unreal and UDK.

Acknowledgment

Innovation to the course in 2011/12 is supported by the project CZ.2.17/3.1.00/33274 financed by the European Social Fund and municipal house of Prague.

Prague & EU: We invest into your future!

guidelines/udk_development_tutorial.1382861201.txt.gz · Last modified: 2013/10/27 09:06 by michal.bida