ComponentDisabledHandler_T_(Entity,T).md
March 19, 2022 ยท View on GitHub
DefaultEcs
DefaultEcs
ComponentDisabledHandler(Entity, T) Delegate
Represents the method that will called when a component of type T is disabled on an Entity.
public delegate void ComponentDisabledHandler<T>(in DefaultEcs.Entity entity, in T value);
Type parameters
T
The type of the component disabled.
Parameters
entity Entity
The Entity on which the component was disabled.
value T
The value of the component.