Skip to content

Commit caca076

Browse files
committed
Update CHANGELOG.md
1 parent 728fb01 commit caca076

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,16 @@ one set of bindings ever created, which makes things a lot cleaner.
124124
* `InputPlugin.getDragState` is a new internal method that gets the drag state for the given Pointer.
125125
* Draggable Game Objects would not work if you had multiple Scenes running in parallel, with draggable objects in both of them. Only the top-most Scene would work fully. Items in the bottom Scene would never finish their drag cycle, causing them to get stuck. Fix #4249 #4278 (thanks @probt @iArePJ)
126126

127+
### Changes as a result of the new Scale Manager
128+
129+
* If you set the Game Config property `zoom` to be > 1 then it will automatically enable `pixelArt` mode, unless you set it to `false` in the config.
130+
* There is a new property in the Game Config called `autoRound`, which controls if the canvas size and style sizes are passed through Math.floor or not. On some devices this can help with performance and anti-aliasing. The default is `false` (turned off).
131+
* The Game Config property `autoResize` has been removed as it's now redundant.
132+
* The WebGL and Canvas Renderers no longer change the Canvas size in their `resize` methods. They just update internal properties.
133+
* The WebGL and Canvas Renderers now read the `width`, `height` and `resolution` values from the Scale Manager, not the Game Config.
134+
* `CameraManager.baseScale` property has been removed as it's no longer used anywhere.
135+
* The BaseCamera and Camera `preRender` methods now only take a resolution argument and use it internally for their transforms.
136+
127137
### New Features
128138

129139
* You can now load external Scene files using the new `load.sceneFile` method. This allows you to dynamically load a Scene into the Scene Manager of your game, and swap to it at will. Please see the documentation and examples for further details.

0 commit comments

Comments
 (0)