Utility

Print the supplied text to console.

All UObjects can be printed to console. While the data it prints may be meaningless, it'll just print the name and its memory location.

Parameters

  1. Text (String)

Example

Print('Hello, console viewer!')

ShowFeatureItem

Show a feature item in the enabled feature list that is shown in the top right of the screen.

Parameters

  1. Text (String)

Example

ShowFeatureItem('Atomic Bomb Spawner', FColor(124, 12, 43, 255))

ShowNotification

Show a notificaton in the lower-right.

Parameters

  1. Show Length In Milliseconds (Integer)

  2. Title (String)

  3. Content (String)

  4. Color (FColor)

Example

ShowNotification(2500, 'Hello!', 'This is a message.', FColor(0, 255, 255, 255))

Last updated