RPE Chart Utils
    Preparing search index...

    Interface EventLayer

    One layer of animation channels for a judge line.

    Multiple layers are composed additively. Layer 0 is the base; later layers add to the computed values.

    interface EventLayer {
        alphaEvents?: Event[] | null;
        moveXEvents?: Event[] | null;
        moveYEvents?: Event[] | null;
        rotateEvents?: Event[] | null;
        speedEvents?: SpeedEvent[] | null;
    }
    Index

    Properties

    alphaEvents?: Event[] | null

    Alpha events (0–255).

    moveXEvents?: Event[] | null

    Horizontal position events (chart units, center = 0).

    moveYEvents?: Event[] | null

    Vertical position events (chart units, center = 0).

    rotateEvents?: Event[] | null

    Rotation events (degrees, clockwise positive).

    speedEvents?: SpeedEvent[] | null

    Note scroll speed events.