MCPcopy Create free account
hub / github.com/esengine/esengine / execute

Method execute

packages/effect/src/nodes/EffectNodes.ts:367–373  ·  view source on GitHub ↗
(_node: BlueprintNode, context: unknown)

Source from the content-addressed store, hash-verified

365
366export class ClearAllEffectsExecutor implements INodeExecutor {
367 execute(_node: BlueprintNode, context: unknown): ExecutionResult {
368 const ctx = context as EffectContext;
369 const container = ctx.getEffectContainer();
370 container?.removeAll();
371
372 return { nextExec: 'exec' };
373 }
374}
375
376// =============================================================================

Callers

nothing calls this directly

Calls 2

getEffectContainerMethod · 0.80
removeAllMethod · 0.80

Tested by

no test coverage detected