@bscotch/yy 1.0.1 → 2.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/LICENSE.md +1 -1
- package/dist/Yy.d.ts +464 -392
- package/dist/Yy.d.ts.map +1 -1
- package/dist/Yy.parse.d.ts.map +1 -1
- package/dist/Yy.parse.js +0 -10
- package/dist/Yy.parse.js.map +1 -1
- package/dist/Yy.stringify.d.ts.map +1 -1
- package/dist/Yy.stringify.js +39 -52
- package/dist/Yy.stringify.js.map +1 -1
- package/dist/types/YyBase.d.ts +1 -1
- package/dist/types/YyObject.d.ts +4 -4
- package/dist/types/YyRoom.d.ts +37 -37
- package/dist/types/YyRoom.js +3 -3
- package/dist/types/YyRoom.js.map +1 -1
- package/dist/types/YyScript.d.ts +4 -4
- package/dist/types/YySound.d.ts +4 -4
- package/dist/types/YySprite.d.ts +93 -93
- package/dist/types/YySprite.lib.d.ts +1 -1
- package/dist/types/Yyp.d.ts +230 -155
- package/dist/types/Yyp.d.ts.map +1 -1
- package/dist/types/Yyp.js +5 -2
- package/dist/types/Yyp.js.map +1 -1
- package/dist/types/utility.d.ts.map +1 -1
- package/dist/types/utility.js +7 -4
- package/dist/types/utility.js.map +1 -1
- package/package.json +1 -1
package/dist/Yy.d.ts
CHANGED
|
@@ -130,12 +130,6 @@ export declare const yySchemas: {
|
|
|
130
130
|
}>, "many">>;
|
|
131
131
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
132
132
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
133
|
-
/**
|
|
134
|
-
* Stringify an object into a Yy-formatted string,
|
|
135
|
-
* including trailing commas. If a schema is provided,
|
|
136
|
-
* it will be used to validate and populate defaults before
|
|
137
|
-
* stringifying.
|
|
138
|
-
*/
|
|
139
133
|
name: z.ZodString;
|
|
140
134
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
141
135
|
name: z.ZodString;
|
|
@@ -148,6 +142,7 @@ export declare const yySchemas: {
|
|
|
148
142
|
name: string;
|
|
149
143
|
}>>>;
|
|
150
144
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
145
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
151
146
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
152
147
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
153
148
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -157,41 +152,55 @@ export declare const yySchemas: {
|
|
|
157
152
|
directory: z.ZodOptional<z.ZodString>;
|
|
158
153
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
159
154
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
160
|
-
}, "
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
155
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
156
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
157
|
+
name: z.ZodString;
|
|
158
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
159
|
+
name: z.ZodString;
|
|
160
|
+
path: z.ZodString;
|
|
161
|
+
}, "strip", z.ZodTypeAny, {
|
|
166
162
|
path: string;
|
|
167
163
|
name: string;
|
|
168
|
-
}
|
|
169
|
-
isScaled: boolean;
|
|
170
|
-
autocrop: boolean;
|
|
171
|
-
border: number;
|
|
172
|
-
mipsToGenerate: number;
|
|
173
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
174
|
-
compressFormat?: string | undefined;
|
|
175
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
176
|
-
directory?: string | undefined;
|
|
177
|
-
}, {
|
|
178
|
-
name: string;
|
|
179
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
180
|
-
groupParent?: {
|
|
164
|
+
}, {
|
|
181
165
|
path: string;
|
|
182
166
|
name: string;
|
|
183
|
-
}
|
|
184
|
-
isScaled
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
167
|
+
}>>>;
|
|
168
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
169
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
170
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
171
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
172
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
173
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
174
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
175
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
176
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
177
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
178
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
179
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
180
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
181
|
+
name: z.ZodString;
|
|
182
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
183
|
+
name: z.ZodString;
|
|
184
|
+
path: z.ZodString;
|
|
185
|
+
}, "strip", z.ZodTypeAny, {
|
|
186
|
+
path: string;
|
|
187
|
+
name: string;
|
|
188
|
+
}, {
|
|
189
|
+
path: string;
|
|
190
|
+
name: string;
|
|
191
|
+
}>>>;
|
|
192
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
193
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
194
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
195
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
196
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
197
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
198
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
199
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
200
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
201
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
202
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
203
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
195
204
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
196
205
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
197
206
|
CopyToMask: z.ZodString;
|
|
@@ -355,12 +364,6 @@ export declare const yySchemas: {
|
|
|
355
364
|
}>, "many">>;
|
|
356
365
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
357
366
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
358
|
-
/**
|
|
359
|
-
* Stringify an object into a Yy-formatted string,
|
|
360
|
-
* including trailing commas. If a schema is provided,
|
|
361
|
-
* it will be used to validate and populate defaults before
|
|
362
|
-
* stringifying.
|
|
363
|
-
*/
|
|
364
367
|
name: z.ZodString;
|
|
365
368
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
366
369
|
name: z.ZodString;
|
|
@@ -373,6 +376,7 @@ export declare const yySchemas: {
|
|
|
373
376
|
name: string;
|
|
374
377
|
}>>>;
|
|
375
378
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
379
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
376
380
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
377
381
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
378
382
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -382,41 +386,55 @@ export declare const yySchemas: {
|
|
|
382
386
|
directory: z.ZodOptional<z.ZodString>;
|
|
383
387
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
384
388
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
385
|
-
}, "
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
389
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
390
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
391
|
+
name: z.ZodString;
|
|
392
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
393
|
+
name: z.ZodString;
|
|
394
|
+
path: z.ZodString;
|
|
395
|
+
}, "strip", z.ZodTypeAny, {
|
|
391
396
|
path: string;
|
|
392
397
|
name: string;
|
|
393
|
-
}
|
|
394
|
-
isScaled: boolean;
|
|
395
|
-
autocrop: boolean;
|
|
396
|
-
border: number;
|
|
397
|
-
mipsToGenerate: number;
|
|
398
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
399
|
-
compressFormat?: string | undefined;
|
|
400
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
401
|
-
directory?: string | undefined;
|
|
402
|
-
}, {
|
|
403
|
-
name: string;
|
|
404
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
405
|
-
groupParent?: {
|
|
398
|
+
}, {
|
|
406
399
|
path: string;
|
|
407
400
|
name: string;
|
|
408
|
-
}
|
|
409
|
-
isScaled
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
401
|
+
}>>>;
|
|
402
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
403
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
404
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
405
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
406
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
407
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
408
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
409
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
410
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
411
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
412
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
413
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
414
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
415
|
+
name: z.ZodString;
|
|
416
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
417
|
+
name: z.ZodString;
|
|
418
|
+
path: z.ZodString;
|
|
419
|
+
}, "strip", z.ZodTypeAny, {
|
|
420
|
+
path: string;
|
|
421
|
+
name: string;
|
|
422
|
+
}, {
|
|
423
|
+
path: string;
|
|
424
|
+
name: string;
|
|
425
|
+
}>>>;
|
|
426
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
427
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
428
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
429
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
430
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
431
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
432
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
433
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
434
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
435
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
436
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
437
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
420
438
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
421
439
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
422
440
|
CopyToMask: z.ZodString;
|
|
@@ -580,12 +598,6 @@ export declare const yySchemas: {
|
|
|
580
598
|
}>, "many">>;
|
|
581
599
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
582
600
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
583
|
-
/**
|
|
584
|
-
* Stringify an object into a Yy-formatted string,
|
|
585
|
-
* including trailing commas. If a schema is provided,
|
|
586
|
-
* it will be used to validate and populate defaults before
|
|
587
|
-
* stringifying.
|
|
588
|
-
*/
|
|
589
601
|
name: z.ZodString;
|
|
590
602
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
591
603
|
name: z.ZodString;
|
|
@@ -598,6 +610,7 @@ export declare const yySchemas: {
|
|
|
598
610
|
name: string;
|
|
599
611
|
}>>>;
|
|
600
612
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
613
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
601
614
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
602
615
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
603
616
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -607,41 +620,55 @@ export declare const yySchemas: {
|
|
|
607
620
|
directory: z.ZodOptional<z.ZodString>;
|
|
608
621
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
609
622
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
610
|
-
}, "
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
623
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
624
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
625
|
+
name: z.ZodString;
|
|
626
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
627
|
+
name: z.ZodString;
|
|
628
|
+
path: z.ZodString;
|
|
629
|
+
}, "strip", z.ZodTypeAny, {
|
|
616
630
|
path: string;
|
|
617
631
|
name: string;
|
|
618
|
-
}
|
|
619
|
-
isScaled: boolean;
|
|
620
|
-
autocrop: boolean;
|
|
621
|
-
border: number;
|
|
622
|
-
mipsToGenerate: number;
|
|
623
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
624
|
-
compressFormat?: string | undefined;
|
|
625
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
626
|
-
directory?: string | undefined;
|
|
627
|
-
}, {
|
|
628
|
-
name: string;
|
|
629
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
630
|
-
groupParent?: {
|
|
632
|
+
}, {
|
|
631
633
|
path: string;
|
|
632
634
|
name: string;
|
|
633
|
-
}
|
|
634
|
-
isScaled
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
635
|
+
}>>>;
|
|
636
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
637
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
638
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
639
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
640
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
641
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
642
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
643
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
644
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
645
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
646
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
647
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
648
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
649
|
+
name: z.ZodString;
|
|
650
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
651
|
+
name: z.ZodString;
|
|
652
|
+
path: z.ZodString;
|
|
653
|
+
}, "strip", z.ZodTypeAny, {
|
|
654
|
+
path: string;
|
|
655
|
+
name: string;
|
|
656
|
+
}, {
|
|
657
|
+
path: string;
|
|
658
|
+
name: string;
|
|
659
|
+
}>>>;
|
|
660
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
661
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
662
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
663
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
664
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
665
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
666
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
667
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
668
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
669
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
670
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
671
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
645
672
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
646
673
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
647
674
|
CopyToMask: z.ZodString;
|
|
@@ -805,12 +832,6 @@ export declare const yySchemas: {
|
|
|
805
832
|
}>, "many">>;
|
|
806
833
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
807
834
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
808
|
-
/**
|
|
809
|
-
* Stringify an object into a Yy-formatted string,
|
|
810
|
-
* including trailing commas. If a schema is provided,
|
|
811
|
-
* it will be used to validate and populate defaults before
|
|
812
|
-
* stringifying.
|
|
813
|
-
*/
|
|
814
835
|
name: z.ZodString;
|
|
815
836
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
816
837
|
name: z.ZodString;
|
|
@@ -823,6 +844,7 @@ export declare const yySchemas: {
|
|
|
823
844
|
name: string;
|
|
824
845
|
}>>>;
|
|
825
846
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
847
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
826
848
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
827
849
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
828
850
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -832,41 +854,55 @@ export declare const yySchemas: {
|
|
|
832
854
|
directory: z.ZodOptional<z.ZodString>;
|
|
833
855
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
834
856
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
835
|
-
}, "
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
857
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
858
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
859
|
+
name: z.ZodString;
|
|
860
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
861
|
+
name: z.ZodString;
|
|
862
|
+
path: z.ZodString;
|
|
863
|
+
}, "strip", z.ZodTypeAny, {
|
|
841
864
|
path: string;
|
|
842
865
|
name: string;
|
|
843
|
-
}
|
|
844
|
-
isScaled: boolean;
|
|
845
|
-
autocrop: boolean;
|
|
846
|
-
border: number;
|
|
847
|
-
mipsToGenerate: number;
|
|
848
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
849
|
-
compressFormat?: string | undefined;
|
|
850
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
851
|
-
directory?: string | undefined;
|
|
852
|
-
}, {
|
|
853
|
-
name: string;
|
|
854
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
855
|
-
groupParent?: {
|
|
866
|
+
}, {
|
|
856
867
|
path: string;
|
|
857
868
|
name: string;
|
|
858
|
-
}
|
|
859
|
-
isScaled
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
869
|
+
}>>>;
|
|
870
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
871
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
872
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
873
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
874
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
875
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
876
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
877
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
878
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
879
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
880
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
881
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
882
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
883
|
+
name: z.ZodString;
|
|
884
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
885
|
+
name: z.ZodString;
|
|
886
|
+
path: z.ZodString;
|
|
887
|
+
}, "strip", z.ZodTypeAny, {
|
|
888
|
+
path: string;
|
|
889
|
+
name: string;
|
|
890
|
+
}, {
|
|
891
|
+
path: string;
|
|
892
|
+
name: string;
|
|
893
|
+
}>>>;
|
|
894
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
895
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
896
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
897
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
898
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
899
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
900
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
901
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
902
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
903
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
904
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
905
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
870
906
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
871
907
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
872
908
|
CopyToMask: z.ZodString;
|
|
@@ -1512,9 +1548,8 @@ export declare const yySchemas: {
|
|
|
1512
1548
|
"%Name": z.ZodOptional<z.ZodString>;
|
|
1513
1549
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1514
1550
|
readonly objects: z.ZodObject<{
|
|
1515
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
1516
1551
|
name: z.ZodString;
|
|
1517
|
-
|
|
1552
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
1518
1553
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1519
1554
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1520
1555
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -1527,6 +1562,7 @@ export declare const yySchemas: {
|
|
|
1527
1562
|
path: string;
|
|
1528
1563
|
name: string;
|
|
1529
1564
|
}>>;
|
|
1565
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1530
1566
|
spriteId: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
1531
1567
|
name: z.ZodString;
|
|
1532
1568
|
path: z.ZodString;
|
|
@@ -1673,11 +1709,11 @@ export declare const yySchemas: {
|
|
|
1673
1709
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1674
1710
|
name: string;
|
|
1675
1711
|
resourceType: "GMObject";
|
|
1676
|
-
resourceVersion: string;
|
|
1677
1712
|
parent: {
|
|
1678
1713
|
path: string;
|
|
1679
1714
|
name: string;
|
|
1680
1715
|
};
|
|
1716
|
+
resourceVersion: string;
|
|
1681
1717
|
spriteId: {
|
|
1682
1718
|
path: string;
|
|
1683
1719
|
name: string;
|
|
@@ -1744,13 +1780,13 @@ export declare const yySchemas: {
|
|
|
1744
1780
|
}, {
|
|
1745
1781
|
name: string;
|
|
1746
1782
|
"%Name"?: string | undefined;
|
|
1747
|
-
resourceVersion?: string | undefined;
|
|
1748
1783
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
1749
1784
|
tags?: string[] | undefined;
|
|
1750
1785
|
parent?: {
|
|
1751
1786
|
path: string;
|
|
1752
1787
|
name: string;
|
|
1753
1788
|
} | undefined;
|
|
1789
|
+
resourceVersion?: string | undefined;
|
|
1754
1790
|
spriteId?: {
|
|
1755
1791
|
path: string;
|
|
1756
1792
|
name: string;
|
|
@@ -1828,9 +1864,8 @@ export declare const yySchemas: {
|
|
|
1828
1864
|
"%Name": z.ZodOptional<z.ZodString>;
|
|
1829
1865
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1830
1866
|
readonly rooms: z.ZodObject<{
|
|
1831
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
1832
1867
|
name: z.ZodString;
|
|
1833
|
-
|
|
1868
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
1834
1869
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1835
1870
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1836
1871
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -1843,6 +1878,7 @@ export declare const yySchemas: {
|
|
|
1843
1878
|
path: string;
|
|
1844
1879
|
name: string;
|
|
1845
1880
|
}>>;
|
|
1881
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
1846
1882
|
layers: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
1847
1883
|
visible: z.ZodDefault<z.ZodBoolean>;
|
|
1848
1884
|
properties: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>;
|
|
@@ -2192,10 +2228,10 @@ export declare const yySchemas: {
|
|
|
2192
2228
|
y: z.ZodDefault<z.ZodNumber>;
|
|
2193
2229
|
htiled: z.ZodDefault<z.ZodBoolean>;
|
|
2194
2230
|
vtiled: z.ZodDefault<z.ZodBoolean>;
|
|
2195
|
-
hspeed: z.ZodDefault<z.ZodNumber
|
|
2196
|
-
vspeed: z.ZodDefault<z.ZodNumber
|
|
2231
|
+
hspeed: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodNumber, number, number | import("./types/utility.js").FixedNumber>, import("./types/utility.js").FixedNumber, number | import("./types/utility.js").FixedNumber>>;
|
|
2232
|
+
vspeed: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodNumber, number, number | import("./types/utility.js").FixedNumber>, import("./types/utility.js").FixedNumber, number | import("./types/utility.js").FixedNumber>>;
|
|
2197
2233
|
stretch: z.ZodDefault<z.ZodBoolean>;
|
|
2198
|
-
animationFPS: z.ZodDefault<z.ZodNumber
|
|
2234
|
+
animationFPS: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodNumber, number, number | import("./types/utility.js").FixedNumber>, import("./types/utility.js").FixedNumber, number | import("./types/utility.js").FixedNumber>>;
|
|
2199
2235
|
animationSpeedType: z.ZodDefault<z.ZodNumber>;
|
|
2200
2236
|
userdefinedAnimFPS: z.ZodDefault<z.ZodBoolean>;
|
|
2201
2237
|
depth: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2217,8 +2253,8 @@ export declare const yySchemas: {
|
|
|
2217
2253
|
visible: boolean;
|
|
2218
2254
|
x: number;
|
|
2219
2255
|
y: number;
|
|
2220
|
-
hspeed:
|
|
2221
|
-
vspeed:
|
|
2256
|
+
hspeed: import("./types/utility.js").FixedNumber;
|
|
2257
|
+
vspeed: import("./types/utility.js").FixedNumber;
|
|
2222
2258
|
colour: number;
|
|
2223
2259
|
effectEnabled: boolean;
|
|
2224
2260
|
userdefinedDepth: boolean;
|
|
@@ -2234,7 +2270,7 @@ export declare const yySchemas: {
|
|
|
2234
2270
|
htiled: boolean;
|
|
2235
2271
|
vtiled: boolean;
|
|
2236
2272
|
stretch: boolean;
|
|
2237
|
-
animationFPS:
|
|
2273
|
+
animationFPS: import("./types/utility.js").FixedNumber;
|
|
2238
2274
|
animationSpeedType: number;
|
|
2239
2275
|
userdefinedAnimFPS: boolean;
|
|
2240
2276
|
effectType?: unknown;
|
|
@@ -2263,10 +2299,10 @@ export declare const yySchemas: {
|
|
|
2263
2299
|
y?: number | undefined;
|
|
2264
2300
|
htiled?: boolean | undefined;
|
|
2265
2301
|
vtiled?: boolean | undefined;
|
|
2266
|
-
hspeed?: number | undefined;
|
|
2267
|
-
vspeed?: number | undefined;
|
|
2302
|
+
hspeed?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
2303
|
+
vspeed?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
2268
2304
|
stretch?: boolean | undefined;
|
|
2269
|
-
animationFPS?: number | undefined;
|
|
2305
|
+
animationFPS?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
2270
2306
|
animationSpeedType?: number | undefined;
|
|
2271
2307
|
userdefinedAnimFPS?: boolean | undefined;
|
|
2272
2308
|
depth?: number | undefined;
|
|
@@ -2733,11 +2769,11 @@ export declare const yySchemas: {
|
|
|
2733
2769
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2734
2770
|
name: string;
|
|
2735
2771
|
resourceType: "GMRoom";
|
|
2736
|
-
resourceVersion: string;
|
|
2737
2772
|
parent: {
|
|
2738
2773
|
path: string;
|
|
2739
2774
|
name: string;
|
|
2740
2775
|
};
|
|
2776
|
+
resourceVersion: string;
|
|
2741
2777
|
isDnd: boolean;
|
|
2742
2778
|
inheritCode: boolean;
|
|
2743
2779
|
layers: (z.objectOutputType<{
|
|
@@ -2954,8 +2990,8 @@ export declare const yySchemas: {
|
|
|
2954
2990
|
visible: boolean;
|
|
2955
2991
|
x: number;
|
|
2956
2992
|
y: number;
|
|
2957
|
-
hspeed:
|
|
2958
|
-
vspeed:
|
|
2993
|
+
hspeed: import("./types/utility.js").FixedNumber;
|
|
2994
|
+
vspeed: import("./types/utility.js").FixedNumber;
|
|
2959
2995
|
colour: number;
|
|
2960
2996
|
effectEnabled: boolean;
|
|
2961
2997
|
userdefinedDepth: boolean;
|
|
@@ -2971,7 +3007,7 @@ export declare const yySchemas: {
|
|
|
2971
3007
|
htiled: boolean;
|
|
2972
3008
|
vtiled: boolean;
|
|
2973
3009
|
stretch: boolean;
|
|
2974
|
-
animationFPS:
|
|
3010
|
+
animationFPS: import("./types/utility.js").FixedNumber;
|
|
2975
3011
|
animationSpeedType: number;
|
|
2976
3012
|
userdefinedAnimFPS: boolean;
|
|
2977
3013
|
effectType?: unknown;
|
|
@@ -3048,13 +3084,13 @@ export declare const yySchemas: {
|
|
|
3048
3084
|
}, {
|
|
3049
3085
|
name: string;
|
|
3050
3086
|
"%Name"?: string | undefined;
|
|
3051
|
-
resourceVersion?: string | undefined;
|
|
3052
3087
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3053
3088
|
tags?: string[] | undefined;
|
|
3054
3089
|
parent?: {
|
|
3055
3090
|
path: string;
|
|
3056
3091
|
name: string;
|
|
3057
3092
|
} | undefined;
|
|
3093
|
+
resourceVersion?: string | undefined;
|
|
3058
3094
|
layers?: (z.objectInputType<{
|
|
3059
3095
|
resourceType: z.ZodLiteral<"GMRPathLayer">;
|
|
3060
3096
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
@@ -3279,10 +3315,10 @@ export declare const yySchemas: {
|
|
|
3279
3315
|
y?: number | undefined;
|
|
3280
3316
|
htiled?: boolean | undefined;
|
|
3281
3317
|
vtiled?: boolean | undefined;
|
|
3282
|
-
hspeed?: number | undefined;
|
|
3283
|
-
vspeed?: number | undefined;
|
|
3318
|
+
hspeed?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
3319
|
+
vspeed?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
3284
3320
|
stretch?: boolean | undefined;
|
|
3285
|
-
animationFPS?: number | undefined;
|
|
3321
|
+
animationFPS?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
3286
3322
|
animationSpeedType?: number | undefined;
|
|
3287
3323
|
userdefinedAnimFPS?: boolean | undefined;
|
|
3288
3324
|
depth?: number | undefined;
|
|
@@ -3360,9 +3396,8 @@ export declare const yySchemas: {
|
|
|
3360
3396
|
resourceType?: "GMRoom" | undefined;
|
|
3361
3397
|
}>;
|
|
3362
3398
|
readonly scripts: z.ZodObject<{
|
|
3363
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
3364
3399
|
name: z.ZodString;
|
|
3365
|
-
|
|
3400
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
3366
3401
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3367
3402
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3368
3403
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -3375,17 +3410,18 @@ export declare const yySchemas: {
|
|
|
3375
3410
|
path: string;
|
|
3376
3411
|
name: string;
|
|
3377
3412
|
}>>;
|
|
3413
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
3378
3414
|
isDnD: z.ZodDefault<z.ZodBoolean>;
|
|
3379
3415
|
isCompatibility: z.ZodDefault<z.ZodBoolean>;
|
|
3380
3416
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMScript">>;
|
|
3381
3417
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3382
3418
|
name: string;
|
|
3383
3419
|
resourceType: "GMScript";
|
|
3384
|
-
resourceVersion: string;
|
|
3385
3420
|
parent: {
|
|
3386
3421
|
path: string;
|
|
3387
3422
|
name: string;
|
|
3388
3423
|
};
|
|
3424
|
+
resourceVersion: string;
|
|
3389
3425
|
isDnD: boolean;
|
|
3390
3426
|
isCompatibility: boolean;
|
|
3391
3427
|
"%Name"?: string | undefined;
|
|
@@ -3394,13 +3430,13 @@ export declare const yySchemas: {
|
|
|
3394
3430
|
}, {
|
|
3395
3431
|
name: string;
|
|
3396
3432
|
"%Name"?: string | undefined;
|
|
3397
|
-
resourceVersion?: string | undefined;
|
|
3398
3433
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3399
3434
|
tags?: string[] | undefined;
|
|
3400
3435
|
parent?: {
|
|
3401
3436
|
path: string;
|
|
3402
3437
|
name: string;
|
|
3403
3438
|
} | undefined;
|
|
3439
|
+
resourceVersion?: string | undefined;
|
|
3404
3440
|
isDnD?: boolean | undefined;
|
|
3405
3441
|
isCompatibility?: boolean | undefined;
|
|
3406
3442
|
resourceType?: "GMScript" | undefined;
|
|
@@ -3420,9 +3456,8 @@ export declare const yySchemas: {
|
|
|
3420
3456
|
"%Name": z.ZodOptional<z.ZodString>;
|
|
3421
3457
|
}, z.ZodTypeAny, "passthrough">>;
|
|
3422
3458
|
readonly sounds: z.ZodObject<{
|
|
3423
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
3424
3459
|
name: z.ZodString;
|
|
3425
|
-
|
|
3460
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
3426
3461
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3427
3462
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3428
3463
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -3435,6 +3470,7 @@ export declare const yySchemas: {
|
|
|
3435
3470
|
path: string;
|
|
3436
3471
|
name: string;
|
|
3437
3472
|
}>>;
|
|
3473
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
3438
3474
|
compression: z.ZodDefault<z.ZodNativeEnum<typeof import("./types/YySound.js").SoundCompression>>;
|
|
3439
3475
|
conversionMode: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
3440
3476
|
volume: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodNumber, number, number | import("./types/utility.js").FixedNumber>, import("./types/utility.js").FixedNumber, number | import("./types/utility.js").FixedNumber>>;
|
|
@@ -3460,11 +3496,11 @@ export declare const yySchemas: {
|
|
|
3460
3496
|
type: import("./types/YySound.js").SoundChannel;
|
|
3461
3497
|
name: string;
|
|
3462
3498
|
resourceType: "GMSound";
|
|
3463
|
-
resourceVersion: string;
|
|
3464
3499
|
parent: {
|
|
3465
3500
|
path: string;
|
|
3466
3501
|
name: string;
|
|
3467
3502
|
};
|
|
3503
|
+
resourceVersion: string;
|
|
3468
3504
|
volume: import("./types/utility.js").FixedNumber;
|
|
3469
3505
|
compression: import("./types/YySound.js").SoundCompression;
|
|
3470
3506
|
conversionMode: number;
|
|
@@ -3485,13 +3521,13 @@ export declare const yySchemas: {
|
|
|
3485
3521
|
name: string;
|
|
3486
3522
|
soundFile: string;
|
|
3487
3523
|
"%Name"?: string | undefined;
|
|
3488
|
-
resourceVersion?: string | undefined;
|
|
3489
3524
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
3490
3525
|
tags?: string[] | undefined;
|
|
3491
3526
|
parent?: {
|
|
3492
3527
|
path: string;
|
|
3493
3528
|
name: string;
|
|
3494
3529
|
} | undefined;
|
|
3530
|
+
resourceVersion?: string | undefined;
|
|
3495
3531
|
compression?: import("./types/YySound.js").SoundCompression | undefined;
|
|
3496
3532
|
conversionMode?: number | undefined;
|
|
3497
3533
|
volume?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
@@ -3508,9 +3544,8 @@ export declare const yySchemas: {
|
|
|
3508
3544
|
resourceType?: "GMSound" | undefined;
|
|
3509
3545
|
}>;
|
|
3510
3546
|
readonly sprites: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
3511
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
3512
3547
|
name: z.ZodString;
|
|
3513
|
-
|
|
3548
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
3514
3549
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3515
3550
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3516
3551
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -3523,6 +3558,7 @@ export declare const yySchemas: {
|
|
|
3523
3558
|
path: string;
|
|
3524
3559
|
name: string;
|
|
3525
3560
|
}>>;
|
|
3561
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
3526
3562
|
bboxMode: z.ZodDefault<z.ZodNativeEnum<typeof import("./types/YySprite.js").SpriteBoundingBoxMode>>;
|
|
3527
3563
|
collisionKind: z.ZodDefault<z.ZodNativeEnum<typeof import("./types/YySprite.js").SpriteCollisionKind>>;
|
|
3528
3564
|
type: z.ZodDefault<z.ZodNativeEnum<typeof import("./types/YySprite.js").SpriteType>>;
|
|
@@ -3561,8 +3597,8 @@ export declare const yySchemas: {
|
|
|
3561
3597
|
compositeImage: z.ZodOptional<z.ZodObject<{
|
|
3562
3598
|
name: z.ZodDefault<z.ZodString>;
|
|
3563
3599
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
3564
|
-
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
3565
3600
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3601
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
3566
3602
|
FrameId: z.ZodObject<{
|
|
3567
3603
|
name: z.ZodString;
|
|
3568
3604
|
path: z.ZodString;
|
|
@@ -3592,14 +3628,14 @@ export declare const yySchemas: {
|
|
|
3592
3628
|
LayerId: null;
|
|
3593
3629
|
name?: string | undefined;
|
|
3594
3630
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
3595
|
-
resourceVersion?: "1.0" | undefined;
|
|
3596
3631
|
tags?: string[] | undefined;
|
|
3632
|
+
resourceVersion?: "1.0" | undefined;
|
|
3597
3633
|
}>>;
|
|
3598
3634
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3599
3635
|
name: z.ZodDefault<z.ZodString>;
|
|
3600
3636
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
3601
|
-
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
3602
3637
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3638
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
3603
3639
|
FrameId: z.ZodObject<{
|
|
3604
3640
|
name: z.ZodString;
|
|
3605
3641
|
path: z.ZodString;
|
|
@@ -3644,8 +3680,8 @@ export declare const yySchemas: {
|
|
|
3644
3680
|
};
|
|
3645
3681
|
name?: string | undefined;
|
|
3646
3682
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
3647
|
-
resourceVersion?: "1.0" | undefined;
|
|
3648
3683
|
tags?: string[] | undefined;
|
|
3684
|
+
resourceVersion?: "1.0" | undefined;
|
|
3649
3685
|
}>, "many">>;
|
|
3650
3686
|
parent: z.ZodOptional<z.ZodObject<{
|
|
3651
3687
|
name: z.ZodString;
|
|
@@ -3704,8 +3740,8 @@ export declare const yySchemas: {
|
|
|
3704
3740
|
LayerId: null;
|
|
3705
3741
|
name?: string | undefined;
|
|
3706
3742
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
3707
|
-
resourceVersion?: "1.0" | undefined;
|
|
3708
3743
|
tags?: string[] | undefined;
|
|
3744
|
+
resourceVersion?: "1.0" | undefined;
|
|
3709
3745
|
} | undefined;
|
|
3710
3746
|
images?: {
|
|
3711
3747
|
FrameId: {
|
|
@@ -3718,8 +3754,8 @@ export declare const yySchemas: {
|
|
|
3718
3754
|
};
|
|
3719
3755
|
name?: string | undefined;
|
|
3720
3756
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
3721
|
-
resourceVersion?: "1.0" | undefined;
|
|
3722
3757
|
tags?: string[] | undefined;
|
|
3758
|
+
resourceVersion?: "1.0" | undefined;
|
|
3723
3759
|
}[] | undefined;
|
|
3724
3760
|
parent?: {
|
|
3725
3761
|
path: string;
|
|
@@ -4033,11 +4069,11 @@ export declare const yySchemas: {
|
|
|
4033
4069
|
type: import("./types/YySprite.js").SpriteType;
|
|
4034
4070
|
name: string;
|
|
4035
4071
|
resourceType: "GMSprite";
|
|
4036
|
-
resourceVersion: string;
|
|
4037
4072
|
parent: {
|
|
4038
4073
|
path: string;
|
|
4039
4074
|
name: string;
|
|
4040
4075
|
};
|
|
4076
|
+
resourceVersion: string;
|
|
4041
4077
|
gridX: number;
|
|
4042
4078
|
gridY: number;
|
|
4043
4079
|
layers: any[];
|
|
@@ -4168,13 +4204,13 @@ export declare const yySchemas: {
|
|
|
4168
4204
|
}, {
|
|
4169
4205
|
name: string;
|
|
4170
4206
|
"%Name"?: string | undefined;
|
|
4171
|
-
resourceVersion?: string | undefined;
|
|
4172
4207
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4173
4208
|
tags?: string[] | undefined;
|
|
4174
4209
|
parent?: {
|
|
4175
4210
|
path: string;
|
|
4176
4211
|
name: string;
|
|
4177
4212
|
} | undefined;
|
|
4213
|
+
resourceVersion?: string | undefined;
|
|
4178
4214
|
bboxMode?: import("./types/YySprite.js").SpriteBoundingBoxMode | undefined;
|
|
4179
4215
|
collisionKind?: import("./types/YySprite.js").SpriteCollisionKind | undefined;
|
|
4180
4216
|
type?: import("./types/YySprite.js").SpriteType | undefined;
|
|
@@ -4212,8 +4248,8 @@ export declare const yySchemas: {
|
|
|
4212
4248
|
LayerId: null;
|
|
4213
4249
|
name?: string | undefined;
|
|
4214
4250
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
4215
|
-
resourceVersion?: "1.0" | undefined;
|
|
4216
4251
|
tags?: string[] | undefined;
|
|
4252
|
+
resourceVersion?: "1.0" | undefined;
|
|
4217
4253
|
} | undefined;
|
|
4218
4254
|
images?: {
|
|
4219
4255
|
FrameId: {
|
|
@@ -4226,8 +4262,8 @@ export declare const yySchemas: {
|
|
|
4226
4262
|
};
|
|
4227
4263
|
name?: string | undefined;
|
|
4228
4264
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
4229
|
-
resourceVersion?: "1.0" | undefined;
|
|
4230
4265
|
tags?: string[] | undefined;
|
|
4266
|
+
resourceVersion?: "1.0" | undefined;
|
|
4231
4267
|
}[] | undefined;
|
|
4232
4268
|
parent?: {
|
|
4233
4269
|
path: string;
|
|
@@ -4243,11 +4279,11 @@ export declare const yySchemas: {
|
|
|
4243
4279
|
type: import("./types/YySprite.js").SpriteType;
|
|
4244
4280
|
name: string;
|
|
4245
4281
|
resourceType: "GMSprite";
|
|
4246
|
-
resourceVersion: string;
|
|
4247
4282
|
parent: {
|
|
4248
4283
|
path: string;
|
|
4249
4284
|
name: string;
|
|
4250
4285
|
};
|
|
4286
|
+
resourceVersion: string;
|
|
4251
4287
|
gridX: number;
|
|
4252
4288
|
gridY: number;
|
|
4253
4289
|
layers: any[];
|
|
@@ -4378,13 +4414,13 @@ export declare const yySchemas: {
|
|
|
4378
4414
|
}, {
|
|
4379
4415
|
name: string;
|
|
4380
4416
|
"%Name"?: string | undefined;
|
|
4381
|
-
resourceVersion?: string | undefined;
|
|
4382
4417
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4383
4418
|
tags?: string[] | undefined;
|
|
4384
4419
|
parent?: {
|
|
4385
4420
|
path: string;
|
|
4386
4421
|
name: string;
|
|
4387
4422
|
} | undefined;
|
|
4423
|
+
resourceVersion?: string | undefined;
|
|
4388
4424
|
bboxMode?: import("./types/YySprite.js").SpriteBoundingBoxMode | undefined;
|
|
4389
4425
|
collisionKind?: import("./types/YySprite.js").SpriteCollisionKind | undefined;
|
|
4390
4426
|
type?: import("./types/YySprite.js").SpriteType | undefined;
|
|
@@ -4422,8 +4458,8 @@ export declare const yySchemas: {
|
|
|
4422
4458
|
LayerId: null;
|
|
4423
4459
|
name?: string | undefined;
|
|
4424
4460
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
4425
|
-
resourceVersion?: "1.0" | undefined;
|
|
4426
4461
|
tags?: string[] | undefined;
|
|
4462
|
+
resourceVersion?: "1.0" | undefined;
|
|
4427
4463
|
} | undefined;
|
|
4428
4464
|
images?: {
|
|
4429
4465
|
FrameId: {
|
|
@@ -4436,8 +4472,8 @@ export declare const yySchemas: {
|
|
|
4436
4472
|
};
|
|
4437
4473
|
name?: string | undefined;
|
|
4438
4474
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
4439
|
-
resourceVersion?: "1.0" | undefined;
|
|
4440
4475
|
tags?: string[] | undefined;
|
|
4476
|
+
resourceVersion?: "1.0" | undefined;
|
|
4441
4477
|
}[] | undefined;
|
|
4442
4478
|
parent?: {
|
|
4443
4479
|
path: string;
|
|
@@ -4453,11 +4489,11 @@ export declare const yySchemas: {
|
|
|
4453
4489
|
type: import("./types/YySprite.js").SpriteType;
|
|
4454
4490
|
name: string;
|
|
4455
4491
|
resourceType: "GMSprite";
|
|
4456
|
-
resourceVersion: string;
|
|
4457
4492
|
parent: {
|
|
4458
4493
|
path: string;
|
|
4459
4494
|
name: string;
|
|
4460
4495
|
};
|
|
4496
|
+
resourceVersion: string;
|
|
4461
4497
|
gridX: number;
|
|
4462
4498
|
gridY: number;
|
|
4463
4499
|
layers: any[];
|
|
@@ -4731,12 +4767,6 @@ export declare class Yy {
|
|
|
4731
4767
|
}>, "many">>;
|
|
4732
4768
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4733
4769
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4734
|
-
/**
|
|
4735
|
-
* Stringify an object into a Yy-formatted string,
|
|
4736
|
-
* including trailing commas. If a schema is provided,
|
|
4737
|
-
* it will be used to validate and populate defaults before
|
|
4738
|
-
* stringifying.
|
|
4739
|
-
*/
|
|
4740
4770
|
name: z.ZodString;
|
|
4741
4771
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4742
4772
|
name: z.ZodString;
|
|
@@ -4749,6 +4779,7 @@ export declare class Yy {
|
|
|
4749
4779
|
name: string;
|
|
4750
4780
|
}>>>;
|
|
4751
4781
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
4782
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
4752
4783
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
4753
4784
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
4754
4785
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -4758,41 +4789,55 @@ export declare class Yy {
|
|
|
4758
4789
|
directory: z.ZodOptional<z.ZodString>;
|
|
4759
4790
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
4760
4791
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
4761
|
-
}, "
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4792
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4793
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4794
|
+
name: z.ZodString;
|
|
4795
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4796
|
+
name: z.ZodString;
|
|
4797
|
+
path: z.ZodString;
|
|
4798
|
+
}, "strip", z.ZodTypeAny, {
|
|
4767
4799
|
path: string;
|
|
4768
4800
|
name: string;
|
|
4769
|
-
}
|
|
4770
|
-
isScaled: boolean;
|
|
4771
|
-
autocrop: boolean;
|
|
4772
|
-
border: number;
|
|
4773
|
-
mipsToGenerate: number;
|
|
4774
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4775
|
-
compressFormat?: string | undefined;
|
|
4776
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
4777
|
-
directory?: string | undefined;
|
|
4778
|
-
}, {
|
|
4779
|
-
name: string;
|
|
4780
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
4781
|
-
groupParent?: {
|
|
4801
|
+
}, {
|
|
4782
4802
|
path: string;
|
|
4783
4803
|
name: string;
|
|
4784
|
-
}
|
|
4785
|
-
isScaled
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4804
|
+
}>>>;
|
|
4805
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
4806
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
4807
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
4808
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
4809
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
4810
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
4811
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
4812
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
4813
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
4814
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
4815
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
4816
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4817
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4818
|
+
name: z.ZodString;
|
|
4819
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4820
|
+
name: z.ZodString;
|
|
4821
|
+
path: z.ZodString;
|
|
4822
|
+
}, "strip", z.ZodTypeAny, {
|
|
4823
|
+
path: string;
|
|
4824
|
+
name: string;
|
|
4825
|
+
}, {
|
|
4826
|
+
path: string;
|
|
4827
|
+
name: string;
|
|
4828
|
+
}>>>;
|
|
4829
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
4830
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
4831
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
4832
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
4833
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
4834
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
4835
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
4836
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
4837
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
4838
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
4839
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
4840
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
4796
4841
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4797
4842
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4798
4843
|
CopyToMask: z.ZodString;
|
|
@@ -4956,12 +5001,6 @@ export declare class Yy {
|
|
|
4956
5001
|
}>, "many">>;
|
|
4957
5002
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4958
5003
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
4959
|
-
/**
|
|
4960
|
-
* Stringify an object into a Yy-formatted string,
|
|
4961
|
-
* including trailing commas. If a schema is provided,
|
|
4962
|
-
* it will be used to validate and populate defaults before
|
|
4963
|
-
* stringifying.
|
|
4964
|
-
*/
|
|
4965
5004
|
name: z.ZodString;
|
|
4966
5005
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4967
5006
|
name: z.ZodString;
|
|
@@ -4974,6 +5013,7 @@ export declare class Yy {
|
|
|
4974
5013
|
name: string;
|
|
4975
5014
|
}>>>;
|
|
4976
5015
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5016
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
4977
5017
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
4978
5018
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
4979
5019
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -4983,41 +5023,55 @@ export declare class Yy {
|
|
|
4983
5023
|
directory: z.ZodOptional<z.ZodString>;
|
|
4984
5024
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
4985
5025
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
4986
|
-
}, "
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
|
|
5026
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
5027
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5028
|
+
name: z.ZodString;
|
|
5029
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5030
|
+
name: z.ZodString;
|
|
5031
|
+
path: z.ZodString;
|
|
5032
|
+
}, "strip", z.ZodTypeAny, {
|
|
4992
5033
|
path: string;
|
|
4993
5034
|
name: string;
|
|
4994
|
-
}
|
|
4995
|
-
isScaled: boolean;
|
|
4996
|
-
autocrop: boolean;
|
|
4997
|
-
border: number;
|
|
4998
|
-
mipsToGenerate: number;
|
|
4999
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5000
|
-
compressFormat?: string | undefined;
|
|
5001
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
5002
|
-
directory?: string | undefined;
|
|
5003
|
-
}, {
|
|
5004
|
-
name: string;
|
|
5005
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5006
|
-
groupParent?: {
|
|
5035
|
+
}, {
|
|
5007
5036
|
path: string;
|
|
5008
5037
|
name: string;
|
|
5009
|
-
}
|
|
5010
|
-
isScaled
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5038
|
+
}>>>;
|
|
5039
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5040
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5041
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5042
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5043
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5044
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5045
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5046
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5047
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5048
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5049
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5050
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
5051
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5052
|
+
name: z.ZodString;
|
|
5053
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5054
|
+
name: z.ZodString;
|
|
5055
|
+
path: z.ZodString;
|
|
5056
|
+
}, "strip", z.ZodTypeAny, {
|
|
5057
|
+
path: string;
|
|
5058
|
+
name: string;
|
|
5059
|
+
}, {
|
|
5060
|
+
path: string;
|
|
5061
|
+
name: string;
|
|
5062
|
+
}>>>;
|
|
5063
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5064
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5065
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5066
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5067
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5068
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5069
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5070
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5071
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5072
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5073
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5074
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
5021
5075
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5022
5076
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5023
5077
|
CopyToMask: z.ZodString;
|
|
@@ -5181,12 +5235,6 @@ export declare class Yy {
|
|
|
5181
5235
|
}>, "many">>;
|
|
5182
5236
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5183
5237
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5184
|
-
/**
|
|
5185
|
-
* Stringify an object into a Yy-formatted string,
|
|
5186
|
-
* including trailing commas. If a schema is provided,
|
|
5187
|
-
* it will be used to validate and populate defaults before
|
|
5188
|
-
* stringifying.
|
|
5189
|
-
*/
|
|
5190
5238
|
name: z.ZodString;
|
|
5191
5239
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5192
5240
|
name: z.ZodString;
|
|
@@ -5199,6 +5247,7 @@ export declare class Yy {
|
|
|
5199
5247
|
name: string;
|
|
5200
5248
|
}>>>;
|
|
5201
5249
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5250
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5202
5251
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5203
5252
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5204
5253
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -5208,41 +5257,55 @@ export declare class Yy {
|
|
|
5208
5257
|
directory: z.ZodOptional<z.ZodString>;
|
|
5209
5258
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5210
5259
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5211
|
-
}, "
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5260
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
5261
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5262
|
+
name: z.ZodString;
|
|
5263
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5264
|
+
name: z.ZodString;
|
|
5265
|
+
path: z.ZodString;
|
|
5266
|
+
}, "strip", z.ZodTypeAny, {
|
|
5217
5267
|
path: string;
|
|
5218
5268
|
name: string;
|
|
5219
|
-
}
|
|
5220
|
-
isScaled: boolean;
|
|
5221
|
-
autocrop: boolean;
|
|
5222
|
-
border: number;
|
|
5223
|
-
mipsToGenerate: number;
|
|
5224
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5225
|
-
compressFormat?: string | undefined;
|
|
5226
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
5227
|
-
directory?: string | undefined;
|
|
5228
|
-
}, {
|
|
5229
|
-
name: string;
|
|
5230
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5231
|
-
groupParent?: {
|
|
5269
|
+
}, {
|
|
5232
5270
|
path: string;
|
|
5233
5271
|
name: string;
|
|
5234
|
-
}
|
|
5235
|
-
isScaled
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5245
|
-
|
|
5272
|
+
}>>>;
|
|
5273
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5274
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5275
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5276
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5277
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5278
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5279
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5280
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5281
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5282
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5283
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5284
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
5285
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5286
|
+
name: z.ZodString;
|
|
5287
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5288
|
+
name: z.ZodString;
|
|
5289
|
+
path: z.ZodString;
|
|
5290
|
+
}, "strip", z.ZodTypeAny, {
|
|
5291
|
+
path: string;
|
|
5292
|
+
name: string;
|
|
5293
|
+
}, {
|
|
5294
|
+
path: string;
|
|
5295
|
+
name: string;
|
|
5296
|
+
}>>>;
|
|
5297
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5298
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5299
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5300
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5301
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5302
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5303
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5304
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5305
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5306
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5307
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5308
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
5246
5309
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5247
5310
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5248
5311
|
CopyToMask: z.ZodString;
|
|
@@ -5406,12 +5469,6 @@ export declare class Yy {
|
|
|
5406
5469
|
}>, "many">>;
|
|
5407
5470
|
TextureGroups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5408
5471
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5409
|
-
/**
|
|
5410
|
-
* Stringify an object into a Yy-formatted string,
|
|
5411
|
-
* including trailing commas. If a schema is provided,
|
|
5412
|
-
* it will be used to validate and populate defaults before
|
|
5413
|
-
* stringifying.
|
|
5414
|
-
*/
|
|
5415
5472
|
name: z.ZodString;
|
|
5416
5473
|
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5417
5474
|
name: z.ZodString;
|
|
@@ -5424,6 +5481,7 @@ export declare class Yy {
|
|
|
5424
5481
|
name: string;
|
|
5425
5482
|
}>>>;
|
|
5426
5483
|
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5484
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5427
5485
|
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5428
5486
|
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5429
5487
|
border: z.ZodDefault<z.ZodNumber>;
|
|
@@ -5433,41 +5491,55 @@ export declare class Yy {
|
|
|
5433
5491
|
directory: z.ZodOptional<z.ZodString>;
|
|
5434
5492
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5435
5493
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5436
|
-
}, "
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
5494
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
5495
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5496
|
+
name: z.ZodString;
|
|
5497
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5498
|
+
name: z.ZodString;
|
|
5499
|
+
path: z.ZodString;
|
|
5500
|
+
}, "strip", z.ZodTypeAny, {
|
|
5442
5501
|
path: string;
|
|
5443
5502
|
name: string;
|
|
5444
|
-
}
|
|
5445
|
-
isScaled: boolean;
|
|
5446
|
-
autocrop: boolean;
|
|
5447
|
-
border: number;
|
|
5448
|
-
mipsToGenerate: number;
|
|
5449
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5450
|
-
compressFormat?: string | undefined;
|
|
5451
|
-
loadType?: "default" | "dynamicpages" | undefined;
|
|
5452
|
-
directory?: string | undefined;
|
|
5453
|
-
}, {
|
|
5454
|
-
name: string;
|
|
5455
|
-
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
5456
|
-
groupParent?: {
|
|
5503
|
+
}, {
|
|
5457
5504
|
path: string;
|
|
5458
5505
|
name: string;
|
|
5459
|
-
}
|
|
5460
|
-
isScaled
|
|
5461
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5464
|
-
|
|
5465
|
-
|
|
5466
|
-
|
|
5467
|
-
|
|
5468
|
-
|
|
5469
|
-
|
|
5470
|
-
|
|
5506
|
+
}>>>;
|
|
5507
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5508
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5509
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5510
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5511
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5512
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5513
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5514
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5515
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5516
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5517
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5518
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
5519
|
+
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5520
|
+
name: z.ZodString;
|
|
5521
|
+
groupParent: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
5522
|
+
name: z.ZodString;
|
|
5523
|
+
path: z.ZodString;
|
|
5524
|
+
}, "strip", z.ZodTypeAny, {
|
|
5525
|
+
path: string;
|
|
5526
|
+
name: string;
|
|
5527
|
+
}, {
|
|
5528
|
+
path: string;
|
|
5529
|
+
name: string;
|
|
5530
|
+
}>>>;
|
|
5531
|
+
isScaled: z.ZodDefault<z.ZodBoolean>;
|
|
5532
|
+
customOptions: z.ZodOptional<z.ZodString>;
|
|
5533
|
+
compressFormat: z.ZodOptional<z.ZodString>;
|
|
5534
|
+
autocrop: z.ZodDefault<z.ZodBoolean>;
|
|
5535
|
+
border: z.ZodDefault<z.ZodNumber>;
|
|
5536
|
+
mipsToGenerate: z.ZodDefault<z.ZodNumber>;
|
|
5537
|
+
targets: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodBigInt]>, bigint, number | bigint>>;
|
|
5538
|
+
loadType: z.ZodOptional<z.ZodEnum<["default", "dynamicpages"]>>;
|
|
5539
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5540
|
+
resourceType: z.ZodDefault<z.ZodLiteral<"GMTextureGroup">>;
|
|
5541
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
5542
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
5471
5543
|
IncludedFiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5472
5544
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5473
5545
|
CopyToMask: z.ZodString;
|
|
@@ -6113,9 +6185,8 @@ export declare class Yy {
|
|
|
6113
6185
|
"%Name": z.ZodOptional<z.ZodString>;
|
|
6114
6186
|
}, z.ZodTypeAny, "passthrough">>;
|
|
6115
6187
|
readonly objects: z.ZodObject<{
|
|
6116
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
6117
6188
|
name: z.ZodString;
|
|
6118
|
-
|
|
6189
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
6119
6190
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6120
6191
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6121
6192
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -6128,6 +6199,7 @@ export declare class Yy {
|
|
|
6128
6199
|
path: string;
|
|
6129
6200
|
name: string;
|
|
6130
6201
|
}>>;
|
|
6202
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
6131
6203
|
spriteId: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
6132
6204
|
name: z.ZodString;
|
|
6133
6205
|
path: z.ZodString;
|
|
@@ -6274,11 +6346,11 @@ export declare class Yy {
|
|
|
6274
6346
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
6275
6347
|
name: string;
|
|
6276
6348
|
resourceType: "GMObject";
|
|
6277
|
-
resourceVersion: string;
|
|
6278
6349
|
parent: {
|
|
6279
6350
|
path: string;
|
|
6280
6351
|
name: string;
|
|
6281
6352
|
};
|
|
6353
|
+
resourceVersion: string;
|
|
6282
6354
|
spriteId: {
|
|
6283
6355
|
path: string;
|
|
6284
6356
|
name: string;
|
|
@@ -6345,13 +6417,13 @@ export declare class Yy {
|
|
|
6345
6417
|
}, {
|
|
6346
6418
|
name: string;
|
|
6347
6419
|
"%Name"?: string | undefined;
|
|
6348
|
-
resourceVersion?: string | undefined;
|
|
6349
6420
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
6350
6421
|
tags?: string[] | undefined;
|
|
6351
6422
|
parent?: {
|
|
6352
6423
|
path: string;
|
|
6353
6424
|
name: string;
|
|
6354
6425
|
} | undefined;
|
|
6426
|
+
resourceVersion?: string | undefined;
|
|
6355
6427
|
spriteId?: {
|
|
6356
6428
|
path: string;
|
|
6357
6429
|
name: string;
|
|
@@ -6429,9 +6501,8 @@ export declare class Yy {
|
|
|
6429
6501
|
"%Name": z.ZodOptional<z.ZodString>;
|
|
6430
6502
|
}, z.ZodTypeAny, "passthrough">>;
|
|
6431
6503
|
readonly rooms: z.ZodObject<{
|
|
6432
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
6433
6504
|
name: z.ZodString;
|
|
6434
|
-
|
|
6505
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
6435
6506
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6436
6507
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6437
6508
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -6444,6 +6515,7 @@ export declare class Yy {
|
|
|
6444
6515
|
path: string;
|
|
6445
6516
|
name: string;
|
|
6446
6517
|
}>>;
|
|
6518
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
6447
6519
|
layers: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"resourceType", [z.ZodObject<{
|
|
6448
6520
|
visible: z.ZodDefault<z.ZodBoolean>;
|
|
6449
6521
|
properties: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>;
|
|
@@ -6793,10 +6865,10 @@ export declare class Yy {
|
|
|
6793
6865
|
y: z.ZodDefault<z.ZodNumber>;
|
|
6794
6866
|
htiled: z.ZodDefault<z.ZodBoolean>;
|
|
6795
6867
|
vtiled: z.ZodDefault<z.ZodBoolean>;
|
|
6796
|
-
hspeed: z.ZodDefault<z.ZodNumber
|
|
6797
|
-
vspeed: z.ZodDefault<z.ZodNumber
|
|
6868
|
+
hspeed: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodNumber, number, number | import("./types/utility.js").FixedNumber>, import("./types/utility.js").FixedNumber, number | import("./types/utility.js").FixedNumber>>;
|
|
6869
|
+
vspeed: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodNumber, number, number | import("./types/utility.js").FixedNumber>, import("./types/utility.js").FixedNumber, number | import("./types/utility.js").FixedNumber>>;
|
|
6798
6870
|
stretch: z.ZodDefault<z.ZodBoolean>;
|
|
6799
|
-
animationFPS: z.ZodDefault<z.ZodNumber
|
|
6871
|
+
animationFPS: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodNumber, number, number | import("./types/utility.js").FixedNumber>, import("./types/utility.js").FixedNumber, number | import("./types/utility.js").FixedNumber>>;
|
|
6800
6872
|
animationSpeedType: z.ZodDefault<z.ZodNumber>;
|
|
6801
6873
|
userdefinedAnimFPS: z.ZodDefault<z.ZodBoolean>;
|
|
6802
6874
|
depth: z.ZodDefault<z.ZodNumber>;
|
|
@@ -6818,8 +6890,8 @@ export declare class Yy {
|
|
|
6818
6890
|
visible: boolean;
|
|
6819
6891
|
x: number;
|
|
6820
6892
|
y: number;
|
|
6821
|
-
hspeed:
|
|
6822
|
-
vspeed:
|
|
6893
|
+
hspeed: import("./types/utility.js").FixedNumber;
|
|
6894
|
+
vspeed: import("./types/utility.js").FixedNumber;
|
|
6823
6895
|
colour: number;
|
|
6824
6896
|
effectEnabled: boolean;
|
|
6825
6897
|
userdefinedDepth: boolean;
|
|
@@ -6835,7 +6907,7 @@ export declare class Yy {
|
|
|
6835
6907
|
htiled: boolean;
|
|
6836
6908
|
vtiled: boolean;
|
|
6837
6909
|
stretch: boolean;
|
|
6838
|
-
animationFPS:
|
|
6910
|
+
animationFPS: import("./types/utility.js").FixedNumber;
|
|
6839
6911
|
animationSpeedType: number;
|
|
6840
6912
|
userdefinedAnimFPS: boolean;
|
|
6841
6913
|
effectType?: unknown;
|
|
@@ -6864,10 +6936,10 @@ export declare class Yy {
|
|
|
6864
6936
|
y?: number | undefined;
|
|
6865
6937
|
htiled?: boolean | undefined;
|
|
6866
6938
|
vtiled?: boolean | undefined;
|
|
6867
|
-
hspeed?: number | undefined;
|
|
6868
|
-
vspeed?: number | undefined;
|
|
6939
|
+
hspeed?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
6940
|
+
vspeed?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
6869
6941
|
stretch?: boolean | undefined;
|
|
6870
|
-
animationFPS?: number | undefined;
|
|
6942
|
+
animationFPS?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
6871
6943
|
animationSpeedType?: number | undefined;
|
|
6872
6944
|
userdefinedAnimFPS?: boolean | undefined;
|
|
6873
6945
|
depth?: number | undefined;
|
|
@@ -7334,11 +7406,11 @@ export declare class Yy {
|
|
|
7334
7406
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
7335
7407
|
name: string;
|
|
7336
7408
|
resourceType: "GMRoom";
|
|
7337
|
-
resourceVersion: string;
|
|
7338
7409
|
parent: {
|
|
7339
7410
|
path: string;
|
|
7340
7411
|
name: string;
|
|
7341
7412
|
};
|
|
7413
|
+
resourceVersion: string;
|
|
7342
7414
|
isDnd: boolean;
|
|
7343
7415
|
inheritCode: boolean;
|
|
7344
7416
|
layers: (z.objectOutputType<{
|
|
@@ -7555,8 +7627,8 @@ export declare class Yy {
|
|
|
7555
7627
|
visible: boolean;
|
|
7556
7628
|
x: number;
|
|
7557
7629
|
y: number;
|
|
7558
|
-
hspeed:
|
|
7559
|
-
vspeed:
|
|
7630
|
+
hspeed: import("./types/utility.js").FixedNumber;
|
|
7631
|
+
vspeed: import("./types/utility.js").FixedNumber;
|
|
7560
7632
|
colour: number;
|
|
7561
7633
|
effectEnabled: boolean;
|
|
7562
7634
|
userdefinedDepth: boolean;
|
|
@@ -7572,7 +7644,7 @@ export declare class Yy {
|
|
|
7572
7644
|
htiled: boolean;
|
|
7573
7645
|
vtiled: boolean;
|
|
7574
7646
|
stretch: boolean;
|
|
7575
|
-
animationFPS:
|
|
7647
|
+
animationFPS: import("./types/utility.js").FixedNumber;
|
|
7576
7648
|
animationSpeedType: number;
|
|
7577
7649
|
userdefinedAnimFPS: boolean;
|
|
7578
7650
|
effectType?: unknown;
|
|
@@ -7649,13 +7721,13 @@ export declare class Yy {
|
|
|
7649
7721
|
}, {
|
|
7650
7722
|
name: string;
|
|
7651
7723
|
"%Name"?: string | undefined;
|
|
7652
|
-
resourceVersion?: string | undefined;
|
|
7653
7724
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
7654
7725
|
tags?: string[] | undefined;
|
|
7655
7726
|
parent?: {
|
|
7656
7727
|
path: string;
|
|
7657
7728
|
name: string;
|
|
7658
7729
|
} | undefined;
|
|
7730
|
+
resourceVersion?: string | undefined;
|
|
7659
7731
|
layers?: (z.objectInputType<{
|
|
7660
7732
|
resourceType: z.ZodLiteral<"GMRPathLayer">;
|
|
7661
7733
|
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
@@ -7880,10 +7952,10 @@ export declare class Yy {
|
|
|
7880
7952
|
y?: number | undefined;
|
|
7881
7953
|
htiled?: boolean | undefined;
|
|
7882
7954
|
vtiled?: boolean | undefined;
|
|
7883
|
-
hspeed?: number | undefined;
|
|
7884
|
-
vspeed?: number | undefined;
|
|
7955
|
+
hspeed?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
7956
|
+
vspeed?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
7885
7957
|
stretch?: boolean | undefined;
|
|
7886
|
-
animationFPS?: number | undefined;
|
|
7958
|
+
animationFPS?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
7887
7959
|
animationSpeedType?: number | undefined;
|
|
7888
7960
|
userdefinedAnimFPS?: boolean | undefined;
|
|
7889
7961
|
depth?: number | undefined;
|
|
@@ -7961,9 +8033,8 @@ export declare class Yy {
|
|
|
7961
8033
|
resourceType?: "GMRoom" | undefined;
|
|
7962
8034
|
}>;
|
|
7963
8035
|
readonly scripts: z.ZodObject<{
|
|
7964
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
7965
8036
|
name: z.ZodString;
|
|
7966
|
-
|
|
8037
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
7967
8038
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7968
8039
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7969
8040
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -7976,17 +8047,18 @@ export declare class Yy {
|
|
|
7976
8047
|
path: string;
|
|
7977
8048
|
name: string;
|
|
7978
8049
|
}>>;
|
|
8050
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
7979
8051
|
isDnD: z.ZodDefault<z.ZodBoolean>;
|
|
7980
8052
|
isCompatibility: z.ZodDefault<z.ZodBoolean>;
|
|
7981
8053
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMScript">>;
|
|
7982
8054
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
7983
8055
|
name: string;
|
|
7984
8056
|
resourceType: "GMScript";
|
|
7985
|
-
resourceVersion: string;
|
|
7986
8057
|
parent: {
|
|
7987
8058
|
path: string;
|
|
7988
8059
|
name: string;
|
|
7989
8060
|
};
|
|
8061
|
+
resourceVersion: string;
|
|
7990
8062
|
isDnD: boolean;
|
|
7991
8063
|
isCompatibility: boolean;
|
|
7992
8064
|
"%Name"?: string | undefined;
|
|
@@ -7995,13 +8067,13 @@ export declare class Yy {
|
|
|
7995
8067
|
}, {
|
|
7996
8068
|
name: string;
|
|
7997
8069
|
"%Name"?: string | undefined;
|
|
7998
|
-
resourceVersion?: string | undefined;
|
|
7999
8070
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
8000
8071
|
tags?: string[] | undefined;
|
|
8001
8072
|
parent?: {
|
|
8002
8073
|
path: string;
|
|
8003
8074
|
name: string;
|
|
8004
8075
|
} | undefined;
|
|
8076
|
+
resourceVersion?: string | undefined;
|
|
8005
8077
|
isDnD?: boolean | undefined;
|
|
8006
8078
|
isCompatibility?: boolean | undefined;
|
|
8007
8079
|
resourceType?: "GMScript" | undefined;
|
|
@@ -8021,9 +8093,8 @@ export declare class Yy {
|
|
|
8021
8093
|
"%Name": z.ZodOptional<z.ZodString>;
|
|
8022
8094
|
}, z.ZodTypeAny, "passthrough">>;
|
|
8023
8095
|
readonly sounds: z.ZodObject<{
|
|
8024
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
8025
8096
|
name: z.ZodString;
|
|
8026
|
-
|
|
8097
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
8027
8098
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8028
8099
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8029
8100
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -8036,6 +8107,7 @@ export declare class Yy {
|
|
|
8036
8107
|
path: string;
|
|
8037
8108
|
name: string;
|
|
8038
8109
|
}>>;
|
|
8110
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
8039
8111
|
compression: z.ZodDefault<z.ZodNativeEnum<typeof import("./types/YySound.js").SoundCompression>>;
|
|
8040
8112
|
conversionMode: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
8041
8113
|
volume: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodNumber, number, number | import("./types/utility.js").FixedNumber>, import("./types/utility.js").FixedNumber, number | import("./types/utility.js").FixedNumber>>;
|
|
@@ -8061,11 +8133,11 @@ export declare class Yy {
|
|
|
8061
8133
|
type: import("./types/YySound.js").SoundChannel;
|
|
8062
8134
|
name: string;
|
|
8063
8135
|
resourceType: "GMSound";
|
|
8064
|
-
resourceVersion: string;
|
|
8065
8136
|
parent: {
|
|
8066
8137
|
path: string;
|
|
8067
8138
|
name: string;
|
|
8068
8139
|
};
|
|
8140
|
+
resourceVersion: string;
|
|
8069
8141
|
volume: import("./types/utility.js").FixedNumber;
|
|
8070
8142
|
compression: import("./types/YySound.js").SoundCompression;
|
|
8071
8143
|
conversionMode: number;
|
|
@@ -8086,13 +8158,13 @@ export declare class Yy {
|
|
|
8086
8158
|
name: string;
|
|
8087
8159
|
soundFile: string;
|
|
8088
8160
|
"%Name"?: string | undefined;
|
|
8089
|
-
resourceVersion?: string | undefined;
|
|
8090
8161
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
8091
8162
|
tags?: string[] | undefined;
|
|
8092
8163
|
parent?: {
|
|
8093
8164
|
path: string;
|
|
8094
8165
|
name: string;
|
|
8095
8166
|
} | undefined;
|
|
8167
|
+
resourceVersion?: string | undefined;
|
|
8096
8168
|
compression?: import("./types/YySound.js").SoundCompression | undefined;
|
|
8097
8169
|
conversionMode?: number | undefined;
|
|
8098
8170
|
volume?: number | import("./types/utility.js").FixedNumber | undefined;
|
|
@@ -8109,9 +8181,8 @@ export declare class Yy {
|
|
|
8109
8181
|
resourceType?: "GMSound" | undefined;
|
|
8110
8182
|
}>;
|
|
8111
8183
|
readonly sprites: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
8112
|
-
"%Name": z.ZodOptional<z.ZodString>;
|
|
8113
8184
|
name: z.ZodString;
|
|
8114
|
-
|
|
8185
|
+
"%Name": z.ZodOptional<z.ZodString>;
|
|
8115
8186
|
ConfigValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8116
8187
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8117
8188
|
parent: z.ZodDefault<z.ZodObject<{
|
|
@@ -8124,6 +8195,7 @@ export declare class Yy {
|
|
|
8124
8195
|
path: string;
|
|
8125
8196
|
name: string;
|
|
8126
8197
|
}>>;
|
|
8198
|
+
resourceVersion: z.ZodDefault<z.ZodString>;
|
|
8127
8199
|
bboxMode: z.ZodDefault<z.ZodNativeEnum<typeof import("./types/YySprite.js").SpriteBoundingBoxMode>>;
|
|
8128
8200
|
collisionKind: z.ZodDefault<z.ZodNativeEnum<typeof import("./types/YySprite.js").SpriteCollisionKind>>;
|
|
8129
8201
|
type: z.ZodDefault<z.ZodNativeEnum<typeof import("./types/YySprite.js").SpriteType>>;
|
|
@@ -8162,8 +8234,8 @@ export declare class Yy {
|
|
|
8162
8234
|
compositeImage: z.ZodOptional<z.ZodObject<{
|
|
8163
8235
|
name: z.ZodDefault<z.ZodString>;
|
|
8164
8236
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
8165
|
-
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
8166
8237
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8238
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
8167
8239
|
FrameId: z.ZodObject<{
|
|
8168
8240
|
name: z.ZodString;
|
|
8169
8241
|
path: z.ZodString;
|
|
@@ -8193,14 +8265,14 @@ export declare class Yy {
|
|
|
8193
8265
|
LayerId: null;
|
|
8194
8266
|
name?: string | undefined;
|
|
8195
8267
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
8196
|
-
resourceVersion?: "1.0" | undefined;
|
|
8197
8268
|
tags?: string[] | undefined;
|
|
8269
|
+
resourceVersion?: "1.0" | undefined;
|
|
8198
8270
|
}>>;
|
|
8199
8271
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8200
8272
|
name: z.ZodDefault<z.ZodString>;
|
|
8201
8273
|
resourceType: z.ZodDefault<z.ZodLiteral<"GMSpriteBitmap">>;
|
|
8202
|
-
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
8203
8274
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8275
|
+
resourceVersion: z.ZodDefault<z.ZodLiteral<"1.0">>;
|
|
8204
8276
|
FrameId: z.ZodObject<{
|
|
8205
8277
|
name: z.ZodString;
|
|
8206
8278
|
path: z.ZodString;
|
|
@@ -8245,8 +8317,8 @@ export declare class Yy {
|
|
|
8245
8317
|
};
|
|
8246
8318
|
name?: string | undefined;
|
|
8247
8319
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
8248
|
-
resourceVersion?: "1.0" | undefined;
|
|
8249
8320
|
tags?: string[] | undefined;
|
|
8321
|
+
resourceVersion?: "1.0" | undefined;
|
|
8250
8322
|
}>, "many">>;
|
|
8251
8323
|
parent: z.ZodOptional<z.ZodObject<{
|
|
8252
8324
|
name: z.ZodString;
|
|
@@ -8305,8 +8377,8 @@ export declare class Yy {
|
|
|
8305
8377
|
LayerId: null;
|
|
8306
8378
|
name?: string | undefined;
|
|
8307
8379
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
8308
|
-
resourceVersion?: "1.0" | undefined;
|
|
8309
8380
|
tags?: string[] | undefined;
|
|
8381
|
+
resourceVersion?: "1.0" | undefined;
|
|
8310
8382
|
} | undefined;
|
|
8311
8383
|
images?: {
|
|
8312
8384
|
FrameId: {
|
|
@@ -8319,8 +8391,8 @@ export declare class Yy {
|
|
|
8319
8391
|
};
|
|
8320
8392
|
name?: string | undefined;
|
|
8321
8393
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
8322
|
-
resourceVersion?: "1.0" | undefined;
|
|
8323
8394
|
tags?: string[] | undefined;
|
|
8395
|
+
resourceVersion?: "1.0" | undefined;
|
|
8324
8396
|
}[] | undefined;
|
|
8325
8397
|
parent?: {
|
|
8326
8398
|
path: string;
|
|
@@ -8634,11 +8706,11 @@ export declare class Yy {
|
|
|
8634
8706
|
type: import("./types/YySprite.js").SpriteType;
|
|
8635
8707
|
name: string;
|
|
8636
8708
|
resourceType: "GMSprite";
|
|
8637
|
-
resourceVersion: string;
|
|
8638
8709
|
parent: {
|
|
8639
8710
|
path: string;
|
|
8640
8711
|
name: string;
|
|
8641
8712
|
};
|
|
8713
|
+
resourceVersion: string;
|
|
8642
8714
|
gridX: number;
|
|
8643
8715
|
gridY: number;
|
|
8644
8716
|
layers: any[];
|
|
@@ -8769,13 +8841,13 @@ export declare class Yy {
|
|
|
8769
8841
|
}, {
|
|
8770
8842
|
name: string;
|
|
8771
8843
|
"%Name"?: string | undefined;
|
|
8772
|
-
resourceVersion?: string | undefined;
|
|
8773
8844
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
8774
8845
|
tags?: string[] | undefined;
|
|
8775
8846
|
parent?: {
|
|
8776
8847
|
path: string;
|
|
8777
8848
|
name: string;
|
|
8778
8849
|
} | undefined;
|
|
8850
|
+
resourceVersion?: string | undefined;
|
|
8779
8851
|
bboxMode?: import("./types/YySprite.js").SpriteBoundingBoxMode | undefined;
|
|
8780
8852
|
collisionKind?: import("./types/YySprite.js").SpriteCollisionKind | undefined;
|
|
8781
8853
|
type?: import("./types/YySprite.js").SpriteType | undefined;
|
|
@@ -8813,8 +8885,8 @@ export declare class Yy {
|
|
|
8813
8885
|
LayerId: null;
|
|
8814
8886
|
name?: string | undefined;
|
|
8815
8887
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
8816
|
-
resourceVersion?: "1.0" | undefined;
|
|
8817
8888
|
tags?: string[] | undefined;
|
|
8889
|
+
resourceVersion?: "1.0" | undefined;
|
|
8818
8890
|
} | undefined;
|
|
8819
8891
|
images?: {
|
|
8820
8892
|
FrameId: {
|
|
@@ -8827,8 +8899,8 @@ export declare class Yy {
|
|
|
8827
8899
|
};
|
|
8828
8900
|
name?: string | undefined;
|
|
8829
8901
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
8830
|
-
resourceVersion?: "1.0" | undefined;
|
|
8831
8902
|
tags?: string[] | undefined;
|
|
8903
|
+
resourceVersion?: "1.0" | undefined;
|
|
8832
8904
|
}[] | undefined;
|
|
8833
8905
|
parent?: {
|
|
8834
8906
|
path: string;
|
|
@@ -8844,11 +8916,11 @@ export declare class Yy {
|
|
|
8844
8916
|
type: import("./types/YySprite.js").SpriteType;
|
|
8845
8917
|
name: string;
|
|
8846
8918
|
resourceType: "GMSprite";
|
|
8847
|
-
resourceVersion: string;
|
|
8848
8919
|
parent: {
|
|
8849
8920
|
path: string;
|
|
8850
8921
|
name: string;
|
|
8851
8922
|
};
|
|
8923
|
+
resourceVersion: string;
|
|
8852
8924
|
gridX: number;
|
|
8853
8925
|
gridY: number;
|
|
8854
8926
|
layers: any[];
|
|
@@ -8979,13 +9051,13 @@ export declare class Yy {
|
|
|
8979
9051
|
}, {
|
|
8980
9052
|
name: string;
|
|
8981
9053
|
"%Name"?: string | undefined;
|
|
8982
|
-
resourceVersion?: string | undefined;
|
|
8983
9054
|
ConfigValues?: Record<string, Record<string, string>> | undefined;
|
|
8984
9055
|
tags?: string[] | undefined;
|
|
8985
9056
|
parent?: {
|
|
8986
9057
|
path: string;
|
|
8987
9058
|
name: string;
|
|
8988
9059
|
} | undefined;
|
|
9060
|
+
resourceVersion?: string | undefined;
|
|
8989
9061
|
bboxMode?: import("./types/YySprite.js").SpriteBoundingBoxMode | undefined;
|
|
8990
9062
|
collisionKind?: import("./types/YySprite.js").SpriteCollisionKind | undefined;
|
|
8991
9063
|
type?: import("./types/YySprite.js").SpriteType | undefined;
|
|
@@ -9023,8 +9095,8 @@ export declare class Yy {
|
|
|
9023
9095
|
LayerId: null;
|
|
9024
9096
|
name?: string | undefined;
|
|
9025
9097
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
9026
|
-
resourceVersion?: "1.0" | undefined;
|
|
9027
9098
|
tags?: string[] | undefined;
|
|
9099
|
+
resourceVersion?: "1.0" | undefined;
|
|
9028
9100
|
} | undefined;
|
|
9029
9101
|
images?: {
|
|
9030
9102
|
FrameId: {
|
|
@@ -9037,8 +9109,8 @@ export declare class Yy {
|
|
|
9037
9109
|
};
|
|
9038
9110
|
name?: string | undefined;
|
|
9039
9111
|
resourceType?: "GMSpriteBitmap" | undefined;
|
|
9040
|
-
resourceVersion?: "1.0" | undefined;
|
|
9041
9112
|
tags?: string[] | undefined;
|
|
9113
|
+
resourceVersion?: "1.0" | undefined;
|
|
9042
9114
|
}[] | undefined;
|
|
9043
9115
|
parent?: {
|
|
9044
9116
|
path: string;
|
|
@@ -9054,11 +9126,11 @@ export declare class Yy {
|
|
|
9054
9126
|
type: import("./types/YySprite.js").SpriteType;
|
|
9055
9127
|
name: string;
|
|
9056
9128
|
resourceType: "GMSprite";
|
|
9057
|
-
resourceVersion: string;
|
|
9058
9129
|
parent: {
|
|
9059
9130
|
path: string;
|
|
9060
9131
|
name: string;
|
|
9061
9132
|
};
|
|
9133
|
+
resourceVersion: string;
|
|
9062
9134
|
gridX: number;
|
|
9063
9135
|
gridY: number;
|
|
9064
9136
|
layers: any[];
|