@needle-tools/engine 2.56.0-pre → 2.56.1-pre

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,9 @@ All notable changes to this package will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.56.1-pre] - 2023-01-05
8
+ - Fix: UI setting Image.sprite property did apply vertical flip every time the sprite was set
9
+
7
10
  ## [2.56.0-pre] - 2023-01-04
8
11
  - Add: file-dropped event to DropListener
9
12
  - Add: UI image and raw image components now support updating texture/sprite at runtime
@@ -4460,6 +4460,7 @@ declare module "engine-components/ui/Graphic" {
4460
4460
  protected onAfterAddedToScene(): void;
4461
4461
  }
4462
4462
  export class MaskableGraphic extends Graphic {
4463
+ private _flippedObject;
4463
4464
  protected onAfterCreated(): void;
4464
4465
  }
4465
4466
  }