EyeAuras Docs EyeAuras Docs
EyeAuras Docs EyeAuras Docs
DocFX + Singulink = ♥

Search Results for

    Property WhileActiveActions

    WhileActiveActions

    Gets actions executed continuously while the aura remains active.

    Declaration
    IComplexAuraAction WhileActiveActions { get; }
    Property Value
    Type Description
    IComplexAuraAction
    Remarks

    These actions run repeatedly as long as IsActive remains true.

    Examples
    // Execute all enabled actions
    foreach(var action in context.WhileActiveActions.Items.Where(a => a.IsEnabled))
    {
        await action.Execute();
    }
    2025 © Xab3r. All rights reserved.