FrameAPI
pixi-reels / index / FrameAPI
Interface: FrameAPI
Defined in: core/ReelSet.ts:41
The runtime-mutable frame-builder pipeline exposed on reelSet.frame.
Matches FrameBuilder.use/remove. the internal machinery that already
exists; this is the ergonomic surface.
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
middleware | readonly | readonly FrameMiddleware[] | Current middleware list in registration order. | core/ReelSet.ts:47 |
Methods
remove()
remove(name: string): void;
Defined in: core/ReelSet.ts:45
Remove a middleware by name. No-op if absent.
Parameters
| Parameter | Type |
|---|---|
name | string |
Returns
void
use()
use(middleware: FrameMiddleware): void;
Defined in: core/ReelSet.ts:43
Add a middleware. Sorted by priority on next frame build.
Parameters
| Parameter | Type |
|---|---|
middleware | FrameMiddleware |
Returns
void