Summary
Holds
UltEvents.UltEvent
s which are called by various MonoBehaviour
update events:
UltEvents.UpdateEvents.Update
,
UltEvents.UpdateEvents.LateUpdate
, and
UltEvents.UpdateEvents.FixedUpdate
.
- Assembly
- UltEvents
.dll - Namespace
- UltEvents
- Base Types
-
- MonoBehaviour
graph BT
Type-->Base0["MonoBehaviour"]
Type["UpdateEvents"]
class Type type-node
Syntax
[AddComponentMenu(UltEventUtils.ComponentMenuPrefix + "Update Events")]
[DisallowMultipleComponent]
[UltEventsHelpUrl(typeof(UpdateEvents))]
public class UpdateEvents : MonoBehaviour
Attributes
Type | Description |
---|---|
AddComponentMenu | |
Disallow |
|
Ult |
[Assert-Conditional]
A HelpURLAttribute which points to the UltEvents documentation.
|
Properties
Name | Value | Summary |
---|---|---|
FixedUpdateEvent | UltEvent |
Invoked by
UltEvents.UpdateEvents.FixedUpdate . |
LateUpdateEvent | UltEvent |
Invoked by
UltEvents.UpdateEvents.LateUpdate . |
UpdateEvent | UltEvent |
Invoked by
UltEvents.UpdateEvents.Update . |
Methods
Name | Value | Summary |
---|---|---|
FixedUpdate |
void |
Invokes
UltEvents.UpdateEvents.FixedUpdateEvent . |
LateUpdate |
void |
Invokes
UltEvents.UpdateEvents.LateUpdateEvent . |
Update |
void |
Invokes
UltEvents.UpdateEvents.UpdateEvent . |