Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
{
    "uid": "07DDB1A132032262",
    "isLoaded": true,
    "lastModificationTime": 1424023485604,
    "items": {
        "parentId": "162D231FKB332A48FCS9A94E205403CA352B",
        "name": "System",
        "type": "DataRecordView",
        "order": 6,
        "category": "system",
        "descriptor": {
            "name": "$$C1953650K4FD7A4268SB298E0BEFC554D88E",
            "attribute": "system",
            "sections": [
                {
                    "name": "$$P25",
                    "layout": {
                        "type": "dynamicGrid",
                        "fixedRowHeight": true
                    },
                    "items": [
                        {
                            "type": "GSLabel",
                            "text": "$$P43",
                            "group": "generalLabels",
                            "frame": [
                                0,
                                0,
                                120,
                                -1
                            ]
                        },
                        {
                            "type": "GSTextField",
                            "attribute": "gameTitle",
                            "frame": [
                                1,
                                0
                            ]
                        },
                        {
                            "type": "GSRadioButton",
                            "identifier": "predefinedResolution",
                            "text": "$$D2A8640754658347865832430F149F6F006D",
                            "defaultValue": true,
                            "value": 0,
                            "attribute": "resolutionType",
                            "delegates": [
                                {
                                    "identifiers": [
                                        "resolution",
                                        "ratio"
                                    ],
                                    "selector": "setEnabled:enabled:"
                                }
                            ],
                            "frame": [
                                2,
                                0,
                                150,
                                -1
                            ]
                        },
                        {
                            "type": "GSComboBox",
                            "identifier": "resolution",
                            "dataSource": [
                                {
                                    "name": "$$3847E37CK3DD4A470ES9FBFE96CEA4080A10",
                                    "alias": 240
                                },
                                {
                                    "name": "$$0B9356DEK448BA4A87S8494EC1920D7E8525",
                                    "alias": 480
                                },
                                {
                                    "name": "576p",
                                    "alias": 576
                                },
                                {
                                    "name": "640p",
                                    "alias": 640
                                },
                                {
                                    "name": "720p",
                                    "alias": 720
                                },
                                {
                                    "name": "960p",
                                    "alias": 960
                                },
                                {
                                    "name": "1080p",
                                    "alias": 1080
                                }
                            ],
                            "attribute": "resolution",
                            "refreshRootView": true,
                            "frame": [
                                3,
                                0
                            ]
                        },
                        {
                            "type": "GSComboBox",
                            "identifier": "ratio",
                            "dataSource": [
                                "$$E5241154K6290A4C72SBF45E3EDCD5CAE568",
                                "$$F0CF7261KE577A42ADS9C0DE16A25412FDC8",
                                "$$ED0C14C9K0871A4BA2S94E6E4E8A6E875990"
                            ],
                            "attribute": "aspectRatio",
                            "refreshRootView": true,
                            "frame": [
                                4,
                                0
                            ]
                        },
                        {
                            "type": "GSRadioButton",
                            "identifier": "customResolution",
                            "value": 1,
                            "attribute": "resolutionType",
                            "text": "$$4264A7E97E9093452D4A23D71FBEE3C3B293",
                            "delegates": [
                                {
                                    "identifiers": [
                                        "resolutionWidth",
                                        "resolutionHeight",
                                        "resolutionXLabel"
                                    ],
                                    "selector": "setEnabled:enabled:"
                                }
                            ],
                            "frame": [
                                5,
                                0,
                                150,
                                -1
                            ]
                        },
                        {
                            "type": "GSStepper",
                            "identifier": "resolutionWidth",
                            "minimum": 160,
                            "maximum": 5000,
                            "defaultValue": 640,
                            "attribute": "customResolutionWidth",
                            "frame": [
                                6,
                                0,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "identifier": "resolutionXLabel",
                            "text": "$$01881FE3K3F07A4D8AS950CEEEC91191933A",
                            "frame": [
                                7,
                                0,
                                10,
                                -1
                            ]
                        },
                        {
                            "type": "GSStepper",
                            "identifier": "resolutionHeight",
                            "minimum": 120,
                            "maximum": 5000,
                            "defaultValue": 480,
                            "attribute": "resolution",
                            "frame": [
                                8,
                                0,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$ABE2A68382D9A845B7383B67547FE4E7C7B0",
                            "frame": [
                                0,
                                1
                            ],
                            "group": "generalLabels"
                        },
                        {
                            "type": "GSPopupField",
                            "frame": [
                                1,
                                1
                            ],
                            "dialog": {
                                "uid": "0E620E08KED4CA4E7CS8514E5B2BF2657DA5"
                            },
                            "text": "return d.scene ? fmtDocument(d.scene.uid) : 'None';",
                            "attribute": "startInfo"
                        },
                        {
                            "type": "GSCheckBox",
                            "text": "$$F616558C36FDD34263680E7616613772EEC6",
                            "identifier": "introSceneLabel",
                            "frame": [
                                2,
                                1
                            ],
                            "defaultValue": false,
                            "enableItems": [
                                "introScene"
                            ],
                            "group": "generalLabels",
                            "attribute": "useIntroScene"
                        },
                        {
                            "type": "GSPopupField",
                            "identifier": "introScene",
                            "frame": [
                                3,
                                1
                            ],
                            "dialog": {
                                "uid": "0E620E08KED4CA4E7CS8514E5B2BF2657DA5"
                            },
                            "text": "return d.scene ? fmtDocument(d.scene.uid) : 'None';",
                            "attribute": "introInfo"
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$2CFDF9AD0775D346672B9E355264AD8032D7",
                            "frame": [
                                0,
                                2
                            ],
                            "group": "generalLabels"
                        },
                        {
                            "type": "GSStepper",
                            "defaultValue": 100,
                            "minimum": 1,
                            "maximum": 999999999,
                            "attribute": "saveSlotCount",
                            "frame": [
                                1,
                                2
                            ]
                        },
                        {
                            "type": "GSRadioButton",
                            "identifier": "gameDataWorkingDir",
                            "text": "$$E36D5C8E233D114A798A7CB3FEF527BF00D2",
                            "frame": [
                                2,
                                2
                            ],
                            "value": 0,
                            "defaultValue": true,
                            "group": "gameDataLabels",
                            "attribute": "gameDataPath"
                        },
                        {
                            "type": "GSRadioButton",
                            "identifier": "gameDataAppDataDir",
                            "text": "$$3341523F06B25140F91830A68328B0538F60",
                            "value": 1,
                            "frame": [
                                3,
                                2
                            ],
                            "defaultValue": false,
                            "group": "gameDataLabels",
                            "attribute": "gameDataPath"
                        },
                        {
                            "type": "GSRadioButton",
                            "identifier": "gameDataInternalStorage",
                            "text": "$$1302A9F115BC16453A68549103536DEFA50C",
                            "value": 2,
                            "frame": [
                                4,
                                2
                            ],
                            "defaultValue": false,
                            "group": "gameDataLabels",
                            "attribute": "gameDataPath"
                        }
                    ]
                },
                {
                    "name": "$$P136",
                    "layout": {
                        "type": "dynamicGrid"
                    },
                    "items": [
                        {
                            "type": "GSLabel",
                            "text": "$$F256ED2727B3D648290BC00697EB67CD8667",
                            "group": "soundLabels",
                            "frame": [
                                0,
                                0,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Music",
                            "resourceType": "audio",
                            "attribute": "titleMusic",
                            "frame": [
                                1,
                                0
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$C922080E7F0E7546AE5AFDD69408B9E7EC57",
                            "group": "soundLabels",
                            "frame": [
                                2,
                                0,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Music",
                            "resourceType": "audio",
                            "attribute": "languageMusic",
                            "frame": [
                                3,
                                0
                            ]
                        }
                    ]
                },
                {
                    "name": "$$P137",
                    "layout": {
                        "type": "dynamicGrid"
                    },
                    "items": [
                        {
                            "type": "GSLabel",
                            "text": "$$AFA5FE18KD42CA41EDS8977EA0B35936B35C",
                            "group": "soundLabels",
                            "frame": [
                                0,
                                2,
                                -1,
                                -1
                            ],
                            "location": {
                                "x": 0,
                                "y": 2
                            },
                            "size": {
                                "w": 180,
                                "h": -1
                            }
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "resourceType": "audio",
                            "attribute": "menuSelectSound",
                            "frame": [
                                1,
                                2
                            ],
                            "location": {
                                "x": 1,
                                "y": 2
                            },
                            "size": {
                                "w": -1,
                                "h": -1
                            }
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$3D0AF351KA65AA40DFS9314E8C5939857C4A",
                            "group": "soundLabels",
                            "frame": [
                                2,
                                2,
                                -1,
                                -1
                            ],
                            "location": {
                                "x": 0,
                                "y": 3
                            },
                            "size": {
                                "w": 180,
                                "h": -1
                            }
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "resourceType": "audio",
                            "attribute": "menuBuzzerSound",
                            "frame": [
                                3,
                                2
                            ],
                            "location": {
                                "x": 1,
                                "y": 3
                            },
                            "size": {
                                "w": -1,
                                "h": -1
                            }
                        },
                        {
                            "type": "GSLabel",
                            "group": "soundLabels",
                            "text": "$$673FCA6EK75DEA45DESB433E857A84717AFC",
                            "frame": [
                                0,
                                3,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "resourceType": "audio",
                            "attribute": "menuCancelSound",
                            "frame": [
                                1,
                                3
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$AB9FE1468A22C240858BA661FA75B4D78042",
                            "group": "soundLabels",
                            "frame": [
                                2,
                                3,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "resourceType": "audio",
                            "attribute": "menuLoadSound",
                            "frame": [
                                3,
                                3
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$01B9EB7647B8484DEA5B1397EDF511FAFAC7",
                            "group": "soundLabels",
                            "frame": [
                                0,
                                4,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "resourceType": "audio",
                            "attribute": "menuSaveSound",
                            "frame": [
                                1,
                                4
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$1795AD932F2B2243E2784CB8F9C06D807D62",
                            "group": "soundLabels",
                            "frame": [
                                2,
                                4,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "resourceType": "audio",
                            "attribute": "menuQuitSound",
                            "frame": [
                                3,
                                4
                            ]
                        }
                    ]
                },
                {
                    "name": "$$1FECB481KADF5A47CBS82C1E2761EBBBBA6A",
                    "layout": {
                        "type": "dynamicGrid",
                        "fixedRowHeight": true
                    },
                    "items": [
                        {
                            "type": "GSLabel",
                            "group": "soundLabels",
                            "text": "$$45D923E3K29FCA47CFSB75CEB2535681C5F3",
                            "frame": [
                                0,
                                0
                            ]
                        },
                        {
                            "type": "GSColorView",
                            "selectable": true,
                            "defaultValue": {
                                "red": 0,
                                "green": 0,
                                "blue": 0,
                                "alpha": 255
                            },
                            "attribute": "colors.0",
                            "frame": [
                                1,
                                0,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "group": "soundLabels",
                            "text": "$$FDDD2A4FKCAB0A457BS9F32EBDA6C7661C71",
                            "frame": [
                                2,
                                0
                            ]
                        },
                        {
                            "type": "GSColorView",
                            "selectable": true,
                            "defaultValue": {
                                "red": 0,
                                "green": 0,
                                "blue": 0,
                                "alpha": 255
                            },
                            "attribute": "colors.1",
                            "frame": [
                                3,
                                0,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "group": "soundLabels",
                            "text": "$$6C2E33D3K0D90A4BC3S826AE1729C3158DC6",
                            "frame": [
                                4,
                                0
                            ]
                        },
                        {
                            "type": "GSColorView",
                            "selectable": true,
                            "defaultValue": {
                                "red": 0,
                                "green": 0,
                                "blue": 0,
                                "alpha": 255
                            },
                            "attribute": "colors.2",
                            "frame": [
                                5,
                                0,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "group": "soundLabels",
                            "text": "$$AE6B367CK9742A4050SA317E079476A4A258",
                            "frame": [
                                6,
                                0
                            ]
                        },
                        {
                            "type": "GSColorView",
                            "selectable": true,
                            "defaultValue": {
                                "red": 0,
                                "green": 0,
                                "blue": 0,
                                "alpha": 255
                            },
                            "attribute": "colors.3",
                            "frame": [
                                7,
                                0,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$4172497DKF65AA4BCAS9116EE9CC53A473FA",
                            "group": "soundLabels",
                            "frame": [
                                0,
                                1
                            ]
                        },
                        {
                            "type": "GSColorView",
                            "selectable": true,
                            "defaultValue": {
                                "red": 0,
                                "green": 0,
                                "blue": 0,
                                "alpha": 255
                            },
                            "attribute": "colors.4",
                            "frame": [
                                1,
                                1,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "group": "soundLabels",
                            "text": "$$175E92B2KC88DA4AE9S9BE0EB4324FE9E473",
                            "frame": [
                                2,
                                1
                            ]
                        },
                        {
                            "type": "GSColorView",
                            "selectable": true,
                            "defaultValue": {
                                "red": 0,
                                "green": 0,
                                "blue": 0,
                                "alpha": 255
                            },
                            "attribute": "colors.5",
                            "frame": [
                                3,
                                1,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$A0CB0EA3KFC2AA48AAS84B9EF9BD24B0F58E",
                            "group": "soundLabels",
                            "frame": [
                                4,
                                1
                            ]
                        },
                        {
                            "type": "GSColorView",
                            "selectable": true,
                            "defaultValue": {
                                "red": 0,
                                "green": 0,
                                "blue": 0,
                                "alpha": 255
                            },
                            "attribute": "colors.6",
                            "frame": [
                                5,
                                1,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$D6938A9EKE4A5A4181SB650EC9909751134B",
                            "group": "soundLabels",
                            "frame": [
                                6,
                                1
                            ]
                        },
                        {
                            "type": "GSColorView",
                            "selectable": true,
                            "defaultValue": {
                                "red": 0,
                                "green": 0,
                                "blue": 0,
                                "alpha": 255
                            },
                            "attribute": "colors.7",
                            "frame": [
                                7,
                                1,
                                -1,
                                -1
                            ]
                        }
                    ]
                },
                {
                    "name": "$$P137",
                    "items": [
                        {
                            "type": "GSLabel",
                            "text": "$$2D248768486E064A7C5AD791F6FD2F5BC139",
                            "group": "soundLabels",
                            "frame": [
                                0,
                                0
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "attribute": "sounds.0",
                            "resourceType": "audio",
                            "frame": [
                                1,
                                0
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$0B22F84D2188764ADD3A6D684897CAD2574D",
                            "group": "soundLabels",
                            "frame": [
                                2,
                                0
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "attribute": "sounds.1",
                            "resourceType": "audio",
                            "frame": [
                                3,
                                0
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$61BDC2EA41E1704C77399857474575DA4ABB",
                            "group": "soundLabels",
                            "frame": [
                                4,
                                0
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "attribute": "sounds.2",
                            "resourceType": "audio",
                            "frame": [
                                5,
                                0
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$918F764366582649FB3A29C0F700C400A2D7",
                            "group": "soundLabels",
                            "frame": [
                                6,
                                0
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "attribute": "sounds.3",
                            "resourceType": "audio",
                            "frame": [
                                7,
                                0
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$7A2DCB1E7122C4433D9925427CDFEB8473D5",
                            "group": "soundLabels",
                            "frame": [
                                0,
                                1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "attribute": "sounds.4",
                            "resourceType": "audio",
                            "frame": [
                                1,
                                1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$EC84143B686FE44B6568CEE7F29E4A0E86F6",
                            "group": "soundLabels",
                            "frame": [
                                2,
                                1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "attribute": "sounds.5",
                            "resourceType": "audio",
                            "frame": [
                                3,
                                1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$173B2AC5473EA54CED599175DFBF7FA44D17",
                            "group": "soundLabels",
                            "frame": [
                                4,
                                1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "attribute": "sounds.6",
                            "resourceType": "audio",
                            "frame": [
                                5,
                                1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$0A5DA2269AE310436B6A18174D5F07B655D5",
                            "group": "soundLabels",
                            "frame": [
                                6,
                                1
                            ]
                        },
                        {
                            "type": "GSResourcePopupField",
                            "folder": "Audio/Sounds",
                            "attribute": "sounds.7",
                            "resourceType": "audio",
                            "frame": [
                                7,
                                1
                            ]
                        }
                    ]
                },
                {
                    "name": "$$5AB41BF042576846122B59445BBF64F9669C",
                    "layout": {
                        "type": "dynamicGrid",
                        "spacing": [
                            0,
                            0
                        ]
                    },
                    "items": [
                        {
                            "type": "GSTable",
                            "attribute": "objectPositions",
                            "identifier": "objectPositions",
                            "border": false,
                            "emptyItem": true,
                            "dialog": {
                                "uid": "2B481F868E61B04EBF8AC233D522D7F29B75"
                            },
                            "contextMenu": [
                                {
                                    "name": "$$99F20B8338E7C04A7D59AFA51B44784D2D0A",
                                    "selector": "addItemUsingDialog"
                                },
                                {
                                    "separator": true
                                },
                                {
                                    "name": "$$P49",
                                    "selector": "deleteItem:"
                                }
                            ],
                            "columns": [
                                {
                                    "identifier": "name",
                                    "attribute": "name",
                                    "text": "$$P55",
                                    "width": 200,
                                    "content": "return d.name"
                                },
                                {
                                    "identifier": "script",
                                    "attribute": "script",
                                    "text": "$$P79",
                                    "width": 50,
                                    "content": "return d.script ? d.script.replace(/\\n/gm, ' ') : ''"
                                }
                            ],
                            "frame": [
                                0,
                                0,
                                -1,
                                150
                            ]
                        }
                    ]
                },
                {
                    "name": "$$1F299EE86735F64BCD8A4C66C75C397AF499",
                    "layout": {
                        "type": "dynamicGrid",
                        "spacing": [
                            0,
                            0
                        ]
                    },
                    "items": [
                        {
                            "type": "GSTable",
                            "attribute": "textMacros",
                            "identifier": "textMacros",
                            "border": false,
                            "emptyItem": true,
                            "dialog": {
                                "uid": "A6772CBD3D456341786ADD644AED75480C52"
                            },
                            "contextMenu": [
                                {
                                    "name": "$$D7DA1C0C4F3A69483B68E983B7BC44B40DFB",
                                    "selector": "addItemUsingDialog"
                                },
                                {
                                    "separator": true
                                },
                                {
                                    "name": "$$P49",
                                    "selector": "deleteItem:"
                                }
                            ],
                            "columns": [
                                {
                                    "identifier": "name",
                                    "attribute": "name",
                                    "text": "$$P55",
                                    "width": 200,
                                    "content": "return d.name"
                                },
                                {
                                    "identifier": "content",
                                    "attribute": "content",
                                    "text": "$$C7E25F4EK5043A44ADSAFC4EFA0F895437DE",
                                    "width": 50,
                                    "content": "return d.content ? d.content.replace(/\\n/gm, ' ') : ''"
                                }
                            ],
                            "frame": [
                                0,
                                0,
                                -1,
                                150
                            ]
                        }
                    ]
                },
                {
                    "name": "$$A70AF6111BB237404B586867CCCE8D61C7A2",
                    "items": [
                        {
                            "type": "GSLabel",
                            "text": "$$EA77CE69221176494C49E2282ECC794FFD0A",
                            "group": "soundLabels",
                            "frame": [
                                0,
                                0
                            ]
                        },
                        {
                            "type": "GSTextField",
                            "attribute": "textInputPages.0",
                            "localizable": true,
                            "defaultValue": "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
                            "frame": [
                                1,
                                0
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$393F5FF34B97D443661918341B97DEA53810",
                            "group": "soundLabels",
                            "frame": [
                                2,
                                0
                            ]
                        },
                        {
                            "type": "GSTextField",
                            "attribute": "textInputPages.1",
                            "localizable": true,
                            "defaultValue": "abcdefghijklmnopqrstuvwxyz",
                            "frame": [
                                3,
                                0
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$142F1D853C7014427A2B6466845CB8EA56EB",
                            "defaultValue": "",
                            "group": "soundLabels",
                            "frame": [
                                0,
                                1
                            ]
                        },
                        {
                            "type": "GSTextField",
                            "attribute": "textInputPages.2",
                            "localizable": true,
                            "defaultValue": "0123456789",
                            "frame": [
                                1,
                                1
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$F53538A53052214A0279D0E4B56018356157",
                            "group": "soundLabels",
                            "frame": [
                                2,
                                1
                            ]
                        },
                        {
                            "type": "GSTextField",
                            "attribute": "textInputPages.3",
                            "localizable": true,
                            "frame": [
                                3,
                                1
                            ]
                        }
                    ]
                },
                {
                    "name": "$$383D360CKC55EA44A5SA14CE03ED5E38C028",
                    "layout": {
                        "type": "dynamicGrid"
                    },
                    "items": [
                        {
                            "type": "GSLabel",
                            "text": "$$D363EE6571A9234E5D58600747E5C9BFEDBC",
                            "alignment": "center",
                            "frame": [
                                0,
                                0,
                                64,
                                -1
                            ]
                        },
                        {
                            "type": "GSImageView",
                            "folder": "Graphics/Pictures",
                            "centerImage": true,
                            "attribute": "cursor",
                            "frame": [
                                0,
                                1,
                                64,
                                64
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "text": "$$D88DE7125ABD244CE69AFBE59DFE7B0FCCC9",
                            "alignment": "center",
                            "group": "cursorLabel",
                            "frame": [
                                1,
                                0,
                                -1,
                                -1
                            ]
                        },
                        {
                            "type": "GSContainer",
                            "frame": [
                                1,
                                1
                            ],
                            "items": [
                                {
                                    "type": "GSStepper",
                                    "attribute": "cursor.hx",
                                    "frame": [
                                        0,
                                        0,
                                        100,
                                        -1
                                    ]
                                },
                                {
                                    "type": "GSLabel",
                                    "text": "X",
                                    "group": "cursorXLabel",
                                    "frame": [
                                        1,
                                        0
                                    ]
                                },
                                {
                                    "type": "GSSpacer",
                                    "frame": [
                                        0,
                                        1,
                                        0,
                                        3
                                    ]
                                },
                                {
                                    "type": "GSStepper",
                                    "attribute": "cursor.hy",
                                    "frame": [
                                        0,
                                        2,
                                        100,
                                        -1
                                    ]
                                },
                                {
                                    "type": "GSLabel",
                                    "text": "Y",
                                    "group": "cursorXLabel",
                                    "frame": [
                                        1,
                                        2
                                    ]
                                }
                            ]
                        },
                        {
                            "type": "GSLabel",
                            "alignment": "center",
                            "text": "$$13E39C3AK5F12A4AD5SA5FEE461FA500A62C",
                            "frame": [
                                0,
                                2
                            ],
                            "sizeFormula": "return { w: GS.GAME.resolution().width / 4, h: -1 }"
                        },
                        {
                            "type": "GSImageView",
                            "folder": "Graphics/Pictures",
                            "scaleImageToFit": true,
                            "attribute": "titleScreen",
                            "frame": [
                                0,
                                3
                            ],
                            "sizeFormula": "return { w: GS.GAME.resolution().width / 4, h: GS.GAME.resolution().height / 4 }"
                        },
                        {
                            "type": "GSLabel",
                            "alignment": "center",
                            "text": "$$06CC218B5329054AF30B18D878849CB84D7E",
                            "frame": [
                                1,
                                2,
                                426.75,
                                -1
                            ],
                            "sizeFormula": "return { w: GS.GAME.resolution().width / 4, h: -1 }"
                        },
                        {
                            "type": "GSImageView",
                            "folder": "Graphics/Pictures",
                            "scaleImageToFit": true,
                            "attribute": "languageScreen",
                            "frame": [
                                1,
                                3
                            ],
                            "sizeFormula": "return { w: GS.GAME.resolution().width / 4, h: GS.GAME.resolution().height / 4 }"
                        },
                        {
                            "type": "GSLabel",
                            "alignment": "center",
                            "text": "$$5CC7B3824850F8433169D2D3056031C4E46D",
                            "frame": [
                                0,
                                4
                            ],
                            "sizeFormula": "return { w: GS.GAME.resolution().width / 4, h: -1 }"
                        },
                        {
                            "type": "GSImageView",
                            "folder": "Graphics/Pictures",
                            "scaleImageToFit": true,
                            "attribute": "menuBackground",
                            "frame": [
                                0,
                                5
                            ],
                            "sizeFormula": "return { w: GS.GAME.resolution().width / 4, h: GS.GAME.resolution().height / 4 }"
                        }
                    ]
                }
            ]
        },
        "rawContent": "{\n    \"parentId\": \"162D231FKB332A48FCS9A94E205403CA352B\",\n\"name\": \"System\",\n    \"type\": \"DataRecordView\",\n    \"order\": 6,\n    \"category\": \"system\",\n    \"descriptor\": {\n        \"name\": \"$$C1953650K4FD7A4268SB298E0BEFC554D88E\",\n        \"attribute\": \"system\",\n        \"sections\": [\n            {\n                \"name\": \"$$P25\",\n                \"layout\": {\n                    \"type\": \"dynamicGrid\",\n                    \"fixedRowHeight\": true\n                },\n                \"items\": [\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$P43\",\n                        \"group\": \"generalLabels\",\n                        \"frame\": [\n                            0,\n                            0,\n                            120,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSTextField\",\n                        \"attribute\": \"gameTitle\",\n                        \"frame\": [\n                            1,\n                            0\n                        ]\n                    },\n                    {\n                        \"type\": \"GSRadioButton\",\n                        \"identifier\": \"predefinedResolution\",\n                        \"text\": \"$$D2A8640754658347865832430F149F6F006D\",\n                        \"defaultValue\": true,\n                        \"value\": 0,\n                        \"attribute\": \"resolutionType\",\n                        \"delegates\": [{ \"identifiers\": [\"resolution\", \"ratio\"], \"selector\": \"setEnabled:enabled:\" }],\n                        \"frame\": [\n                            2,\n                            0,\n                            150,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSComboBox\",\n                        \"identifier\": \"resolution\",\n                        \"dataSource\": [\n                            { \"name\": \"$$3847E37CK3DD4A470ES9FBFE96CEA4080A10\", \"alias\": 240 },\n                            { \"name\": \"$$0B9356DEK448BA4A87S8494EC1920D7E8525\", \"alias\": 480 },\n                            { \"name\": \"576p\", \"alias\": 576 },\n                            { \"name\": \"640p\", \"alias\": 640 },\n                            { \"name\": \"720p\", \"alias\": 720 },\n                            { \"name\": \"960p\", \"alias\": 960 },\n                            { \"name\": \"1080p\", \"alias\": 1080 }\n                        ],\n                        \"attribute\": \"resolution\",\n                        \"refreshRootView\": true,\n                        \"frame\": [\n                            3,\n                            0\n                        ]\n                    },\n                    {\n                        \"type\": \"GSComboBox\",\n                        \"identifier\": \"ratio\",\n                        \"dataSource\": [\n                            \"$$E5241154K6290A4C72SBF45E3EDCD5CAE568\",\n                            \"$$F0CF7261KE577A42ADS9C0DE16A25412FDC8\",\n                            \"$$ED0C14C9K0871A4BA2S94E6E4E8A6E875990\"\n                        ],\n                        \n                        \"attribute\": \"aspectRatio\",\n                        \"refreshRootView\": true,\n                        \"frame\": [\n                            4,\n                            0\n                        ]\n                    },\n                    {\n                        \"type\": \"GSRadioButton\",\n                        \"identifier\": \"customResolution\",\n                        \"value\": 1,\n                        \"attribute\": \"resolutionType\",\n                        \"text\": \"$$4264A7E97E9093452D4A23D71FBEE3C3B293\",\n                        \"delegates\": [{ \"identifiers\": [\"resolutionWidth\", \"resolutionHeight\", \"resolutionXLabel\"], \"selector\": \"setEnabled:enabled:\" }],\n                        \"frame\": [\n                            5,\n                            0,\n                            150,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSStepper\",\n                        \"identifier\": \"resolutionWidth\",\n                        \"minimum\": 160,\n                        \"maximum\": 5000,\n                        \"defaultValue\": 640,\n                        \"attribute\": \"customResolutionWidth\",\n                        \"frame\": [\n                            6,\n                            0,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"identifier\": \"resolutionXLabel\",\n                        \"text\": \"$$01881FE3K3F07A4D8AS950CEEEC91191933A\",\n                        \"frame\": [\n                            7,\n                            0,\n                            10,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSStepper\",\n                        \"identifier\": \"resolutionHeight\",\n                        \"minimum\": 120,\n                        \"maximum\": 5000,\n                        \"defaultValue\": 480,\n                        \"attribute\": \"resolution\",\n                        \"frame\": [\n                            8,\n                            0,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$ABE2A68382D9A845B7383B67547FE4E7C7B0\",\n                        \"frame\": [0, 1],\n                        \"group\": \"generalLabels\"\n                    },\n                    {\n                        \"type\": \"GSPopupField\",\n                        \"frame\": [1, 1],\n                        \"dialog\": { \"uid\": \"0E620E08KED4CA4E7CS8514E5B2BF2657DA5\" },\n                        \"text\": \"return d.scene ? fmtDocument(d.scene.uid) : 'None';\",\n                        \"attribute\": \"startInfo\"\n                    },\n                    {\n                        \"type\": \"GSCheckBox\",\n                        \"text\": \"$$F616558C36FDD34263680E7616613772EEC6\",\n                        \"identifier\": \"introSceneLabel\",\n                        \"frame\": [2, 1],\n                        \"defaultValue\": false,\n                        \"enableItems\": [\"introScene\"],\n                        \"group\": \"generalLabels\",\n                        \"attribute\": \"useIntroScene\"\n                    },\n                    {\n                        \"type\": \"GSPopupField\",\n                        \"identifier\": \"introScene\",\n                        \"frame\": [3, 1],\n                        \"dialog\": { \"uid\": \"0E620E08KED4CA4E7CS8514E5B2BF2657DA5\" },\n                        \"text\": \"return d.scene ? fmtDocument(d.scene.uid) : 'None';\",\n                        \"attribute\": \"introInfo\"\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$2CFDF9AD0775D346672B9E355264AD8032D7\",\n                        \"frame\": [0, 2],\n                        \"group\": \"generalLabels\"\n                    },\n                    {\n                        \"type\": \"GSStepper\",\n                        \"defaultValue\": 100,\n                        \"minimum\": 1,\n                        \"maximum\": GS.CONST.MAX_NUMBER_VALUE,\n                        \"attribute\": \"saveSlotCount\",\n                        \"frame\": [1, 2]\n                    },\n                    {\n                        \"type\": \"GSRadioButton\",\n                        \"identifier\": \"gameDataWorkingDir\",\n                        \"text\": \"$$E36D5C8E233D114A798A7CB3FEF527BF00D2\",\n                        \"frame\": [2, 2],\n                        \"value\": 0,\n                        \"defaultValue\": true,\n                        \"group\": \"gameDataLabels\",\n                        \"attribute\": \"gameDataPath\"\n                    },\n                    {\n                        \"type\": \"GSRadioButton\",\n                        \"identifier\": \"gameDataAppDataDir\",\n                        \"text\": \"$$3341523F06B25140F91830A68328B0538F60\",\n                        \"value\": 1,\n                        \"frame\": [3, 2],\n                        \"defaultValue\": false,\n                        \"group\": \"gameDataLabels\",\n                        \"attribute\": \"gameDataPath\"\n                    },\n                    {\n                        \"type\": \"GSRadioButton\",\n                        \"identifier\": \"gameDataInternalStorage\",\n                        \"text\": \"$$1302A9F115BC16453A68549103536DEFA50C\",\n                        \"value\": 2,\n                        \"frame\": [4, 2],\n                        \"defaultValue\": false,\n                        \"group\": \"gameDataLabels\",\n                        \"attribute\": \"gameDataPath\"\n                    }\n                ]\n            },\n            {\n                \"name\": \"$$P136\",\n                \"layout\": {\n                    \"type\": \"dynamicGrid\"\n                },\n                \"items\": [\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$F256ED2727B3D648290BC00697EB67CD8667\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            0,\n                            0,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Music\",\n                        \"resourceType\": \"audio\",\n                        \"attribute\": \"titleMusic\",\n                        \"frame\": [\n                            1,\n                            0\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$C922080E7F0E7546AE5AFDD69408B9E7EC57\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            2,\n                            0,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Music\",\n                        \"resourceType\": \"audio\",\n                        \"attribute\": \"languageMusic\",\n                        \"frame\": [\n                            3,\n                            0\n                        ]\n                    }\n                ]\n            },\n            {\n                \"name\": \"$$P137\",\n                \"layout\": {\n                    \"type\": \"dynamicGrid\"\n                },\n                \"items\": [\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$AFA5FE18KD42CA41EDS8977EA0B35936B35C\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            0,\n                            2,\n                            -1,\n                            -1\n                        ],\n                        \"location\": {\n                            \"x\": 0,\n                            \"y\": 2\n                        },\n                        \"size\": {\n                            \"w\": 180,\n                            \"h\": -1\n                        }\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"resourceType\": \"audio\",\n                        \"attribute\": \"menuSelectSound\",\n                        \"frame\": [\n                            1,\n                            2\n                        ],\n                        \"location\": {\n                            \"x\": 1,\n                            \"y\": 2\n                        },\n                        \"size\": {\n                            \"w\": -1,\n                            \"h\": -1\n                        }\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$3D0AF351KA65AA40DFS9314E8C5939857C4A\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            2,\n                            2,\n                            -1,\n                            -1\n                        ],\n                        \"location\": {\n                            \"x\": 0,\n                            \"y\": 3\n                        },\n                        \"size\": {\n                            \"w\": 180,\n                            \"h\": -1\n                        }\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"resourceType\": \"audio\",\n                        \"attribute\": \"menuBuzzerSound\",\n                        \"frame\": [\n                            3,\n                            2\n                        ],\n                        \"location\": {\n                            \"x\": 1,\n                            \"y\": 3\n                        },\n                        \"size\": {\n                            \"w\": -1,\n                            \"h\": -1\n                        }\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"group\": \"soundLabels\",\n                        \"text\": \"$$673FCA6EK75DEA45DESB433E857A84717AFC\",\n                        \"frame\": [\n                            0,\n                            3,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"resourceType\": \"audio\",\n                        \"attribute\": \"menuCancelSound\",\n                        \"frame\": [\n                            1,\n                            3\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$AB9FE1468A22C240858BA661FA75B4D78042\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            2,\n                            3,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"resourceType\": \"audio\",\n                        \"attribute\": \"menuLoadSound\",\n                        \"frame\": [\n                            3,\n                            3\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$01B9EB7647B8484DEA5B1397EDF511FAFAC7\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            0,\n                            4,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"resourceType\": \"audio\",\n                        \"attribute\": \"menuSaveSound\",\n                        \"frame\": [\n                            1,\n                            4\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$1795AD932F2B2243E2784CB8F9C06D807D62\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            2,\n                            4,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"resourceType\": \"audio\",\n                        \"attribute\": \"menuQuitSound\",\n                        \"frame\": [\n                            3,\n                            4\n                        ]\n                    }\n                ]\n            },\n            {\n                \"name\": \"$$1FECB481KADF5A47CBS82C1E2761EBBBBA6A\",\n                \"layout\": {\n                    \"type\": \"dynamicGrid\",\n                    \"fixedRowHeight\": true\n                },\n                \"items\": [\n                    {\n                        \"type\": \"GSLabel\",\n                        \"group\": \"soundLabels\",\n                        \"text\": \"$$45D923E3K29FCA47CFSB75CEB2535681C5F3\",\n                        \"frame\": [\n                            0,\n                            0\n                        ]\n                    },\n                    {\n                        \"type\": \"GSColorView\",\n                        \"selectable\": true,\n                        \"defaultValue\": {\n                            \"red\": 0,\n                            \"green\": 0,\n                            \"blue\": 0,\n                            \"alpha\": 255\n                        },\n                        \"attribute\": \"colors.0\",\n                        \"frame\": [\n                            1,\n                            0,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"group\": \"soundLabels\",\n                        \"text\": \"$$FDDD2A4FKCAB0A457BS9F32EBDA6C7661C71\",\n                        \"frame\": [\n                            2,\n                            0\n                        ]\n                    },\n                    {\n                        \"type\": \"GSColorView\",\n                        \"selectable\": true,\n                        \"defaultValue\": {\n                            \"red\": 0,\n                            \"green\": 0,\n                            \"blue\": 0,\n                            \"alpha\": 255\n                        },\n                        \"attribute\": \"colors.1\",\n                        \"frame\": [\n                            3,\n                            0,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"group\": \"soundLabels\",\n                        \"text\": \"$$6C2E33D3K0D90A4BC3S826AE1729C3158DC6\",\n                        \"frame\": [\n                            4,\n                            0\n                        ]\n                    },\n                    {\n                        \"type\": \"GSColorView\",\n                        \"selectable\": true,\n                        \"defaultValue\": {\n                            \"red\": 0,\n                            \"green\": 0,\n                            \"blue\": 0,\n                            \"alpha\": 255\n                        },\n                        \"attribute\": \"colors.2\",\n                        \"frame\": [\n                            5,\n                            0,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"group\": \"soundLabels\",\n                        \"text\": \"$$AE6B367CK9742A4050SA317E079476A4A258\",\n                        \"frame\": [\n                            6,\n                            0\n                        ]\n                    },\n                    {\n                        \"type\": \"GSColorView\",\n                        \"selectable\": true,\n                        \"defaultValue\": {\n                            \"red\": 0,\n                            \"green\": 0,\n                            \"blue\": 0,\n                            \"alpha\": 255\n                        },\n                        \"attribute\": \"colors.3\",\n                        \"frame\": [\n                            7,\n                            0,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$4172497DKF65AA4BCAS9116EE9CC53A473FA\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            0,\n                            1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSColorView\",\n                        \"selectable\": true,\n                        \"defaultValue\": {\n                            \"red\": 0,\n                            \"green\": 0,\n                            \"blue\": 0,\n                            \"alpha\": 255\n                        },\n                        \"attribute\": \"colors.4\",\n                        \"frame\": [\n                            1,\n                            1,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"group\": \"soundLabels\",\n                        \"text\": \"$$175E92B2KC88DA4AE9S9BE0EB4324FE9E473\",\n                        \"frame\": [\n                            2,\n                            1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSColorView\",\n                        \"selectable\": true,\n                        \"defaultValue\": {\n                            \"red\": 0,\n                            \"green\": 0,\n                            \"blue\": 0,\n                            \"alpha\": 255\n                        },\n                        \"attribute\": \"colors.5\",\n                        \"frame\": [\n                            3,\n                            1,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$A0CB0EA3KFC2AA48AAS84B9EF9BD24B0F58E\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            4,\n                            1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSColorView\",\n                        \"selectable\": true,\n                        \"defaultValue\": {\n                            \"red\": 0,\n                            \"green\": 0,\n                            \"blue\": 0,\n                            \"alpha\": 255\n                        },\n                        \"attribute\": \"colors.6\",\n                        \"frame\": [\n                            5,\n                            1,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$D6938A9EKE4A5A4181SB650EC9909751134B\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [\n                            6,\n                            1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSColorView\",\n                        \"selectable\": true,\n                        \"defaultValue\": {\n                            \"red\": 0,\n                            \"green\": 0,\n                            \"blue\": 0,\n                            \"alpha\": 255\n                        },\n                        \"attribute\": \"colors.7\",\n                        \"frame\": [\n                            7,\n                            1,\n                            -1,\n                            -1\n                        ]\n                    }\n                ]\n            },\n            {\n                \"name\": \"$$P137\",\n                \"items\": [\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$2D248768486E064A7C5AD791F6FD2F5BC139\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [0, 0]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"attribute\": \"sounds.0\",\n                        \"resourceType\": \"audio\",\n                        \"frame\": [1, 0]\n                        \n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$0B22F84D2188764ADD3A6D684897CAD2574D\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [2, 0]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"attribute\": \"sounds.1\",\n                        \"resourceType\": \"audio\",\n                        \"frame\": [3, 0]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$61BDC2EA41E1704C77399857474575DA4ABB\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [4, 0]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"attribute\": \"sounds.2\",\n                        \"resourceType\": \"audio\",\n                        \"frame\": [5, 0]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$918F764366582649FB3A29C0F700C400A2D7\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [6, 0]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"attribute\": \"sounds.3\",\n                        \"resourceType\": \"audio\",\n                        \"frame\": [7, 0]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$7A2DCB1E7122C4433D9925427CDFEB8473D5\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [0, 1]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"attribute\": \"sounds.4\",\n                        \"resourceType\": \"audio\",\n                        \"frame\": [1, 1]\n                        \n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$EC84143B686FE44B6568CEE7F29E4A0E86F6\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [2, 1]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"attribute\": \"sounds.5\",\n                        \"resourceType\": \"audio\",\n                        \"frame\": [3, 1]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$173B2AC5473EA54CED599175DFBF7FA44D17\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [4, 1]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"attribute\": \"sounds.6\",\n                        \"resourceType\": \"audio\",\n                        \"frame\": [5, 1]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$0A5DA2269AE310436B6A18174D5F07B655D5\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [6, 1]\n                    },\n                    {\n                        \"type\": \"GSResourcePopupField\",\n                        \"folder\": \"Audio/Sounds\",\n                        \"attribute\": \"sounds.7\",\n                        \"resourceType\": \"audio\",\n                        \"frame\": [7, 1]\n                    }\n                ]\n            },\n            {\n                \"name\": \"$$5AB41BF042576846122B59445BBF64F9669C\",\n                \"layout\": { \"type\": \"dynamicGrid\", \"spacing\": [0, 0] },\n                \"items\": [\n                    {\n                        \"type\": \"GSTable\",\n                        \"attribute\": \"objectPositions\",\n                        \"identifier\": \"objectPositions\",\n                        \"border\": false,\n                        \"emptyItem\": true,\n                        \"dialog\": { \"uid\": \"2B481F868E61B04EBF8AC233D522D7F29B75\" },\n                        \"contextMenu\": [\n                            {\n                                \"name\": \"$$99F20B8338E7C04A7D59AFA51B44784D2D0A\", \"selector\": \"addItemUsingDialog\"\n                            },\n                            {\n                                \"separator\": true\n                            },\n                            {\n                                \"name\": \"$$P49\", \"selector\": \"deleteItem:\" \n                            }\n                        ],\n                        \"columns\": [\n                            {\n                                \"identifier\": \"name\",\n                                \"attribute\": \"name\",\n                                \"text\": \"$$P55\",\n                                \"width\": 200,\n                                \"content\": \"return d.name\"\n                            },\n                            {\n                                \"identifier\": \"script\",\n                                \"attribute\": \"script\",\n                                \"text\": \"$$P79\",\n                                \"width\": 50,\n                                \"content\": \"return d.script ? d.script.replace(/\\\\n/gm, ' ') : ''\"\n                            }\n                        ],\n                        \"frame\": [0, 0, -1, 150]\n                    }\n                ]\n            },\n            {\n                \"name\": \"$$1F299EE86735F64BCD8A4C66C75C397AF499\",\n                \"layout\": { \"type\": \"dynamicGrid\", \"spacing\": [0, 0] },\n                \"items\": [\n                    {\n                        \"type\": \"GSTable\",\n                        \"attribute\": \"textMacros\",\n                        \"identifier\": \"textMacros\",\n                        \"border\": false,\n                        \"emptyItem\": true,\n                        \"dialog\": { \"uid\": \"A6772CBD3D456341786ADD644AED75480C52\" },\n                        \"contextMenu\": [\n                            {\n                                \"name\": \"$$D7DA1C0C4F3A69483B68E983B7BC44B40DFB\", \"selector\": \"addItemUsingDialog\"\n                            },\n                            {\n                                \"separator\": true\n                            },\n                            {\n                                \"name\": \"$$P49\", \"selector\": \"deleteItem:\" \n                            }\n                        ],\n                        \"columns\": [\n                            {\n                                \"identifier\": \"name\",\n                                \"attribute\": \"name\",\n                                \"text\": \"$$P55\",\n                                \"width\": 200,\n                                \"content\": \"return d.name\"\n                            },\n                            {\n                                \"identifier\": \"content\",\n                                \"attribute\": \"content\",\n                                \"text\": \"$$C7E25F4EK5043A44ADSAFC4EFA0F895437DE\",\n                                \"width\": 50,\n                                \"content\": \"return d.content ? d.content.replace(/\\\\n/gm, ' ') : ''\"\n                            }\n                        ],\n                        \"frame\": [0, 0, -1, 150]\n                    }\n                ]\n            },\n            {\n                \"name\": \"$$A70AF6111BB237404B586867CCCE8D61C7A2\",\n                \"items\": [\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$EA77CE69221176494C49E2282ECC794FFD0A\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [0, 0]\n                    },\n                    {\n                        \"type\": \"GSTextField\",\n                        \"attribute\": \"textInputPages.0\",\n                        \"localizable\": true,\n                        \"defaultValue\": \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\",\n                        \"frame\": [1, 0]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$393F5FF34B97D443661918341B97DEA53810\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [2, 0]\n                    },\n                    {\n                        \"type\": \"GSTextField\",\n                        \"attribute\": \"textInputPages.1\",\n                        \"localizable\": true,\n                        \"defaultValue\": \"abcdefghijklmnopqrstuvwxyz\",\n                        \"frame\": [3, 0]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$142F1D853C7014427A2B6466845CB8EA56EB\",\n                        \"defaultValue\": \"\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [0, 1]\n                    },\n                    {\n                        \"type\": \"GSTextField\",\n                        \"attribute\": \"textInputPages.2\",\n                        \"localizable\": true,\n                        \"defaultValue\": \"0123456789\",\n                        \"frame\": [1, 1]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$F53538A53052214A0279D0E4B56018356157\",\n                        \"group\": \"soundLabels\",\n                        \"frame\": [2, 1]\n                    },\n                    {\n                        \"type\": \"GSTextField\",\n                        \"attribute\": \"textInputPages.3\",\n                        \"localizable\": true,\n                        \"frame\": [3, 1]\n                    }\n                ]\n            },\n            {\n                \"name\": \"$$383D360CKC55EA44A5SA14CE03ED5E38C028\",\n                \"layout\": {\n                    \"type\": \"dynamicGrid\"\n                },\n                \"items\": [\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$D363EE6571A9234E5D58600747E5C9BFEDBC\",\n                        \"alignment\": \"center\",\n                        \"frame\": [\n                            0,\n                            0,\n                            64,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSImageView\",\n                        \"folder\": \"Graphics/Pictures\",\n                        \"centerImage\": true,\n                        \"attribute\": \"cursor\",\n                        \"frame\": [\n                            0,\n                            1, 64, 64\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"text\": \"$$D88DE7125ABD244CE69AFBE59DFE7B0FCCC9\",\n                        \"alignment\": \"center\",\n                        \"group\": \"cursorLabel\",\n                        \"frame\": [\n                            1,\n                            0,\n                            -1,\n                            -1\n                        ]\n                    },\n                    {\n                        \"type\": \"GSContainer\",\n                        \"frame\": [1, 1],\n                        \"items\": [\n                            {\n                                \"type\": \"GSStepper\",\n                                \"attribute\": \"cursor.hx\",\n                                \"frame\": [0 , 0, 100, -1]\n                            },\n                            {\n                                \"type\": \"GSLabel\",\n                                \"text\": \"X\",\n                                \"group\": \"cursorXLabel\",\n                                \"frame\": [1, 0]\n                            },\n                            {\n                                \"type\": \"GSSpacer\",\n                                \"frame\": [0, 1, 0, 3]\n                            },\n                            {\n                                \"type\": \"GSStepper\",\n                                \"attribute\": \"cursor.hy\",\n                                \"frame\": [0 , 2, 100, -1]\n                            },\n                            {\n                                \"type\": \"GSLabel\",\n                                \"text\": \"Y\",\n                                \"group\": \"cursorXLabel\",\n                                \"frame\": [1, 2]\n                            }\n                        ]\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"alignment\": \"center\",\n                        \"text\": \"$$13E39C3AK5F12A4AD5SA5FEE461FA500A62C\",\n                        \"frame\": [\n                            0,\n                            2\n                        ],\n                        \"sizeFormula\": \"return { w: GS.GAME.resolution().width / 4, h: -1 }\"\n                    },\n                    {\n                        \"type\": \"GSImageView\",\n                        \"folder\": \"Graphics/Pictures\",\n                        \"scaleImageToFit\": true,\n                        \"attribute\": \"titleScreen\",\n                        \"frame\": [\n                            0,\n                            3\n                        ],\n                        \"sizeFormula\": \"return { w: GS.GAME.resolution().width / 4, h: GS.GAME.resolution().height / 4 }\"\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"alignment\": \"center\",\n                        \"text\": \"$$06CC218B5329054AF30B18D878849CB84D7E\",\n                        \"frame\": [\n                            1,\n                            2,\n                            GS.GAME.resolution().width / 4,\n                            -1\n                        ],\n                        \"sizeFormula\": \"return { w: GS.GAME.resolution().width / 4, h: -1 }\"\n                    },\n                    {\n                        \"type\": \"GSImageView\",\n                        \"folder\": \"Graphics/Pictures\",\n                        \"scaleImageToFit\": true,\n                        \"attribute\": \"languageScreen\",\n                        \"frame\": [\n                            1,\n                            3\n                        ],\n                        \"sizeFormula\": \"return { w: GS.GAME.resolution().width / 4, h: GS.GAME.resolution().height / 4 }\"\n                    },\n                    {\n                        \"type\": \"GSLabel\",\n                        \"alignment\": \"center\",\n                        \"text\": \"$$5CC7B3824850F8433169D2D3056031C4E46D\",\n                        \"frame\": [\n                            0,\n                            4\n                        ],\n                        \"sizeFormula\": \"return { w: GS.GAME.resolution().width / 4, h: -1 }\"\n                    },\n                    {\n                        \"type\": \"GSImageView\",\n                        \"folder\": \"Graphics/Pictures\",\n                        \"scaleImageToFit\": true,\n                        \"attribute\": \"menuBackground\",\n                        \"frame\": [\n                            0,\n                            5\n                        ],\n                        \"sizeFormula\": \"return { w: GS.GAME.resolution().width / 4, h: GS.GAME.resolution().height / 4 }\"\n                    }\n                ]\n            }\n        ]\n    }\n}"
    },
    "summary": [
        "name",
        "type"
    ]
}

Commits for Nextrek/s2s/data/07DDB1A132032262.json

Diff revisions: vs.
Revision Author Commited Message
1084 MOliva picture MOliva Fri 11 May, 2018 12:41:55 +0000