You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Pattern width & height. Should only be 1,3,5 or 7. **/
@@ -1065,6 +1082,7 @@ typedef EntityDefJson = {
1065
1082
varidentifier:String;
1066
1083
1067
1084
/** Unique Int identifier **/
1085
+
@uidRoot("entity")
1068
1086
varuid:Int;
1069
1087
1070
1088
/** User defined documentation for this element to provide help/tips to level designers. **/
@@ -1232,6 +1250,7 @@ typedef FieldDefJson = {
1232
1250
vardoc:Null<String>;
1233
1251
1234
1252
/** Unique Int identifier **/
1253
+
@uidRoot("field")
1235
1254
varuid:Int;
1236
1255
1237
1256
/**
@@ -1339,6 +1358,7 @@ typedef FieldDefJson = {
1339
1358
1340
1359
@internal
1341
1360
@added("1.3.0")
1361
+
@uidRef("entity")
1342
1362
varallowedRefsEntityUid:Null<Int>;
1343
1363
1344
1364
@internal
@@ -1351,6 +1371,7 @@ typedef FieldDefJson = {
1351
1371
@only("Tile")
1352
1372
@internal
1353
1373
@added("1.0.0")
1374
+
@uidRef("tileset")
1354
1375
vartilesetUid:Null<Int>;
1355
1376
1356
1377
@@ -1389,6 +1410,7 @@ typedef TilesetDefJson = {
1389
1410
varidentifier:String;
1390
1411
1391
1412
/** Unique Intidentifier **/
1413
+
@uidRoot("tileset")
1392
1414
varuid:Int;
1393
1415
1394
1416
/**
@@ -1423,6 +1445,7 @@ typedef TilesetDefJson = {
1423
1445
1424
1446
/** Optional Enum definition UID used for this tileset meta-data **/
1425
1447
@added("0.9.0")
1448
+
@uidRef("enum")
1426
1449
vartagsSourceEnumUid:Null<Int>;
1427
1450
1428
1451
/** Tileset tags using Enum values specified by `tagsSourceEnumId`. This array contains 1 element per Enum value, which contains an array of all Tile IDs that are tagged with it. **/
@@ -1457,6 +1480,7 @@ typedef TilesetDefJson = {
1457
1480
@display("Enum definition")
1458
1481
typedefEnumDefJson= {
1459
1482
/** Unique Int identifier **/
1483
+
@uidRoot("enum")
1460
1484
varuid:Int;
1461
1485
1462
1486
/** User defined unique identifier **/
@@ -1466,6 +1490,7 @@ typedef EnumDefJson = {
1466
1490
varvalues:Array<EnumDefValues>;
1467
1491
1468
1492
/** Tileset UID if provided **/
1493
+
@uidRef("tileset")
1469
1494
variconTilesetUid:Null<Int>;
1470
1495
1471
1496
/** Relative path to the external file providing this Enum **/
0 commit comments