mirror of
				https://github.com/genxium/DelayNoMore
				synced 2025-10-31 11:27:19 +00:00 
			
		
		
		
	Fixed frontend tmx parsing for ortho map.
This commit is contained in:
		| @@ -252,7 +252,7 @@ func (pR *Room) ChooseStage() error { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	rand.Seed(time.Now().Unix()) | 	rand.Seed(time.Now().Unix()) | ||||||
| 	stageNameList := []string{"simple" /* "richsoil" */} | 	stageNameList := []string{"dungeon" /*"dungeon", "simple", "richsoil" */} | ||||||
| 	chosenStageIndex := rand.Int() % len(stageNameList) // Hardcoded temporarily. -- YFLu | 	chosenStageIndex := rand.Int() % len(stageNameList) // Hardcoded temporarily. -- YFLu | ||||||
|  |  | ||||||
| 	pR.StageName = stageNameList[chosenStageIndex] | 	pR.StageName = stageNameList[chosenStageIndex] | ||||||
|   | |||||||
| @@ -85,7 +85,7 @@ type Game struct { | |||||||
|  |  | ||||||
| func NewGame() *Game { | func NewGame() *Game { | ||||||
|  |  | ||||||
| 	// stageName := "simple" // Use this for calibration | 	// stageName := "simple" // Use this for calibration in isometric orientation | ||||||
| 	// stageName := "richsoil" | 	// stageName := "richsoil" | ||||||
| 	stageName := "dungeon" | 	stageName := "dungeon" | ||||||
| 	stageDiscreteW, stageDiscreteH, stageTileW, stageTileH, playerPosMap, barrierMap, err := parseStage(stageName) | 	stageDiscreteW, stageDiscreteH, stageTileW, stageTileH, playerPosMap, barrierMap, err := parseStage(stageName) | ||||||
|   | |||||||
| @@ -409,7 +409,7 @@ func (pTmxMapIns *TmxMap) continuousObjLayerVecToContinuousMapNodeVec(continuous | |||||||
| 	if "orthogonal" == pTmxMapIns.Orientation { | 	if "orthogonal" == pTmxMapIns.Orientation { | ||||||
| 		return Vec2D{ | 		return Vec2D{ | ||||||
| 			X: continuousObjLayerVec.X, | 			X: continuousObjLayerVec.X, | ||||||
| 			Y: continuousObjLayerVec.Y, | 			Y: -continuousObjLayerVec.Y, | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 	var tileRectilinearSize TileRectilinearSize | 	var tileRectilinearSize TileRectilinearSize | ||||||
| @@ -434,29 +434,24 @@ func (pTmxMapIns *TmxMap) continuousObjLayerVecToContinuousMapNodeVec(continuous | |||||||
| } | } | ||||||
|  |  | ||||||
| func (pTmxMapIns *TmxMap) continuousObjLayerOffsetToContinuousMapNodePos(continuousObjLayerOffset *Vec2D) Vec2D { | func (pTmxMapIns *TmxMap) continuousObjLayerOffsetToContinuousMapNodePos(continuousObjLayerOffset *Vec2D) Vec2D { | ||||||
|  | 	var layerOffset Vec2D | ||||||
| 	if "orthogonal" == pTmxMapIns.Orientation { | 	if "orthogonal" == pTmxMapIns.Orientation { | ||||||
| 		layerOffset := Vec2D{ | 		layerOffset = Vec2D{ | ||||||
| 			X: float64(pTmxMapIns.Width*pTmxMapIns.TileWidth) * 0.5, | 			X: -float64(pTmxMapIns.Width*pTmxMapIns.TileWidth) * 0.5, | ||||||
| 			Y: float64(pTmxMapIns.Height*pTmxMapIns.TileHeight) * 0.5, | 			Y: float64(pTmxMapIns.Height*pTmxMapIns.TileHeight) * 0.5, | ||||||
| 		} | 		} | ||||||
| 		return Vec2D{ | 	} else { | ||||||
| 			X: continuousObjLayerOffset.X - layerOffset.X, |  | ||||||
| 			Y: continuousObjLayerOffset.Y - layerOffset.Y, |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 		// "isometric" == pTmxMapIns.Orientation | 		// "isometric" == pTmxMapIns.Orientation | ||||||
| 	layerOffset := Vec2D{ | 		layerOffset = Vec2D{ | ||||||
| 			X: 0, | 			X: 0, | ||||||
| 			Y: float64(pTmxMapIns.Height*pTmxMapIns.TileHeight) * 0.5, | 			Y: float64(pTmxMapIns.Height*pTmxMapIns.TileHeight) * 0.5, | ||||||
| 		} | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	calibratedVec := continuousObjLayerOffset | 	convertedVec := pTmxMapIns.continuousObjLayerVecToContinuousMapNodeVec(continuousObjLayerOffset) | ||||||
| 	convertedVec := pTmxMapIns.continuousObjLayerVecToContinuousMapNodeVec(calibratedVec) |  | ||||||
|  |  | ||||||
| 	toRet := Vec2D{ | 	return Vec2D{ | ||||||
| 		X: layerOffset.X + convertedVec.X, | 		X: layerOffset.X + convertedVec.X, | ||||||
| 		Y: layerOffset.Y + convertedVec.Y, | 		Y: layerOffset.Y + convertedVec.Y, | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	return toRet |  | ||||||
| } | } | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| { | { | ||||||
|   "ver": "1.0.1", |   "ver": "1.0.1", | ||||||
|   "uuid": "51c54820-d753-4be8-a855-5760eed8f7ef", |   "uuid": "5650b341-a420-4d79-a969-39a461e13378", | ||||||
|   "isSubpackage": false, |   "isSubpackage": false, | ||||||
|   "subpackageName": "", |   "subpackageName": "", | ||||||
|   "subMetas": {} |   "subMetas": {} | ||||||
							
								
								
									
										5
									
								
								frontend/assets/resources/map/dungeon/map.tmx.meta
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								frontend/assets/resources/map/dungeon/map.tmx.meta
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.0.2", | ||||||
|  |   "uuid": "8dbb6475-bf99-4389-b801-e39a6e589019", | ||||||
|  |   "subMetas": {} | ||||||
|  | } | ||||||
							
								
								
									
										5
									
								
								frontend/assets/resources/map/dungeon/tiles0.tsx.meta
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								frontend/assets/resources/map/dungeon/tiles0.tsx.meta
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.0.0", | ||||||
|  |   "uuid": "2e5e29c8-23e1-4d61-b062-955242414301", | ||||||
|  |   "subMetas": {} | ||||||
|  | } | ||||||
							
								
								
									
										5
									
								
								frontend/assets/resources/map/dungeon/tiles1.tsx.meta
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								frontend/assets/resources/map/dungeon/tiles1.tsx.meta
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.0.0", | ||||||
|  |   "uuid": "e9172691-ac9b-4c61-878d-0731cf937d42", | ||||||
|  |   "subMetas": {} | ||||||
|  | } | ||||||
| @@ -0,0 +1,7 @@ | |||||||
|  | { | ||||||
|  |   "ver": "1.0.1", | ||||||
|  |   "uuid": "7c0b803c-602b-4be7-a765-a19771d9a8a1", | ||||||
|  |   "isSubpackage": false, | ||||||
|  |   "subpackageName": "", | ||||||
|  |   "subMetas": {} | ||||||
|  | } | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.0.0", | ||||||
|  |   "uuid": "a1a1e271-39fe-4eed-9759-10b0bb9312f1", | ||||||
|  |   "subMetas": {} | ||||||
|  | } | ||||||
| @@ -1,6 +1,6 @@ | |||||||
| { | { | ||||||
|   "ver": "2.3.3", |   "ver": "2.3.3", | ||||||
|   "uuid": "d8e6c175-1f17-48df-a0aa-cdd9785f4d3a", |   "uuid": "21ccce17-52d6-4cc6-bda6-476faa53ba9d", | ||||||
|   "type": "sprite", |   "type": "sprite", | ||||||
|   "wrapMode": "clamp", |   "wrapMode": "clamp", | ||||||
|   "filterMode": "bilinear", |   "filterMode": "bilinear", | ||||||
| @@ -9,21 +9,21 @@ | |||||||
|   "packable": true, |   "packable": true, | ||||||
|   "platformSettings": {}, |   "platformSettings": {}, | ||||||
|   "subMetas": { |   "subMetas": { | ||||||
|     "Tile_W256_H256_S01": { |     "amulet": { | ||||||
|       "ver": "1.0.4", |       "ver": "1.0.4", | ||||||
|       "uuid": "4a23290b-bf5a-4849-ac19-6ebd4b7daa59", |       "uuid": "8946357a-148c-408d-a46b-20e62ffcba67", | ||||||
|       "rawTextureUuid": "d8e6c175-1f17-48df-a0aa-cdd9785f4d3a", |       "rawTextureUuid": "21ccce17-52d6-4cc6-bda6-476faa53ba9d", | ||||||
|       "trimType": "auto", |       "trimType": "auto", | ||||||
|       "trimThreshold": 1, |       "trimThreshold": 1, | ||||||
|       "rotated": false, |       "rotated": false, | ||||||
|       "offsetX": 0, |       "offsetX": 0, | ||||||
|       "offsetY": 0, |       "offsetY": 0, | ||||||
|       "trimX": 0, |       "trimX": 0, | ||||||
|       "trimY": 64, |       "trimY": 0, | ||||||
|       "width": 1280, |       "width": 32, | ||||||
|       "height": 896, |       "height": 32, | ||||||
|       "rawWidth": 1280, |       "rawWidth": 32, | ||||||
|       "rawHeight": 1024, |       "rawHeight": 32, | ||||||
|       "borderTop": 0, |       "borderTop": 0, | ||||||
|       "borderBottom": 0, |       "borderBottom": 0, | ||||||
|       "borderLeft": 0, |       "borderLeft": 0, | ||||||
| @@ -1,6 +1,6 @@ | |||||||
| { | { | ||||||
|   "ver": "2.3.3", |   "ver": "2.3.3", | ||||||
|   "uuid": "136d09e9-c33c-45dc-abb7-e367d730c814", |   "uuid": "39cf9642-3f75-4c2d-87d0-eb007c87a695", | ||||||
|   "type": "sprite", |   "type": "sprite", | ||||||
|   "wrapMode": "clamp", |   "wrapMode": "clamp", | ||||||
|   "filterMode": "bilinear", |   "filterMode": "bilinear", | ||||||
| @@ -9,21 +9,21 @@ | |||||||
|   "packable": true, |   "packable": true, | ||||||
|   "platformSettings": {}, |   "platformSettings": {}, | ||||||
|   "subMetas": { |   "subMetas": { | ||||||
|     "Tile_W256_H128_S01": { |     "arcs1": { | ||||||
|       "ver": "1.0.4", |       "ver": "1.0.4", | ||||||
|       "uuid": "7acc48f5-d9c9-4438-8794-57a85590bd97", |       "uuid": "014ef6f6-690e-422c-a19b-c770c204e84a", | ||||||
|       "rawTextureUuid": "136d09e9-c33c-45dc-abb7-e367d730c814", |       "rawTextureUuid": "39cf9642-3f75-4c2d-87d0-eb007c87a695", | ||||||
|       "trimType": "auto", |       "trimType": "auto", | ||||||
|       "trimThreshold": 1, |       "trimThreshold": 1, | ||||||
|       "rotated": false, |       "rotated": false, | ||||||
|       "offsetX": 0, |       "offsetX": 0, | ||||||
|       "offsetY": 831, |       "offsetY": 0, | ||||||
|       "trimX": 0, |       "trimX": 0, | ||||||
|       "trimY": 0, |       "trimY": 0, | ||||||
|       "width": 2048, |       "width": 32, | ||||||
|       "height": 386, |       "height": 32, | ||||||
|       "rawWidth": 2048, |       "rawWidth": 32, | ||||||
|       "rawHeight": 2048, |       "rawHeight": 32, | ||||||
|       "borderTop": 0, |       "borderTop": 0, | ||||||
|       "borderBottom": 0, |       "borderBottom": 0, | ||||||
|       "borderLeft": 0, |       "borderLeft": 0, | ||||||
| @@ -1,6 +1,6 @@ | |||||||
| { | { | ||||||
|   "ver": "2.3.3", |   "ver": "2.3.3", | ||||||
|   "uuid": "74245e28-6cec-4960-ac41-5b482ad8fd13", |   "uuid": "576972a2-2f4a-4808-b812-5dd242b33dce", | ||||||
|   "type": "sprite", |   "type": "sprite", | ||||||
|   "wrapMode": "clamp", |   "wrapMode": "clamp", | ||||||
|   "filterMode": "bilinear", |   "filterMode": "bilinear", | ||||||
| @@ -9,21 +9,21 @@ | |||||||
|   "packable": true, |   "packable": true, | ||||||
|   "platformSettings": {}, |   "platformSettings": {}, | ||||||
|   "subMetas": { |   "subMetas": { | ||||||
|     "Tile_W256_H256_S02": { |     "arcs2": { | ||||||
|       "ver": "1.0.4", |       "ver": "1.0.4", | ||||||
|       "uuid": "8fc46c1f-6fb4-4290-99f3-b773b92312b7", |       "uuid": "0e8c4639-b65d-4b95-82fc-5ad48d3bfd50", | ||||||
|       "rawTextureUuid": "74245e28-6cec-4960-ac41-5b482ad8fd13", |       "rawTextureUuid": "576972a2-2f4a-4808-b812-5dd242b33dce", | ||||||
|       "trimType": "auto", |       "trimType": "auto", | ||||||
|       "trimThreshold": 1, |       "trimThreshold": 1, | ||||||
|       "rotated": false, |       "rotated": false, | ||||||
|       "offsetX": 19.5, |       "offsetX": 0, | ||||||
|       "offsetY": 3.5, |       "offsetY": 0, | ||||||
|       "trimX": 89, |       "trimX": 0, | ||||||
|       "trimY": 0, |       "trimY": 0, | ||||||
|       "width": 1409, |       "width": 64, | ||||||
|       "height": 251, |       "height": 64, | ||||||
|       "rawWidth": 1548, |       "rawWidth": 64, | ||||||
|       "rawHeight": 258, |       "rawHeight": 64, | ||||||
|       "borderTop": 0, |       "borderTop": 0, | ||||||
|       "borderBottom": 0, |       "borderBottom": 0, | ||||||
|       "borderLeft": 0, |       "borderLeft": 0, | ||||||
| @@ -1,6 +1,6 @@ | |||||||
| { | { | ||||||
|   "ver": "2.3.3", |   "ver": "2.3.3", | ||||||
|   "uuid": "c30bd4d7-efdc-410c-8bdf-4a3dfc77bebd", |   "uuid": "38f262b5-0a74-49fc-9136-26847b8c42a3", | ||||||
|   "type": "sprite", |   "type": "sprite", | ||||||
|   "wrapMode": "clamp", |   "wrapMode": "clamp", | ||||||
|   "filterMode": "bilinear", |   "filterMode": "bilinear", | ||||||
| @@ -9,21 +9,21 @@ | |||||||
|   "packable": true, |   "packable": true, | ||||||
|   "platformSettings": {}, |   "platformSettings": {}, | ||||||
|   "subMetas": { |   "subMetas": { | ||||||
|     "Tile_W300_H300_S01": { |     "avatars": { | ||||||
|       "ver": "1.0.4", |       "ver": "1.0.4", | ||||||
|       "uuid": "66b49304-7b5b-442c-92a5-d2b368abf659", |       "uuid": "941e7171-33f4-4745-ba79-33eb6644b207", | ||||||
|       "rawTextureUuid": "c30bd4d7-efdc-410c-8bdf-4a3dfc77bebd", |       "rawTextureUuid": "38f262b5-0a74-49fc-9136-26847b8c42a3", | ||||||
|       "trimType": "auto", |       "trimType": "auto", | ||||||
|       "trimThreshold": 1, |       "trimThreshold": 1, | ||||||
|       "rotated": false, |       "rotated": false, | ||||||
|       "offsetX": 4, |       "offsetX": -16.5, | ||||||
|       "offsetY": -24.5, |       "offsetY": 2, | ||||||
|       "trimX": 97, |       "trimX": 2, | ||||||
|       "trimY": 85, |       "trimY": 0, | ||||||
|       "width": 114, |       "width": 91, | ||||||
|       "height": 179, |       "height": 28, | ||||||
|       "rawWidth": 300, |       "rawWidth": 128, | ||||||
|       "rawHeight": 300, |       "rawHeight": 32, | ||||||
|       "borderTop": 0, |       "borderTop": 0, | ||||||
|       "borderBottom": 0, |       "borderBottom": 0, | ||||||
|       "borderLeft": 0, |       "borderLeft": 0, | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "1320ed07-36f9-4693-a289-28db09b560cc", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "badges": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "2a7233e1-fc80-427e-b7aa-a5dcfbad26d5", | ||||||
|  |       "rawTextureUuid": "1320ed07-36f9-4693-a289-28db09b560cc", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 128, | ||||||
|  |       "height": 128, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 128, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "3f53159d-4e17-473b-acb9-2224362e06bc", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "banners": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "e0d820ad-cdc9-4e61-ba46-9c2f7e20f723", | ||||||
|  |       "rawTextureUuid": "3f53159d-4e17-473b-acb9-2224362e06bc", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 2.5, | ||||||
|  |       "offsetY": 16.5, | ||||||
|  |       "trimX": 5, | ||||||
|  |       "trimY": 4, | ||||||
|  |       "width": 123, | ||||||
|  |       "height": 215, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 256, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "103014cf-2c20-431d-ab6d-7e415f1d7d14", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "bat": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "695b8ae4-af59-44d1-8ba4-f9b8f4e73865", | ||||||
|  |       "rawTextureUuid": "103014cf-2c20-431d-ab6d-7e415f1d7d14", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -12, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 104, | ||||||
|  |       "height": 15, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "c5ee3282-b52b-4189-83f1-d5be348762c0", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "bee": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "167d6aa3-1261-46bc-a1e5-625e9f85a801", | ||||||
|  |       "rawTextureUuid": "c5ee3282-b52b-4189-83f1-d5be348762c0", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -40.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 2, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 171, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "98530f0a-4865-4d74-a28b-0bd14166082d", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "blacksmith": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "e23114ca-3751-47af-a23d-731b646d8540", | ||||||
|  |       "rawTextureUuid": "98530f0a-4865-4d74-a28b-0bd14166082d", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -6.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 51, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 64, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "df2d8e10-e39b-4473-b4da-032a02325a00", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "brute": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "d744524e-e1cd-403b-93d8-b47b9007c29c", | ||||||
|  |       "rawTextureUuid": "df2d8e10-e39b-4473-b4da-032a02325a00", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -61.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 131, | ||||||
|  |       "height": 32, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "574dc18f-0b47-46d8-a798-43dc24015044", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "buffs": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "5e8ea5e5-d5ec-42df-aa17-46d50961f3b6", | ||||||
|  |       "rawTextureUuid": "574dc18f-0b47-46d8-a798-43dc24015044", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 128, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "9f47ac9c-26ad-4c5b-8d17-b1a35db8d555", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "burning_fist": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "63dc9fd5-2c94-49c6-b2f9-02f6ae7b8047", | ||||||
|  |       "rawTextureUuid": "9f47ac9c-26ad-4c5b-8d17-b1a35db8d555", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -42.5, | ||||||
|  |       "offsetY": 7.5, | ||||||
|  |       "trimX": 3, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 165, | ||||||
|  |       "height": 17, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "0b854bdc-f8a4-45a5-bc1e-c0f5795ff004", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "chrome": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "af308f08-007e-49dd-9a2d-75d7715d7ddc", | ||||||
|  |       "rawTextureUuid": "0b854bdc-f8a4-45a5-bc1e-c0f5795ff004", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -21, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 84, | ||||||
|  |       "height": 63, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 64, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "37460170-27cf-42f4-8c21-5b8bd17f4621", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "crab": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "d1540c1d-b55d-4942-b9aa-0ce8da8bdb57", | ||||||
|  |       "rawTextureUuid": "37460170-27cf-42f4-8c21-5b8bd17f4621", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -15.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 223, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "fdc6727a-bfad-4c49-8c1f-4e0b4fedd4d0", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "dashboard": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "62eb561c-196a-4039-a8db-dd374a84c42d", | ||||||
|  |       "rawTextureUuid": "fdc6727a-bfad-4c49-8c1f-4e0b4fedd4d0", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -0.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 127, | ||||||
|  |       "height": 32, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "c4597854-2b7b-4749-8e54-88aa97fe23eb", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "demon": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "7b333430-e52b-4c71-bbed-d21ea34e033d", | ||||||
|  |       "rawTextureUuid": "c4597854-2b7b-4749-8e54-88aa97fe23eb", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -2, | ||||||
|  |       "offsetY": 1, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 58, | ||||||
|  |       "height": 14, | ||||||
|  |       "rawWidth": 64, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "1b8b93fe-3db9-4aff-b97b-c1fce944815c", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "dm300": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "28b7fc8c-8677-4606-b332-bbe45b069473", | ||||||
|  |       "rawTextureUuid": "1b8b93fe-3db9-4aff-b97b-c1fce944815c", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -29, | ||||||
|  |       "offsetY": 6, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 198, | ||||||
|  |       "height": 20, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "b50481e3-aa9e-4215-9108-386c84672018", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "effects": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "1b429d45-fa6e-4372-86c7-5b09ebec005e", | ||||||
|  |       "rawTextureUuid": "b50481e3-aa9e-4215-9108-386c84672018", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 4.5, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 32, | ||||||
|  |       "height": 23, | ||||||
|  |       "rawWidth": 32, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "5c92e468-fc4b-4146-9146-a3518f519b73", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "elemental": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "479ea4e3-2d75-40e2-955e-892f3083630d", | ||||||
|  |       "rawTextureUuid": "5c92e468-fc4b-4146-9146-a3518f519b73", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -45.5, | ||||||
|  |       "offsetY": 1, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 163, | ||||||
|  |       "height": 14, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "949838a9-a9d7-4379-b42b-52d7d18554e5", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "exp_bar": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "5594f521-6bd5-4047-bb6a-a1efe0018951", | ||||||
|  |       "rawTextureUuid": "949838a9-a9d7-4379-b42b-52d7d18554e5", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 16, | ||||||
|  |       "height": 1, | ||||||
|  |       "rawWidth": 16, | ||||||
|  |       "rawHeight": 1, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "a0855418-f51e-4a37-80f3-7cd77b42a191", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "eye": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "7253ac3b-75d8-4adb-ab33-40b710193c2d", | ||||||
|  |       "rawTextureUuid": "a0855418-f51e-4a37-80f3-7cd77b42a191", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -48, | ||||||
|  |       "offsetY": 7, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 160, | ||||||
|  |       "height": 18, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "a9ccd853-b739-4ca3-a789-6641888510a5", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "fireball": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "ea2ffab5-4162-44fc-b1cd-1b20ae02bff7", | ||||||
|  |       "rawTextureUuid": "a9ccd853-b739-4ca3-a789-6641888510a5", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -0.5, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 4, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 119, | ||||||
|  |       "height": 31, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "bddfb6c0-cce9-45ff-94d1-32cf98d5c485", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "font15x": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "1f178944-57cf-4150-8c33-2e34083dcc0e", | ||||||
|  |       "rawTextureUuid": "bddfb6c0-cce9-45ff-94d1-32cf98d5c485", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -171, | ||||||
|  |       "offsetY": 2, | ||||||
|  |       "trimX": 5, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 672, | ||||||
|  |       "height": 12, | ||||||
|  |       "rawWidth": 1024, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "0a43f894-e0e0-43ff-9aff-dc364d4b36b7", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "font1x": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "2bb0b39b-c61e-43ed-8f3b-0f2f76fa51e5", | ||||||
|  |       "rawTextureUuid": "0a43f894-e0e0-43ff-9aff-dc364d4b36b7", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -231, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 3, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 556, | ||||||
|  |       "height": 8, | ||||||
|  |       "rawWidth": 1024, | ||||||
|  |       "rawHeight": 8, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "dca181a9-2874-4431-940a-bed999e799ff", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "font25x": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "a624e0c0-3b62-4031-ba1e-1630e41fe503", | ||||||
|  |       "rawTextureUuid": "dca181a9-2874-4431-940a-bed999e799ff", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -67.5, | ||||||
|  |       "offsetY": 7.5, | ||||||
|  |       "trimX": 7, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 875, | ||||||
|  |       "height": 17, | ||||||
|  |       "rawWidth": 1024, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "49f6d3f7-4ca5-4f2a-8004-4df57ff0bbcb", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "font2x": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "3692c265-cd7f-48ca-8990-48652f88e76c", | ||||||
|  |       "rawTextureUuid": "49f6d3f7-4ca5-4f2a-8004-4df57ff0bbcb", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -133.5, | ||||||
|  |       "offsetY": 1, | ||||||
|  |       "trimX": 6, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 745, | ||||||
|  |       "height": 14, | ||||||
|  |       "rawWidth": 1024, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "9aafd233-eaa7-41fc-a399-6b597a1e20f8", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "font3x": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "f177acc7-b5a4-403e-85b3-9e31a76e3ef6", | ||||||
|  |       "rawTextureUuid": "9aafd233-eaa7-41fc-a399-6b597a1e20f8", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -413.5, | ||||||
|  |       "offsetY": 5, | ||||||
|  |       "trimX": 11, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 1199, | ||||||
|  |       "height": 22, | ||||||
|  |       "rawWidth": 2048, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "2ca016e1-71e0-4a41-97b3-e1c9444d6f32", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "ghost": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "35196fa8-9009-471c-ae0c-86c4257fd54f", | ||||||
|  |       "rawTextureUuid": "2ca016e1-71e0-4a41-97b3-e1c9444d6f32", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -2, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 2, | ||||||
|  |       "width": 28, | ||||||
|  |       "height": 12, | ||||||
|  |       "rawWidth": 32, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "4a94222d-6e7f-4feb-8804-6ac9720002cf", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "gnoll": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "b2d6b85e-de6a-46ca-a1ef-e1819624a24b", | ||||||
|  |       "rawTextureUuid": "4a94222d-6e7f-4feb-8804-6ac9720002cf", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -61.5, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 131, | ||||||
|  |       "height": 15, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "7508662b-0e9f-4dfe-9184-fe92c1ff3c14", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "golem": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "aaadb57e-c7a0-4e10-b14e-8f54fd90af6d", | ||||||
|  |       "rawTextureUuid": "7508662b-0e9f-4dfe-9184-fe92c1ff3c14", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -15.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 2, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 221, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "17e7619c-a4f1-49e3-82bf-50aa156432a7", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "goo": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "40f6855f-aee8-4799-a084-69511f39e938", | ||||||
|  |       "rawTextureUuid": "17e7619c-a4f1-49e3-82bf-50aa156432a7", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -57.5, | ||||||
|  |       "offsetY": 1, | ||||||
|  |       "trimX": 3, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 135, | ||||||
|  |       "height": 14, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "8134538e-5934-48be-b59e-7590929d65b4", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "hp_bar": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "f1adac20-7fca-4d3e-90ac-e07914a73620", | ||||||
|  |       "rawTextureUuid": "8134538e-5934-48be-b59e-7590929d65b4", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -8.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 47, | ||||||
|  |       "height": 4, | ||||||
|  |       "rawWidth": 64, | ||||||
|  |       "rawHeight": 4, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "eeb70872-7837-4e3b-8f99-4c9ee3814c1a", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "icons": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "86d07d64-7c24-48f7-8d0d-33d0145329be", | ||||||
|  |       "rawTextureUuid": "eeb70872-7837-4e3b-8f99-4c9ee3814c1a", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -1, | ||||||
|  |       "offsetY": 1.5, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 126, | ||||||
|  |       "height": 61, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 64, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "97289bf5-ad9d-460e-aaff-acb004d89a83", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "items": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "edb89278-1b5d-4b6d-b44e-573dd9322a0c", | ||||||
|  |       "rawTextureUuid": "97289bf5-ad9d-460e-aaff-acb004d89a83", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 128, | ||||||
|  |       "height": 256, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 256, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "4615956f-9e7b-47da-b5f0-26577da82477", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "king": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "8818e0b9-3a6d-4872-a20d-0685a669887f", | ||||||
|  |       "rawTextureUuid": "4615956f-9e7b-47da-b5f0-26577da82477", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 254, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "ba8b7b9f-3eda-4def-824c-dee0329de839", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "large_buffs": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "de6b1c73-a9b8-4c2e-a995-6ae2eae1ebc8", | ||||||
|  |       "rawTextureUuid": "ba8b7b9f-3eda-4def-824c-dee0329de839", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 256, | ||||||
|  |       "height": 32, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "11c790e6-89aa-479c-a940-e8cd04d55a42", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "larva": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "c2b5d2c9-5d32-49f2-838f-58668333855e", | ||||||
|  |       "rawTextureUuid": "11c790e6-89aa-479c-a940-e8cd04d55a42", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -16, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 96, | ||||||
|  |       "height": 8, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 8, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "3aac19d3-f407-4db1-9d16-c109b5e03d1f", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "locked_badge": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "aa6183c9-8033-4237-bdbd-c20f25ba45ee", | ||||||
|  |       "rawTextureUuid": "3aac19d3-f407-4db1-9d16-c109b5e03d1f", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 16, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 16, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "8533a5ba-6030-4ffb-8c0c-d01a9f53d1a4", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "mage": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "4cfc5971-aaf3-45ce-8d1e-de166ebca3f4", | ||||||
|  |       "rawTextureUuid": "8533a5ba-6030-4ffb-8c0c-d01a9f53d1a4", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -1.5, | ||||||
|  |       "offsetY": 11.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 251, | ||||||
|  |       "height": 105, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 128, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "28339770-e9c7-4b7c-acd1-e0cd9bfdb893", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "mimic": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "5c6021ba-ae75-4bbf-b3cf-feb783a35a75", | ||||||
|  |       "rawTextureUuid": "28339770-e9c7-4b7c-acd1-e0cd9bfdb893", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -48, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 160, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "0cdf178c-7366-4a76-aaea-a44f860b7842", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "monk": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "cc722a7d-8a10-495e-9778-045ac9f0b34e", | ||||||
|  |       "rawTextureUuid": "0cdf178c-7366-4a76-aaea-a44f860b7842", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -1.5, | ||||||
|  |       "offsetY": 2, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 251, | ||||||
|  |       "height": 28, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "9a79510f-ccf9-4285-bbd8-3f887e35fd7b", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "pet": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "d39870cd-3693-4e82-aaa1-c0d917a1ce13", | ||||||
|  |       "rawTextureUuid": "9a79510f-ccf9-4285-bbd8-3f887e35fd7b", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -8.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 109, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "2d9afe21-7336-40db-b752-88f90a897ed0", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "piranha": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "cd1b45bc-7b89-458c-91e0-c841f4ed712d", | ||||||
|  |       "rawTextureUuid": "2d9afe21-7336-40db-b752-88f90a897ed0", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -37.5, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 179, | ||||||
|  |       "height": 15, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "77e348a7-6179-4ea2-9629-f6838944d57a", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "plants": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "71e50a01-7fb9-4dd1-9809-315aafae28ca", | ||||||
|  |       "rawTextureUuid": "77e348a7-6179-4ea2-9629-f6838944d57a", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 127, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "fad2cd4a-0a8d-4afd-be70-b301b1a44a99", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "ranger": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "9d221b3a-b542-4dcd-ab0a-ff4d50c10319", | ||||||
|  |       "rawTextureUuid": "fad2cd4a-0a8d-4afd-be70-b301b1a44a99", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -1.5, | ||||||
|  |       "offsetY": 11.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 251, | ||||||
|  |       "height": 105, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 128, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "5d50eca8-e28e-4897-8379-d2948d945ea6", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "rat": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "7f08cc65-6328-40f6-a031-4dc8d23f3397", | ||||||
|  |       "rawTextureUuid": "5d50eca8-e28e-4897-8379-d2948d945ea6", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -8, | ||||||
|  |       "offsetY": 1, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 240, | ||||||
|  |       "height": 30, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "4914fd7d-361d-4c0f-86cb-8be76dec9f97", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "ratking": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "95adc509-8d4f-4844-8d6d-afb5496c9363", | ||||||
|  |       "rawTextureUuid": "4914fd7d-361d-4c0f-86cb-8be76dec9f97", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -8.5, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 109, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.0.0", | ||||||
|  |   "uuid": "c276c792-58bb-403c-aab0-e14da1b3aa4d", | ||||||
|  |   "subMetas": {} | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "e385d039-f5fd-42b4-87e1-49e29e665a54", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "rogue": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "010371c7-5b4d-490c-8c1b-d22f835913b6", | ||||||
|  |       "rawTextureUuid": "e385d039-f5fd-42b4-87e1-49e29e665a54", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -1.5, | ||||||
|  |       "offsetY": 11, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 1, | ||||||
|  |       "width": 251, | ||||||
|  |       "height": 104, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 128, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "b4471062-7bd9-4137-b806-dbec58e76d6b", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "rotting_fist": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "bbe7aa5d-9ef6-4139-8634-fe7ad4e9a9b6", | ||||||
|  |       "rawTextureUuid": "b4471062-7bd9-4137-b806-dbec58e76d6b", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -2.5, | ||||||
|  |       "offsetY": 7.5, | ||||||
|  |       "trimX": 3, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 117, | ||||||
|  |       "height": 17, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "bfa778c5-5059-4453-83e9-b742e3722923", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "scorpio": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "46ecbb9e-6903-48ab-96e4-2f74b22ed4c4", | ||||||
|  |       "rawTextureUuid": "bfa778c5-5059-4453-83e9-b742e3722923", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -29.5, | ||||||
|  |       "offsetY": 15, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 197, | ||||||
|  |       "height": 34, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 64, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "5b616f9d-b901-416f-8fa7-e3848e5befcf", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "shadow": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "85a7b494-9391-470b-87cb-b8743f419aa8", | ||||||
|  |       "rawTextureUuid": "5b616f9d-b901-416f-8fa7-e3848e5befcf", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 1, | ||||||
|  |       "width": 2, | ||||||
|  |       "height": 2, | ||||||
|  |       "rawWidth": 4, | ||||||
|  |       "rawHeight": 4, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "a02a2b71-1991-4b14-b573-258b78531ae0", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "shaman": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "785162da-33f0-40b1-958b-8b4cf3ceeea8", | ||||||
|  |       "rawTextureUuid": "a02a2b71-1991-4b14-b573-258b78531ae0", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -61.5, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 131, | ||||||
|  |       "height": 15, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "30019d91-08e8-4325-8202-4eb30147e4ff", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "sheep": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "911a7bcd-9904-452b-998a-07edb6ebbedd", | ||||||
|  |       "rawTextureUuid": "30019d91-08e8-4325-8202-4eb30147e4ff", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 64, | ||||||
|  |       "height": 15, | ||||||
|  |       "rawWidth": 64, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "cea2b28f-d15b-4752-9785-97c71970075b", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "shopkeeper": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "b7bcbd9a-e520-4672-98f1-db5fc060a0c6", | ||||||
|  |       "rawTextureUuid": "cea2b28f-d15b-4752-9785-97c71970075b", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -2, | ||||||
|  |       "offsetY": 1, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 28, | ||||||
|  |       "height": 14, | ||||||
|  |       "rawWidth": 32, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "fea12d92-e77a-41cc-bf28-a34037639fd4", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "skeleton": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "33db7070-b30b-4483-9fa6-ca71f54d1228", | ||||||
|  |       "rawTextureUuid": "fea12d92-e77a-41cc-bf28-a34037639fd4", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -25, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 2, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 202, | ||||||
|  |       "height": 15, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "f4dddbb7-01b9-4640-b463-08aad2d10d5f", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "specks": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "f4cbaf99-6441-413f-b8e0-7dc48c44fe3a", | ||||||
|  |       "rawTextureUuid": "f4dddbb7-01b9-4640-b463-08aad2d10d5f", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -12, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 104, | ||||||
|  |       "height": 7, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 8, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "2859f7c1-a8ec-45b6-9724-82f2ef604f6c", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "spell_icons": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "5e47f163-683c-4dc0-93b2-782e456e343b", | ||||||
|  |       "rawTextureUuid": "2859f7c1-a8ec-45b6-9724-82f2ef604f6c", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -1, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 1, | ||||||
|  |       "width": 62, | ||||||
|  |       "height": 14, | ||||||
|  |       "rawWidth": 64, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "f7c29de6-05a3-4dcb-b3a2-b3553fcbfca2", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "spinner": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "04c111eb-4136-4739-9c24-b712ce4591ff", | ||||||
|  |       "rawTextureUuid": "f7c29de6-05a3-4dcb-b3a2-b3553fcbfca2", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -47, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 2, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 158, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "0c34b531-e3f7-4370-ab60-f9c3db13c55f", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "statue": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "07aa7406-77f6-40e6-bb4f-93ca84205f80", | ||||||
|  |       "rawTextureUuid": "0c34b531-e3f7-4370-ab60-f9c3db13c55f", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -26, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 202, | ||||||
|  |       "height": 15, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "30100667-37a7-470b-b4d6-846890b3a0f1", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "status_pane": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "15a977df-f994-4e8d-b5ab-156843de4627", | ||||||
|  |       "rawTextureUuid": "30100667-37a7-470b-b4d6-846890b3a0f1", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 14, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 128, | ||||||
|  |       "height": 36, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 64, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "8a493967-7723-4fd0-b7bc-14b762e6add4", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "succubus": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "9da2f8c3-4d5c-491e-b306-9f20aca3bc53", | ||||||
|  |       "rawTextureUuid": "8a493967-7723-4fd0-b7bc-14b762e6add4", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -55.5, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 143, | ||||||
|  |       "height": 15, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "ee69e7ab-a8d1-4038-96a5-041539d322eb", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "surface": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "2365b372-0a3b-4f1d-a3f3-9d0c898c3b55", | ||||||
|  |       "rawTextureUuid": "ee69e7ab-a8d1-4038-96a5-041539d322eb", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -52, | ||||||
|  |       "offsetY": 1.5, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 152, | ||||||
|  |       "height": 125, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 128, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "a6254ba1-a7c3-403b-b449-0f09edd5733b", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "swarm": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "60ef4d65-448a-4a9a-b853-130c629895ee", | ||||||
|  |       "rawTextureUuid": "a6254ba1-a7c3-403b-b449-0f09edd5733b", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -9, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 2, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 234, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "1d2f9e16-9443-47dd-835d-7f62716aa249", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "tengu": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "fa084a92-eb45-4746-9f5b-21e3d8cb42ef", | ||||||
|  |       "rawTextureUuid": "1d2f9e16-9443-47dd-835d-7f62716aa249", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -51, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 152, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "7dfabd0c-ee4b-4672-ad65-29fbdd99c35e", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "thief": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "263e8bc6-65aa-465c-9fcc-a3a916ad19c9", | ||||||
|  |       "rawTextureUuid": "7dfabd0c-ee4b-4672-ad65-29fbdd99c35e", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -49.5, | ||||||
|  |       "offsetY": 3, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 155, | ||||||
|  |       "height": 26, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "7857aafe-db70-4c55-9084-508de2c858ec", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "tiles0": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "0faa3c88-ad1a-42d6-b28e-b20ba9bd5f27", | ||||||
|  |       "rawTextureUuid": "7857aafe-db70-4c55-9084-508de2c858ec", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 256, | ||||||
|  |       "height": 64, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 64, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "fde90d10-7748-462e-a4a2-de42260c4b40", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "tiles1": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "2f58ff96-a66b-4b40-b788-38596cce39ce", | ||||||
|  |       "rawTextureUuid": "fde90d10-7748-462e-a4a2-de42260c4b40", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 256, | ||||||
|  |       "height": 64, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 64, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "c37c9c22-f69a-4d96-a7e9-73e2cc92a0ca", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "tiles2": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "5f119db9-438b-4c42-9df4-bb3a19ea2266", | ||||||
|  |       "rawTextureUuid": "c37c9c22-f69a-4d96-a7e9-73e2cc92a0ca", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 256, | ||||||
|  |       "height": 64, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 64, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "324facb6-de6e-462e-aaba-10d73c3c2be7", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "tiles3": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "f14a74de-488f-447e-9b6a-46413879e537", | ||||||
|  |       "rawTextureUuid": "324facb6-de6e-462e-aaba-10d73c3c2be7", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 256, | ||||||
|  |       "height": 64, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 64, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "7ac2a141-d0ce-4165-bfc2-d3a27ab754e1", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "tiles4": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "fad41331-14e2-4369-b44e-761d27f6672a", | ||||||
|  |       "rawTextureUuid": "7ac2a141-d0ce-4165-bfc2-d3a27ab754e1", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 256, | ||||||
|  |       "height": 64, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 64, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "6cb43a86-03f8-4ee4-b2cc-7dfee44ffb56", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "toolbar": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "39af1aad-8a9e-4e74-a183-43d2517dd23b", | ||||||
|  |       "rawTextureUuid": "6cb43a86-03f8-4ee4-b2cc-7dfee44ffb56", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -11.5, | ||||||
|  |       "offsetY": -3.5, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 7, | ||||||
|  |       "width": 105, | ||||||
|  |       "height": 25, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "0ddd60f6-ec12-4cf3-a4dc-b446d26ed32a", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "undead": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "7f0a1297-3604-4e5a-bee5-d5ea8242ce9e", | ||||||
|  |       "rawTextureUuid": "0ddd60f6-ec12-4cf3-a4dc-b446d26ed32a", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -25, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 2, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 202, | ||||||
|  |       "height": 16, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "215739c9-ba6d-43d6-b885-eb08b1e5484c", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "wandmaker": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "5b4e9070-04b3-4bab-8f79-63581ecfb7e9", | ||||||
|  |       "rawTextureUuid": "215739c9-ba6d-43d6-b885-eb08b1e5484c", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -7.5, | ||||||
|  |       "offsetY": 1, | ||||||
|  |       "trimX": 2, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 45, | ||||||
|  |       "height": 14, | ||||||
|  |       "rawWidth": 64, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "62e6fcea-0e29-4cba-9f99-b6df0514706c", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "warlock": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "f052834d-bf3b-4a81-a4cd-ba892d07f839", | ||||||
|  |       "rawTextureUuid": "62e6fcea-0e29-4cba-9f99-b6df0514706c", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -62, | ||||||
|  |       "offsetY": 0.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 130, | ||||||
|  |       "height": 15, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "b3fde93a-94a0-4cef-8169-de4ccfcb349c", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "warrior": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "6bda975c-f0d4-4cb3-84b2-af461756396f", | ||||||
|  |       "rawTextureUuid": "b3fde93a-94a0-4cef-8169-de4ccfcb349c", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -1.5, | ||||||
|  |       "offsetY": 11.5, | ||||||
|  |       "trimX": 1, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 251, | ||||||
|  |       "height": 105, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 128, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "44d0f4e6-19e9-41f6-be25-d54f2788b396", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "water0": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "cbe8d15a-983e-4d78-bf4b-2e1cf913d79b", | ||||||
|  |       "rawTextureUuid": "44d0f4e6-19e9-41f6-be25-d54f2788b396", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 32, | ||||||
|  |       "height": 32, | ||||||
|  |       "rawWidth": 32, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "20b26615-f012-4487-8e6b-8a657ea497cc", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "water1": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "5dbdd5f2-be3f-49c5-9edb-223030acf4e7", | ||||||
|  |       "rawTextureUuid": "20b26615-f012-4487-8e6b-8a657ea497cc", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 32, | ||||||
|  |       "height": 32, | ||||||
|  |       "rawWidth": 32, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "7a8abb97-b5c4-40c6-805d-533e813e1176", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "water2": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "4b793ca8-cd11-4e9f-9c2d-3b1a7d9cc9ec", | ||||||
|  |       "rawTextureUuid": "7a8abb97-b5c4-40c6-805d-533e813e1176", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 32, | ||||||
|  |       "height": 32, | ||||||
|  |       "rawWidth": 32, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "e7aaefbe-ad7e-45b2-a975-67be0b6c1938", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "water3": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "4578db29-60a4-4381-a6d1-3dc8c0798c99", | ||||||
|  |       "rawTextureUuid": "e7aaefbe-ad7e-45b2-a975-67be0b6c1938", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 32, | ||||||
|  |       "height": 32, | ||||||
|  |       "rawWidth": 32, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "0cfbb5e4-803d-477a-ab9e-02cbb3cacc2b", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "water4": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "fcf28500-4d91-4188-9931-d47746ba28fb", | ||||||
|  |       "rawTextureUuid": "0cfbb5e4-803d-477a-ab9e-02cbb3cacc2b", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": 0, | ||||||
|  |       "offsetY": 0, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 32, | ||||||
|  |       "height": 32, | ||||||
|  |       "rawWidth": 32, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "8fccff14-0eb0-4bf2-818b-3e2715752f6f", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "wraith": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "f39014a3-b5f4-4e72-89a4-f0d66c3c97c5", | ||||||
|  |       "rawTextureUuid": "8fccff14-0eb0-4bf2-818b-3e2715752f6f", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -9.5, | ||||||
|  |       "offsetY": 1, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 0, | ||||||
|  |       "width": 109, | ||||||
|  |       "height": 14, | ||||||
|  |       "rawWidth": 128, | ||||||
|  |       "rawHeight": 16, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
| @@ -0,0 +1,34 @@ | |||||||
|  | { | ||||||
|  |   "ver": "2.3.3", | ||||||
|  |   "uuid": "59b24711-ad20-4081-98a0-dd5f749a1adc", | ||||||
|  |   "type": "sprite", | ||||||
|  |   "wrapMode": "clamp", | ||||||
|  |   "filterMode": "bilinear", | ||||||
|  |   "premultiplyAlpha": false, | ||||||
|  |   "genMipmaps": false, | ||||||
|  |   "packable": true, | ||||||
|  |   "platformSettings": {}, | ||||||
|  |   "subMetas": { | ||||||
|  |     "yog": { | ||||||
|  |       "ver": "1.0.4", | ||||||
|  |       "uuid": "138ffbe2-ef69-497a-bdb3-10960b9009cb", | ||||||
|  |       "rawTextureUuid": "59b24711-ad20-4081-98a0-dd5f749a1adc", | ||||||
|  |       "trimType": "auto", | ||||||
|  |       "trimThreshold": 1, | ||||||
|  |       "rotated": false, | ||||||
|  |       "offsetX": -28, | ||||||
|  |       "offsetY": 5.5, | ||||||
|  |       "trimX": 0, | ||||||
|  |       "trimY": 2, | ||||||
|  |       "width": 200, | ||||||
|  |       "height": 17, | ||||||
|  |       "rawWidth": 256, | ||||||
|  |       "rawHeight": 32, | ||||||
|  |       "borderTop": 0, | ||||||
|  |       "borderBottom": 0, | ||||||
|  |       "borderLeft": 0, | ||||||
|  |       "borderRight": 0, | ||||||
|  |       "subMetas": {} | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
										
											Binary file not shown.
										
									
								
							| Before Width: | Height: | Size: 96 KiB | 
| @@ -1,4 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="UTF-8"?> |  | ||||||
| <tileset version="1.2" tiledversion="1.2.2" name="Tile_W256_H128_S01" tilewidth="256" tileheight="128" tilecount="128" columns="8"> |  | ||||||
|  <image source="Tile_W256_H128_S01.png" width="2048" height="2048"/> |  | ||||||
| </tileset> |  | ||||||
| @@ -1,5 +0,0 @@ | |||||||
| { |  | ||||||
|   "ver": "2.0.0", |  | ||||||
|   "uuid": "df775ad6-885e-411b-8b2a-f4bcf70b4fbf", |  | ||||||
|   "subMetas": {} |  | ||||||
| } |  | ||||||
										
											Binary file not shown.
										
									
								
							| Before Width: | Height: | Size: 229 KiB | 
| @@ -1,23 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="UTF-8"?> |  | ||||||
| <tileset version="1.2" tiledversion="1.2.2" name="Tile_W256_H256_S01" tilewidth="256" tileheight="256" tilecount="20" columns="5"> |  | ||||||
|  <grid orientation="isometric" width="256" height="128"/> |  | ||||||
|  <image source="Tile_W256_H256_S01.png" width="1280" height="1024"/> |  | ||||||
|  <terraintypes> |  | ||||||
|   <terrain name="grass" tile="1"/> |  | ||||||
|   <terrain name="dirt" tile="2"/> |  | ||||||
|  </terraintypes> |  | ||||||
|  <tile id="1" terrain="0,0,0,0"/> |  | ||||||
|  <tile id="2" terrain="1,1,1,1"/> |  | ||||||
|  <tile id="3" terrain="0,1,1,1"/> |  | ||||||
|  <tile id="4" terrain="1,1,0,1"/> |  | ||||||
|  <tile id="5" terrain="1,1,1,0"/> |  | ||||||
|  <tile id="6" terrain="1,0,1,1"/> |  | ||||||
|  <tile id="7" terrain="1,0,1,0"/> |  | ||||||
|  <tile id="8" terrain="0,0,1,1"/> |  | ||||||
|  <tile id="9" terrain="0,1,0,1"/> |  | ||||||
|  <tile id="11" terrain="1,1,0,0"/> |  | ||||||
|  <tile id="12" terrain="1,0,0,0"/> |  | ||||||
|  <tile id="13" terrain="0,0,1,0"/> |  | ||||||
|  <tile id="14" terrain="0,0,0,1"/> |  | ||||||
|  <tile id="15" terrain="0,1,0,0"/> |  | ||||||
| </tileset> |  | ||||||
| @@ -1,5 +0,0 @@ | |||||||
| { |  | ||||||
|   "ver": "2.0.0", |  | ||||||
|   "uuid": "81508f64-031d-4d00-9aa0-8e9841907d0a", |  | ||||||
|   "subMetas": {} |  | ||||||
| } |  | ||||||
										
											Binary file not shown.
										
									
								
							| Before Width: | Height: | Size: 52 KiB | 
| @@ -1,34 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="UTF-8"?> |  | ||||||
| <tileset version="1.2" tiledversion="1.2.3" name="Tile_W256_H256_S02" tilewidth="256" tileheight="256" tilecount="6" columns="6"> |  | ||||||
|  <image source="Tile_W256_H256_S02.png" width="1548" height="258"/> |  | ||||||
|  <tile id="0"> |  | ||||||
|   <objectgroup draworder="index"> |  | ||||||
|    <object id="1" x="120" y="-59"> |  | ||||||
|     <properties> |  | ||||||
|      <property name="boundary_type" value="LowScoreTreasure"/> |  | ||||||
|     </properties> |  | ||||||
|     <polyline points="-1,73 -104,182 -42,283 74,287 125,147"/> |  | ||||||
|    </object> |  | ||||||
|   </objectgroup> |  | ||||||
|  </tile> |  | ||||||
|  <tile id="1"> |  | ||||||
|   <objectgroup draworder="index"> |  | ||||||
|    <object id="1" x="117" y="-36"> |  | ||||||
|     <properties> |  | ||||||
|      <property name="boundary_type" value="HighScoreTreasure"/> |  | ||||||
|     </properties> |  | ||||||
|     <polyline points="13,41 -100,107 -101,236 19,265 119,248 123,105"/> |  | ||||||
|    </object> |  | ||||||
|   </objectgroup> |  | ||||||
|  </tile> |  | ||||||
|  <tile id="4"> |  | ||||||
|   <objectgroup draworder="index"> |  | ||||||
|    <object id="2" x="135" y="-96"> |  | ||||||
|     <properties> |  | ||||||
|      <property name="boundary_type" value="GuardTower"/> |  | ||||||
|     </properties> |  | ||||||
|     <polyline points="0,0 -202,72 -240,408 295,406 189,51"/> |  | ||||||
|    </object> |  | ||||||
|   </objectgroup> |  | ||||||
|  </tile> |  | ||||||
| </tileset> |  | ||||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user