@bscotch/yy 2.1.2 → 2.1.4
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 +484 -484
- package/dist/Yy.stringify.d.ts.map +1 -1
- package/dist/Yy.stringify.js +5 -3
- package/dist/Yy.stringify.js.map +1 -1
- package/dist/types/YyBase.d.ts +6 -6
- package/dist/types/YyExtension.d.ts +32 -32
- package/dist/types/YyObject.d.ts +32 -32
- package/dist/types/YyRoom.d.ts +333 -333
- package/dist/types/YyRoom.d.ts.map +1 -1
- package/dist/types/YyScript.d.ts +4 -4
- package/dist/types/YyShader.d.ts +6 -6
- package/dist/types/YySound.d.ts +9 -9
- package/dist/types/YySprite.d.ts +269 -269
- package/dist/types/YySprite.lib.d.ts +9 -9
- package/dist/types/Yyp.d.ts +82 -82
- package/dist/types/utility.d.ts +5 -5
- package/package.json +1 -1
package/dist/types/YySprite.d.ts
CHANGED
|
@@ -47,11 +47,11 @@ declare const spriteImageBaseSchema: z.ZodObject<{
|
|
|
47
47
|
/** Path to the sprite's .yy file */
|
|
48
48
|
path: z.ZodString;
|
|
49
49
|
}, "strip", z.ZodTypeAny, {
|
|
50
|
-
path: string;
|
|
51
50
|
name: string;
|
|
52
|
-
}, {
|
|
53
51
|
path: string;
|
|
52
|
+
}, {
|
|
54
53
|
name: string;
|
|
54
|
+
path: string;
|
|
55
55
|
}>;
|
|
56
56
|
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
57
57
|
name: z.ZodDefault<z.ZodString>;
|
|
@@ -63,14 +63,14 @@ declare const spriteImageBaseSchema: z.ZodObject<{
|
|
|
63
63
|
resourceType: "GMSpriteBitmap";
|
|
64
64
|
resourceVersion: "1.0";
|
|
65
65
|
FrameId: {
|
|
66
|
-
path: string;
|
|
67
66
|
name: string;
|
|
67
|
+
path: string;
|
|
68
68
|
};
|
|
69
69
|
tags?: string[] | undefined;
|
|
70
70
|
}, {
|
|
71
71
|
FrameId: {
|
|
72
|
-
path: string;
|
|
73
72
|
name: string;
|
|
73
|
+
path: string;
|
|
74
74
|
};
|
|
75
75
|
resourceVersion?: "1.0" | undefined;
|
|
76
76
|
name?: string | undefined;
|
|
@@ -88,11 +88,11 @@ declare const spriteImageSchema: z.ZodObject<{
|
|
|
88
88
|
/** Path to the sprite's .yy file */
|
|
89
89
|
path: z.ZodString;
|
|
90
90
|
}, "strip", z.ZodTypeAny, {
|
|
91
|
-
path: string;
|
|
92
91
|
name: string;
|
|
93
|
-
}, {
|
|
94
92
|
path: string;
|
|
93
|
+
}, {
|
|
95
94
|
name: string;
|
|
95
|
+
path: string;
|
|
96
96
|
}>;
|
|
97
97
|
LayerId: z.ZodObject<{
|
|
98
98
|
/**
|
|
@@ -104,33 +104,33 @@ declare const spriteImageSchema: z.ZodObject<{
|
|
|
104
104
|
/** Path to the sprite's .yy file */
|
|
105
105
|
path: z.ZodString;
|
|
106
106
|
}, "strip", z.ZodTypeAny, {
|
|
107
|
-
path: string;
|
|
108
107
|
name: string;
|
|
109
|
-
}, {
|
|
110
108
|
path: string;
|
|
109
|
+
}, {
|
|
111
110
|
name: string;
|
|
111
|
+
path: string;
|
|
112
112
|
}>;
|
|
113
113
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
114
114
|
name: string;
|
|
115
115
|
resourceType: "GMSpriteBitmap";
|
|
116
116
|
resourceVersion: "1.0";
|
|
117
117
|
FrameId: {
|
|
118
|
-
path: string;
|
|
119
118
|
name: string;
|
|
119
|
+
path: string;
|
|
120
120
|
};
|
|
121
121
|
LayerId: {
|
|
122
|
-
path: string;
|
|
123
122
|
name: string;
|
|
123
|
+
path: string;
|
|
124
124
|
};
|
|
125
125
|
tags?: string[] | undefined;
|
|
126
126
|
}, {
|
|
127
127
|
FrameId: {
|
|
128
|
-
path: string;
|
|
129
128
|
name: string;
|
|
129
|
+
path: string;
|
|
130
130
|
};
|
|
131
131
|
LayerId: {
|
|
132
|
-
path: string;
|
|
133
132
|
name: string;
|
|
133
|
+
path: string;
|
|
134
134
|
};
|
|
135
135
|
name?: string | undefined;
|
|
136
136
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -148,11 +148,11 @@ declare const spriteCompositeImageSchema: z.ZodObject<{
|
|
|
148
148
|
/** Path to the sprite's .yy file */
|
|
149
149
|
path: z.ZodString;
|
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
|
151
|
-
path: string;
|
|
152
151
|
name: string;
|
|
153
|
-
}, {
|
|
154
152
|
path: string;
|
|
153
|
+
}, {
|
|
155
154
|
name: string;
|
|
155
|
+
path: string;
|
|
156
156
|
}>;
|
|
157
157
|
LayerId: z.ZodNull;
|
|
158
158
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -160,15 +160,15 @@ declare const spriteCompositeImageSchema: z.ZodObject<{
|
|
|
160
160
|
resourceType: "GMSpriteBitmap";
|
|
161
161
|
resourceVersion: "1.0";
|
|
162
162
|
FrameId: {
|
|
163
|
-
path: string;
|
|
164
163
|
name: string;
|
|
164
|
+
path: string;
|
|
165
165
|
};
|
|
166
166
|
LayerId: null;
|
|
167
167
|
tags?: string[] | undefined;
|
|
168
168
|
}, {
|
|
169
169
|
FrameId: {
|
|
170
|
-
path: string;
|
|
171
170
|
name: string;
|
|
171
|
+
path: string;
|
|
172
172
|
};
|
|
173
173
|
LayerId: null;
|
|
174
174
|
name?: string | undefined;
|
|
@@ -204,11 +204,11 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
204
204
|
/** Path to the sprite's .yy file */
|
|
205
205
|
path: z.ZodString;
|
|
206
206
|
}, "strip", z.ZodTypeAny, {
|
|
207
|
-
path: string;
|
|
208
207
|
name: string;
|
|
209
|
-
}, {
|
|
210
208
|
path: string;
|
|
209
|
+
}, {
|
|
211
210
|
name: string;
|
|
211
|
+
path: string;
|
|
212
212
|
}>;
|
|
213
213
|
LayerId: z.ZodNull;
|
|
214
214
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -216,15 +216,15 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
216
216
|
resourceType: "GMSpriteBitmap";
|
|
217
217
|
resourceVersion: "1.0";
|
|
218
218
|
FrameId: {
|
|
219
|
-
path: string;
|
|
220
219
|
name: string;
|
|
220
|
+
path: string;
|
|
221
221
|
};
|
|
222
222
|
LayerId: null;
|
|
223
223
|
tags?: string[] | undefined;
|
|
224
224
|
}, {
|
|
225
225
|
FrameId: {
|
|
226
|
-
path: string;
|
|
227
226
|
name: string;
|
|
227
|
+
path: string;
|
|
228
228
|
};
|
|
229
229
|
LayerId: null;
|
|
230
230
|
name?: string | undefined;
|
|
@@ -248,11 +248,11 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
248
248
|
/** Path to the sprite's .yy file */
|
|
249
249
|
path: z.ZodString;
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
|
-
path: string;
|
|
252
251
|
name: string;
|
|
253
|
-
}, {
|
|
254
252
|
path: string;
|
|
253
|
+
}, {
|
|
255
254
|
name: string;
|
|
255
|
+
path: string;
|
|
256
256
|
}>;
|
|
257
257
|
LayerId: z.ZodObject<{
|
|
258
258
|
/**
|
|
@@ -264,33 +264,33 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
264
264
|
/** Path to the sprite's .yy file */
|
|
265
265
|
path: z.ZodString;
|
|
266
266
|
}, "strip", z.ZodTypeAny, {
|
|
267
|
-
path: string;
|
|
268
267
|
name: string;
|
|
269
|
-
}, {
|
|
270
268
|
path: string;
|
|
269
|
+
}, {
|
|
271
270
|
name: string;
|
|
271
|
+
path: string;
|
|
272
272
|
}>;
|
|
273
273
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
274
274
|
name: string;
|
|
275
275
|
resourceType: "GMSpriteBitmap";
|
|
276
276
|
resourceVersion: "1.0";
|
|
277
277
|
FrameId: {
|
|
278
|
-
path: string;
|
|
279
278
|
name: string;
|
|
279
|
+
path: string;
|
|
280
280
|
};
|
|
281
281
|
LayerId: {
|
|
282
|
-
path: string;
|
|
283
282
|
name: string;
|
|
283
|
+
path: string;
|
|
284
284
|
};
|
|
285
285
|
tags?: string[] | undefined;
|
|
286
286
|
}, {
|
|
287
287
|
FrameId: {
|
|
288
|
-
path: string;
|
|
289
288
|
name: string;
|
|
289
|
+
path: string;
|
|
290
290
|
};
|
|
291
291
|
LayerId: {
|
|
292
|
-
path: string;
|
|
293
292
|
name: string;
|
|
293
|
+
path: string;
|
|
294
294
|
};
|
|
295
295
|
name?: string | undefined;
|
|
296
296
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -307,11 +307,11 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
307
307
|
name: z.ZodString;
|
|
308
308
|
path: z.ZodString;
|
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
|
310
|
-
path: string;
|
|
311
310
|
name: string;
|
|
312
|
-
}, {
|
|
313
311
|
path: string;
|
|
312
|
+
}, {
|
|
314
313
|
name: string;
|
|
314
|
+
path: string;
|
|
315
315
|
}>>;
|
|
316
316
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
317
317
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -324,8 +324,8 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
324
324
|
resourceType: "GMSpriteBitmap";
|
|
325
325
|
resourceVersion: "1.0";
|
|
326
326
|
FrameId: {
|
|
327
|
-
path: string;
|
|
328
327
|
name: string;
|
|
328
|
+
path: string;
|
|
329
329
|
};
|
|
330
330
|
LayerId: null;
|
|
331
331
|
tags?: string[] | undefined;
|
|
@@ -335,18 +335,18 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
335
335
|
resourceType: "GMSpriteBitmap";
|
|
336
336
|
resourceVersion: "1.0";
|
|
337
337
|
FrameId: {
|
|
338
|
-
path: string;
|
|
339
338
|
name: string;
|
|
339
|
+
path: string;
|
|
340
340
|
};
|
|
341
341
|
LayerId: {
|
|
342
|
-
path: string;
|
|
343
342
|
name: string;
|
|
343
|
+
path: string;
|
|
344
344
|
};
|
|
345
345
|
tags?: string[] | undefined;
|
|
346
346
|
}[] | undefined;
|
|
347
347
|
parent?: {
|
|
348
|
-
path: string;
|
|
349
348
|
name: string;
|
|
349
|
+
path: string;
|
|
350
350
|
} | undefined;
|
|
351
351
|
}, {
|
|
352
352
|
name?: string | undefined;
|
|
@@ -354,8 +354,8 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
354
354
|
resourceType?: "GMSpriteFrame" | undefined;
|
|
355
355
|
compositeImage?: {
|
|
356
356
|
FrameId: {
|
|
357
|
-
path: string;
|
|
358
357
|
name: string;
|
|
358
|
+
path: string;
|
|
359
359
|
};
|
|
360
360
|
LayerId: null;
|
|
361
361
|
name?: string | undefined;
|
|
@@ -365,12 +365,12 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
365
365
|
} | undefined;
|
|
366
366
|
images?: {
|
|
367
367
|
FrameId: {
|
|
368
|
-
path: string;
|
|
369
368
|
name: string;
|
|
369
|
+
path: string;
|
|
370
370
|
};
|
|
371
371
|
LayerId: {
|
|
372
|
-
path: string;
|
|
373
372
|
name: string;
|
|
373
|
+
path: string;
|
|
374
374
|
};
|
|
375
375
|
name?: string | undefined;
|
|
376
376
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -378,8 +378,8 @@ declare const spriteFrameSchema: z.ZodObject<{
|
|
|
378
378
|
resourceVersion?: "1.0" | undefined;
|
|
379
379
|
}[] | undefined;
|
|
380
380
|
parent?: {
|
|
381
|
-
path: string;
|
|
382
381
|
name: string;
|
|
382
|
+
path: string;
|
|
383
383
|
} | undefined;
|
|
384
384
|
resourceVersion?: string | undefined;
|
|
385
385
|
}>;
|
|
@@ -527,11 +527,11 @@ declare const spriteSequenceTrackKeyframeSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
527
527
|
/** Sprite .yy file (e.g. sprites/sprites/thisSprite.yy) */
|
|
528
528
|
path: z.ZodString;
|
|
529
529
|
}, "strip", z.ZodTypeAny, {
|
|
530
|
-
path: string;
|
|
531
530
|
name: string;
|
|
532
|
-
}, {
|
|
533
531
|
path: string;
|
|
532
|
+
}, {
|
|
534
533
|
name: string;
|
|
534
|
+
path: string;
|
|
535
535
|
}>>;
|
|
536
536
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
537
537
|
resourceType: z.ZodDefault<z.ZodLiteral<"SpriteFrameKeyframe">>;
|
|
@@ -539,13 +539,13 @@ declare const spriteSequenceTrackKeyframeSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
539
539
|
resourceType: "SpriteFrameKeyframe";
|
|
540
540
|
resourceVersion: string;
|
|
541
541
|
Id: {
|
|
542
|
-
path: string;
|
|
543
542
|
name: string;
|
|
543
|
+
path: string;
|
|
544
544
|
};
|
|
545
545
|
}, {
|
|
546
546
|
Id?: {
|
|
547
|
-
path: string;
|
|
548
547
|
name: string;
|
|
548
|
+
path: string;
|
|
549
549
|
} | undefined;
|
|
550
550
|
resourceVersion?: string | undefined;
|
|
551
551
|
resourceType?: "SpriteFrameKeyframe" | undefined;
|
|
@@ -553,27 +553,27 @@ declare const spriteSequenceTrackKeyframeSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
553
553
|
resourceType: "SpriteFrameKeyframe";
|
|
554
554
|
resourceVersion: string;
|
|
555
555
|
Id: {
|
|
556
|
-
path: string;
|
|
557
556
|
name: string;
|
|
557
|
+
path: string;
|
|
558
558
|
};
|
|
559
559
|
}>, unknown>>;
|
|
560
560
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
561
561
|
}, "strip", z.ZodTypeAny, {
|
|
562
562
|
resourceVersion: string;
|
|
563
563
|
id: string;
|
|
564
|
+
Key: FixedNumber;
|
|
565
|
+
Length: FixedNumber;
|
|
566
|
+
Stretch: boolean;
|
|
567
|
+
Disabled: boolean;
|
|
568
|
+
IsCreationKey: boolean;
|
|
564
569
|
Channels: Record<string, {
|
|
565
570
|
resourceType: "SpriteFrameKeyframe";
|
|
566
571
|
resourceVersion: string;
|
|
567
572
|
Id: {
|
|
568
|
-
path: string;
|
|
569
573
|
name: string;
|
|
574
|
+
path: string;
|
|
570
575
|
};
|
|
571
576
|
}>;
|
|
572
|
-
Key: FixedNumber;
|
|
573
|
-
Length: FixedNumber;
|
|
574
|
-
Stretch: boolean;
|
|
575
|
-
Disabled: boolean;
|
|
576
|
-
IsCreationKey: boolean;
|
|
577
577
|
}, {
|
|
578
578
|
id?: string | undefined;
|
|
579
579
|
Key?: number | FixedNumber | undefined;
|
|
@@ -654,11 +654,11 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
654
654
|
/** Sprite .yy file (e.g. sprites/sprites/thisSprite.yy) */
|
|
655
655
|
path: z.ZodString;
|
|
656
656
|
}, "strip", z.ZodTypeAny, {
|
|
657
|
-
path: string;
|
|
658
657
|
name: string;
|
|
659
|
-
}, {
|
|
660
658
|
path: string;
|
|
659
|
+
}, {
|
|
661
660
|
name: string;
|
|
661
|
+
path: string;
|
|
662
662
|
}>>;
|
|
663
663
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
664
664
|
resourceType: z.ZodDefault<z.ZodLiteral<"SpriteFrameKeyframe">>;
|
|
@@ -666,13 +666,13 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
666
666
|
resourceType: "SpriteFrameKeyframe";
|
|
667
667
|
resourceVersion: string;
|
|
668
668
|
Id: {
|
|
669
|
-
path: string;
|
|
670
669
|
name: string;
|
|
670
|
+
path: string;
|
|
671
671
|
};
|
|
672
672
|
}, {
|
|
673
673
|
Id?: {
|
|
674
|
-
path: string;
|
|
675
674
|
name: string;
|
|
675
|
+
path: string;
|
|
676
676
|
} | undefined;
|
|
677
677
|
resourceVersion?: string | undefined;
|
|
678
678
|
resourceType?: "SpriteFrameKeyframe" | undefined;
|
|
@@ -680,27 +680,27 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
680
680
|
resourceType: "SpriteFrameKeyframe";
|
|
681
681
|
resourceVersion: string;
|
|
682
682
|
Id: {
|
|
683
|
-
path: string;
|
|
684
683
|
name: string;
|
|
684
|
+
path: string;
|
|
685
685
|
};
|
|
686
686
|
}>, unknown>>;
|
|
687
687
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
688
688
|
}, "strip", z.ZodTypeAny, {
|
|
689
689
|
resourceVersion: string;
|
|
690
690
|
id: string;
|
|
691
|
+
Key: FixedNumber;
|
|
692
|
+
Length: FixedNumber;
|
|
693
|
+
Stretch: boolean;
|
|
694
|
+
Disabled: boolean;
|
|
695
|
+
IsCreationKey: boolean;
|
|
691
696
|
Channels: Record<string, {
|
|
692
697
|
resourceType: "SpriteFrameKeyframe";
|
|
693
698
|
resourceVersion: string;
|
|
694
699
|
Id: {
|
|
695
|
-
path: string;
|
|
696
700
|
name: string;
|
|
701
|
+
path: string;
|
|
697
702
|
};
|
|
698
703
|
}>;
|
|
699
|
-
Key: FixedNumber;
|
|
700
|
-
Length: FixedNumber;
|
|
701
|
-
Stretch: boolean;
|
|
702
|
-
Disabled: boolean;
|
|
703
|
-
IsCreationKey: boolean;
|
|
704
704
|
}, {
|
|
705
705
|
id?: string | undefined;
|
|
706
706
|
Key?: number | FixedNumber | undefined;
|
|
@@ -728,19 +728,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
728
728
|
}>]>>, "many">>, ({
|
|
729
729
|
resourceVersion: string;
|
|
730
730
|
id: string;
|
|
731
|
+
Key: FixedNumber;
|
|
732
|
+
Length: FixedNumber;
|
|
733
|
+
Stretch: boolean;
|
|
734
|
+
Disabled: boolean;
|
|
735
|
+
IsCreationKey: boolean;
|
|
731
736
|
Channels: Record<string, {
|
|
732
737
|
resourceType: "SpriteFrameKeyframe";
|
|
733
738
|
resourceVersion: string;
|
|
734
739
|
Id: {
|
|
735
|
-
path: string;
|
|
736
740
|
name: string;
|
|
741
|
+
path: string;
|
|
737
742
|
};
|
|
738
743
|
}>;
|
|
739
|
-
Key: FixedNumber;
|
|
740
|
-
Length: FixedNumber;
|
|
741
|
-
Stretch: boolean;
|
|
742
|
-
Disabled: boolean;
|
|
743
|
-
IsCreationKey: boolean;
|
|
744
744
|
} & ({
|
|
745
745
|
resourceType: "Keyframe`1";
|
|
746
746
|
elementType: "SpriteFrameKeyframe";
|
|
@@ -753,19 +753,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
753
753
|
Keyframes: ({
|
|
754
754
|
resourceVersion: string;
|
|
755
755
|
id: string;
|
|
756
|
+
Key: FixedNumber;
|
|
757
|
+
Length: FixedNumber;
|
|
758
|
+
Stretch: boolean;
|
|
759
|
+
Disabled: boolean;
|
|
760
|
+
IsCreationKey: boolean;
|
|
756
761
|
Channels: Record<string, {
|
|
757
762
|
resourceType: "SpriteFrameKeyframe";
|
|
758
763
|
resourceVersion: string;
|
|
759
764
|
Id: {
|
|
760
|
-
path: string;
|
|
761
765
|
name: string;
|
|
766
|
+
path: string;
|
|
762
767
|
};
|
|
763
768
|
}>;
|
|
764
|
-
Key: FixedNumber;
|
|
765
|
-
Length: FixedNumber;
|
|
766
|
-
Stretch: boolean;
|
|
767
|
-
Disabled: boolean;
|
|
768
|
-
IsCreationKey: boolean;
|
|
769
769
|
} & ({
|
|
770
770
|
resourceType: "Keyframe`1";
|
|
771
771
|
elementType: "SpriteFrameKeyframe";
|
|
@@ -795,19 +795,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
795
795
|
Keyframes: ({
|
|
796
796
|
resourceVersion: string;
|
|
797
797
|
id: string;
|
|
798
|
+
Key: FixedNumber;
|
|
799
|
+
Length: FixedNumber;
|
|
800
|
+
Stretch: boolean;
|
|
801
|
+
Disabled: boolean;
|
|
802
|
+
IsCreationKey: boolean;
|
|
798
803
|
Channels: Record<string, {
|
|
799
804
|
resourceType: "SpriteFrameKeyframe";
|
|
800
805
|
resourceVersion: string;
|
|
801
806
|
Id: {
|
|
802
|
-
path: string;
|
|
803
807
|
name: string;
|
|
808
|
+
path: string;
|
|
804
809
|
};
|
|
805
810
|
}>;
|
|
806
|
-
Key: FixedNumber;
|
|
807
|
-
Length: FixedNumber;
|
|
808
|
-
Stretch: boolean;
|
|
809
|
-
Disabled: boolean;
|
|
810
|
-
IsCreationKey: boolean;
|
|
811
811
|
} & ({
|
|
812
812
|
resourceType: "Keyframe`1";
|
|
813
813
|
elementType: "SpriteFrameKeyframe";
|
|
@@ -821,19 +821,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
821
821
|
Keyframes: ({
|
|
822
822
|
resourceVersion: string;
|
|
823
823
|
id: string;
|
|
824
|
+
Key: FixedNumber;
|
|
825
|
+
Length: FixedNumber;
|
|
826
|
+
Stretch: boolean;
|
|
827
|
+
Disabled: boolean;
|
|
828
|
+
IsCreationKey: boolean;
|
|
824
829
|
Channels: Record<string, {
|
|
825
830
|
resourceType: "SpriteFrameKeyframe";
|
|
826
831
|
resourceVersion: string;
|
|
827
832
|
Id: {
|
|
828
|
-
path: string;
|
|
829
833
|
name: string;
|
|
834
|
+
path: string;
|
|
830
835
|
};
|
|
831
836
|
}>;
|
|
832
|
-
Key: FixedNumber;
|
|
833
|
-
Length: FixedNumber;
|
|
834
|
-
Stretch: boolean;
|
|
835
|
-
Disabled: boolean;
|
|
836
|
-
IsCreationKey: boolean;
|
|
837
837
|
} & ({
|
|
838
838
|
resourceType: "Keyframe`1";
|
|
839
839
|
elementType: "SpriteFrameKeyframe";
|
|
@@ -859,19 +859,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
859
859
|
Keyframes: ({
|
|
860
860
|
resourceVersion: string;
|
|
861
861
|
id: string;
|
|
862
|
+
Key: FixedNumber;
|
|
863
|
+
Length: FixedNumber;
|
|
864
|
+
Stretch: boolean;
|
|
865
|
+
Disabled: boolean;
|
|
866
|
+
IsCreationKey: boolean;
|
|
862
867
|
Channels: Record<string, {
|
|
863
868
|
resourceType: "SpriteFrameKeyframe";
|
|
864
869
|
resourceVersion: string;
|
|
865
870
|
Id: {
|
|
866
|
-
path: string;
|
|
867
871
|
name: string;
|
|
872
|
+
path: string;
|
|
868
873
|
};
|
|
869
874
|
}>;
|
|
870
|
-
Key: FixedNumber;
|
|
871
|
-
Length: FixedNumber;
|
|
872
|
-
Stretch: boolean;
|
|
873
|
-
Disabled: boolean;
|
|
874
|
-
IsCreationKey: boolean;
|
|
875
875
|
} & ({
|
|
876
876
|
resourceType: "Keyframe`1";
|
|
877
877
|
elementType: "SpriteFrameKeyframe";
|
|
@@ -885,19 +885,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
885
885
|
Keyframes: ({
|
|
886
886
|
resourceVersion: string;
|
|
887
887
|
id: string;
|
|
888
|
+
Key: FixedNumber;
|
|
889
|
+
Length: FixedNumber;
|
|
890
|
+
Stretch: boolean;
|
|
891
|
+
Disabled: boolean;
|
|
892
|
+
IsCreationKey: boolean;
|
|
888
893
|
Channels: Record<string, {
|
|
889
894
|
resourceType: "SpriteFrameKeyframe";
|
|
890
895
|
resourceVersion: string;
|
|
891
896
|
Id: {
|
|
892
|
-
path: string;
|
|
893
897
|
name: string;
|
|
898
|
+
path: string;
|
|
894
899
|
};
|
|
895
900
|
}>;
|
|
896
|
-
Key: FixedNumber;
|
|
897
|
-
Length: FixedNumber;
|
|
898
|
-
Stretch: boolean;
|
|
899
|
-
Disabled: boolean;
|
|
900
|
-
IsCreationKey: boolean;
|
|
901
901
|
} & ({
|
|
902
902
|
resourceType: "Keyframe`1";
|
|
903
903
|
elementType: "SpriteFrameKeyframe";
|
|
@@ -926,19 +926,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
926
926
|
Keyframes: ({
|
|
927
927
|
resourceVersion: string;
|
|
928
928
|
id: string;
|
|
929
|
+
Key: FixedNumber;
|
|
930
|
+
Length: FixedNumber;
|
|
931
|
+
Stretch: boolean;
|
|
932
|
+
Disabled: boolean;
|
|
933
|
+
IsCreationKey: boolean;
|
|
929
934
|
Channels: Record<string, {
|
|
930
935
|
resourceType: "SpriteFrameKeyframe";
|
|
931
936
|
resourceVersion: string;
|
|
932
937
|
Id: {
|
|
933
|
-
path: string;
|
|
934
938
|
name: string;
|
|
939
|
+
path: string;
|
|
935
940
|
};
|
|
936
941
|
}>;
|
|
937
|
-
Key: FixedNumber;
|
|
938
|
-
Length: FixedNumber;
|
|
939
|
-
Stretch: boolean;
|
|
940
|
-
Disabled: boolean;
|
|
941
|
-
IsCreationKey: boolean;
|
|
942
942
|
} & ({
|
|
943
943
|
resourceType: "Keyframe`1";
|
|
944
944
|
elementType: "SpriteFrameKeyframe";
|
|
@@ -952,19 +952,19 @@ declare const spriteSequenceTrackSchema: z.ZodObject<{
|
|
|
952
952
|
Keyframes: ({
|
|
953
953
|
resourceVersion: string;
|
|
954
954
|
id: string;
|
|
955
|
+
Key: FixedNumber;
|
|
956
|
+
Length: FixedNumber;
|
|
957
|
+
Stretch: boolean;
|
|
958
|
+
Disabled: boolean;
|
|
959
|
+
IsCreationKey: boolean;
|
|
955
960
|
Channels: Record<string, {
|
|
956
961
|
resourceType: "SpriteFrameKeyframe";
|
|
957
962
|
resourceVersion: string;
|
|
958
963
|
Id: {
|
|
959
|
-
path: string;
|
|
960
964
|
name: string;
|
|
965
|
+
path: string;
|
|
961
966
|
};
|
|
962
967
|
}>;
|
|
963
|
-
Key: FixedNumber;
|
|
964
|
-
Length: FixedNumber;
|
|
965
|
-
Stretch: boolean;
|
|
966
|
-
Disabled: boolean;
|
|
967
|
-
IsCreationKey: boolean;
|
|
968
968
|
} & ({
|
|
969
969
|
resourceType: "Keyframe`1";
|
|
970
970
|
elementType: "SpriteFrameKeyframe";
|
|
@@ -1113,39 +1113,39 @@ declare const spriteSequenceSchema: z.ZodObject<{
|
|
|
1113
1113
|
name: z.ZodString;
|
|
1114
1114
|
path: z.ZodString;
|
|
1115
1115
|
}, "strip", z.ZodTypeAny, {
|
|
1116
|
-
path: string;
|
|
1117
1116
|
name: string;
|
|
1118
|
-
}, {
|
|
1119
1117
|
path: string;
|
|
1118
|
+
}, {
|
|
1120
1119
|
name: string;
|
|
1121
|
-
}>, {
|
|
1122
1120
|
path: string;
|
|
1121
|
+
}>, {
|
|
1123
1122
|
name: string;
|
|
1124
|
-
}, {
|
|
1125
1123
|
path: string;
|
|
1124
|
+
}, {
|
|
1126
1125
|
name: string;
|
|
1127
|
-
}>, {
|
|
1128
1126
|
path: string;
|
|
1127
|
+
}>, {
|
|
1129
1128
|
name: string;
|
|
1129
|
+
path: string;
|
|
1130
1130
|
}, unknown>>;
|
|
1131
1131
|
parent: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
1132
1132
|
name: z.ZodString;
|
|
1133
1133
|
path: z.ZodString;
|
|
1134
1134
|
}, "strip", z.ZodTypeAny, {
|
|
1135
|
-
path: string;
|
|
1136
1135
|
name: string;
|
|
1137
|
-
}, {
|
|
1138
1136
|
path: string;
|
|
1137
|
+
}, {
|
|
1139
1138
|
name: string;
|
|
1140
|
-
}>, {
|
|
1141
1139
|
path: string;
|
|
1140
|
+
}>, {
|
|
1142
1141
|
name: string;
|
|
1143
|
-
}, {
|
|
1144
1142
|
path: string;
|
|
1143
|
+
}, {
|
|
1145
1144
|
name: string;
|
|
1146
|
-
}>, {
|
|
1147
1145
|
path: string;
|
|
1146
|
+
}>, {
|
|
1148
1147
|
name: string;
|
|
1148
|
+
path: string;
|
|
1149
1149
|
}, unknown>>;
|
|
1150
1150
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1151
1151
|
length: FixedNumber;
|
|
@@ -1202,12 +1202,12 @@ declare const spriteSequenceSchema: z.ZodObject<{
|
|
|
1202
1202
|
name?: string | undefined;
|
|
1203
1203
|
tags?: string[] | undefined;
|
|
1204
1204
|
spriteId?: {
|
|
1205
|
-
path: string;
|
|
1206
1205
|
name: string;
|
|
1206
|
+
path: string;
|
|
1207
1207
|
} | undefined;
|
|
1208
1208
|
parent?: {
|
|
1209
|
-
path: string;
|
|
1210
1209
|
name: string;
|
|
1210
|
+
path: string;
|
|
1211
1211
|
} | undefined;
|
|
1212
1212
|
}, {
|
|
1213
1213
|
timeUnits?: number | undefined;
|
|
@@ -1258,11 +1258,11 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1258
1258
|
name: z.ZodString;
|
|
1259
1259
|
path: z.ZodString;
|
|
1260
1260
|
}, "strip", z.ZodTypeAny, {
|
|
1261
|
-
path: string;
|
|
1262
1261
|
name: string;
|
|
1263
|
-
}, {
|
|
1264
1262
|
path: string;
|
|
1263
|
+
}, {
|
|
1265
1264
|
name: string;
|
|
1265
|
+
path: string;
|
|
1266
1266
|
}>>;
|
|
1267
1267
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1268
1268
|
bboxMode: z.ZodDefault<z.ZodNativeEnum<typeof SpriteBoundingBoxMode>>;
|
|
@@ -1289,11 +1289,11 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1289
1289
|
/** seems to just be `texturegroups/${name}` */
|
|
1290
1290
|
path: z.ZodString;
|
|
1291
1291
|
}, "strip", z.ZodTypeAny, {
|
|
1292
|
-
path: string;
|
|
1293
1292
|
name: string;
|
|
1294
|
-
}, {
|
|
1295
1293
|
path: string;
|
|
1294
|
+
}, {
|
|
1296
1295
|
name: string;
|
|
1296
|
+
path: string;
|
|
1297
1297
|
}>>;
|
|
1298
1298
|
swatchColours: z.ZodDefault<z.ZodUnknown>;
|
|
1299
1299
|
gridX: z.ZodDefault<z.ZodNumber>;
|
|
@@ -1325,11 +1325,11 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1325
1325
|
/** Path to the sprite's .yy file */
|
|
1326
1326
|
path: z.ZodString;
|
|
1327
1327
|
}, "strip", z.ZodTypeAny, {
|
|
1328
|
-
path: string;
|
|
1329
1328
|
name: string;
|
|
1330
|
-
}, {
|
|
1331
1329
|
path: string;
|
|
1330
|
+
}, {
|
|
1332
1331
|
name: string;
|
|
1332
|
+
path: string;
|
|
1333
1333
|
}>;
|
|
1334
1334
|
LayerId: z.ZodNull;
|
|
1335
1335
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -1337,15 +1337,15 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1337
1337
|
resourceType: "GMSpriteBitmap";
|
|
1338
1338
|
resourceVersion: "1.0";
|
|
1339
1339
|
FrameId: {
|
|
1340
|
-
path: string;
|
|
1341
1340
|
name: string;
|
|
1341
|
+
path: string;
|
|
1342
1342
|
};
|
|
1343
1343
|
LayerId: null;
|
|
1344
1344
|
tags?: string[] | undefined;
|
|
1345
1345
|
}, {
|
|
1346
1346
|
FrameId: {
|
|
1347
|
-
path: string;
|
|
1348
1347
|
name: string;
|
|
1348
|
+
path: string;
|
|
1349
1349
|
};
|
|
1350
1350
|
LayerId: null;
|
|
1351
1351
|
name?: string | undefined;
|
|
@@ -1369,11 +1369,11 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1369
1369
|
/** Path to the sprite's .yy file */
|
|
1370
1370
|
path: z.ZodString;
|
|
1371
1371
|
}, "strip", z.ZodTypeAny, {
|
|
1372
|
-
path: string;
|
|
1373
1372
|
name: string;
|
|
1374
|
-
}, {
|
|
1375
1373
|
path: string;
|
|
1374
|
+
}, {
|
|
1376
1375
|
name: string;
|
|
1376
|
+
path: string;
|
|
1377
1377
|
}>;
|
|
1378
1378
|
LayerId: z.ZodObject<{
|
|
1379
1379
|
/**
|
|
@@ -1385,33 +1385,33 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1385
1385
|
/** Path to the sprite's .yy file */
|
|
1386
1386
|
path: z.ZodString;
|
|
1387
1387
|
}, "strip", z.ZodTypeAny, {
|
|
1388
|
-
path: string;
|
|
1389
1388
|
name: string;
|
|
1390
|
-
}, {
|
|
1391
1389
|
path: string;
|
|
1390
|
+
}, {
|
|
1392
1391
|
name: string;
|
|
1392
|
+
path: string;
|
|
1393
1393
|
}>;
|
|
1394
1394
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1395
1395
|
name: string;
|
|
1396
1396
|
resourceType: "GMSpriteBitmap";
|
|
1397
1397
|
resourceVersion: "1.0";
|
|
1398
1398
|
FrameId: {
|
|
1399
|
-
path: string;
|
|
1400
1399
|
name: string;
|
|
1400
|
+
path: string;
|
|
1401
1401
|
};
|
|
1402
1402
|
LayerId: {
|
|
1403
|
-
path: string;
|
|
1404
1403
|
name: string;
|
|
1404
|
+
path: string;
|
|
1405
1405
|
};
|
|
1406
1406
|
tags?: string[] | undefined;
|
|
1407
1407
|
}, {
|
|
1408
1408
|
FrameId: {
|
|
1409
|
-
path: string;
|
|
1410
1409
|
name: string;
|
|
1410
|
+
path: string;
|
|
1411
1411
|
};
|
|
1412
1412
|
LayerId: {
|
|
1413
|
-
path: string;
|
|
1414
1413
|
name: string;
|
|
1414
|
+
path: string;
|
|
1415
1415
|
};
|
|
1416
1416
|
name?: string | undefined;
|
|
1417
1417
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -1428,11 +1428,11 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1428
1428
|
name: z.ZodString;
|
|
1429
1429
|
path: z.ZodString;
|
|
1430
1430
|
}, "strip", z.ZodTypeAny, {
|
|
1431
|
-
path: string;
|
|
1432
1431
|
name: string;
|
|
1433
|
-
}, {
|
|
1434
1432
|
path: string;
|
|
1433
|
+
}, {
|
|
1435
1434
|
name: string;
|
|
1435
|
+
path: string;
|
|
1436
1436
|
}>>;
|
|
1437
1437
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1438
1438
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -1445,8 +1445,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1445
1445
|
resourceType: "GMSpriteBitmap";
|
|
1446
1446
|
resourceVersion: "1.0";
|
|
1447
1447
|
FrameId: {
|
|
1448
|
-
path: string;
|
|
1449
1448
|
name: string;
|
|
1449
|
+
path: string;
|
|
1450
1450
|
};
|
|
1451
1451
|
LayerId: null;
|
|
1452
1452
|
tags?: string[] | undefined;
|
|
@@ -1456,18 +1456,18 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1456
1456
|
resourceType: "GMSpriteBitmap";
|
|
1457
1457
|
resourceVersion: "1.0";
|
|
1458
1458
|
FrameId: {
|
|
1459
|
-
path: string;
|
|
1460
1459
|
name: string;
|
|
1460
|
+
path: string;
|
|
1461
1461
|
};
|
|
1462
1462
|
LayerId: {
|
|
1463
|
-
path: string;
|
|
1464
1463
|
name: string;
|
|
1464
|
+
path: string;
|
|
1465
1465
|
};
|
|
1466
1466
|
tags?: string[] | undefined;
|
|
1467
1467
|
}[] | undefined;
|
|
1468
1468
|
parent?: {
|
|
1469
|
-
path: string;
|
|
1470
1469
|
name: string;
|
|
1470
|
+
path: string;
|
|
1471
1471
|
} | undefined;
|
|
1472
1472
|
}, {
|
|
1473
1473
|
name?: string | undefined;
|
|
@@ -1475,8 +1475,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1475
1475
|
resourceType?: "GMSpriteFrame" | undefined;
|
|
1476
1476
|
compositeImage?: {
|
|
1477
1477
|
FrameId: {
|
|
1478
|
-
path: string;
|
|
1479
1478
|
name: string;
|
|
1479
|
+
path: string;
|
|
1480
1480
|
};
|
|
1481
1481
|
LayerId: null;
|
|
1482
1482
|
name?: string | undefined;
|
|
@@ -1486,12 +1486,12 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1486
1486
|
} | undefined;
|
|
1487
1487
|
images?: {
|
|
1488
1488
|
FrameId: {
|
|
1489
|
-
path: string;
|
|
1490
1489
|
name: string;
|
|
1490
|
+
path: string;
|
|
1491
1491
|
};
|
|
1492
1492
|
LayerId: {
|
|
1493
|
-
path: string;
|
|
1494
1493
|
name: string;
|
|
1494
|
+
path: string;
|
|
1495
1495
|
};
|
|
1496
1496
|
name?: string | undefined;
|
|
1497
1497
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -1499,8 +1499,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1499
1499
|
resourceVersion?: "1.0" | undefined;
|
|
1500
1500
|
}[] | undefined;
|
|
1501
1501
|
parent?: {
|
|
1502
|
-
path: string;
|
|
1503
1502
|
name: string;
|
|
1503
|
+
path: string;
|
|
1504
1504
|
} | undefined;
|
|
1505
1505
|
resourceVersion?: string | undefined;
|
|
1506
1506
|
}>, "many">>;
|
|
@@ -1622,39 +1622,39 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1622
1622
|
name: z.ZodString;
|
|
1623
1623
|
path: z.ZodString;
|
|
1624
1624
|
}, "strip", z.ZodTypeAny, {
|
|
1625
|
-
path: string;
|
|
1626
1625
|
name: string;
|
|
1627
|
-
}, {
|
|
1628
1626
|
path: string;
|
|
1627
|
+
}, {
|
|
1629
1628
|
name: string;
|
|
1630
|
-
}>, {
|
|
1631
1629
|
path: string;
|
|
1630
|
+
}>, {
|
|
1632
1631
|
name: string;
|
|
1633
|
-
}, {
|
|
1634
1632
|
path: string;
|
|
1633
|
+
}, {
|
|
1635
1634
|
name: string;
|
|
1636
|
-
}>, {
|
|
1637
1635
|
path: string;
|
|
1636
|
+
}>, {
|
|
1638
1637
|
name: string;
|
|
1638
|
+
path: string;
|
|
1639
1639
|
}, unknown>>;
|
|
1640
1640
|
parent: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
1641
1641
|
name: z.ZodString;
|
|
1642
1642
|
path: z.ZodString;
|
|
1643
1643
|
}, "strip", z.ZodTypeAny, {
|
|
1644
|
-
path: string;
|
|
1645
1644
|
name: string;
|
|
1646
|
-
}, {
|
|
1647
1645
|
path: string;
|
|
1646
|
+
}, {
|
|
1648
1647
|
name: string;
|
|
1649
|
-
}>, {
|
|
1650
1648
|
path: string;
|
|
1649
|
+
}>, {
|
|
1651
1650
|
name: string;
|
|
1652
|
-
}, {
|
|
1653
1651
|
path: string;
|
|
1652
|
+
}, {
|
|
1654
1653
|
name: string;
|
|
1655
|
-
}>, {
|
|
1656
1654
|
path: string;
|
|
1655
|
+
}>, {
|
|
1657
1656
|
name: string;
|
|
1657
|
+
path: string;
|
|
1658
1658
|
}, unknown>>;
|
|
1659
1659
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1660
1660
|
length: FixedNumber;
|
|
@@ -1711,12 +1711,12 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1711
1711
|
name?: string | undefined;
|
|
1712
1712
|
tags?: string[] | undefined;
|
|
1713
1713
|
spriteId?: {
|
|
1714
|
-
path: string;
|
|
1715
1714
|
name: string;
|
|
1715
|
+
path: string;
|
|
1716
1716
|
} | undefined;
|
|
1717
1717
|
parent?: {
|
|
1718
|
-
path: string;
|
|
1719
1718
|
name: string;
|
|
1719
|
+
path: string;
|
|
1720
1720
|
} | undefined;
|
|
1721
1721
|
}, {
|
|
1722
1722
|
timeUnits?: number | undefined;
|
|
@@ -1807,24 +1807,24 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1807
1807
|
name?: string | undefined;
|
|
1808
1808
|
tags?: string[] | undefined;
|
|
1809
1809
|
spriteId?: {
|
|
1810
|
-
path: string;
|
|
1811
1810
|
name: string;
|
|
1811
|
+
path: string;
|
|
1812
1812
|
} | undefined;
|
|
1813
1813
|
parent?: {
|
|
1814
|
-
path: string;
|
|
1815
1814
|
name: string;
|
|
1815
|
+
path: string;
|
|
1816
1816
|
} | undefined;
|
|
1817
1817
|
}, unknown>;
|
|
1818
1818
|
layers: z.ZodEffects<z.ZodArray<z.ZodTypeAny, "many">, any[], unknown>;
|
|
1819
1819
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSprite">>;
|
|
1820
1820
|
nineSlice: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1821
1821
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1822
|
-
type: SpriteType;
|
|
1823
1822
|
name: string;
|
|
1823
|
+
type: SpriteType;
|
|
1824
1824
|
resourceType: "GMSprite";
|
|
1825
1825
|
parent: {
|
|
1826
|
-
path: string;
|
|
1827
1826
|
name: string;
|
|
1827
|
+
path: string;
|
|
1828
1828
|
};
|
|
1829
1829
|
resourceVersion: string;
|
|
1830
1830
|
gridX: number;
|
|
@@ -1848,8 +1848,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1848
1848
|
width: number;
|
|
1849
1849
|
height: number;
|
|
1850
1850
|
textureGroupId: {
|
|
1851
|
-
path: string;
|
|
1852
1851
|
name: string;
|
|
1852
|
+
path: string;
|
|
1853
1853
|
};
|
|
1854
1854
|
frames: {
|
|
1855
1855
|
name: string;
|
|
@@ -1861,8 +1861,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1861
1861
|
resourceType: "GMSpriteBitmap";
|
|
1862
1862
|
resourceVersion: "1.0";
|
|
1863
1863
|
FrameId: {
|
|
1864
|
-
path: string;
|
|
1865
1864
|
name: string;
|
|
1865
|
+
path: string;
|
|
1866
1866
|
};
|
|
1867
1867
|
LayerId: null;
|
|
1868
1868
|
tags?: string[] | undefined;
|
|
@@ -1872,18 +1872,18 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1872
1872
|
resourceType: "GMSpriteBitmap";
|
|
1873
1873
|
resourceVersion: "1.0";
|
|
1874
1874
|
FrameId: {
|
|
1875
|
-
path: string;
|
|
1876
1875
|
name: string;
|
|
1876
|
+
path: string;
|
|
1877
1877
|
};
|
|
1878
1878
|
LayerId: {
|
|
1879
|
-
path: string;
|
|
1880
1879
|
name: string;
|
|
1880
|
+
path: string;
|
|
1881
1881
|
};
|
|
1882
1882
|
tags?: string[] | undefined;
|
|
1883
1883
|
}[] | undefined;
|
|
1884
1884
|
parent?: {
|
|
1885
|
-
path: string;
|
|
1886
1885
|
name: string;
|
|
1886
|
+
path: string;
|
|
1887
1887
|
} | undefined;
|
|
1888
1888
|
}[];
|
|
1889
1889
|
sequence: {
|
|
@@ -1941,12 +1941,12 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1941
1941
|
name?: string | undefined;
|
|
1942
1942
|
tags?: string[] | undefined;
|
|
1943
1943
|
spriteId?: {
|
|
1944
|
-
path: string;
|
|
1945
1944
|
name: string;
|
|
1945
|
+
path: string;
|
|
1946
1946
|
} | undefined;
|
|
1947
1947
|
parent?: {
|
|
1948
|
-
path: string;
|
|
1949
1948
|
name: string;
|
|
1949
|
+
path: string;
|
|
1950
1950
|
} | undefined;
|
|
1951
1951
|
};
|
|
1952
1952
|
"%Name"?: string | undefined;
|
|
@@ -1960,8 +1960,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1960
1960
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
1961
1961
|
tags?: string[] | undefined;
|
|
1962
1962
|
parent?: {
|
|
1963
|
-
path: string;
|
|
1964
1963
|
name: string;
|
|
1964
|
+
path: string;
|
|
1965
1965
|
} | undefined;
|
|
1966
1966
|
resourceVersion?: string | undefined;
|
|
1967
1967
|
bboxMode?: SpriteBoundingBoxMode | undefined;
|
|
@@ -1983,8 +1983,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1983
1983
|
width?: number | undefined;
|
|
1984
1984
|
height?: number | undefined;
|
|
1985
1985
|
textureGroupId?: {
|
|
1986
|
-
path: string;
|
|
1987
1986
|
name: string;
|
|
1987
|
+
path: string;
|
|
1988
1988
|
} | undefined;
|
|
1989
1989
|
swatchColours?: unknown;
|
|
1990
1990
|
gridX?: number | undefined;
|
|
@@ -1995,8 +1995,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
1995
1995
|
resourceType?: "GMSpriteFrame" | undefined;
|
|
1996
1996
|
compositeImage?: {
|
|
1997
1997
|
FrameId: {
|
|
1998
|
-
path: string;
|
|
1999
1998
|
name: string;
|
|
1999
|
+
path: string;
|
|
2000
2000
|
};
|
|
2001
2001
|
LayerId: null;
|
|
2002
2002
|
name?: string | undefined;
|
|
@@ -2006,12 +2006,12 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2006
2006
|
} | undefined;
|
|
2007
2007
|
images?: {
|
|
2008
2008
|
FrameId: {
|
|
2009
|
-
path: string;
|
|
2010
2009
|
name: string;
|
|
2010
|
+
path: string;
|
|
2011
2011
|
};
|
|
2012
2012
|
LayerId: {
|
|
2013
|
-
path: string;
|
|
2014
2013
|
name: string;
|
|
2014
|
+
path: string;
|
|
2015
2015
|
};
|
|
2016
2016
|
name?: string | undefined;
|
|
2017
2017
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -2019,8 +2019,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2019
2019
|
resourceVersion?: "1.0" | undefined;
|
|
2020
2020
|
}[] | undefined;
|
|
2021
2021
|
parent?: {
|
|
2022
|
-
path: string;
|
|
2023
2022
|
name: string;
|
|
2023
|
+
path: string;
|
|
2024
2024
|
} | undefined;
|
|
2025
2025
|
resourceVersion?: string | undefined;
|
|
2026
2026
|
}[] | undefined;
|
|
@@ -2029,12 +2029,12 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2029
2029
|
resourceType?: "GMSprite" | undefined;
|
|
2030
2030
|
nineSlice?: unknown;
|
|
2031
2031
|
}>, {
|
|
2032
|
-
type: SpriteType;
|
|
2033
2032
|
name: string;
|
|
2033
|
+
type: SpriteType;
|
|
2034
2034
|
resourceType: "GMSprite";
|
|
2035
2035
|
parent: {
|
|
2036
|
-
path: string;
|
|
2037
2036
|
name: string;
|
|
2037
|
+
path: string;
|
|
2038
2038
|
};
|
|
2039
2039
|
resourceVersion: string;
|
|
2040
2040
|
gridX: number;
|
|
@@ -2058,8 +2058,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2058
2058
|
width: number;
|
|
2059
2059
|
height: number;
|
|
2060
2060
|
textureGroupId: {
|
|
2061
|
-
path: string;
|
|
2062
2061
|
name: string;
|
|
2062
|
+
path: string;
|
|
2063
2063
|
};
|
|
2064
2064
|
frames: {
|
|
2065
2065
|
name: string;
|
|
@@ -2071,8 +2071,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2071
2071
|
resourceType: "GMSpriteBitmap";
|
|
2072
2072
|
resourceVersion: "1.0";
|
|
2073
2073
|
FrameId: {
|
|
2074
|
-
path: string;
|
|
2075
2074
|
name: string;
|
|
2075
|
+
path: string;
|
|
2076
2076
|
};
|
|
2077
2077
|
LayerId: null;
|
|
2078
2078
|
tags?: string[] | undefined;
|
|
@@ -2082,18 +2082,18 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2082
2082
|
resourceType: "GMSpriteBitmap";
|
|
2083
2083
|
resourceVersion: "1.0";
|
|
2084
2084
|
FrameId: {
|
|
2085
|
-
path: string;
|
|
2086
2085
|
name: string;
|
|
2086
|
+
path: string;
|
|
2087
2087
|
};
|
|
2088
2088
|
LayerId: {
|
|
2089
|
-
path: string;
|
|
2090
2089
|
name: string;
|
|
2090
|
+
path: string;
|
|
2091
2091
|
};
|
|
2092
2092
|
tags?: string[] | undefined;
|
|
2093
2093
|
}[] | undefined;
|
|
2094
2094
|
parent?: {
|
|
2095
|
-
path: string;
|
|
2096
2095
|
name: string;
|
|
2096
|
+
path: string;
|
|
2097
2097
|
} | undefined;
|
|
2098
2098
|
}[];
|
|
2099
2099
|
sequence: {
|
|
@@ -2151,12 +2151,12 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2151
2151
|
name?: string | undefined;
|
|
2152
2152
|
tags?: string[] | undefined;
|
|
2153
2153
|
spriteId?: {
|
|
2154
|
-
path: string;
|
|
2155
2154
|
name: string;
|
|
2155
|
+
path: string;
|
|
2156
2156
|
} | undefined;
|
|
2157
2157
|
parent?: {
|
|
2158
|
-
path: string;
|
|
2159
2158
|
name: string;
|
|
2159
|
+
path: string;
|
|
2160
2160
|
} | undefined;
|
|
2161
2161
|
};
|
|
2162
2162
|
"%Name"?: string | undefined;
|
|
@@ -2170,8 +2170,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2170
2170
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
2171
2171
|
tags?: string[] | undefined;
|
|
2172
2172
|
parent?: {
|
|
2173
|
-
path: string;
|
|
2174
2173
|
name: string;
|
|
2174
|
+
path: string;
|
|
2175
2175
|
} | undefined;
|
|
2176
2176
|
resourceVersion?: string | undefined;
|
|
2177
2177
|
bboxMode?: SpriteBoundingBoxMode | undefined;
|
|
@@ -2193,8 +2193,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2193
2193
|
width?: number | undefined;
|
|
2194
2194
|
height?: number | undefined;
|
|
2195
2195
|
textureGroupId?: {
|
|
2196
|
-
path: string;
|
|
2197
2196
|
name: string;
|
|
2197
|
+
path: string;
|
|
2198
2198
|
} | undefined;
|
|
2199
2199
|
swatchColours?: unknown;
|
|
2200
2200
|
gridX?: number | undefined;
|
|
@@ -2205,8 +2205,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2205
2205
|
resourceType?: "GMSpriteFrame" | undefined;
|
|
2206
2206
|
compositeImage?: {
|
|
2207
2207
|
FrameId: {
|
|
2208
|
-
path: string;
|
|
2209
2208
|
name: string;
|
|
2209
|
+
path: string;
|
|
2210
2210
|
};
|
|
2211
2211
|
LayerId: null;
|
|
2212
2212
|
name?: string | undefined;
|
|
@@ -2216,12 +2216,12 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2216
2216
|
} | undefined;
|
|
2217
2217
|
images?: {
|
|
2218
2218
|
FrameId: {
|
|
2219
|
-
path: string;
|
|
2220
2219
|
name: string;
|
|
2220
|
+
path: string;
|
|
2221
2221
|
};
|
|
2222
2222
|
LayerId: {
|
|
2223
|
-
path: string;
|
|
2224
2223
|
name: string;
|
|
2224
|
+
path: string;
|
|
2225
2225
|
};
|
|
2226
2226
|
name?: string | undefined;
|
|
2227
2227
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -2229,8 +2229,8 @@ declare const yySpriteSchemaStrict: z.ZodEffects<z.ZodObject<{
|
|
|
2229
2229
|
resourceVersion?: "1.0" | undefined;
|
|
2230
2230
|
}[] | undefined;
|
|
2231
2231
|
parent?: {
|
|
2232
|
-
path: string;
|
|
2233
2232
|
name: string;
|
|
2233
|
+
path: string;
|
|
2234
2234
|
} | undefined;
|
|
2235
2235
|
resourceVersion?: string | undefined;
|
|
2236
2236
|
}[] | undefined;
|
|
@@ -2252,11 +2252,11 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2252
2252
|
name: z.ZodString;
|
|
2253
2253
|
path: z.ZodString;
|
|
2254
2254
|
}, "strip", z.ZodTypeAny, {
|
|
2255
|
-
path: string;
|
|
2256
2255
|
name: string;
|
|
2257
|
-
}, {
|
|
2258
2256
|
path: string;
|
|
2257
|
+
}, {
|
|
2259
2258
|
name: string;
|
|
2259
|
+
path: string;
|
|
2260
2260
|
}>>;
|
|
2261
2261
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
2262
2262
|
bboxMode: z.ZodDefault<z.ZodNativeEnum<typeof SpriteBoundingBoxMode>>;
|
|
@@ -2283,11 +2283,11 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2283
2283
|
/** seems to just be `texturegroups/${name}` */
|
|
2284
2284
|
path: z.ZodString;
|
|
2285
2285
|
}, "strip", z.ZodTypeAny, {
|
|
2286
|
-
path: string;
|
|
2287
2286
|
name: string;
|
|
2288
|
-
}, {
|
|
2289
2287
|
path: string;
|
|
2288
|
+
}, {
|
|
2290
2289
|
name: string;
|
|
2290
|
+
path: string;
|
|
2291
2291
|
}>>;
|
|
2292
2292
|
swatchColours: z.ZodDefault<z.ZodUnknown>;
|
|
2293
2293
|
gridX: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2319,11 +2319,11 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2319
2319
|
/** Path to the sprite's .yy file */
|
|
2320
2320
|
path: z.ZodString;
|
|
2321
2321
|
}, "strip", z.ZodTypeAny, {
|
|
2322
|
-
path: string;
|
|
2323
2322
|
name: string;
|
|
2324
|
-
}, {
|
|
2325
2323
|
path: string;
|
|
2324
|
+
}, {
|
|
2326
2325
|
name: string;
|
|
2326
|
+
path: string;
|
|
2327
2327
|
}>;
|
|
2328
2328
|
LayerId: z.ZodNull;
|
|
2329
2329
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -2331,15 +2331,15 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2331
2331
|
resourceType: "GMSpriteBitmap";
|
|
2332
2332
|
resourceVersion: "1.0";
|
|
2333
2333
|
FrameId: {
|
|
2334
|
-
path: string;
|
|
2335
2334
|
name: string;
|
|
2335
|
+
path: string;
|
|
2336
2336
|
};
|
|
2337
2337
|
LayerId: null;
|
|
2338
2338
|
tags?: string[] | undefined;
|
|
2339
2339
|
}, {
|
|
2340
2340
|
FrameId: {
|
|
2341
|
-
path: string;
|
|
2342
2341
|
name: string;
|
|
2342
|
+
path: string;
|
|
2343
2343
|
};
|
|
2344
2344
|
LayerId: null;
|
|
2345
2345
|
name?: string | undefined;
|
|
@@ -2363,11 +2363,11 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2363
2363
|
/** Path to the sprite's .yy file */
|
|
2364
2364
|
path: z.ZodString;
|
|
2365
2365
|
}, "strip", z.ZodTypeAny, {
|
|
2366
|
-
path: string;
|
|
2367
2366
|
name: string;
|
|
2368
|
-
}, {
|
|
2369
2367
|
path: string;
|
|
2368
|
+
}, {
|
|
2370
2369
|
name: string;
|
|
2370
|
+
path: string;
|
|
2371
2371
|
}>;
|
|
2372
2372
|
LayerId: z.ZodObject<{
|
|
2373
2373
|
/**
|
|
@@ -2379,33 +2379,33 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2379
2379
|
/** Path to the sprite's .yy file */
|
|
2380
2380
|
path: z.ZodString;
|
|
2381
2381
|
}, "strip", z.ZodTypeAny, {
|
|
2382
|
-
path: string;
|
|
2383
2382
|
name: string;
|
|
2384
|
-
}, {
|
|
2385
2383
|
path: string;
|
|
2384
|
+
}, {
|
|
2386
2385
|
name: string;
|
|
2386
|
+
path: string;
|
|
2387
2387
|
}>;
|
|
2388
2388
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2389
2389
|
name: string;
|
|
2390
2390
|
resourceType: "GMSpriteBitmap";
|
|
2391
2391
|
resourceVersion: "1.0";
|
|
2392
2392
|
FrameId: {
|
|
2393
|
-
path: string;
|
|
2394
2393
|
name: string;
|
|
2394
|
+
path: string;
|
|
2395
2395
|
};
|
|
2396
2396
|
LayerId: {
|
|
2397
|
-
path: string;
|
|
2398
2397
|
name: string;
|
|
2398
|
+
path: string;
|
|
2399
2399
|
};
|
|
2400
2400
|
tags?: string[] | undefined;
|
|
2401
2401
|
}, {
|
|
2402
2402
|
FrameId: {
|
|
2403
|
-
path: string;
|
|
2404
2403
|
name: string;
|
|
2404
|
+
path: string;
|
|
2405
2405
|
};
|
|
2406
2406
|
LayerId: {
|
|
2407
|
-
path: string;
|
|
2408
2407
|
name: string;
|
|
2408
|
+
path: string;
|
|
2409
2409
|
};
|
|
2410
2410
|
name?: string | undefined;
|
|
2411
2411
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -2422,11 +2422,11 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2422
2422
|
name: z.ZodString;
|
|
2423
2423
|
path: z.ZodString;
|
|
2424
2424
|
}, "strip", z.ZodTypeAny, {
|
|
2425
|
-
path: string;
|
|
2426
2425
|
name: string;
|
|
2427
|
-
}, {
|
|
2428
2426
|
path: string;
|
|
2427
|
+
}, {
|
|
2429
2428
|
name: string;
|
|
2429
|
+
path: string;
|
|
2430
2430
|
}>>;
|
|
2431
2431
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
2432
2432
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -2439,8 +2439,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2439
2439
|
resourceType: "GMSpriteBitmap";
|
|
2440
2440
|
resourceVersion: "1.0";
|
|
2441
2441
|
FrameId: {
|
|
2442
|
-
path: string;
|
|
2443
2442
|
name: string;
|
|
2443
|
+
path: string;
|
|
2444
2444
|
};
|
|
2445
2445
|
LayerId: null;
|
|
2446
2446
|
tags?: string[] | undefined;
|
|
@@ -2450,18 +2450,18 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2450
2450
|
resourceType: "GMSpriteBitmap";
|
|
2451
2451
|
resourceVersion: "1.0";
|
|
2452
2452
|
FrameId: {
|
|
2453
|
-
path: string;
|
|
2454
2453
|
name: string;
|
|
2454
|
+
path: string;
|
|
2455
2455
|
};
|
|
2456
2456
|
LayerId: {
|
|
2457
|
-
path: string;
|
|
2458
2457
|
name: string;
|
|
2458
|
+
path: string;
|
|
2459
2459
|
};
|
|
2460
2460
|
tags?: string[] | undefined;
|
|
2461
2461
|
}[] | undefined;
|
|
2462
2462
|
parent?: {
|
|
2463
|
-
path: string;
|
|
2464
2463
|
name: string;
|
|
2464
|
+
path: string;
|
|
2465
2465
|
} | undefined;
|
|
2466
2466
|
}, {
|
|
2467
2467
|
name?: string | undefined;
|
|
@@ -2469,8 +2469,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2469
2469
|
resourceType?: "GMSpriteFrame" | undefined;
|
|
2470
2470
|
compositeImage?: {
|
|
2471
2471
|
FrameId: {
|
|
2472
|
-
path: string;
|
|
2473
2472
|
name: string;
|
|
2473
|
+
path: string;
|
|
2474
2474
|
};
|
|
2475
2475
|
LayerId: null;
|
|
2476
2476
|
name?: string | undefined;
|
|
@@ -2480,12 +2480,12 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2480
2480
|
} | undefined;
|
|
2481
2481
|
images?: {
|
|
2482
2482
|
FrameId: {
|
|
2483
|
-
path: string;
|
|
2484
2483
|
name: string;
|
|
2484
|
+
path: string;
|
|
2485
2485
|
};
|
|
2486
2486
|
LayerId: {
|
|
2487
|
-
path: string;
|
|
2488
2487
|
name: string;
|
|
2488
|
+
path: string;
|
|
2489
2489
|
};
|
|
2490
2490
|
name?: string | undefined;
|
|
2491
2491
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -2493,8 +2493,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2493
2493
|
resourceVersion?: "1.0" | undefined;
|
|
2494
2494
|
}[] | undefined;
|
|
2495
2495
|
parent?: {
|
|
2496
|
-
path: string;
|
|
2497
2496
|
name: string;
|
|
2497
|
+
path: string;
|
|
2498
2498
|
} | undefined;
|
|
2499
2499
|
resourceVersion?: string | undefined;
|
|
2500
2500
|
}>, "many">>;
|
|
@@ -2616,39 +2616,39 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2616
2616
|
name: z.ZodString;
|
|
2617
2617
|
path: z.ZodString;
|
|
2618
2618
|
}, "strip", z.ZodTypeAny, {
|
|
2619
|
-
path: string;
|
|
2620
2619
|
name: string;
|
|
2621
|
-
}, {
|
|
2622
2620
|
path: string;
|
|
2621
|
+
}, {
|
|
2623
2622
|
name: string;
|
|
2624
|
-
}>, {
|
|
2625
2623
|
path: string;
|
|
2624
|
+
}>, {
|
|
2626
2625
|
name: string;
|
|
2627
|
-
}, {
|
|
2628
2626
|
path: string;
|
|
2627
|
+
}, {
|
|
2629
2628
|
name: string;
|
|
2630
|
-
}>, {
|
|
2631
2629
|
path: string;
|
|
2630
|
+
}>, {
|
|
2632
2631
|
name: string;
|
|
2632
|
+
path: string;
|
|
2633
2633
|
}, unknown>>;
|
|
2634
2634
|
parent: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
2635
2635
|
name: z.ZodString;
|
|
2636
2636
|
path: z.ZodString;
|
|
2637
2637
|
}, "strip", z.ZodTypeAny, {
|
|
2638
|
-
path: string;
|
|
2639
2638
|
name: string;
|
|
2640
|
-
}, {
|
|
2641
2639
|
path: string;
|
|
2640
|
+
}, {
|
|
2642
2641
|
name: string;
|
|
2643
|
-
}>, {
|
|
2644
2642
|
path: string;
|
|
2643
|
+
}>, {
|
|
2645
2644
|
name: string;
|
|
2646
|
-
}, {
|
|
2647
2645
|
path: string;
|
|
2646
|
+
}, {
|
|
2648
2647
|
name: string;
|
|
2649
|
-
}>, {
|
|
2650
2648
|
path: string;
|
|
2649
|
+
}>, {
|
|
2651
2650
|
name: string;
|
|
2651
|
+
path: string;
|
|
2652
2652
|
}, unknown>>;
|
|
2653
2653
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2654
2654
|
length: FixedNumber;
|
|
@@ -2705,12 +2705,12 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2705
2705
|
name?: string | undefined;
|
|
2706
2706
|
tags?: string[] | undefined;
|
|
2707
2707
|
spriteId?: {
|
|
2708
|
-
path: string;
|
|
2709
2708
|
name: string;
|
|
2709
|
+
path: string;
|
|
2710
2710
|
} | undefined;
|
|
2711
2711
|
parent?: {
|
|
2712
|
-
path: string;
|
|
2713
2712
|
name: string;
|
|
2713
|
+
path: string;
|
|
2714
2714
|
} | undefined;
|
|
2715
2715
|
}, {
|
|
2716
2716
|
timeUnits?: number | undefined;
|
|
@@ -2801,24 +2801,24 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2801
2801
|
name?: string | undefined;
|
|
2802
2802
|
tags?: string[] | undefined;
|
|
2803
2803
|
spriteId?: {
|
|
2804
|
-
path: string;
|
|
2805
2804
|
name: string;
|
|
2805
|
+
path: string;
|
|
2806
2806
|
} | undefined;
|
|
2807
2807
|
parent?: {
|
|
2808
|
-
path: string;
|
|
2809
2808
|
name: string;
|
|
2809
|
+
path: string;
|
|
2810
2810
|
} | undefined;
|
|
2811
2811
|
}, unknown>;
|
|
2812
2812
|
layers: z.ZodEffects<z.ZodArray<z.ZodTypeAny, "many">, any[], unknown>;
|
|
2813
2813
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSprite">>;
|
|
2814
2814
|
nineSlice: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
2815
2815
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2816
|
-
type: SpriteType;
|
|
2817
2816
|
name: string;
|
|
2817
|
+
type: SpriteType;
|
|
2818
2818
|
resourceType: "GMSprite";
|
|
2819
2819
|
parent: {
|
|
2820
|
-
path: string;
|
|
2821
2820
|
name: string;
|
|
2821
|
+
path: string;
|
|
2822
2822
|
};
|
|
2823
2823
|
resourceVersion: string;
|
|
2824
2824
|
gridX: number;
|
|
@@ -2842,8 +2842,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2842
2842
|
width: number;
|
|
2843
2843
|
height: number;
|
|
2844
2844
|
textureGroupId: {
|
|
2845
|
-
path: string;
|
|
2846
2845
|
name: string;
|
|
2846
|
+
path: string;
|
|
2847
2847
|
};
|
|
2848
2848
|
frames: {
|
|
2849
2849
|
name: string;
|
|
@@ -2855,8 +2855,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2855
2855
|
resourceType: "GMSpriteBitmap";
|
|
2856
2856
|
resourceVersion: "1.0";
|
|
2857
2857
|
FrameId: {
|
|
2858
|
-
path: string;
|
|
2859
2858
|
name: string;
|
|
2859
|
+
path: string;
|
|
2860
2860
|
};
|
|
2861
2861
|
LayerId: null;
|
|
2862
2862
|
tags?: string[] | undefined;
|
|
@@ -2866,18 +2866,18 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2866
2866
|
resourceType: "GMSpriteBitmap";
|
|
2867
2867
|
resourceVersion: "1.0";
|
|
2868
2868
|
FrameId: {
|
|
2869
|
-
path: string;
|
|
2870
2869
|
name: string;
|
|
2870
|
+
path: string;
|
|
2871
2871
|
};
|
|
2872
2872
|
LayerId: {
|
|
2873
|
-
path: string;
|
|
2874
2873
|
name: string;
|
|
2874
|
+
path: string;
|
|
2875
2875
|
};
|
|
2876
2876
|
tags?: string[] | undefined;
|
|
2877
2877
|
}[] | undefined;
|
|
2878
2878
|
parent?: {
|
|
2879
|
-
path: string;
|
|
2880
2879
|
name: string;
|
|
2880
|
+
path: string;
|
|
2881
2881
|
} | undefined;
|
|
2882
2882
|
}[];
|
|
2883
2883
|
sequence: {
|
|
@@ -2935,12 +2935,12 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2935
2935
|
name?: string | undefined;
|
|
2936
2936
|
tags?: string[] | undefined;
|
|
2937
2937
|
spriteId?: {
|
|
2938
|
-
path: string;
|
|
2939
2938
|
name: string;
|
|
2939
|
+
path: string;
|
|
2940
2940
|
} | undefined;
|
|
2941
2941
|
parent?: {
|
|
2942
|
-
path: string;
|
|
2943
2942
|
name: string;
|
|
2943
|
+
path: string;
|
|
2944
2944
|
} | undefined;
|
|
2945
2945
|
};
|
|
2946
2946
|
"%Name"?: string | undefined;
|
|
@@ -2954,8 +2954,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2954
2954
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
2955
2955
|
tags?: string[] | undefined;
|
|
2956
2956
|
parent?: {
|
|
2957
|
-
path: string;
|
|
2958
2957
|
name: string;
|
|
2958
|
+
path: string;
|
|
2959
2959
|
} | undefined;
|
|
2960
2960
|
resourceVersion?: string | undefined;
|
|
2961
2961
|
bboxMode?: SpriteBoundingBoxMode | undefined;
|
|
@@ -2977,8 +2977,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2977
2977
|
width?: number | undefined;
|
|
2978
2978
|
height?: number | undefined;
|
|
2979
2979
|
textureGroupId?: {
|
|
2980
|
-
path: string;
|
|
2981
2980
|
name: string;
|
|
2981
|
+
path: string;
|
|
2982
2982
|
} | undefined;
|
|
2983
2983
|
swatchColours?: unknown;
|
|
2984
2984
|
gridX?: number | undefined;
|
|
@@ -2989,8 +2989,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
2989
2989
|
resourceType?: "GMSpriteFrame" | undefined;
|
|
2990
2990
|
compositeImage?: {
|
|
2991
2991
|
FrameId: {
|
|
2992
|
-
path: string;
|
|
2993
2992
|
name: string;
|
|
2993
|
+
path: string;
|
|
2994
2994
|
};
|
|
2995
2995
|
LayerId: null;
|
|
2996
2996
|
name?: string | undefined;
|
|
@@ -3000,12 +3000,12 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3000
3000
|
} | undefined;
|
|
3001
3001
|
images?: {
|
|
3002
3002
|
FrameId: {
|
|
3003
|
-
path: string;
|
|
3004
3003
|
name: string;
|
|
3004
|
+
path: string;
|
|
3005
3005
|
};
|
|
3006
3006
|
LayerId: {
|
|
3007
|
-
path: string;
|
|
3008
3007
|
name: string;
|
|
3008
|
+
path: string;
|
|
3009
3009
|
};
|
|
3010
3010
|
name?: string | undefined;
|
|
3011
3011
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -3013,8 +3013,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3013
3013
|
resourceVersion?: "1.0" | undefined;
|
|
3014
3014
|
}[] | undefined;
|
|
3015
3015
|
parent?: {
|
|
3016
|
-
path: string;
|
|
3017
3016
|
name: string;
|
|
3017
|
+
path: string;
|
|
3018
3018
|
} | undefined;
|
|
3019
3019
|
resourceVersion?: string | undefined;
|
|
3020
3020
|
}[] | undefined;
|
|
@@ -3023,12 +3023,12 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3023
3023
|
resourceType?: "GMSprite" | undefined;
|
|
3024
3024
|
nineSlice?: unknown;
|
|
3025
3025
|
}>, {
|
|
3026
|
-
type: SpriteType;
|
|
3027
3026
|
name: string;
|
|
3027
|
+
type: SpriteType;
|
|
3028
3028
|
resourceType: "GMSprite";
|
|
3029
3029
|
parent: {
|
|
3030
|
-
path: string;
|
|
3031
3030
|
name: string;
|
|
3031
|
+
path: string;
|
|
3032
3032
|
};
|
|
3033
3033
|
resourceVersion: string;
|
|
3034
3034
|
gridX: number;
|
|
@@ -3052,8 +3052,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3052
3052
|
width: number;
|
|
3053
3053
|
height: number;
|
|
3054
3054
|
textureGroupId: {
|
|
3055
|
-
path: string;
|
|
3056
3055
|
name: string;
|
|
3056
|
+
path: string;
|
|
3057
3057
|
};
|
|
3058
3058
|
frames: {
|
|
3059
3059
|
name: string;
|
|
@@ -3065,8 +3065,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3065
3065
|
resourceType: "GMSpriteBitmap";
|
|
3066
3066
|
resourceVersion: "1.0";
|
|
3067
3067
|
FrameId: {
|
|
3068
|
-
path: string;
|
|
3069
3068
|
name: string;
|
|
3069
|
+
path: string;
|
|
3070
3070
|
};
|
|
3071
3071
|
LayerId: null;
|
|
3072
3072
|
tags?: string[] | undefined;
|
|
@@ -3076,18 +3076,18 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3076
3076
|
resourceType: "GMSpriteBitmap";
|
|
3077
3077
|
resourceVersion: "1.0";
|
|
3078
3078
|
FrameId: {
|
|
3079
|
-
path: string;
|
|
3080
3079
|
name: string;
|
|
3080
|
+
path: string;
|
|
3081
3081
|
};
|
|
3082
3082
|
LayerId: {
|
|
3083
|
-
path: string;
|
|
3084
3083
|
name: string;
|
|
3084
|
+
path: string;
|
|
3085
3085
|
};
|
|
3086
3086
|
tags?: string[] | undefined;
|
|
3087
3087
|
}[] | undefined;
|
|
3088
3088
|
parent?: {
|
|
3089
|
-
path: string;
|
|
3090
3089
|
name: string;
|
|
3090
|
+
path: string;
|
|
3091
3091
|
} | undefined;
|
|
3092
3092
|
}[];
|
|
3093
3093
|
sequence: {
|
|
@@ -3145,12 +3145,12 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3145
3145
|
name?: string | undefined;
|
|
3146
3146
|
tags?: string[] | undefined;
|
|
3147
3147
|
spriteId?: {
|
|
3148
|
-
path: string;
|
|
3149
3148
|
name: string;
|
|
3149
|
+
path: string;
|
|
3150
3150
|
} | undefined;
|
|
3151
3151
|
parent?: {
|
|
3152
|
-
path: string;
|
|
3153
3152
|
name: string;
|
|
3153
|
+
path: string;
|
|
3154
3154
|
} | undefined;
|
|
3155
3155
|
};
|
|
3156
3156
|
"%Name"?: string | undefined;
|
|
@@ -3164,8 +3164,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3164
3164
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3165
3165
|
tags?: string[] | undefined;
|
|
3166
3166
|
parent?: {
|
|
3167
|
-
path: string;
|
|
3168
3167
|
name: string;
|
|
3168
|
+
path: string;
|
|
3169
3169
|
} | undefined;
|
|
3170
3170
|
resourceVersion?: string | undefined;
|
|
3171
3171
|
bboxMode?: SpriteBoundingBoxMode | undefined;
|
|
@@ -3187,8 +3187,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3187
3187
|
width?: number | undefined;
|
|
3188
3188
|
height?: number | undefined;
|
|
3189
3189
|
textureGroupId?: {
|
|
3190
|
-
path: string;
|
|
3191
3190
|
name: string;
|
|
3191
|
+
path: string;
|
|
3192
3192
|
} | undefined;
|
|
3193
3193
|
swatchColours?: unknown;
|
|
3194
3194
|
gridX?: number | undefined;
|
|
@@ -3199,8 +3199,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3199
3199
|
resourceType?: "GMSpriteFrame" | undefined;
|
|
3200
3200
|
compositeImage?: {
|
|
3201
3201
|
FrameId: {
|
|
3202
|
-
path: string;
|
|
3203
3202
|
name: string;
|
|
3203
|
+
path: string;
|
|
3204
3204
|
};
|
|
3205
3205
|
LayerId: null;
|
|
3206
3206
|
name?: string | undefined;
|
|
@@ -3210,12 +3210,12 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3210
3210
|
} | undefined;
|
|
3211
3211
|
images?: {
|
|
3212
3212
|
FrameId: {
|
|
3213
|
-
path: string;
|
|
3214
3213
|
name: string;
|
|
3214
|
+
path: string;
|
|
3215
3215
|
};
|
|
3216
3216
|
LayerId: {
|
|
3217
|
-
path: string;
|
|
3218
3217
|
name: string;
|
|
3218
|
+
path: string;
|
|
3219
3219
|
};
|
|
3220
3220
|
name?: string | undefined;
|
|
3221
3221
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
@@ -3223,8 +3223,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3223
3223
|
resourceVersion?: "1.0" | undefined;
|
|
3224
3224
|
}[] | undefined;
|
|
3225
3225
|
parent?: {
|
|
3226
|
-
path: string;
|
|
3227
3226
|
name: string;
|
|
3227
|
+
path: string;
|
|
3228
3228
|
} | undefined;
|
|
3229
3229
|
resourceVersion?: string | undefined;
|
|
3230
3230
|
}[] | undefined;
|
|
@@ -3233,12 +3233,12 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3233
3233
|
resourceType?: "GMSprite" | undefined;
|
|
3234
3234
|
nineSlice?: unknown;
|
|
3235
3235
|
}>, {
|
|
3236
|
-
type: SpriteType;
|
|
3237
3236
|
name: string;
|
|
3237
|
+
type: SpriteType;
|
|
3238
3238
|
resourceType: "GMSprite";
|
|
3239
3239
|
parent: {
|
|
3240
|
-
path: string;
|
|
3241
3240
|
name: string;
|
|
3241
|
+
path: string;
|
|
3242
3242
|
};
|
|
3243
3243
|
resourceVersion: string;
|
|
3244
3244
|
gridX: number;
|
|
@@ -3262,8 +3262,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3262
3262
|
width: number;
|
|
3263
3263
|
height: number;
|
|
3264
3264
|
textureGroupId: {
|
|
3265
|
-
path: string;
|
|
3266
3265
|
name: string;
|
|
3266
|
+
path: string;
|
|
3267
3267
|
};
|
|
3268
3268
|
frames: {
|
|
3269
3269
|
name: string;
|
|
@@ -3275,8 +3275,8 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3275
3275
|
resourceType: "GMSpriteBitmap";
|
|
3276
3276
|
resourceVersion: "1.0";
|
|
3277
3277
|
FrameId: {
|
|
3278
|
-
path: string;
|
|
3279
3278
|
name: string;
|
|
3279
|
+
path: string;
|
|
3280
3280
|
};
|
|
3281
3281
|
LayerId: null;
|
|
3282
3282
|
tags?: string[] | undefined;
|
|
@@ -3286,18 +3286,18 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3286
3286
|
resourceType: "GMSpriteBitmap";
|
|
3287
3287
|
resourceVersion: "1.0";
|
|
3288
3288
|
FrameId: {
|
|
3289
|
-
path: string;
|
|
3290
3289
|
name: string;
|
|
3290
|
+
path: string;
|
|
3291
3291
|
};
|
|
3292
3292
|
LayerId: {
|
|
3293
|
-
path: string;
|
|
3294
3293
|
name: string;
|
|
3294
|
+
path: string;
|
|
3295
3295
|
};
|
|
3296
3296
|
tags?: string[] | undefined;
|
|
3297
3297
|
}[] | undefined;
|
|
3298
3298
|
parent?: {
|
|
3299
|
-
path: string;
|
|
3300
3299
|
name: string;
|
|
3300
|
+
path: string;
|
|
3301
3301
|
} | undefined;
|
|
3302
3302
|
}[];
|
|
3303
3303
|
sequence: {
|
|
@@ -3355,12 +3355,12 @@ export declare const yySpriteSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
3355
3355
|
name?: string | undefined;
|
|
3356
3356
|
tags?: string[] | undefined;
|
|
3357
3357
|
spriteId?: {
|
|
3358
|
-
path: string;
|
|
3359
3358
|
name: string;
|
|
3359
|
+
path: string;
|
|
3360
3360
|
} | undefined;
|
|
3361
3361
|
parent?: {
|
|
3362
|
-
path: string;
|
|
3363
3362
|
name: string;
|
|
3363
|
+
path: string;
|
|
3364
3364
|
} | undefined;
|
|
3365
3365
|
};
|
|
3366
3366
|
"%Name"?: string | undefined;
|