Table of Contents

Script Component

The Script Component represents a custom component that was written using visual scripting.

The component itself is a C++ component. It mediates between C++ and the visual script by forwarding C++ events and messages to the script and back.

Component Properties

  • HandleGlobalEvents: If enabled, this component acts as a Global Event Message Handler. This is useful for scripts that should implement logic for an entire level.

  • Script: The visual script to execute.

  • Parameters: In case the referenced script has exposed parameters, they are listed here and can be modified. When the script gets instantiated, the values of these parameters are passed into the script.

See Also