Update PostPipeline.js

This commit is contained in:
Richard Davey 2023-02-17 13:26:29 +00:00
parent 5913f38b44
commit 3d67fdb459

View file

@ -56,15 +56,6 @@ var PostPipeline = {
/**
* The Pre FX component of this Game Object.
*
* Only the following Game Objects support Pre FX:
*
* * Image
* * Sprite
* * TileSprite
* * Text
* * RenderTexture
* * Video
*
* This component allows you to apply a variety of built-in effects to this Game Object, such
* as glow, blur, bloom, displacements, vignettes and more. You access them via this property,
* for example:
@ -74,6 +65,15 @@ var PostPipeline = {
* player.preFX.addBloom();
* ```
*
* Only the following Game Objects support Pre FX:
*
* * Image
* * Sprite
* * TileSprite
* * Text
* * RenderTexture
* * Video
*
* All FX are WebGL only and do not have Canvas counterparts.
*
* Please see the FX Class for more details and available methods.