@bscotch/yy 0.17.0 → 1.0.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/dist/Yy.d.ts +977 -359
- package/dist/Yy.d.ts.map +1 -1
- package/dist/Yy.js +24 -85
- package/dist/Yy.js.map +1 -1
- package/dist/Yy.parse.d.ts.map +1 -1
- package/dist/Yy.parse.js +19 -3
- package/dist/Yy.parse.js.map +1 -1
- package/dist/Yy.stringify.d.ts +6 -2
- package/dist/Yy.stringify.d.ts.map +1 -1
- package/dist/Yy.stringify.js +86 -3
- package/dist/Yy.stringify.js.map +1 -1
- package/dist/types/YyBase.d.ts +4 -1
- package/dist/types/YyBase.d.ts.map +1 -1
- package/dist/types/YyBase.js +1 -1
- package/dist/types/YyBase.js.map +1 -1
- package/dist/types/YyExtension.d.ts +3 -0
- package/dist/types/YyExtension.d.ts.map +1 -1
- package/dist/types/YyExtension.js +1 -0
- package/dist/types/YyExtension.js.map +1 -1
- package/dist/types/YyObject.d.ts +22 -19
- package/dist/types/YyObject.d.ts.map +1 -1
- package/dist/types/YyObject.js +2 -2
- package/dist/types/YyObject.js.map +1 -1
- package/dist/types/YyRoom.d.ts +6 -3
- package/dist/types/YyRoom.d.ts.map +1 -1
- package/dist/types/YyScript.d.ts +6 -3
- package/dist/types/YyScript.d.ts.map +1 -1
- package/dist/types/YySound.d.ts +6 -3
- package/dist/types/YySound.d.ts.map +1 -1
- package/dist/types/YySprite.d.ts +180 -169
- package/dist/types/YySprite.d.ts.map +1 -1
- package/dist/types/YySprite.js +7 -7
- package/dist/types/YySprite.js.map +1 -1
- package/dist/types/YySprite.lib.d.ts +7 -6
- package/dist/types/YySprite.lib.d.ts.map +1 -1
- package/dist/types/Yyp.d.ts +275 -50
- package/dist/types/Yyp.d.ts.map +1 -1
- package/dist/types/Yyp.js +18 -6
- package/dist/types/Yyp.js.map +1 -1
- package/dist/types/utility.d.ts +5 -2
- package/dist/types/utility.d.ts.map +1 -1
- package/dist/types/utility.js +11 -1
- package/dist/types/utility.js.map +1 -1
- package/package.json +1 -1
package/dist/types/YySprite.d.ts
CHANGED
|
@@ -81,8 +81,8 @@ export type SpriteImage = z.infer<typeof spriteImageSchema>;
|
|
|
81
81
|
declare const spriteImageSchema: z.ZodObject<{
|
|
82
82
|
name: z.ZodDefault<z.ZodString>;
|
|
83
83
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
84
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
85
84
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
85
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
86
86
|
FrameId: z.ZodObject<{
|
|
87
87
|
name: z.ZodString;
|
|
88
88
|
/** Path to the sprite's .yy file */
|
|
@@ -134,15 +134,15 @@ declare const spriteImageSchema: z.ZodObject<{
|
|
|
134
134
|
};
|
|
135
135
|
name?: string | undefined;
|
|
136
136
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
137
|
-
tags?: string[] | undefined;
|
|
138
137
|
resourceVersion?: "1.0" | undefined;
|
|
138
|
+
tags?: string[] | undefined;
|
|
139
139
|
}>;
|
|
140
140
|
export type SpriteCompositeImage = z.infer<typeof spriteCompositeImageSchema>;
|
|
141
141
|
declare const spriteCompositeImageSchema: z.ZodObject<{
|
|
142
142
|
name: z.ZodDefault<z.ZodString>;
|
|
143
143
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
144
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
145
144
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
145
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
146
146
|
FrameId: z.ZodObject<{
|
|
147
147
|
name: z.ZodString;
|
|
148
148
|
/** Path to the sprite's .yy file */
|
|
@@ -173,8 +173,8 @@ declare const spriteCompositeImageSchema: z.ZodObject<{
|
|
|
173
173
|
LayerId: null;
|
|
174
174
|
name?: string | undefined;
|
|
175
175
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
176
|
-
tags?: string[] | undefined;
|
|
177
176
|
resourceVersion?: "1.0" | undefined;
|
|
177
|
+
tags?: string[] | undefined;
|
|
178
178
|
}>;
|
|
179
179
|
export type SpriteFrame = z.input<typeof spriteFrameSchema>;
|
|
180
180
|
declare const spriteFrameSchema: z.ZodObject<{
|
|
@@ -197,8 +197,8 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
197
197
|
compositeImage: z.ZodOptional<z.ZodObject<{
|
|
198
198
|
name: z.ZodDefault<z.ZodString>;
|
|
199
199
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
200
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
201
200
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
201
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
202
202
|
FrameId: z.ZodObject<{
|
|
203
203
|
name: z.ZodString;
|
|
204
204
|
/** Path to the sprite's .yy file */
|
|
@@ -229,8 +229,8 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
229
229
|
LayerId: null;
|
|
230
230
|
name?: string | undefined;
|
|
231
231
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
232
|
-
tags?: string[] | undefined;
|
|
233
232
|
resourceVersion?: "1.0" | undefined;
|
|
233
|
+
tags?: string[] | undefined;
|
|
234
234
|
}>>;
|
|
235
235
|
/**
|
|
236
236
|
* One image per layer.
|
|
@@ -241,8 +241,8 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
241
241
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
242
242
|
name: z.ZodDefault<z.ZodString>;
|
|
243
243
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
244
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
245
244
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
245
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
246
246
|
FrameId: z.ZodObject<{
|
|
247
247
|
name: z.ZodString;
|
|
248
248
|
/** Path to the sprite's .yy file */
|
|
@@ -294,8 +294,8 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
294
294
|
};
|
|
295
295
|
name?: string | undefined;
|
|
296
296
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
297
|
-
tags?: string[] | undefined;
|
|
298
297
|
resourceVersion?: "1.0" | undefined;
|
|
298
|
+
tags?: string[] | undefined;
|
|
299
299
|
}>, "many">>;
|
|
300
300
|
/**
|
|
301
301
|
* The parent sprite, same as the sprite's ID from the YYP.
|
|
@@ -313,11 +313,11 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
313
313
|
path: string;
|
|
314
314
|
name: string;
|
|
315
315
|
}>>;
|
|
316
|
-
resourceVersion: z.ZodDefault<z.
|
|
316
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
317
317
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
318
318
|
name: string;
|
|
319
319
|
resourceType: "GMSpriteFrame";
|
|
320
|
-
resourceVersion:
|
|
320
|
+
resourceVersion: string;
|
|
321
321
|
tags?: string[] | undefined;
|
|
322
322
|
compositeImage?: {
|
|
323
323
|
name: string;
|
|
@@ -360,8 +360,8 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
360
360
|
LayerId: null;
|
|
361
361
|
name?: string | undefined;
|
|
362
362
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
363
|
-
tags?: string[] | undefined;
|
|
364
363
|
resourceVersion?: "1.0" | undefined;
|
|
364
|
+
tags?: string[] | undefined;
|
|
365
365
|
} | undefined;
|
|
366
366
|
images?: {
|
|
367
367
|
FrameId: {
|
|
@@ -374,14 +374,14 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
374
374
|
};
|
|
375
375
|
name?: string | undefined;
|
|
376
376
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
377
|
-
tags?: string[] | undefined;
|
|
378
377
|
resourceVersion?: "1.0" | undefined;
|
|
378
|
+
tags?: string[] | undefined;
|
|
379
379
|
}[] | undefined;
|
|
380
380
|
parent?: {
|
|
381
381
|
path: string;
|
|
382
382
|
name: string;
|
|
383
383
|
} | undefined;
|
|
384
|
-
resourceVersion?:
|
|
384
|
+
resourceVersion?: string | undefined;
|
|
385
385
|
}>;
|
|
386
386
|
export type SpriteImageLayer = z.input<typeof spriteImageLayerSchema>;
|
|
387
387
|
declare const spriteImageLayerSchema: z.ZodObject<{
|
|
@@ -533,11 +533,11 @@ declare const spriteSequenceTrackKeyframeSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
533
533
|
path: string;
|
|
534
534
|
name: string;
|
|
535
535
|
}>>;
|
|
536
|
-
resourceVersion: z.ZodDefault<z.
|
|
536
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
537
537
|
resourceType: z.ZodDefault<z.ZodLiteral<"SpriteFrameKeyframe">>;
|
|
538
538
|
}, "strip", z.ZodTypeAny, {
|
|
539
539
|
resourceType: "SpriteFrameKeyframe";
|
|
540
|
-
resourceVersion:
|
|
540
|
+
resourceVersion: string;
|
|
541
541
|
Id: {
|
|
542
542
|
path: string;
|
|
543
543
|
name: string;
|
|
@@ -547,19 +547,19 @@ declare const spriteSequenceTrackKeyframeSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
547
547
|
path: string;
|
|
548
548
|
name: string;
|
|
549
549
|
} | undefined;
|
|
550
|
-
resourceVersion?:
|
|
550
|
+
resourceVersion?: string | undefined;
|
|
551
551
|
resourceType?: "SpriteFrameKeyframe" | undefined;
|
|
552
552
|
}>>, Record<string, {
|
|
553
553
|
resourceType: "SpriteFrameKeyframe";
|
|
554
|
-
resourceVersion:
|
|
554
|
+
resourceVersion: string;
|
|
555
555
|
Id: {
|
|
556
556
|
path: string;
|
|
557
557
|
name: string;
|
|
558
558
|
};
|
|
559
559
|
}>, unknown>>;
|
|
560
|
-
resourceVersion: z.ZodDefault<z.
|
|
560
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
561
561
|
}, "strip", z.ZodTypeAny, {
|
|
562
|
-
resourceVersion:
|
|
562
|
+
resourceVersion: string;
|
|
563
563
|
id: string;
|
|
564
564
|
Key: FixedNumber;
|
|
565
565
|
Length: FixedNumber;
|
|
@@ -568,7 +568,7 @@ declare const spriteSequenceTrackKeyframeSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
568
568
|
IsCreationKey: boolean;
|
|
569
569
|
Channels: Record<string, {
|
|
570
570
|
resourceType: "SpriteFrameKeyframe";
|
|
571
|
-
resourceVersion:
|
|
571
|
+
resourceVersion: string;
|
|
572
572
|
Id: {
|
|
573
573
|
path: string;
|
|
574
574
|
name: string;
|
|
@@ -582,7 +582,7 @@ declare const spriteSequenceTrackKeyframeSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
582
582
|
Disabled?: boolean | undefined;
|
|
583
583
|
IsCreationKey?: boolean | undefined;
|
|
584
584
|
Channels?: unknown;
|
|
585
|
-
resourceVersion?:
|
|
585
|
+
resourceVersion?: string | undefined;
|
|
586
586
|
}>, z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
587
587
|
resourceType: z.ZodLiteral<"Keyframe`1">;
|
|
588
588
|
elementType: z.ZodLiteral<"SpriteFrameKeyframe">;
|
|
@@ -629,7 +629,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
629
629
|
events: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
630
630
|
modifiers: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
631
631
|
isCreationTrack: z.ZodDefault<z.ZodBoolean>;
|
|
632
|
-
resourceVersion: z.ZodDefault<z.
|
|
632
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
633
633
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
634
634
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteFramesTrack">>;
|
|
635
635
|
keyframes: z.ZodEffects<z.ZodEffects<z.ZodIntersection<z.ZodObject<{
|
|
@@ -660,11 +660,11 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
660
660
|
path: string;
|
|
661
661
|
name: string;
|
|
662
662
|
}>>;
|
|
663
|
-
resourceVersion: z.ZodDefault<z.
|
|
663
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
664
664
|
resourceType: z.ZodDefault<z.ZodLiteral<"SpriteFrameKeyframe">>;
|
|
665
665
|
}, "strip", z.ZodTypeAny, {
|
|
666
666
|
resourceType: "SpriteFrameKeyframe";
|
|
667
|
-
resourceVersion:
|
|
667
|
+
resourceVersion: string;
|
|
668
668
|
Id: {
|
|
669
669
|
path: string;
|
|
670
670
|
name: string;
|
|
@@ -674,19 +674,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
674
674
|
path: string;
|
|
675
675
|
name: string;
|
|
676
676
|
} | undefined;
|
|
677
|
-
resourceVersion?:
|
|
677
|
+
resourceVersion?: string | undefined;
|
|
678
678
|
resourceType?: "SpriteFrameKeyframe" | undefined;
|
|
679
679
|
}>>, Record<string, {
|
|
680
680
|
resourceType: "SpriteFrameKeyframe";
|
|
681
|
-
resourceVersion:
|
|
681
|
+
resourceVersion: string;
|
|
682
682
|
Id: {
|
|
683
683
|
path: string;
|
|
684
684
|
name: string;
|
|
685
685
|
};
|
|
686
686
|
}>, unknown>>;
|
|
687
|
-
resourceVersion: z.ZodDefault<z.
|
|
687
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
688
688
|
}, "strip", z.ZodTypeAny, {
|
|
689
|
-
resourceVersion:
|
|
689
|
+
resourceVersion: string;
|
|
690
690
|
id: string;
|
|
691
691
|
Key: FixedNumber;
|
|
692
692
|
Length: FixedNumber;
|
|
@@ -695,7 +695,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
695
695
|
IsCreationKey: boolean;
|
|
696
696
|
Channels: Record<string, {
|
|
697
697
|
resourceType: "SpriteFrameKeyframe";
|
|
698
|
-
resourceVersion:
|
|
698
|
+
resourceVersion: string;
|
|
699
699
|
Id: {
|
|
700
700
|
path: string;
|
|
701
701
|
name: string;
|
|
@@ -709,7 +709,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
709
709
|
Disabled?: boolean | undefined;
|
|
710
710
|
IsCreationKey?: boolean | undefined;
|
|
711
711
|
Channels?: unknown;
|
|
712
|
-
resourceVersion?:
|
|
712
|
+
resourceVersion?: string | undefined;
|
|
713
713
|
}>, z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
714
714
|
resourceType: z.ZodLiteral<"Keyframe`1">;
|
|
715
715
|
elementType: z.ZodLiteral<"SpriteFrameKeyframe">;
|
|
@@ -726,7 +726,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
726
726
|
}, {
|
|
727
727
|
resourceType: "Keyframe<SpriteFrameKeyframe>";
|
|
728
728
|
}>]>>, "many">>, ({
|
|
729
|
-
resourceVersion:
|
|
729
|
+
resourceVersion: string;
|
|
730
730
|
id: string;
|
|
731
731
|
Key: FixedNumber;
|
|
732
732
|
Length: FixedNumber;
|
|
@@ -735,7 +735,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
735
735
|
IsCreationKey: boolean;
|
|
736
736
|
Channels: Record<string, {
|
|
737
737
|
resourceType: "SpriteFrameKeyframe";
|
|
738
|
-
resourceVersion:
|
|
738
|
+
resourceVersion: string;
|
|
739
739
|
Id: {
|
|
740
740
|
path: string;
|
|
741
741
|
name: string;
|
|
@@ -747,11 +747,11 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
747
747
|
} | {
|
|
748
748
|
resourceType: "Keyframe<SpriteFrameKeyframe>";
|
|
749
749
|
}))[], unknown>;
|
|
750
|
-
resourceVersion: z.ZodDefault<z.
|
|
750
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
751
751
|
}, "strip", z.ZodTypeAny, {
|
|
752
|
-
resourceVersion:
|
|
752
|
+
resourceVersion: string;
|
|
753
753
|
Keyframes: ({
|
|
754
|
-
resourceVersion:
|
|
754
|
+
resourceVersion: string;
|
|
755
755
|
id: string;
|
|
756
756
|
Key: FixedNumber;
|
|
757
757
|
Length: FixedNumber;
|
|
@@ -760,7 +760,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
760
760
|
IsCreationKey: boolean;
|
|
761
761
|
Channels: Record<string, {
|
|
762
762
|
resourceType: "SpriteFrameKeyframe";
|
|
763
|
-
resourceVersion:
|
|
763
|
+
resourceVersion: string;
|
|
764
764
|
Id: {
|
|
765
765
|
path: string;
|
|
766
766
|
name: string;
|
|
@@ -774,7 +774,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
774
774
|
}))[];
|
|
775
775
|
}, {
|
|
776
776
|
Keyframes?: unknown;
|
|
777
|
-
resourceVersion?:
|
|
777
|
+
resourceVersion?: string | undefined;
|
|
778
778
|
}>, z.ZodDefault<z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
779
779
|
resourceType: z.ZodLiteral<"KeyframeStore<SpriteFrameKeyframe>">;
|
|
780
780
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -791,9 +791,9 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
791
791
|
resourceType: "KeyframeStore`1";
|
|
792
792
|
elementType: "SpriteFrameKeyframe";
|
|
793
793
|
}>]>>>, ({
|
|
794
|
-
resourceVersion:
|
|
794
|
+
resourceVersion: string;
|
|
795
795
|
Keyframes: ({
|
|
796
|
-
resourceVersion:
|
|
796
|
+
resourceVersion: string;
|
|
797
797
|
id: string;
|
|
798
798
|
Key: FixedNumber;
|
|
799
799
|
Length: FixedNumber;
|
|
@@ -802,7 +802,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
802
802
|
IsCreationKey: boolean;
|
|
803
803
|
Channels: Record<string, {
|
|
804
804
|
resourceType: "SpriteFrameKeyframe";
|
|
805
|
-
resourceVersion:
|
|
805
|
+
resourceVersion: string;
|
|
806
806
|
Id: {
|
|
807
807
|
path: string;
|
|
808
808
|
name: string;
|
|
@@ -817,9 +817,9 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
817
817
|
} & {
|
|
818
818
|
resourceType: "KeyframeStore<SpriteFrameKeyframe>";
|
|
819
819
|
}) | ({
|
|
820
|
-
resourceVersion:
|
|
820
|
+
resourceVersion: string;
|
|
821
821
|
Keyframes: ({
|
|
822
|
-
resourceVersion:
|
|
822
|
+
resourceVersion: string;
|
|
823
823
|
id: string;
|
|
824
824
|
Key: FixedNumber;
|
|
825
825
|
Length: FixedNumber;
|
|
@@ -828,7 +828,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
828
828
|
IsCreationKey: boolean;
|
|
829
829
|
Channels: Record<string, {
|
|
830
830
|
resourceType: "SpriteFrameKeyframe";
|
|
831
|
-
resourceVersion:
|
|
831
|
+
resourceVersion: string;
|
|
832
832
|
Id: {
|
|
833
833
|
path: string;
|
|
834
834
|
name: string;
|
|
@@ -845,19 +845,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
845
845
|
elementType: "SpriteFrameKeyframe";
|
|
846
846
|
}), ({
|
|
847
847
|
Keyframes?: unknown;
|
|
848
|
-
resourceVersion?:
|
|
848
|
+
resourceVersion?: string | undefined;
|
|
849
849
|
} & {
|
|
850
850
|
resourceType: "KeyframeStore<SpriteFrameKeyframe>";
|
|
851
851
|
}) | ({
|
|
852
852
|
Keyframes?: unknown;
|
|
853
|
-
resourceVersion?:
|
|
853
|
+
resourceVersion?: string | undefined;
|
|
854
854
|
} & {
|
|
855
855
|
resourceType: "KeyframeStore`1";
|
|
856
856
|
elementType: "SpriteFrameKeyframe";
|
|
857
857
|
})>, ({
|
|
858
|
-
resourceVersion:
|
|
858
|
+
resourceVersion: string;
|
|
859
859
|
Keyframes: ({
|
|
860
|
-
resourceVersion:
|
|
860
|
+
resourceVersion: string;
|
|
861
861
|
id: string;
|
|
862
862
|
Key: FixedNumber;
|
|
863
863
|
Length: FixedNumber;
|
|
@@ -866,7 +866,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
866
866
|
IsCreationKey: boolean;
|
|
867
867
|
Channels: Record<string, {
|
|
868
868
|
resourceType: "SpriteFrameKeyframe";
|
|
869
|
-
resourceVersion:
|
|
869
|
+
resourceVersion: string;
|
|
870
870
|
Id: {
|
|
871
871
|
path: string;
|
|
872
872
|
name: string;
|
|
@@ -881,9 +881,9 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
881
881
|
} & {
|
|
882
882
|
resourceType: "KeyframeStore<SpriteFrameKeyframe>";
|
|
883
883
|
}) | ({
|
|
884
|
-
resourceVersion:
|
|
884
|
+
resourceVersion: string;
|
|
885
885
|
Keyframes: ({
|
|
886
|
-
resourceVersion:
|
|
886
|
+
resourceVersion: string;
|
|
887
887
|
id: string;
|
|
888
888
|
Key: FixedNumber;
|
|
889
889
|
Length: FixedNumber;
|
|
@@ -892,7 +892,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
892
892
|
IsCreationKey: boolean;
|
|
893
893
|
Channels: Record<string, {
|
|
894
894
|
resourceType: "SpriteFrameKeyframe";
|
|
895
|
-
resourceVersion:
|
|
895
|
+
resourceVersion: string;
|
|
896
896
|
Id: {
|
|
897
897
|
path: string;
|
|
898
898
|
name: string;
|
|
@@ -911,7 +911,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
911
911
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
912
912
|
name: string;
|
|
913
913
|
resourceType: "GMSpriteFramesTrack";
|
|
914
|
-
resourceVersion:
|
|
914
|
+
resourceVersion: string;
|
|
915
915
|
events: unknown[];
|
|
916
916
|
tracks: unknown[];
|
|
917
917
|
trackColour: number;
|
|
@@ -922,9 +922,9 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
922
922
|
modifiers: unknown[];
|
|
923
923
|
isCreationTrack: boolean;
|
|
924
924
|
keyframes: ({
|
|
925
|
-
resourceVersion:
|
|
925
|
+
resourceVersion: string;
|
|
926
926
|
Keyframes: ({
|
|
927
|
-
resourceVersion:
|
|
927
|
+
resourceVersion: string;
|
|
928
928
|
id: string;
|
|
929
929
|
Key: FixedNumber;
|
|
930
930
|
Length: FixedNumber;
|
|
@@ -933,7 +933,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
933
933
|
IsCreationKey: boolean;
|
|
934
934
|
Channels: Record<string, {
|
|
935
935
|
resourceType: "SpriteFrameKeyframe";
|
|
936
|
-
resourceVersion:
|
|
936
|
+
resourceVersion: string;
|
|
937
937
|
Id: {
|
|
938
938
|
path: string;
|
|
939
939
|
name: string;
|
|
@@ -948,9 +948,9 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
948
948
|
} & {
|
|
949
949
|
resourceType: "KeyframeStore<SpriteFrameKeyframe>";
|
|
950
950
|
}) | ({
|
|
951
|
-
resourceVersion:
|
|
951
|
+
resourceVersion: string;
|
|
952
952
|
Keyframes: ({
|
|
953
|
-
resourceVersion:
|
|
953
|
+
resourceVersion: string;
|
|
954
954
|
id: string;
|
|
955
955
|
Key: FixedNumber;
|
|
956
956
|
Length: FixedNumber;
|
|
@@ -959,7 +959,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
959
959
|
IsCreationKey: boolean;
|
|
960
960
|
Channels: Record<string, {
|
|
961
961
|
resourceType: "SpriteFrameKeyframe";
|
|
962
|
-
resourceVersion:
|
|
962
|
+
resourceVersion: string;
|
|
963
963
|
Id: {
|
|
964
964
|
path: string;
|
|
965
965
|
name: string;
|
|
@@ -989,7 +989,7 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
989
989
|
events?: unknown[] | undefined;
|
|
990
990
|
modifiers?: unknown[] | undefined;
|
|
991
991
|
isCreationTrack?: boolean | undefined;
|
|
992
|
-
resourceVersion?:
|
|
992
|
+
resourceVersion?: string | undefined;
|
|
993
993
|
tags?: string[] | undefined;
|
|
994
994
|
resourceType?: "GMSpriteFramesTrack" | undefined;
|
|
995
995
|
keyframes?: unknown;
|
|
@@ -1041,13 +1041,13 @@ declare const spriteSequenceSchema: z.ZodObject<{
|
|
|
1041
1041
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1042
1042
|
events: z.ZodDefault<z.ZodEffects<z.ZodIntersection<z.ZodObject<{
|
|
1043
1043
|
Keyframes: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1044
|
-
resourceVersion: z.ZodDefault<z.
|
|
1044
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1045
1045
|
}, "strip", z.ZodTypeAny, {
|
|
1046
|
-
resourceVersion:
|
|
1046
|
+
resourceVersion: string;
|
|
1047
1047
|
Keyframes: unknown[];
|
|
1048
1048
|
}, {
|
|
1049
1049
|
Keyframes?: unknown[] | undefined;
|
|
1050
|
-
resourceVersion?:
|
|
1050
|
+
resourceVersion?: string | undefined;
|
|
1051
1051
|
}>, z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
1052
1052
|
resourceType: z.ZodLiteral<"KeyframeStore<MessageEventKeyframe>">;
|
|
1053
1053
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1064,7 +1064,7 @@ declare const spriteSequenceSchema: z.ZodObject<{
|
|
|
1064
1064
|
resourceType: "KeyframeStore`1";
|
|
1065
1065
|
elementType: "MessageEventKeyframe";
|
|
1066
1066
|
}>]>>, {
|
|
1067
|
-
resourceVersion:
|
|
1067
|
+
resourceVersion: string;
|
|
1068
1068
|
Keyframes: unknown[];
|
|
1069
1069
|
} & ({
|
|
1070
1070
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
@@ -1074,13 +1074,13 @@ declare const spriteSequenceSchema: z.ZodObject<{
|
|
|
1074
1074
|
}), unknown>>;
|
|
1075
1075
|
moments: z.ZodDefault<z.ZodEffects<z.ZodIntersection<z.ZodObject<{
|
|
1076
1076
|
Keyframes: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1077
|
-
resourceVersion: z.ZodDefault<z.
|
|
1077
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1078
1078
|
}, "strip", z.ZodTypeAny, {
|
|
1079
|
-
resourceVersion:
|
|
1079
|
+
resourceVersion: string;
|
|
1080
1080
|
Keyframes: unknown[];
|
|
1081
1081
|
}, {
|
|
1082
1082
|
Keyframes?: unknown[] | undefined;
|
|
1083
|
-
resourceVersion?:
|
|
1083
|
+
resourceVersion?: string | undefined;
|
|
1084
1084
|
}>, z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
1085
1085
|
resourceType: z.ZodLiteral<"KeyframeStore<MomentsEventKeyframe>">;
|
|
1086
1086
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1097,7 +1097,7 @@ declare const spriteSequenceSchema: z.ZodObject<{
|
|
|
1097
1097
|
resourceType: "KeyframeStore`1";
|
|
1098
1098
|
elementType: "MomentsEventKeyframe";
|
|
1099
1099
|
}>]>>, {
|
|
1100
|
-
resourceVersion:
|
|
1100
|
+
resourceVersion: string;
|
|
1101
1101
|
Keyframes: unknown[];
|
|
1102
1102
|
} & ({
|
|
1103
1103
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
@@ -1173,24 +1173,24 @@ declare const spriteSequenceSchema: z.ZodObject<{
|
|
|
1173
1173
|
xorigin: number;
|
|
1174
1174
|
yorigin: number;
|
|
1175
1175
|
events: ({
|
|
1176
|
-
resourceVersion:
|
|
1176
|
+
resourceVersion: string;
|
|
1177
1177
|
Keyframes: unknown[];
|
|
1178
1178
|
} & {
|
|
1179
1179
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
1180
1180
|
}) | ({
|
|
1181
|
-
resourceVersion:
|
|
1181
|
+
resourceVersion: string;
|
|
1182
1182
|
Keyframes: unknown[];
|
|
1183
1183
|
} & {
|
|
1184
1184
|
resourceType: "KeyframeStore`1";
|
|
1185
1185
|
elementType: "MessageEventKeyframe";
|
|
1186
1186
|
});
|
|
1187
1187
|
moments: ({
|
|
1188
|
-
resourceVersion:
|
|
1188
|
+
resourceVersion: string;
|
|
1189
1189
|
Keyframes: unknown[];
|
|
1190
1190
|
} & {
|
|
1191
1191
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
1192
1192
|
}) | ({
|
|
1193
|
-
resourceVersion:
|
|
1193
|
+
resourceVersion: string;
|
|
1194
1194
|
Keyframes: unknown[];
|
|
1195
1195
|
} & {
|
|
1196
1196
|
resourceType: "KeyframeStore`1";
|
|
@@ -1250,7 +1250,9 @@ declare const spriteSequenceSchema: z.ZodObject<{
|
|
|
1250
1250
|
export type YySpriteLoose = z.input<typeof yySpriteSchemaStrict>;
|
|
1251
1251
|
export type YySprite = z.output<typeof yySpriteSchemaStrict>;
|
|
1252
1252
|
declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
1253
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
1253
1254
|
name: z.ZodString;
|
|
1255
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1254
1256
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1255
1257
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1256
1258
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -1263,7 +1265,6 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1263
1265
|
path: string;
|
|
1264
1266
|
name: string;
|
|
1265
1267
|
}>>;
|
|
1266
|
-
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1267
1268
|
bboxMode: z.ZodDefault<z.ZodNativeEnum<typeof SpriteBoundingBoxMode>>;
|
|
1268
1269
|
collisionKind: z.ZodDefault<z.ZodNativeEnum<typeof SpriteCollisionKind>>;
|
|
1269
1270
|
type: z.ZodDefault<z.ZodNativeEnum<typeof SpriteType>>;
|
|
@@ -1317,8 +1318,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1317
1318
|
compositeImage: z.ZodOptional<z.ZodObject<{
|
|
1318
1319
|
name: z.ZodDefault<z.ZodString>;
|
|
1319
1320
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
1320
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1321
1321
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
1322
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1322
1323
|
FrameId: z.ZodObject<{
|
|
1323
1324
|
name: z.ZodString;
|
|
1324
1325
|
/** Path to the sprite's .yy file */
|
|
@@ -1349,8 +1350,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1349
1350
|
LayerId: null;
|
|
1350
1351
|
name?: string | undefined;
|
|
1351
1352
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
1352
|
-
tags?: string[] | undefined;
|
|
1353
1353
|
resourceVersion?: "1.0" | undefined;
|
|
1354
|
+
tags?: string[] | undefined;
|
|
1354
1355
|
}>>;
|
|
1355
1356
|
/**
|
|
1356
1357
|
* One image per layer.
|
|
@@ -1361,8 +1362,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1361
1362
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1362
1363
|
name: z.ZodDefault<z.ZodString>;
|
|
1363
1364
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
1364
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1365
1365
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
1366
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1366
1367
|
FrameId: z.ZodObject<{
|
|
1367
1368
|
name: z.ZodString;
|
|
1368
1369
|
/** Path to the sprite's .yy file */
|
|
@@ -1414,8 +1415,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1414
1415
|
};
|
|
1415
1416
|
name?: string | undefined;
|
|
1416
1417
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
1417
|
-
tags?: string[] | undefined;
|
|
1418
1418
|
resourceVersion?: "1.0" | undefined;
|
|
1419
|
+
tags?: string[] | undefined;
|
|
1419
1420
|
}>, "many">>;
|
|
1420
1421
|
/**
|
|
1421
1422
|
* The parent sprite, same as the sprite's ID from the YYP.
|
|
@@ -1433,11 +1434,11 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1433
1434
|
path: string;
|
|
1434
1435
|
name: string;
|
|
1435
1436
|
}>>;
|
|
1436
|
-
resourceVersion: z.ZodDefault<z.
|
|
1437
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1437
1438
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1438
1439
|
name: string;
|
|
1439
1440
|
resourceType: "GMSpriteFrame";
|
|
1440
|
-
resourceVersion:
|
|
1441
|
+
resourceVersion: string;
|
|
1441
1442
|
tags?: string[] | undefined;
|
|
1442
1443
|
compositeImage?: {
|
|
1443
1444
|
name: string;
|
|
@@ -1480,8 +1481,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1480
1481
|
LayerId: null;
|
|
1481
1482
|
name?: string | undefined;
|
|
1482
1483
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
1483
|
-
tags?: string[] | undefined;
|
|
1484
1484
|
resourceVersion?: "1.0" | undefined;
|
|
1485
|
+
tags?: string[] | undefined;
|
|
1485
1486
|
} | undefined;
|
|
1486
1487
|
images?: {
|
|
1487
1488
|
FrameId: {
|
|
@@ -1494,14 +1495,14 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1494
1495
|
};
|
|
1495
1496
|
name?: string | undefined;
|
|
1496
1497
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
1497
|
-
tags?: string[] | undefined;
|
|
1498
1498
|
resourceVersion?: "1.0" | undefined;
|
|
1499
|
+
tags?: string[] | undefined;
|
|
1499
1500
|
}[] | undefined;
|
|
1500
1501
|
parent?: {
|
|
1501
1502
|
path: string;
|
|
1502
1503
|
name: string;
|
|
1503
1504
|
} | undefined;
|
|
1504
|
-
resourceVersion?:
|
|
1505
|
+
resourceVersion?: string | undefined;
|
|
1505
1506
|
}>, "many">>;
|
|
1506
1507
|
sequence: z.ZodEffects<z.ZodObject<{
|
|
1507
1508
|
timeUnits: z.ZodDefault<z.ZodNumber>;
|
|
@@ -1549,13 +1550,13 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1549
1550
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1550
1551
|
events: z.ZodDefault<z.ZodEffects<z.ZodIntersection<z.ZodObject<{
|
|
1551
1552
|
Keyframes: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1552
|
-
resourceVersion: z.ZodDefault<z.
|
|
1553
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1553
1554
|
}, "strip", z.ZodTypeAny, {
|
|
1554
|
-
resourceVersion:
|
|
1555
|
+
resourceVersion: string;
|
|
1555
1556
|
Keyframes: unknown[];
|
|
1556
1557
|
}, {
|
|
1557
1558
|
Keyframes?: unknown[] | undefined;
|
|
1558
|
-
resourceVersion?:
|
|
1559
|
+
resourceVersion?: string | undefined;
|
|
1559
1560
|
}>, z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
1560
1561
|
resourceType: z.ZodLiteral<"KeyframeStore<MessageEventKeyframe>">;
|
|
1561
1562
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1572,7 +1573,7 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1572
1573
|
resourceType: "KeyframeStore`1";
|
|
1573
1574
|
elementType: "MessageEventKeyframe";
|
|
1574
1575
|
}>]>>, {
|
|
1575
|
-
resourceVersion:
|
|
1576
|
+
resourceVersion: string;
|
|
1576
1577
|
Keyframes: unknown[];
|
|
1577
1578
|
} & ({
|
|
1578
1579
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
@@ -1582,13 +1583,13 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1582
1583
|
}), unknown>>;
|
|
1583
1584
|
moments: z.ZodDefault<z.ZodEffects<z.ZodIntersection<z.ZodObject<{
|
|
1584
1585
|
Keyframes: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1585
|
-
resourceVersion: z.ZodDefault<z.
|
|
1586
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1586
1587
|
}, "strip", z.ZodTypeAny, {
|
|
1587
|
-
resourceVersion:
|
|
1588
|
+
resourceVersion: string;
|
|
1588
1589
|
Keyframes: unknown[];
|
|
1589
1590
|
}, {
|
|
1590
1591
|
Keyframes?: unknown[] | undefined;
|
|
1591
|
-
resourceVersion?:
|
|
1592
|
+
resourceVersion?: string | undefined;
|
|
1592
1593
|
}>, z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
1593
1594
|
resourceType: z.ZodLiteral<"KeyframeStore<MomentsEventKeyframe>">;
|
|
1594
1595
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1605,7 +1606,7 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1605
1606
|
resourceType: "KeyframeStore`1";
|
|
1606
1607
|
elementType: "MomentsEventKeyframe";
|
|
1607
1608
|
}>]>>, {
|
|
1608
|
-
resourceVersion:
|
|
1609
|
+
resourceVersion: string;
|
|
1609
1610
|
Keyframes: unknown[];
|
|
1610
1611
|
} & ({
|
|
1611
1612
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
@@ -1681,24 +1682,24 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1681
1682
|
xorigin: number;
|
|
1682
1683
|
yorigin: number;
|
|
1683
1684
|
events: ({
|
|
1684
|
-
resourceVersion:
|
|
1685
|
+
resourceVersion: string;
|
|
1685
1686
|
Keyframes: unknown[];
|
|
1686
1687
|
} & {
|
|
1687
1688
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
1688
1689
|
}) | ({
|
|
1689
|
-
resourceVersion:
|
|
1690
|
+
resourceVersion: string;
|
|
1690
1691
|
Keyframes: unknown[];
|
|
1691
1692
|
} & {
|
|
1692
1693
|
resourceType: "KeyframeStore`1";
|
|
1693
1694
|
elementType: "MessageEventKeyframe";
|
|
1694
1695
|
});
|
|
1695
1696
|
moments: ({
|
|
1696
|
-
resourceVersion:
|
|
1697
|
+
resourceVersion: string;
|
|
1697
1698
|
Keyframes: unknown[];
|
|
1698
1699
|
} & {
|
|
1699
1700
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
1700
1701
|
}) | ({
|
|
1701
|
-
resourceVersion:
|
|
1702
|
+
resourceVersion: string;
|
|
1702
1703
|
Keyframes: unknown[];
|
|
1703
1704
|
} & {
|
|
1704
1705
|
resourceType: "KeyframeStore`1";
|
|
@@ -1777,24 +1778,24 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1777
1778
|
xorigin: number;
|
|
1778
1779
|
yorigin: number;
|
|
1779
1780
|
events: ({
|
|
1780
|
-
resourceVersion:
|
|
1781
|
+
resourceVersion: string;
|
|
1781
1782
|
Keyframes: unknown[];
|
|
1782
1783
|
} & {
|
|
1783
1784
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
1784
1785
|
}) | ({
|
|
1785
|
-
resourceVersion:
|
|
1786
|
+
resourceVersion: string;
|
|
1786
1787
|
Keyframes: unknown[];
|
|
1787
1788
|
} & {
|
|
1788
1789
|
resourceType: "KeyframeStore`1";
|
|
1789
1790
|
elementType: "MessageEventKeyframe";
|
|
1790
1791
|
});
|
|
1791
1792
|
moments: ({
|
|
1792
|
-
resourceVersion:
|
|
1793
|
+
resourceVersion: string;
|
|
1793
1794
|
Keyframes: unknown[];
|
|
1794
1795
|
} & {
|
|
1795
1796
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
1796
1797
|
}) | ({
|
|
1797
|
-
resourceVersion:
|
|
1798
|
+
resourceVersion: string;
|
|
1798
1799
|
Keyframes: unknown[];
|
|
1799
1800
|
} & {
|
|
1800
1801
|
resourceType: "KeyframeStore`1";
|
|
@@ -1821,11 +1822,11 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1821
1822
|
type: SpriteType;
|
|
1822
1823
|
name: string;
|
|
1823
1824
|
resourceType: "GMSprite";
|
|
1825
|
+
resourceVersion: string;
|
|
1824
1826
|
parent: {
|
|
1825
1827
|
path: string;
|
|
1826
1828
|
name: string;
|
|
1827
1829
|
};
|
|
1828
|
-
resourceVersion: string;
|
|
1829
1830
|
gridX: number;
|
|
1830
1831
|
gridY: number;
|
|
1831
1832
|
layers: any[];
|
|
@@ -1853,7 +1854,7 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1853
1854
|
frames: {
|
|
1854
1855
|
name: string;
|
|
1855
1856
|
resourceType: "GMSpriteFrame";
|
|
1856
|
-
resourceVersion:
|
|
1857
|
+
resourceVersion: string;
|
|
1857
1858
|
tags?: string[] | undefined;
|
|
1858
1859
|
compositeImage?: {
|
|
1859
1860
|
name: string;
|
|
@@ -1911,24 +1912,24 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1911
1912
|
xorigin: number;
|
|
1912
1913
|
yorigin: number;
|
|
1913
1914
|
events: ({
|
|
1914
|
-
resourceVersion:
|
|
1915
|
+
resourceVersion: string;
|
|
1915
1916
|
Keyframes: unknown[];
|
|
1916
1917
|
} & {
|
|
1917
1918
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
1918
1919
|
}) | ({
|
|
1919
|
-
resourceVersion:
|
|
1920
|
+
resourceVersion: string;
|
|
1920
1921
|
Keyframes: unknown[];
|
|
1921
1922
|
} & {
|
|
1922
1923
|
resourceType: "KeyframeStore`1";
|
|
1923
1924
|
elementType: "MessageEventKeyframe";
|
|
1924
1925
|
});
|
|
1925
1926
|
moments: ({
|
|
1926
|
-
resourceVersion:
|
|
1927
|
+
resourceVersion: string;
|
|
1927
1928
|
Keyframes: unknown[];
|
|
1928
1929
|
} & {
|
|
1929
1930
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
1930
1931
|
}) | ({
|
|
1931
|
-
resourceVersion:
|
|
1932
|
+
resourceVersion: string;
|
|
1932
1933
|
Keyframes: unknown[];
|
|
1933
1934
|
} & {
|
|
1934
1935
|
resourceType: "KeyframeStore`1";
|
|
@@ -1948,19 +1949,21 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1948
1949
|
name: string;
|
|
1949
1950
|
} | undefined;
|
|
1950
1951
|
};
|
|
1952
|
+
"%Name"?: string | undefined;
|
|
1951
1953
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
1952
1954
|
tags?: string[] | undefined;
|
|
1953
1955
|
swatchColours?: unknown;
|
|
1954
1956
|
nineSlice?: unknown;
|
|
1955
1957
|
}, {
|
|
1956
1958
|
name: string;
|
|
1959
|
+
"%Name"?: string | undefined;
|
|
1960
|
+
resourceVersion?: string | undefined;
|
|
1957
1961
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
1958
1962
|
tags?: string[] | undefined;
|
|
1959
1963
|
parent?: {
|
|
1960
1964
|
path: string;
|
|
1961
1965
|
name: string;
|
|
1962
1966
|
} | undefined;
|
|
1963
|
-
resourceVersion?: string | undefined;
|
|
1964
1967
|
bboxMode?: SpriteBoundingBoxMode | undefined;
|
|
1965
1968
|
collisionKind?: SpriteCollisionKind | undefined;
|
|
1966
1969
|
type?: SpriteType | undefined;
|
|
@@ -1998,8 +2001,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1998
2001
|
LayerId: null;
|
|
1999
2002
|
name?: string | undefined;
|
|
2000
2003
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
2001
|
-
tags?: string[] | undefined;
|
|
2002
2004
|
resourceVersion?: "1.0" | undefined;
|
|
2005
|
+
tags?: string[] | undefined;
|
|
2003
2006
|
} | undefined;
|
|
2004
2007
|
images?: {
|
|
2005
2008
|
FrameId: {
|
|
@@ -2012,14 +2015,14 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2012
2015
|
};
|
|
2013
2016
|
name?: string | undefined;
|
|
2014
2017
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
2015
|
-
tags?: string[] | undefined;
|
|
2016
2018
|
resourceVersion?: "1.0" | undefined;
|
|
2019
|
+
tags?: string[] | undefined;
|
|
2017
2020
|
}[] | undefined;
|
|
2018
2021
|
parent?: {
|
|
2019
2022
|
path: string;
|
|
2020
2023
|
name: string;
|
|
2021
2024
|
} | undefined;
|
|
2022
|
-
resourceVersion?:
|
|
2025
|
+
resourceVersion?: string | undefined;
|
|
2023
2026
|
}[] | undefined;
|
|
2024
2027
|
sequence?: unknown;
|
|
2025
2028
|
layers?: unknown;
|
|
@@ -2029,11 +2032,11 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2029
2032
|
type: SpriteType;
|
|
2030
2033
|
name: string;
|
|
2031
2034
|
resourceType: "GMSprite";
|
|
2035
|
+
resourceVersion: string;
|
|
2032
2036
|
parent: {
|
|
2033
2037
|
path: string;
|
|
2034
2038
|
name: string;
|
|
2035
2039
|
};
|
|
2036
|
-
resourceVersion: string;
|
|
2037
2040
|
gridX: number;
|
|
2038
2041
|
gridY: number;
|
|
2039
2042
|
layers: any[];
|
|
@@ -2061,7 +2064,7 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2061
2064
|
frames: {
|
|
2062
2065
|
name: string;
|
|
2063
2066
|
resourceType: "GMSpriteFrame";
|
|
2064
|
-
resourceVersion:
|
|
2067
|
+
resourceVersion: string;
|
|
2065
2068
|
tags?: string[] | undefined;
|
|
2066
2069
|
compositeImage?: {
|
|
2067
2070
|
name: string;
|
|
@@ -2119,24 +2122,24 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2119
2122
|
xorigin: number;
|
|
2120
2123
|
yorigin: number;
|
|
2121
2124
|
events: ({
|
|
2122
|
-
resourceVersion:
|
|
2125
|
+
resourceVersion: string;
|
|
2123
2126
|
Keyframes: unknown[];
|
|
2124
2127
|
} & {
|
|
2125
2128
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
2126
2129
|
}) | ({
|
|
2127
|
-
resourceVersion:
|
|
2130
|
+
resourceVersion: string;
|
|
2128
2131
|
Keyframes: unknown[];
|
|
2129
2132
|
} & {
|
|
2130
2133
|
resourceType: "KeyframeStore`1";
|
|
2131
2134
|
elementType: "MessageEventKeyframe";
|
|
2132
2135
|
});
|
|
2133
2136
|
moments: ({
|
|
2134
|
-
resourceVersion:
|
|
2137
|
+
resourceVersion: string;
|
|
2135
2138
|
Keyframes: unknown[];
|
|
2136
2139
|
} & {
|
|
2137
2140
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
2138
2141
|
}) | ({
|
|
2139
|
-
resourceVersion:
|
|
2142
|
+
resourceVersion: string;
|
|
2140
2143
|
Keyframes: unknown[];
|
|
2141
2144
|
} & {
|
|
2142
2145
|
resourceType: "KeyframeStore`1";
|
|
@@ -2156,19 +2159,21 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2156
2159
|
name: string;
|
|
2157
2160
|
} | undefined;
|
|
2158
2161
|
};
|
|
2162
|
+
"%Name"?: string | undefined;
|
|
2159
2163
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
2160
2164
|
tags?: string[] | undefined;
|
|
2161
2165
|
swatchColours?: unknown;
|
|
2162
2166
|
nineSlice?: unknown;
|
|
2163
2167
|
}, {
|
|
2164
2168
|
name: string;
|
|
2169
|
+
"%Name"?: string | undefined;
|
|
2170
|
+
resourceVersion?: string | undefined;
|
|
2165
2171
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
2166
2172
|
tags?: string[] | undefined;
|
|
2167
2173
|
parent?: {
|
|
2168
2174
|
path: string;
|
|
2169
2175
|
name: string;
|
|
2170
2176
|
} | undefined;
|
|
2171
|
-
resourceVersion?: string | undefined;
|
|
2172
2177
|
bboxMode?: SpriteBoundingBoxMode | undefined;
|
|
2173
2178
|
collisionKind?: SpriteCollisionKind | undefined;
|
|
2174
2179
|
type?: SpriteType | undefined;
|
|
@@ -2206,8 +2211,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2206
2211
|
LayerId: null;
|
|
2207
2212
|
name?: string | undefined;
|
|
2208
2213
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
2209
|
-
tags?: string[] | undefined;
|
|
2210
2214
|
resourceVersion?: "1.0" | undefined;
|
|
2215
|
+
tags?: string[] | undefined;
|
|
2211
2216
|
} | undefined;
|
|
2212
2217
|
images?: {
|
|
2213
2218
|
FrameId: {
|
|
@@ -2220,14 +2225,14 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2220
2225
|
};
|
|
2221
2226
|
name?: string | undefined;
|
|
2222
2227
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
2223
|
-
tags?: string[] | undefined;
|
|
2224
2228
|
resourceVersion?: "1.0" | undefined;
|
|
2229
|
+
tags?: string[] | undefined;
|
|
2225
2230
|
}[] | undefined;
|
|
2226
2231
|
parent?: {
|
|
2227
2232
|
path: string;
|
|
2228
2233
|
name: string;
|
|
2229
2234
|
} | undefined;
|
|
2230
|
-
resourceVersion?:
|
|
2235
|
+
resourceVersion?: string | undefined;
|
|
2231
2236
|
}[] | undefined;
|
|
2232
2237
|
sequence?: unknown;
|
|
2233
2238
|
layers?: unknown;
|
|
@@ -2239,7 +2244,9 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2239
2244
|
* forgiving preprocessing to allow for sparse inputs.
|
|
2240
2245
|
*/
|
|
2241
2246
|
export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
2247
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
2242
2248
|
name: z.ZodString;
|
|
2249
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
2243
2250
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2244
2251
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2245
2252
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -2252,7 +2259,6 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2252
2259
|
path: string;
|
|
2253
2260
|
name: string;
|
|
2254
2261
|
}>>;
|
|
2255
|
-
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
2256
2262
|
bboxMode: z.ZodDefault<z.ZodNativeEnum<typeof SpriteBoundingBoxMode>>;
|
|
2257
2263
|
collisionKind: z.ZodDefault<z.ZodNativeEnum<typeof SpriteCollisionKind>>;
|
|
2258
2264
|
type: z.ZodDefault<z.ZodNativeEnum<typeof SpriteType>>;
|
|
@@ -2306,8 +2312,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2306
2312
|
compositeImage: z.ZodOptional<z.ZodObject<{
|
|
2307
2313
|
name: z.ZodDefault<z.ZodString>;
|
|
2308
2314
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
2309
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2310
2315
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
2316
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2311
2317
|
FrameId: z.ZodObject<{
|
|
2312
2318
|
name: z.ZodString;
|
|
2313
2319
|
/** Path to the sprite's .yy file */
|
|
@@ -2338,8 +2344,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2338
2344
|
LayerId: null;
|
|
2339
2345
|
name?: string | undefined;
|
|
2340
2346
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
2341
|
-
tags?: string[] | undefined;
|
|
2342
2347
|
resourceVersion?: "1.0" | undefined;
|
|
2348
|
+
tags?: string[] | undefined;
|
|
2343
2349
|
}>>;
|
|
2344
2350
|
/**
|
|
2345
2351
|
* One image per layer.
|
|
@@ -2350,8 +2356,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2350
2356
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2351
2357
|
name: z.ZodDefault<z.ZodString>;
|
|
2352
2358
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
2353
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2354
2359
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
2360
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2355
2361
|
FrameId: z.ZodObject<{
|
|
2356
2362
|
name: z.ZodString;
|
|
2357
2363
|
/** Path to the sprite's .yy file */
|
|
@@ -2403,8 +2409,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2403
2409
|
};
|
|
2404
2410
|
name?: string | undefined;
|
|
2405
2411
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
2406
|
-
tags?: string[] | undefined;
|
|
2407
2412
|
resourceVersion?: "1.0" | undefined;
|
|
2413
|
+
tags?: string[] | undefined;
|
|
2408
2414
|
}>, "many">>;
|
|
2409
2415
|
/**
|
|
2410
2416
|
* The parent sprite, same as the sprite's ID from the YYP.
|
|
@@ -2422,11 +2428,11 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2422
2428
|
path: string;
|
|
2423
2429
|
name: string;
|
|
2424
2430
|
}>>;
|
|
2425
|
-
resourceVersion: z.ZodDefault<z.
|
|
2431
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
2426
2432
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2427
2433
|
name: string;
|
|
2428
2434
|
resourceType: "GMSpriteFrame";
|
|
2429
|
-
resourceVersion:
|
|
2435
|
+
resourceVersion: string;
|
|
2430
2436
|
tags?: string[] | undefined;
|
|
2431
2437
|
compositeImage?: {
|
|
2432
2438
|
name: string;
|
|
@@ -2469,8 +2475,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2469
2475
|
LayerId: null;
|
|
2470
2476
|
name?: string | undefined;
|
|
2471
2477
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
2472
|
-
tags?: string[] | undefined;
|
|
2473
2478
|
resourceVersion?: "1.0" | undefined;
|
|
2479
|
+
tags?: string[] | undefined;
|
|
2474
2480
|
} | undefined;
|
|
2475
2481
|
images?: {
|
|
2476
2482
|
FrameId: {
|
|
@@ -2483,14 +2489,14 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2483
2489
|
};
|
|
2484
2490
|
name?: string | undefined;
|
|
2485
2491
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
2486
|
-
tags?: string[] | undefined;
|
|
2487
2492
|
resourceVersion?: "1.0" | undefined;
|
|
2493
|
+
tags?: string[] | undefined;
|
|
2488
2494
|
}[] | undefined;
|
|
2489
2495
|
parent?: {
|
|
2490
2496
|
path: string;
|
|
2491
2497
|
name: string;
|
|
2492
2498
|
} | undefined;
|
|
2493
|
-
resourceVersion?:
|
|
2499
|
+
resourceVersion?: string | undefined;
|
|
2494
2500
|
}>, "many">>;
|
|
2495
2501
|
sequence: z.ZodEffects<z.ZodObject<{
|
|
2496
2502
|
timeUnits: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2538,13 +2544,13 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2538
2544
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
2539
2545
|
events: z.ZodDefault<z.ZodEffects<z.ZodIntersection<z.ZodObject<{
|
|
2540
2546
|
Keyframes: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
2541
|
-
resourceVersion: z.ZodDefault<z.
|
|
2547
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
2542
2548
|
}, "strip", z.ZodTypeAny, {
|
|
2543
|
-
resourceVersion:
|
|
2549
|
+
resourceVersion: string;
|
|
2544
2550
|
Keyframes: unknown[];
|
|
2545
2551
|
}, {
|
|
2546
2552
|
Keyframes?: unknown[] | undefined;
|
|
2547
|
-
resourceVersion?:
|
|
2553
|
+
resourceVersion?: string | undefined;
|
|
2548
2554
|
}>, z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
2549
2555
|
resourceType: z.ZodLiteral<"KeyframeStore<MessageEventKeyframe>">;
|
|
2550
2556
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2561,7 +2567,7 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2561
2567
|
resourceType: "KeyframeStore`1";
|
|
2562
2568
|
elementType: "MessageEventKeyframe";
|
|
2563
2569
|
}>]>>, {
|
|
2564
|
-
resourceVersion:
|
|
2570
|
+
resourceVersion: string;
|
|
2565
2571
|
Keyframes: unknown[];
|
|
2566
2572
|
} & ({
|
|
2567
2573
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
@@ -2571,13 +2577,13 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2571
2577
|
}), unknown>>;
|
|
2572
2578
|
moments: z.ZodDefault<z.ZodEffects<z.ZodIntersection<z.ZodObject<{
|
|
2573
2579
|
Keyframes: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
2574
|
-
resourceVersion: z.ZodDefault<z.
|
|
2580
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
2575
2581
|
}, "strip", z.ZodTypeAny, {
|
|
2576
|
-
resourceVersion:
|
|
2582
|
+
resourceVersion: string;
|
|
2577
2583
|
Keyframes: unknown[];
|
|
2578
2584
|
}, {
|
|
2579
2585
|
Keyframes?: unknown[] | undefined;
|
|
2580
|
-
resourceVersion?:
|
|
2586
|
+
resourceVersion?: string | undefined;
|
|
2581
2587
|
}>, z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
2582
2588
|
resourceType: z.ZodLiteral<"KeyframeStore<MomentsEventKeyframe>">;
|
|
2583
2589
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2594,7 +2600,7 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2594
2600
|
resourceType: "KeyframeStore`1";
|
|
2595
2601
|
elementType: "MomentsEventKeyframe";
|
|
2596
2602
|
}>]>>, {
|
|
2597
|
-
resourceVersion:
|
|
2603
|
+
resourceVersion: string;
|
|
2598
2604
|
Keyframes: unknown[];
|
|
2599
2605
|
} & ({
|
|
2600
2606
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
@@ -2670,24 +2676,24 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2670
2676
|
xorigin: number;
|
|
2671
2677
|
yorigin: number;
|
|
2672
2678
|
events: ({
|
|
2673
|
-
resourceVersion:
|
|
2679
|
+
resourceVersion: string;
|
|
2674
2680
|
Keyframes: unknown[];
|
|
2675
2681
|
} & {
|
|
2676
2682
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
2677
2683
|
}) | ({
|
|
2678
|
-
resourceVersion:
|
|
2684
|
+
resourceVersion: string;
|
|
2679
2685
|
Keyframes: unknown[];
|
|
2680
2686
|
} & {
|
|
2681
2687
|
resourceType: "KeyframeStore`1";
|
|
2682
2688
|
elementType: "MessageEventKeyframe";
|
|
2683
2689
|
});
|
|
2684
2690
|
moments: ({
|
|
2685
|
-
resourceVersion:
|
|
2691
|
+
resourceVersion: string;
|
|
2686
2692
|
Keyframes: unknown[];
|
|
2687
2693
|
} & {
|
|
2688
2694
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
2689
2695
|
}) | ({
|
|
2690
|
-
resourceVersion:
|
|
2696
|
+
resourceVersion: string;
|
|
2691
2697
|
Keyframes: unknown[];
|
|
2692
2698
|
} & {
|
|
2693
2699
|
resourceType: "KeyframeStore`1";
|
|
@@ -2766,24 +2772,24 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2766
2772
|
xorigin: number;
|
|
2767
2773
|
yorigin: number;
|
|
2768
2774
|
events: ({
|
|
2769
|
-
resourceVersion:
|
|
2775
|
+
resourceVersion: string;
|
|
2770
2776
|
Keyframes: unknown[];
|
|
2771
2777
|
} & {
|
|
2772
2778
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
2773
2779
|
}) | ({
|
|
2774
|
-
resourceVersion:
|
|
2780
|
+
resourceVersion: string;
|
|
2775
2781
|
Keyframes: unknown[];
|
|
2776
2782
|
} & {
|
|
2777
2783
|
resourceType: "KeyframeStore`1";
|
|
2778
2784
|
elementType: "MessageEventKeyframe";
|
|
2779
2785
|
});
|
|
2780
2786
|
moments: ({
|
|
2781
|
-
resourceVersion:
|
|
2787
|
+
resourceVersion: string;
|
|
2782
2788
|
Keyframes: unknown[];
|
|
2783
2789
|
} & {
|
|
2784
2790
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
2785
2791
|
}) | ({
|
|
2786
|
-
resourceVersion:
|
|
2792
|
+
resourceVersion: string;
|
|
2787
2793
|
Keyframes: unknown[];
|
|
2788
2794
|
} & {
|
|
2789
2795
|
resourceType: "KeyframeStore`1";
|
|
@@ -2810,11 +2816,11 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2810
2816
|
type: SpriteType;
|
|
2811
2817
|
name: string;
|
|
2812
2818
|
resourceType: "GMSprite";
|
|
2819
|
+
resourceVersion: string;
|
|
2813
2820
|
parent: {
|
|
2814
2821
|
path: string;
|
|
2815
2822
|
name: string;
|
|
2816
2823
|
};
|
|
2817
|
-
resourceVersion: string;
|
|
2818
2824
|
gridX: number;
|
|
2819
2825
|
gridY: number;
|
|
2820
2826
|
layers: any[];
|
|
@@ -2842,7 +2848,7 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2842
2848
|
frames: {
|
|
2843
2849
|
name: string;
|
|
2844
2850
|
resourceType: "GMSpriteFrame";
|
|
2845
|
-
resourceVersion:
|
|
2851
|
+
resourceVersion: string;
|
|
2846
2852
|
tags?: string[] | undefined;
|
|
2847
2853
|
compositeImage?: {
|
|
2848
2854
|
name: string;
|
|
@@ -2900,24 +2906,24 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2900
2906
|
xorigin: number;
|
|
2901
2907
|
yorigin: number;
|
|
2902
2908
|
events: ({
|
|
2903
|
-
resourceVersion:
|
|
2909
|
+
resourceVersion: string;
|
|
2904
2910
|
Keyframes: unknown[];
|
|
2905
2911
|
} & {
|
|
2906
2912
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
2907
2913
|
}) | ({
|
|
2908
|
-
resourceVersion:
|
|
2914
|
+
resourceVersion: string;
|
|
2909
2915
|
Keyframes: unknown[];
|
|
2910
2916
|
} & {
|
|
2911
2917
|
resourceType: "KeyframeStore`1";
|
|
2912
2918
|
elementType: "MessageEventKeyframe";
|
|
2913
2919
|
});
|
|
2914
2920
|
moments: ({
|
|
2915
|
-
resourceVersion:
|
|
2921
|
+
resourceVersion: string;
|
|
2916
2922
|
Keyframes: unknown[];
|
|
2917
2923
|
} & {
|
|
2918
2924
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
2919
2925
|
}) | ({
|
|
2920
|
-
resourceVersion:
|
|
2926
|
+
resourceVersion: string;
|
|
2921
2927
|
Keyframes: unknown[];
|
|
2922
2928
|
} & {
|
|
2923
2929
|
resourceType: "KeyframeStore`1";
|
|
@@ -2937,19 +2943,21 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2937
2943
|
name: string;
|
|
2938
2944
|
} | undefined;
|
|
2939
2945
|
};
|
|
2946
|
+
"%Name"?: string | undefined;
|
|
2940
2947
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
2941
2948
|
tags?: string[] | undefined;
|
|
2942
2949
|
swatchColours?: unknown;
|
|
2943
2950
|
nineSlice?: unknown;
|
|
2944
2951
|
}, {
|
|
2945
2952
|
name: string;
|
|
2953
|
+
"%Name"?: string | undefined;
|
|
2954
|
+
resourceVersion?: string | undefined;
|
|
2946
2955
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
2947
2956
|
tags?: string[] | undefined;
|
|
2948
2957
|
parent?: {
|
|
2949
2958
|
path: string;
|
|
2950
2959
|
name: string;
|
|
2951
2960
|
} | undefined;
|
|
2952
|
-
resourceVersion?: string | undefined;
|
|
2953
2961
|
bboxMode?: SpriteBoundingBoxMode | undefined;
|
|
2954
2962
|
collisionKind?: SpriteCollisionKind | undefined;
|
|
2955
2963
|
type?: SpriteType | undefined;
|
|
@@ -2987,8 +2995,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2987
2995
|
LayerId: null;
|
|
2988
2996
|
name?: string | undefined;
|
|
2989
2997
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
2990
|
-
tags?: string[] | undefined;
|
|
2991
2998
|
resourceVersion?: "1.0" | undefined;
|
|
2999
|
+
tags?: string[] | undefined;
|
|
2992
3000
|
} | undefined;
|
|
2993
3001
|
images?: {
|
|
2994
3002
|
FrameId: {
|
|
@@ -3001,14 +3009,14 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3001
3009
|
};
|
|
3002
3010
|
name?: string | undefined;
|
|
3003
3011
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
3004
|
-
tags?: string[] | undefined;
|
|
3005
3012
|
resourceVersion?: "1.0" | undefined;
|
|
3013
|
+
tags?: string[] | undefined;
|
|
3006
3014
|
}[] | undefined;
|
|
3007
3015
|
parent?: {
|
|
3008
3016
|
path: string;
|
|
3009
3017
|
name: string;
|
|
3010
3018
|
} | undefined;
|
|
3011
|
-
resourceVersion?:
|
|
3019
|
+
resourceVersion?: string | undefined;
|
|
3012
3020
|
}[] | undefined;
|
|
3013
3021
|
sequence?: unknown;
|
|
3014
3022
|
layers?: unknown;
|
|
@@ -3018,11 +3026,11 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3018
3026
|
type: SpriteType;
|
|
3019
3027
|
name: string;
|
|
3020
3028
|
resourceType: "GMSprite";
|
|
3029
|
+
resourceVersion: string;
|
|
3021
3030
|
parent: {
|
|
3022
3031
|
path: string;
|
|
3023
3032
|
name: string;
|
|
3024
3033
|
};
|
|
3025
|
-
resourceVersion: string;
|
|
3026
3034
|
gridX: number;
|
|
3027
3035
|
gridY: number;
|
|
3028
3036
|
layers: any[];
|
|
@@ -3050,7 +3058,7 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3050
3058
|
frames: {
|
|
3051
3059
|
name: string;
|
|
3052
3060
|
resourceType: "GMSpriteFrame";
|
|
3053
|
-
resourceVersion:
|
|
3061
|
+
resourceVersion: string;
|
|
3054
3062
|
tags?: string[] | undefined;
|
|
3055
3063
|
compositeImage?: {
|
|
3056
3064
|
name: string;
|
|
@@ -3108,24 +3116,24 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3108
3116
|
xorigin: number;
|
|
3109
3117
|
yorigin: number;
|
|
3110
3118
|
events: ({
|
|
3111
|
-
resourceVersion:
|
|
3119
|
+
resourceVersion: string;
|
|
3112
3120
|
Keyframes: unknown[];
|
|
3113
3121
|
} & {
|
|
3114
3122
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
3115
3123
|
}) | ({
|
|
3116
|
-
resourceVersion:
|
|
3124
|
+
resourceVersion: string;
|
|
3117
3125
|
Keyframes: unknown[];
|
|
3118
3126
|
} & {
|
|
3119
3127
|
resourceType: "KeyframeStore`1";
|
|
3120
3128
|
elementType: "MessageEventKeyframe";
|
|
3121
3129
|
});
|
|
3122
3130
|
moments: ({
|
|
3123
|
-
resourceVersion:
|
|
3131
|
+
resourceVersion: string;
|
|
3124
3132
|
Keyframes: unknown[];
|
|
3125
3133
|
} & {
|
|
3126
3134
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
3127
3135
|
}) | ({
|
|
3128
|
-
resourceVersion:
|
|
3136
|
+
resourceVersion: string;
|
|
3129
3137
|
Keyframes: unknown[];
|
|
3130
3138
|
} & {
|
|
3131
3139
|
resourceType: "KeyframeStore`1";
|
|
@@ -3145,19 +3153,21 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3145
3153
|
name: string;
|
|
3146
3154
|
} | undefined;
|
|
3147
3155
|
};
|
|
3156
|
+
"%Name"?: string | undefined;
|
|
3148
3157
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3149
3158
|
tags?: string[] | undefined;
|
|
3150
3159
|
swatchColours?: unknown;
|
|
3151
3160
|
nineSlice?: unknown;
|
|
3152
3161
|
}, {
|
|
3153
3162
|
name: string;
|
|
3163
|
+
"%Name"?: string | undefined;
|
|
3164
|
+
resourceVersion?: string | undefined;
|
|
3154
3165
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3155
3166
|
tags?: string[] | undefined;
|
|
3156
3167
|
parent?: {
|
|
3157
3168
|
path: string;
|
|
3158
3169
|
name: string;
|
|
3159
3170
|
} | undefined;
|
|
3160
|
-
resourceVersion?: string | undefined;
|
|
3161
3171
|
bboxMode?: SpriteBoundingBoxMode | undefined;
|
|
3162
3172
|
collisionKind?: SpriteCollisionKind | undefined;
|
|
3163
3173
|
type?: SpriteType | undefined;
|
|
@@ -3195,8 +3205,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3195
3205
|
LayerId: null;
|
|
3196
3206
|
name?: string | undefined;
|
|
3197
3207
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
3198
|
-
tags?: string[] | undefined;
|
|
3199
3208
|
resourceVersion?: "1.0" | undefined;
|
|
3209
|
+
tags?: string[] | undefined;
|
|
3200
3210
|
} | undefined;
|
|
3201
3211
|
images?: {
|
|
3202
3212
|
FrameId: {
|
|
@@ -3209,14 +3219,14 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3209
3219
|
};
|
|
3210
3220
|
name?: string | undefined;
|
|
3211
3221
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
3212
|
-
tags?: string[] | undefined;
|
|
3213
3222
|
resourceVersion?: "1.0" | undefined;
|
|
3223
|
+
tags?: string[] | undefined;
|
|
3214
3224
|
}[] | undefined;
|
|
3215
3225
|
parent?: {
|
|
3216
3226
|
path: string;
|
|
3217
3227
|
name: string;
|
|
3218
3228
|
} | undefined;
|
|
3219
|
-
resourceVersion?:
|
|
3229
|
+
resourceVersion?: string | undefined;
|
|
3220
3230
|
}[] | undefined;
|
|
3221
3231
|
sequence?: unknown;
|
|
3222
3232
|
layers?: unknown;
|
|
@@ -3226,11 +3236,11 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3226
3236
|
type: SpriteType;
|
|
3227
3237
|
name: string;
|
|
3228
3238
|
resourceType: "GMSprite";
|
|
3239
|
+
resourceVersion: string;
|
|
3229
3240
|
parent: {
|
|
3230
3241
|
path: string;
|
|
3231
3242
|
name: string;
|
|
3232
3243
|
};
|
|
3233
|
-
resourceVersion: string;
|
|
3234
3244
|
gridX: number;
|
|
3235
3245
|
gridY: number;
|
|
3236
3246
|
layers: any[];
|
|
@@ -3258,7 +3268,7 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3258
3268
|
frames: {
|
|
3259
3269
|
name: string;
|
|
3260
3270
|
resourceType: "GMSpriteFrame";
|
|
3261
|
-
resourceVersion:
|
|
3271
|
+
resourceVersion: string;
|
|
3262
3272
|
tags?: string[] | undefined;
|
|
3263
3273
|
compositeImage?: {
|
|
3264
3274
|
name: string;
|
|
@@ -3316,24 +3326,24 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3316
3326
|
xorigin: number;
|
|
3317
3327
|
yorigin: number;
|
|
3318
3328
|
events: ({
|
|
3319
|
-
resourceVersion:
|
|
3329
|
+
resourceVersion: string;
|
|
3320
3330
|
Keyframes: unknown[];
|
|
3321
3331
|
} & {
|
|
3322
3332
|
resourceType: "KeyframeStore<MessageEventKeyframe>";
|
|
3323
3333
|
}) | ({
|
|
3324
|
-
resourceVersion:
|
|
3334
|
+
resourceVersion: string;
|
|
3325
3335
|
Keyframes: unknown[];
|
|
3326
3336
|
} & {
|
|
3327
3337
|
resourceType: "KeyframeStore`1";
|
|
3328
3338
|
elementType: "MessageEventKeyframe";
|
|
3329
3339
|
});
|
|
3330
3340
|
moments: ({
|
|
3331
|
-
resourceVersion:
|
|
3341
|
+
resourceVersion: string;
|
|
3332
3342
|
Keyframes: unknown[];
|
|
3333
3343
|
} & {
|
|
3334
3344
|
resourceType: "KeyframeStore<MomentsEventKeyframe>";
|
|
3335
3345
|
}) | ({
|
|
3336
|
-
resourceVersion:
|
|
3346
|
+
resourceVersion: string;
|
|
3337
3347
|
Keyframes: unknown[];
|
|
3338
3348
|
} & {
|
|
3339
3349
|
resourceType: "KeyframeStore`1";
|
|
@@ -3353,6 +3363,7 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3353
3363
|
name: string;
|
|
3354
3364
|
} | undefined;
|
|
3355
3365
|
};
|
|
3366
|
+
"%Name"?: string | undefined;
|
|
3356
3367
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3357
3368
|
tags?: string[] | undefined;
|
|
3358
3369
|
swatchColours?: unknown;
|