实现2.4.11版本
13
2.4.11/assets/test/prefabs.meta
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "b5d585a3-e6d1-4710-aa13-dc6f42f7bbd1",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
||||
1322
2.4.11/assets/test/prefabs/ListTestItem-sorting.prefab
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "5319446a-3497-48fc-99a7-9806589fd3c6",
|
||||
"importer": "prefab",
|
||||
"optimizationPolicy": "AUTO",
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false,
|
||||
"subMetas": {}
|
||||
}
|
||||
1172
2.4.11/assets/test/prefabs/ListTestItem.prefab
Normal file
9
2.4.11/assets/test/prefabs/ListTestItem.prefab.meta
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "77b9c6bb-79b1-4086-86fa-ac30b56d67cc",
|
||||
"importer": "prefab",
|
||||
"optimizationPolicy": "AUTO",
|
||||
"asyncLoadAssets": false,
|
||||
"readonly": false,
|
||||
"subMetas": {}
|
||||
}
|
||||
13
2.4.11/assets/test/scenes.meta
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "e2dc59cc-2d8b-4b93-adab-48a29cdcf581",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
||||
1124
2.4.11/assets/test/scenes/test-scene-sorting.fire
Normal file
8
2.4.11/assets/test/scenes/test-scene-sorting.fire.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "c6ba3258-b873-4d4f-b31a-60f4c79e523a",
|
||||
"importer": "scene",
|
||||
"asyncLoadAssets": false,
|
||||
"autoReleaseAssets": false,
|
||||
"subMetas": {}
|
||||
}
|
||||
1124
2.4.11/assets/test/scenes/test-scene.fire
Normal file
8
2.4.11/assets/test/scenes/test-scene.fire.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "6b1f9620-447d-4dcc-aeac-09aca68c29e7",
|
||||
"importer": "scene",
|
||||
"asyncLoadAssets": false,
|
||||
"autoReleaseAssets": false,
|
||||
"subMetas": {}
|
||||
}
|
||||
13
2.4.11/assets/test/scripts.meta
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "845ea615-d321-4ea5-ab0e-4c6292a58d18",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
||||
43
2.4.11/assets/test/scripts/list-test-item.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
// Learn TypeScript:
|
||||
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html
|
||||
// Learn Attribute:
|
||||
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html
|
||||
// Learn life-cycle callbacks:
|
||||
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html
|
||||
|
||||
const {ccclass, property} = cc._decorator;
|
||||
|
||||
@ccclass
|
||||
export default class ListTestItem extends cc.Component {
|
||||
|
||||
@property({type: cc.Label})
|
||||
rankText:cc.Label = null;
|
||||
|
||||
@property({type: cc.Label})
|
||||
goldText:cc.Label = null;
|
||||
|
||||
@property({type: cc.Sprite})
|
||||
flagImage:cc.Sprite = null;
|
||||
|
||||
@property({type: cc.Label})
|
||||
levelText:cc.Label = null;
|
||||
|
||||
@property({type: cc.ProgressBar})
|
||||
levelBar:cc.ProgressBar = null;
|
||||
|
||||
@property({type: cc.Label})
|
||||
descText:cc.Label = null;
|
||||
|
||||
@property({type: cc.Node})
|
||||
uiOpacity:cc.Node = null;
|
||||
|
||||
randomData(index:number, flagSpriteFrame:cc.SpriteFrame){
|
||||
this.rankText.string = String(index);
|
||||
this.goldText.string = String(Math.floor(1000 + Math.random()* 1000));
|
||||
this.flagImage.spriteFrame = flagSpriteFrame;
|
||||
this.levelText.string = `lv.${Math.floor(Math.random()* 100)}`;
|
||||
this.levelBar.progress = Math.random();
|
||||
this.descText.string = `什么也没留下 - ${index}`;
|
||||
this.uiOpacity.opacity = 100 + Math.floor(Math.random() * 155);
|
||||
}
|
||||
}
|
||||
10
2.4.11/assets/test/scripts/list-test-item.ts.meta
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"ver": "1.1.0",
|
||||
"uuid": "9f5387d6-696a-4491-82ea-1a443403ed3c",
|
||||
"importer": "typescript",
|
||||
"isPlugin": false,
|
||||
"loadPluginInWeb": true,
|
||||
"loadPluginInNative": true,
|
||||
"loadPluginInEditor": false,
|
||||
"subMetas": {}
|
||||
}
|
||||
28
2.4.11/assets/test/scripts/test-scene.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import ListTestItem from "./list-test-item";
|
||||
|
||||
const { ccclass, property } = cc._decorator;
|
||||
|
||||
@ccclass
|
||||
export class TestScene extends cc.Component {
|
||||
|
||||
@property({type:cc.Prefab})
|
||||
listTestItemPrefab:cc.Prefab = null;
|
||||
|
||||
@property({type:cc.Node})
|
||||
listContent:cc.Node = null;
|
||||
|
||||
@property({type:[cc.SpriteFrame]})
|
||||
flagSpriteFrames:cc.SpriteFrame[] = [];
|
||||
|
||||
@property
|
||||
listItemMax:number = 200;
|
||||
|
||||
start() {
|
||||
for(let i = 0; i < this.listItemMax; i++){
|
||||
let node = cc.instantiate(this.listTestItemPrefab);
|
||||
node.parent = this.listContent;
|
||||
let item = node.getComponent(ListTestItem);
|
||||
item?.randomData(i + 1, this.flagSpriteFrames[Math.floor(Math.random() * this.flagSpriteFrames.length)])
|
||||
}
|
||||
}
|
||||
}
|
||||
10
2.4.11/assets/test/scripts/test-scene.ts.meta
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"ver": "1.1.0",
|
||||
"uuid": "66495605-543c-44a7-b208-dfc48bdce8b8",
|
||||
"importer": "typescript",
|
||||
"isPlugin": false,
|
||||
"loadPluginInWeb": true,
|
||||
"loadPluginInNative": true,
|
||||
"loadPluginInEditor": false,
|
||||
"subMetas": {}
|
||||
}
|
||||
13
2.4.11/assets/test/textures.meta
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "0927e59d-b693-4ac2-9e53-0eeffbd0e543",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
||||
3
2.4.11/assets/test/textures/AutoAtlas.pac
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"__type__": "cc.SpriteAtlas"
|
||||
}
|
||||
23
2.4.11/assets/test/textures/AutoAtlas.pac.meta
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"ver": "1.2.5",
|
||||
"uuid": "42c27816-9000-4fb5-a99e-5aea6002d77b",
|
||||
"importer": "auto-atlas",
|
||||
"maxWidth": 1024,
|
||||
"maxHeight": 1024,
|
||||
"padding": 2,
|
||||
"compressionLevel": 6,
|
||||
"allowRotation": true,
|
||||
"forceSquared": false,
|
||||
"powerOfTwo": false,
|
||||
"algorithm": "MaxRects",
|
||||
"format": "png",
|
||||
"quality": 80,
|
||||
"contourBleed": true,
|
||||
"paddingBleed": true,
|
||||
"filterUnused": true,
|
||||
"packable": false,
|
||||
"premultiplyAlpha": false,
|
||||
"filterMode": "bilinear",
|
||||
"platformSettings": {},
|
||||
"subMetas": {}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/box-1.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
38
2.4.11/assets/test/textures/box-1.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "a095424e-cf6f-4be2-a7b1-34a3ccc2f2ec",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 105,
|
||||
"height": 100,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"box-1": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "1e6042b1-be42-4958-aed1-1b837ad8b6ab",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "a095424e-cf6f-4be2-a7b1-34a3ccc2f2ec",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 105,
|
||||
"height": 100,
|
||||
"rawWidth": 105,
|
||||
"rawHeight": 100,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/box-2.png
Normal file
|
After Width: | Height: | Size: 873 B |
38
2.4.11/assets/test/textures/box-2.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "3a1e47f2-e0c6-48af-8c8c-e48f9f95a7d5",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 171,
|
||||
"height": 27,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"box-2": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "48a96f63-2eeb-4165-a0ca-654da41ec4ae",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "3a1e47f2-e0c6-48af-8c8c-e48f9f95a7d5",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 171,
|
||||
"height": 27,
|
||||
"rawWidth": 171,
|
||||
"rawHeight": 27,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/box-3.png
Normal file
|
After Width: | Height: | Size: 451 B |
38
2.4.11/assets/test/textures/box-3.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "02a30094-7497-4650-81e0-0c49c1c28a2a",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 171,
|
||||
"height": 27,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"box-3": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "6b84a7e0-d31a-42ab-90de-bb04c9ea0d2f",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "02a30094-7497-4650-81e0-0c49c1c28a2a",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 171,
|
||||
"height": 27,
|
||||
"rawWidth": 171,
|
||||
"rawHeight": 27,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/box-4.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
38
2.4.11/assets/test/textures/box-4.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "a218f909-f8aa-4325-9d22-af05af387299",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 240,
|
||||
"height": 241,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"box-4": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "f122dcc2-a3bf-4eb3-a7a1-e93654669f51",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "a218f909-f8aa-4325-9d22-af05af387299",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0.5,
|
||||
"offsetY": 0.5,
|
||||
"trimX": 5,
|
||||
"trimY": 5,
|
||||
"width": 231,
|
||||
"height": 230,
|
||||
"rawWidth": 240,
|
||||
"rawHeight": 241,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/box-5.png
Normal file
|
After Width: | Height: | Size: 952 B |
38
2.4.11/assets/test/textures/box-5.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "b77831b2-df3a-4606-9a8e-0423d0a664a5",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 240,
|
||||
"height": 241,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"box-5": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "9b9dc23d-1001-44d7-9c36-a7d960f7a49d",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "b77831b2-df3a-4606-9a8e-0423d0a664a5",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0.5,
|
||||
"offsetY": 0.5,
|
||||
"trimX": 5,
|
||||
"trimY": 5,
|
||||
"width": 231,
|
||||
"height": 230,
|
||||
"rawWidth": 240,
|
||||
"rawHeight": 241,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/box-6.png
Normal file
|
After Width: | Height: | Size: 200 B |
38
2.4.11/assets/test/textures/box-6.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "2f2e41cc-a8a8-4438-9ff2-014f9282ed06",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 70,
|
||||
"height": 32,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"box-6": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "f195da9c-9b72-4765-9535-724d8383e63e",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "2f2e41cc-a8a8-4438-9ff2-014f9282ed06",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 70,
|
||||
"height": 32,
|
||||
"rawWidth": 70,
|
||||
"rawHeight": 32,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/box-7.png
Normal file
|
After Width: | Height: | Size: 105 B |
38
2.4.11/assets/test/textures/box-7.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "1fe24969-ad78-4ca9-b410-4ba370b3a890",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 63,
|
||||
"height": 43,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"box-7": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "f625fa33-7315-4748-89a5-cf48448980c9",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "1fe24969-ad78-4ca9-b410-4ba370b3a890",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 63,
|
||||
"height": 43,
|
||||
"rawWidth": 63,
|
||||
"rawHeight": 43,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/box-8.png
Normal file
|
After Width: | Height: | Size: 119 B |
38
2.4.11/assets/test/textures/box-8.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "5849d769-7609-4f98-9510-fb88660f795a",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 64,
|
||||
"height": 41,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"box-8": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "2e46e265-3945-4ae5-99d4-8f4eb56f391a",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "5849d769-7609-4f98-9510-fb88660f795a",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 64,
|
||||
"height": 41,
|
||||
"rawWidth": 64,
|
||||
"rawHeight": 41,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/box-9.png
Normal file
|
After Width: | Height: | Size: 153 B |
38
2.4.11/assets/test/textures/box-9.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "240b0fb6-a282-4b50-881f-559e9d9363e4",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 63,
|
||||
"height": 29,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"box-9": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "157e8a85-da38-415f-93f2-ccda0b947415",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "240b0fb6-a282-4b50-881f-559e9d9363e4",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 63,
|
||||
"height": 29,
|
||||
"rawWidth": 63,
|
||||
"rawHeight": 29,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/btn-black.png
Normal file
|
After Width: | Height: | Size: 569 B |
38
2.4.11/assets/test/textures/btn-black.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "78813583-64ea-4df9-90dc-410129a1d07d",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 210,
|
||||
"height": 80,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"btn-black": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "ea1039ee-663b-4557-be34-c1c9adf6a822",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "78813583-64ea-4df9-90dc-410129a1d07d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 210,
|
||||
"height": 80,
|
||||
"rawWidth": 210,
|
||||
"rawHeight": 80,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/btn-white-2.png
Normal file
|
After Width: | Height: | Size: 838 B |
38
2.4.11/assets/test/textures/btn-white-2.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "acd864b8-87e0-46c3-aaaa-d8585dd24570",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 68,
|
||||
"height": 36,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"btn-white-2": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "f7af8780-666e-4912-b0f4-963319c0afb4",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "acd864b8-87e0-46c3-aaaa-d8585dd24570",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 68,
|
||||
"height": 36,
|
||||
"rawWidth": 68,
|
||||
"rawHeight": 36,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/btn-white.png
Normal file
|
After Width: | Height: | Size: 809 B |
38
2.4.11/assets/test/textures/btn-white.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "954ea7ef-12bb-43aa-8077-ed7a567b460c",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 214,
|
||||
"height": 84,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"btn-white": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "b8da036a-31c8-4ea9-8332-e33929b16e38",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "954ea7ef-12bb-43aa-8077-ed7a567b460c",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1,
|
||||
"trimY": 1,
|
||||
"width": 212,
|
||||
"height": 82,
|
||||
"rawWidth": 214,
|
||||
"rawHeight": 84,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/circle-countdown.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
38
2.4.11/assets/test/textures/circle-countdown.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "ca4624dc-b082-4c76-871d-c96cb21fc8fd",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 249,
|
||||
"height": 249,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"circle-countdown": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "097e1875-d5b0-43cc-8aad-64ae21d92aac",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "ca4624dc-b082-4c76-871d-c96cb21fc8fd",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 2,
|
||||
"width": 245,
|
||||
"height": 245,
|
||||
"rawWidth": 249,
|
||||
"rawHeight": 249,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/flag-disconnection.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
38
2.4.11/assets/test/textures/flag-disconnection.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "0e81c7eb-0241-43a9-b503-0f91db7e0f37",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 84,
|
||||
"height": 84,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"flag-disconnection": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "9f408d81-d67e-4968-b885-0edece9785f3",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "0e81c7eb-0241-43a9-b503-0f91db7e0f37",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0.5,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 2,
|
||||
"width": 81,
|
||||
"height": 80,
|
||||
"rawWidth": 84,
|
||||
"rawHeight": 84,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/flag-eliminated.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
38
2.4.11/assets/test/textures/flag-eliminated.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "d3490a01-c27e-4704-950f-dcd87a95d179",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 84,
|
||||
"height": 84,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"flag-eliminated": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "4528c934-0086-44da-8923-a956a624cb75",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "d3490a01-c27e-4704-950f-dcd87a95d179",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0.5,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 2,
|
||||
"width": 81,
|
||||
"height": 80,
|
||||
"rawWidth": 84,
|
||||
"rawHeight": 84,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/flag-escape.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
38
2.4.11/assets/test/textures/flag-escape.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "eaa9875d-572c-46ea-b275-f0bd36cc6697",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 84,
|
||||
"height": 84,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"flag-escape": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "5dde49b3-365a-4e01-b7a5-a079116b7d7c",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "eaa9875d-572c-46ea-b275-f0bd36cc6697",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0.5,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 2,
|
||||
"width": 81,
|
||||
"height": 80,
|
||||
"rawWidth": 84,
|
||||
"rawHeight": 84,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
2.4.11/assets/test/textures/gold.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
38
2.4.11/assets/test/textures/gold.png.meta
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "bc529642-594d-4486-aafb-bfd2d3edf02c",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 60,
|
||||
"height": 61,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"gold": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "f74c16b3-291b-41b4-8542-9b85fbca505b",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "bc529642-594d-4486-aafb-bfd2d3edf02c",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 60,
|
||||
"height": 61,
|
||||
"rawWidth": 60,
|
||||
"rawHeight": 61,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||