Unreal mod (nonfiction): Difference between revisions

From Gnomon Chronicles
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 28: Line 28:


* [https://docs.unrealengine.com/udk/Three/UT3Mods.html Mod Authoring for Unreal Tournament 3] @ docs.unrealengine.com
* [https://docs.unrealengine.com/udk/Three/UT3Mods.html Mod Authoring for Unreal Tournament 3] @ docs.unrealengine.com
* [https://www.moddb.com/games/unreal-tournament-3/tutorials/unreal-learning-7-game-rules Unreal Learning #7: Game Rules]
* [https://wiki.nexusmods.com/index.php/Modding_with_the_UDK_-_XCOM:EU_2012 Modding with the UDK - XCOM:EU 2012]  
* [https://wiki.nexusmods.com/index.php/Modding_with_the_UDK_-_XCOM:EU_2012 Modding with the UDK - XCOM:EU 2012]  
** The UDK can be used to create new scripting, to include simulated functions that supplement or even replace embedded native functions (which can not be examined to see how they work, so take great care with function names so you don't break the game).
** The UDK can be used to create new scripting, to include simulated functions that supplement or even replace embedded native functions (which can not be examined to see how they work, so take great care with function names so you don't break the game).

Latest revision as of 10:52, 5 January 2021

In the Unreal engine, a mod is a modified version of the basic game.

Scope

Mods range from simple to more complex to comprehensive:

  • Unreal Mutator - simplest
  • Game Type - more complex - implemented as subclasses of the GameInfo class, specific to the game.
  • Total Conversion - most comprehensive - bypass the established game classes and start at the engine core. Rather than use game-specific subclasses, TC's are implemented as subclasses of the base engine classes, such as the GameInfo class. If your mod doesn't exist in the realm of the game's universe, or if you want to try something completely different, then a TC is the way to go. Just be aware that you will be doing everything from scratch.

In the News

Fiction cross-reference

Nonfiction cross-reference

External links