mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 06:28:30 +00:00
Add controller property
This commit is contained in:
parent
b90c067112
commit
92152c16cf
1 changed files with 12 additions and 1 deletions
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue