@quenty/flipbook 9.21.3-canary.a3ac54d.0 → 9.21.4-canary.607f741.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/CHANGELOG.md CHANGED
@@ -3,7 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [9.21.3-canary.a3ac54d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/flipbook@9.21.2...@quenty/flipbook@9.21.3-canary.a3ac54d.0) (2025-11-22)
6
+ ## [9.21.4-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/flipbook@9.21.3...@quenty/flipbook@9.21.4-canary.607f741.0) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/flipbook
9
+
10
+
11
+
12
+
13
+
14
+ ## [9.21.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/flipbook@9.21.2...@quenty/flipbook@9.21.3) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/flipbook
9
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/flipbook",
3
- "version": "9.21.3-canary.a3ac54d.0",
3
+ "version": "9.21.4-canary.607f741.0",
4
4
  "description": "Handles playing back animated spritesheets",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,17 +27,17 @@
27
27
  "dependencies": {
28
28
  "@quenty/baseobject": "10.9.0",
29
29
  "@quenty/ducktype": "5.9.0",
30
- "@quenty/instanceutils": "13.20.2-canary.a3ac54d.0",
30
+ "@quenty/instanceutils": "13.20.2",
31
31
  "@quenty/loader": "10.9.0",
32
32
  "@quenty/maid": "3.5.0",
33
33
  "@quenty/promise": "10.12.0",
34
34
  "@quenty/rx": "13.20.0",
35
- "@quenty/sprites": "13.19.3-canary.a3ac54d.0",
36
- "@quenty/uiobjectutils": "6.19.2-canary.a3ac54d.0",
37
- "@quenty/valueobject": "13.21.2-canary.a3ac54d.0"
35
+ "@quenty/sprites": "13.19.3",
36
+ "@quenty/uiobjectutils": "6.19.2",
37
+ "@quenty/valueobject": "13.21.3-canary.607f741.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "a3ac54d43aafa1c37b0e8c9b6e7b20b3f3362742"
42
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
43
43
  }
@@ -25,20 +25,22 @@ type PlayData = {
25
25
  times: number,
26
26
  }
27
27
 
28
- export type FlipbookPlayer = typeof(setmetatable(
29
- {} :: {
30
- _maid: Maid.Maid,
31
- _isPlaying: ValueObject.ValueObject<boolean>,
32
- _isBoomarang: ValueObject.ValueObject<boolean>,
33
- _playData: ValueObject.ValueObject<PlayData>,
34
- _flipbook: ValueObject.ValueObject<Flipbook.Flipbook>,
35
-
36
- _originalImage: string,
37
- _originalRectOffset: UDim2,
38
- _originalRectSize: UDim2,
39
- },
40
- {} :: typeof({ __index = FlipbookPlayer })
41
- )) & BaseObject.BaseObject
28
+ export type FlipbookPlayer =
29
+ typeof(setmetatable(
30
+ {} :: {
31
+ _maid: Maid.Maid,
32
+ _isPlaying: ValueObject.ValueObject<boolean>,
33
+ _isBoomarang: ValueObject.ValueObject<boolean>,
34
+ _playData: ValueObject.ValueObject<PlayData>,
35
+ _flipbook: ValueObject.ValueObject<Flipbook.Flipbook>,
36
+
37
+ _originalImage: string,
38
+ _originalRectOffset: UDim2,
39
+ _originalRectSize: UDim2,
40
+ },
41
+ {} :: typeof({ __index = FlipbookPlayer })
42
+ ))
43
+ & BaseObject.BaseObject
42
44
 
43
45
  type State = {
44
46
  flipbook: Flipbook.Flipbook?,