You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/3rd/Plugins/UltEvents
Hazim Bin Ijaz 18b7134d2c Base Project 1 month ago
..
Event Holders Base Project 1 month ago
Events Base Project 1 month ago
Example Base Project 1 month ago
Inspector Base Project 1 month ago
Misc Base Project 1 month ago
Documentation.URL Base Project 1 month ago
Documentation.URL.meta Base Project 1 month ago
Event Holders.meta Base Project 1 month ago
Events.meta Base Project 1 month ago
Example.meta Base Project 1 month ago
Inspector.meta Base Project 1 month ago
Misc.meta Base Project 1 month ago
Readme.txt Base Project 1 month ago
Readme.txt.meta Base Project 1 month ago
Support.URL Base Project 1 month ago
Support.URL.meta Base Project 1 month ago
UltEvents.asmdef Base Project 1 month ago
UltEvents.asmdef.meta Base Project 1 month ago

Readme.txt

////////////////////////////////////////////////////////////
// UltEvents // Quick Start //
////////////////////////////////////////////////////////////

[SerializeField]
private UltEvents.UltEvent _MyEvent;

1. To create an UltEvent: declare a serialized field in your script as shown above.
2. Once you have declared your event it will show up in the Inspector for your script like a regular field so you can configure it to run code.
3. To trigger the execution of the event, simply call _MyEvent.Invoke().

- There are also various Premade Event Scripts which expose MonoBehaviour events like Awake, Update, etc.
- A scene with some example events can be found in Assets/Plugins/UltEvents/Example.
- You can safely move this plugin anywhere in your project.

////////////////////////////////////////////////////////////

The full documentation is available at https://kybernetik.com.au/ultevents

////////////////////////////////////////////////////////////