Add controller property

This commit is contained in:
Richard Davey 2023-02-16 23:50:01 +00:00
parent b90c067112
commit 92152c16cf

View file

@ -130,7 +130,8 @@ var PostFXPipeline = new Class({
this.isPostFX = true;
/**
* If this post-pipeline belongs to a Game Object or Camera, this contains a reference to it.
* If this Post Pipeline belongs to a Game Object or Camera,
* this property contains a reference to it.
*
* @name Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#gameObject
* @type {Phaser.GameObjects.GameObject}
@ -138,6 +139,16 @@ var PostFXPipeline = new Class({
*/
this.gameObject;
/**
* If this Post Pipeline belongs to an FX Controller, this is a
* reference to it.
*
* @name Phaser.Renderer.WebGL.Pipelines.PostFXPipeline#controller
* @type {Phaser.FX.BaseFX}
* @since 3.60.0
*/
this.controller;
/**
* A Color Matrix instance belonging to this pipeline.
*