midorable
    Preparing search index...

    Interface ParticleEmitterProps

    DisplayObject の初期化パラメータ

    interface ParticleEmitterProps {
        anchorX?: number;
        anchorY?: number;
        baseX?: number;
        baseY?: number;
        blendMode?: BlendMode | null;
        colorTone?: Color | null;
        config: ParticleEmitterConfig;
        context: AppContext;
        cursor?: CursorName | null;
        filters?: readonly FilterInstance[];
        frames?: Rectangle[];
        image: RenderableImage;
        interactive?: boolean;
        mask?: DisplayObject | null;
        opacity?: number;
        rotation?: number;
        scaleX?: number;
        scaleY?: number;
        smooth?: boolean;
        visible?: boolean;
        x?: number;
        y?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    anchorX?: number

    基準点のX座標(0.0~1.0)

    anchorY?: number

    基準点のY座標(0.0~1.0)

    baseX?: number

    発生位置の基準点X座標(省略した場合は0)

    baseY?: number

    発生位置の基準点Y座標(省略した場合は0)

    blendMode?: BlendMode | null

    ブレンドモード

    colorTone?: Color | null

    カラートーン

    エミッタの設定

    context: AppContext

    親要素から渡されるコンテキスト

    cursor?: CursorName | null

    カーソルの種類

    filters?: readonly FilterInstance[]

    フィルター

    frames?: Rectangle[]

    画像のフレーム情報。複数指定した場合はランダムに選択される

    使用する画像

    interactive?: boolean

    表示オブジェクトが入力イベントを受け取るかどうか

    mask?: DisplayObject | null

    マスク用のオブジェクト。設定したオブジェクトは通常描画されず、マスク形状としてのみ使われる

    opacity?: number

    不透明度(0.0~1.0)

    rotation?: number

    回転角(ラジアン)

    scaleX?: number

    X方向の拡大率

    scaleY?: number

    Y方向の拡大率

    smooth?: boolean

    スムージングの有効/無効

    visible?: boolean

    表示/非表示

    x?: number

    X座標

    y?: number

    Y座標