@next2d/display 2.9.0 → 2.11.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/display",
3
- "version": "2.9.0",
3
+ "version": "2.11.0",
4
4
  "description": "Next2D Display Package",
5
5
  "author": "Toshiyuki Ienaga<ienaga@next2d.app> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
@@ -24,13 +24,13 @@
24
24
  "url": "git+https://github.com/Next2D/Player.git"
25
25
  },
26
26
  "dependencies": {
27
- "@next2d/ui": "2.9.0",
28
- "@next2d/text": "2.9.0",
29
- "@next2d/geom": "2.9.0",
30
- "@next2d/media": "2.9.0",
31
- "@next2d/net": "2.9.0",
32
- "@next2d/events": "2.9.0",
33
- "@next2d/filters": "2.9.0",
34
- "@next2d/render-queue": "2.9.0"
27
+ "@next2d/ui": "2.11.0",
28
+ "@next2d/text": "2.11.0",
29
+ "@next2d/geom": "2.11.0",
30
+ "@next2d/media": "2.11.0",
31
+ "@next2d/net": "2.11.0",
32
+ "@next2d/events": "2.11.0",
33
+ "@next2d/filters": "2.11.0",
34
+ "@next2d/render-queue": "2.11.0"
35
35
  }
36
36
  }
@@ -173,7 +173,7 @@ export class GraphicsGradientFill {
173
173
  "R": color >>> 16 & 0xff,
174
174
  "G": color >>> 8 & 0xff,
175
175
  "B": color & 0xff,
176
- "A": this._$alphas[idx] * 255
176
+ "A": this._$alphas[idx] * 255 & 0xff
177
177
  };
178
178
  }
179
179
  }