I love the smell of UnrealEd crashing in the morning. – tarquin

Legacy:Linked List

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 16:49, 16 January 2006 by Wormbo (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

A linked list is a list of objects linked together by a series of pointers to another object in that list. In UnrealScript terms, each object has a reference to the next object in the list.

This allows for a near unlimited amount of objects to be connected; a worthy substitution for dynamic arrays (arrays of no defined size), which are not available in UnrealEngine1. (e.g. UT) This can be used for a variety of purposes: a player's inventory, a history of messages, a bunch of pipebombs a player can detonate, or even simply have easier and quicker access to certain actors such as Mutators and GameRules.

Articles about Linked Lists[edit]