Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.11 KB

File metadata and controls

52 lines (30 loc) · 1.11 KB

retro-engine / Exports / PostProcessing

Class: PostProcessing

Class responsible for managing post processing effects. Can be used to add/remove shaders programmatically.

Table of contents

Methods

Methods

add

Add a post process to the top of the stack. Post processes are applied in the order they are added.

Static add(post_process): void

Parameters

Name Type
post_process PostProcess

Returns

void

Defined in

src/renderer/post_process.ts:157

remove

Remove a post process from the stack.

Static remove(post_process): void

Parameters

Name Type
post_process PostProcess

Returns

void

Defined in

src/renderer/post_process.ts:161