System.Action OnComponentUpdate { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The OnComponentUpdate property is an event handler that is invoked during the update cycle of a component. This property allows you to assign a delegate or lambda expression that will be executed every frame, provided the component is active and enabled. It is a part of the component's lifecycle and is typically used to implement per-frame logic, such as updating animations, handling input, or performing calculations that need to be checked or updated frequently.

Usage

To use the OnComponentUpdate property, assign a method or lambda expression to it. This method will be called every frame during the component's update cycle. Ensure that the component is enabled and active for the update to occur.

Example

// Example of using OnComponentUpdate
public class MyComponent : Component
{
    public MyComponent()
    {
        // Assign a lambda expression to OnComponentUpdate
        OnComponentUpdate = () =>
        {
            // Logic to execute every frame
            UpdatePosition();
        };
    }

    private void UpdatePosition()
    {
        // Example logic to update position
        Transform.Position += new Vector3(0, 0, 1) * Time.Delta;
    }
}