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 10 months ago
..
Event Holders Base Project 10 months ago
Events Base Project 10 months ago
Example Base Project 10 months ago
Inspector Base Project 10 months ago
Misc Base Project 10 months ago
Documentation.URL Base Project 10 months ago
Documentation.URL.meta Base Project 10 months ago
Event Holders.meta Base Project 10 months ago
Events.meta Base Project 10 months ago
Example.meta Base Project 10 months ago
Inspector.meta Base Project 10 months ago
Misc.meta Base Project 10 months ago
Readme.txt Base Project 10 months ago
Readme.txt.meta Base Project 10 months ago
Support.URL Base Project 10 months ago
Support.URL.meta Base Project 10 months ago
UltEvents.asmdef Base Project 10 months ago
UltEvents.asmdef.meta Base Project 10 months 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

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