Update CHANGELOG-v3.60.md

This commit is contained in:
Richard Davey 2023-04-04 15:46:03 +01:00
parent 49d56e7dc4
commit 3170c427c0

View file

@ -159,6 +159,8 @@ The full list of new methods are as follows:
Available only to texture-based Game Objects:
* `GameObject.preFX` an instance of the FX Controller, which allows you to add and remove Pre FX from the Game Object. It features methods such as `add`, `remove` and `clear`. Plus the following:
* `GameObject.preFX.addGlow` adds a Glow Pre FX effect to the Game Object.
* `GameObject.preFX.addShadow` adds a Shadow Pre FX effect to the Game Object.
* `GameObject.preFX.addPixelate` adds a Pixelate Pre FX effect to the Game Object.
@ -178,6 +180,9 @@ Available only to texture-based Game Objects:
Available to all Game Objects:
* `GameObject.clearFX` removes both Pre and Post FX from the Game Object.
* `GameObject.postFX` an instance of the FX Controller, which allows you to add and remove Post FX from the Game Object. It features methods such as `add`, `remove` and `clear`. Plus the following:
* `GameObject.postFX.addGlow` adds a Glow Post FX effect to the Game Object.
* `GameObject.postFX.addShadow` adds a Shadow Post FX effect to the Game Object.
* `GameObject.postFX.addPixelate` adds a Pixelate Post FX effect to the Game Object.