My program doesn't have bugs. It just develops random features.

Specifiers

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search

UnrealScript provides a few specifiers such as Super and Global etc, Specifiers are mainly used to tell the compiler how it should call a function or what it should access.

Specifiers[edit]

  • 1 – The Specifier is available in Unreal Engine 1.
  • 2 – The Specifier is available in Unreal Engine 2.
  • 3 – The Specifier is available in Unreal Engine 3.
  • (no number) – The Specifier is available in all Unreal Engine generations.


Used to tell the compiler you want to...

  • Super - call a function from the parent class
  • Global - call the global version of a function
  • Static - call a static function
  • Default - access a default variable
  • Const3 - reference a constant