├── .gitignore ├── README.md ├── assets ├── Scene.meta ├── Scene │ ├── 00_launch.fire │ ├── 00_launch.fire.meta │ ├── 01_align_basic.fire │ ├── 01_align_basic.fire.meta │ ├── 02_align_center.fire │ ├── 02_align_center.fire.meta │ ├── 03_align_percentage.fire │ ├── 03_align_percentage.fire.meta │ ├── 04_size_percentage.fire │ ├── 04_size_percentage.fire.meta │ ├── 05_size_label.fire │ ├── 05_size_label.fire.meta │ ├── 06_layout_grid.fire │ └── 06_layout_grid.fire.meta ├── Script.meta ├── Script │ ├── Launch.js │ └── Launch.js.meta ├── Texture.meta └── Texture │ ├── HelloWorld.png │ ├── HelloWorld.png.meta │ ├── bg_grey_round.png │ ├── bg_grey_round.png.meta │ ├── gold.png │ ├── gold.png.meta │ ├── singleColor.png │ └── singleColor.png.meta ├── creator.d.ts ├── jsconfig.json ├── project.json ├── settings ├── builder.json ├── builder.panel.json └── project.json ├── template-banner.png └── template.json /.gitignore: -------------------------------------------------------------------------------- 1 | #///////////////////////////////////////////////////////////////////////////// 2 | # Fireball Projects 3 | #///////////////////////////////////////////////////////////////////////////// 4 | 5 | library/ 6 | temp/ 7 | local/ 8 | build/ 9 | 10 | #///////////////////////////////////////////////////////////////////////////// 11 | # Logs and databases 12 | #///////////////////////////////////////////////////////////////////////////// 13 | 14 | *.log 15 | *.sql 16 | *.sqlite 17 | 18 | #///////////////////////////////////////////////////////////////////////////// 19 | # files for debugger 20 | #///////////////////////////////////////////////////////////////////////////// 21 | 22 | *.sln 23 | *.csproj 24 | *.pidb 25 | *.unityproj 26 | *.suo 27 | 28 | #///////////////////////////////////////////////////////////////////////////// 29 | # OS generated files 30 | #///////////////////////////////////////////////////////////////////////////// 31 | 32 | .DS_Store 33 | ehthumbs.db 34 | Thumbs.db 35 | 36 | #///////////////////////////////////////////////////////////////////////////// 37 | # exvim files 38 | #///////////////////////////////////////////////////////////////////////////// 39 | 40 | *UnityVS.meta 41 | *.err 42 | *.err.meta 43 | *.exvim 44 | *.exvim.meta 45 | *.vimentry 46 | *.vimentry.meta 47 | *.vimproject 48 | *.vimproject.meta 49 | .vimfiles.*/ 50 | .exvim.*/ 51 | quick_gen_project_*_autogen.bat 52 | quick_gen_project_*_autogen.bat.meta 53 | quick_gen_project_*_autogen.sh 54 | quick_gen_project_*_autogen.sh.meta 55 | .exvim.app 56 | 57 | #///////////////////////////////////////////////////////////////////////////// 58 | # webstorm files 59 | #///////////////////////////////////////////////////////////////////////////// 60 | 61 | .idea/ 62 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Responsive UI Demo 2 | 3 | Press keyboard `1~6` to switch between scenes. 4 | 5 | To show the full potential of responsive ui, build the project to `Web Mobile` platform and drag your browser window to any size. 6 | -------------------------------------------------------------------------------- /assets/Scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "29f52784-2fca-467b-92e7-8fd9ef8c57b7", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/Scene/00_launch.fire: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.SceneAsset", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "scene": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Scene", 13 | "_objFlags": 0, 14 | "_opacity": 255, 15 | "_color": { 16 | "__type__": "cc.Color", 17 | "r": 255, 18 | "g": 255, 19 | "b": 255, 20 | "a": 255 21 | }, 22 | "_cascadeOpacityEnabled": true, 23 | "_parent": null, 24 | "_anchorPoint": { 25 | "__type__": "cc.Vec2", 26 | "x": 0, 27 | "y": 0 28 | }, 29 | "_contentSize": { 30 | "__type__": "cc.Size", 31 | "width": 0, 32 | "height": 0 33 | }, 34 | "_children": [ 35 | { 36 | "__id__": 2 37 | } 38 | ], 39 | "_localZOrder": 0, 40 | "_globalZOrder": 0, 41 | "_tag": -1, 42 | "_opacityModifyRGB": false, 43 | "_id": "63cb32ba-00da-4230-b31d-37aa43ec7772", 44 | "autoReleaseAssets": false 45 | }, 46 | { 47 | "__type__": "cc.Node", 48 | "_name": "Launcher", 49 | "_objFlags": 0, 50 | "_opacity": 255, 51 | "_color": { 52 | "__type__": "cc.Color", 53 | "r": 255, 54 | "g": 255, 55 | "b": 255, 56 | "a": 255 57 | }, 58 | "_cascadeOpacityEnabled": true, 59 | "_parent": { 60 | "__id__": 1 61 | }, 62 | "_anchorPoint": { 63 | "__type__": "cc.Vec2", 64 | "x": 0.5, 65 | "y": 0.5 66 | }, 67 | "_contentSize": { 68 | "__type__": "cc.Size", 69 | "width": 0, 70 | "height": 0 71 | }, 72 | "_children": [], 73 | "_rotationX": 0, 74 | "_rotationY": 0, 75 | "_scaleX": 1, 76 | "_scaleY": 1, 77 | "_position": { 78 | "__type__": "cc.Vec2", 79 | "x": 0, 80 | "y": 0 81 | }, 82 | "_skewX": 0, 83 | "_skewY": 0, 84 | "_localZOrder": 0, 85 | "_globalZOrder": 0, 86 | "_tag": -1, 87 | "_opacityModifyRGB": false, 88 | "_id": "a7b2bs0KadCH4zfol6ma4a6", 89 | "_active": true, 90 | "_components": [ 91 | { 92 | "__id__": 3 93 | } 94 | ], 95 | "_prefab": null, 96 | "groupIndex": 0 97 | }, 98 | { 99 | "__type__": "280c3rsZJJKnZ9RqbALVwtK", 100 | "_name": "", 101 | "_objFlags": 0, 102 | "node": { 103 | "__id__": 2 104 | }, 105 | "_enabled": true 106 | } 107 | ] -------------------------------------------------------------------------------- /assets/Scene/00_launch.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "63cb32ba-00da-4230-b31d-37aa43ec7772", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/Scene/01_align_basic.fire: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.SceneAsset", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "scene": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Scene", 13 | "_objFlags": 0, 14 | "_opacity": 255, 15 | "_color": { 16 | "__type__": "cc.Color", 17 | "r": 255, 18 | "g": 255, 19 | "b": 255, 20 | "a": 255 21 | }, 22 | "_cascadeOpacityEnabled": true, 23 | "_parent": null, 24 | "_anchorPoint": { 25 | "__type__": "cc.Vec2", 26 | "x": 0, 27 | "y": 0 28 | }, 29 | "_contentSize": { 30 | "__type__": "cc.Size", 31 | "width": 0, 32 | "height": 0 33 | }, 34 | "_children": [ 35 | { 36 | "__id__": 2 37 | } 38 | ], 39 | "_localZOrder": 0, 40 | "_globalZOrder": 0, 41 | "_tag": -1, 42 | "_opacityModifyRGB": false, 43 | "_id": "006ba2ce-fac1-45c1-8304-c1e7af88637a", 44 | "autoReleaseAssets": false 45 | }, 46 | { 47 | "__type__": "cc.Node", 48 | "_name": "Canvas", 49 | "_objFlags": 0, 50 | "_opacity": 255, 51 | "_color": { 52 | "__type__": "cc.Color", 53 | "r": 255, 54 | "g": 255, 55 | "b": 255, 56 | "a": 255 57 | }, 58 | "_cascadeOpacityEnabled": true, 59 | "_parent": { 60 | "__id__": 1 61 | }, 62 | "_anchorPoint": { 63 | "__type__": "cc.Vec2", 64 | "x": 0.5, 65 | "y": 0.5 66 | }, 67 | "_contentSize": { 68 | "__type__": "cc.Size", 69 | "width": 960, 70 | "height": 640 71 | }, 72 | "_children": [ 73 | { 74 | "__id__": 3 75 | } 76 | ], 77 | "_rotationX": 0, 78 | "_rotationY": 0, 79 | "_scaleX": 1, 80 | "_scaleY": 1, 81 | "_position": { 82 | "__type__": "cc.Vec2", 83 | "x": 480, 84 | "y": 320 85 | }, 86 | "_skewX": 0, 87 | "_skewY": 0, 88 | "_localZOrder": 0, 89 | "_globalZOrder": 0, 90 | "_tag": -1, 91 | "_opacityModifyRGB": false, 92 | "_id": "91b766mucdB5648kLQEqulL", 93 | "_active": true, 94 | "_components": [ 95 | { 96 | "__id__": 21 97 | } 98 | ], 99 | "_prefab": null, 100 | "groupIndex": 0 101 | }, 102 | { 103 | "__type__": "cc.Node", 104 | "_name": "bg", 105 | "_objFlags": 0, 106 | "_opacity": 255, 107 | "_color": { 108 | "__type__": "cc.Color", 109 | "r": 17, 110 | "g": 59, 111 | "b": 75, 112 | "a": 255 113 | }, 114 | "_cascadeOpacityEnabled": true, 115 | "_parent": { 116 | "__id__": 2 117 | }, 118 | "_anchorPoint": { 119 | "__type__": "cc.Vec2", 120 | "x": 0.5, 121 | "y": 0.5 122 | }, 123 | "_contentSize": { 124 | "__type__": "cc.Size", 125 | "width": 960, 126 | "height": 640 127 | }, 128 | "_children": [ 129 | { 130 | "__id__": 4 131 | }, 132 | { 133 | "__id__": 7 134 | }, 135 | { 136 | "__id__": 10 137 | }, 138 | { 139 | "__id__": 13 140 | }, 141 | { 142 | "__id__": 16 143 | } 144 | ], 145 | "_rotationX": 0, 146 | "_rotationY": 0, 147 | "_scaleX": 1, 148 | "_scaleY": 1, 149 | "_position": { 150 | "__type__": "cc.Vec2", 151 | "x": 0, 152 | "y": 0 153 | }, 154 | "_skewX": 0, 155 | "_skewY": 0, 156 | "_localZOrder": 0, 157 | "_globalZOrder": 0, 158 | "_tag": -1, 159 | "_opacityModifyRGB": false, 160 | "_id": "8b9b50a+YBLlqJyrw0b+4gV", 161 | "_active": true, 162 | "_components": [ 163 | { 164 | "__id__": 19 165 | }, 166 | { 167 | "__id__": 20 168 | } 169 | ], 170 | "_prefab": null, 171 | "groupIndex": 0 172 | }, 173 | { 174 | "__type__": "cc.Node", 175 | "_name": "Top Left", 176 | "_objFlags": 0, 177 | "_opacity": 255, 178 | "_color": { 179 | "__type__": "cc.Color", 180 | "r": 255, 181 | "g": 255, 182 | "b": 255, 183 | "a": 255 184 | }, 185 | "_cascadeOpacityEnabled": true, 186 | "_parent": { 187 | "__id__": 3 188 | }, 189 | "_anchorPoint": { 190 | "__type__": "cc.Vec2", 191 | "x": 0.5, 192 | "y": 0.5 193 | }, 194 | "_contentSize": { 195 | "__type__": "cc.Size", 196 | "width": 142.32, 197 | "height": 40 198 | }, 199 | "_children": [], 200 | "_rotationX": 0, 201 | "_rotationY": 0, 202 | "_scaleX": 1, 203 | "_scaleY": 1, 204 | "_position": { 205 | "__type__": "cc.Vec2", 206 | "x": -388.84000000000003, 207 | "y": 280 208 | }, 209 | "_skewX": 0, 210 | "_skewY": 0, 211 | "_localZOrder": 0, 212 | "_globalZOrder": 0, 213 | "_tag": -1, 214 | "_opacityModifyRGB": false, 215 | "_id": "9e5fd/CYqNMQ4hKyOXMNLbY", 216 | "_active": true, 217 | "_components": [ 218 | { 219 | "__id__": 5 220 | }, 221 | { 222 | "__id__": 6 223 | } 224 | ], 225 | "_prefab": null, 226 | "groupIndex": 0 227 | }, 228 | { 229 | "__type__": "cc.Label", 230 | "_name": "", 231 | "_objFlags": 0, 232 | "node": { 233 | "__id__": 4 234 | }, 235 | "_enabled": true, 236 | "_useOriginalSize": false, 237 | "_actualFontSize": 40, 238 | "_fontSize": 40, 239 | "_lineHeight": 40, 240 | "_enableWrapText": true, 241 | "_N$file": null, 242 | "_isSystemFontUsed": true, 243 | "_N$string": "Top Left", 244 | "_N$horizontalAlign": 1, 245 | "_N$verticalAlign": 1, 246 | "_N$overflow": 0 247 | }, 248 | { 249 | "__type__": "cc.Widget", 250 | "_name": "", 251 | "_objFlags": 0, 252 | "node": { 253 | "__id__": 4 254 | }, 255 | "_enabled": true, 256 | "isAlignOnce": false, 257 | "_alignFlags": 9, 258 | "_left": 20, 259 | "_right": 0, 260 | "_top": 20, 261 | "_bottom": 0, 262 | "_verticalCenter": 0, 263 | "_horizontalCenter": 0, 264 | "_isAbsLeft": true, 265 | "_isAbsRight": true, 266 | "_isAbsTop": true, 267 | "_isAbsBottom": true, 268 | "_isAbsHorizontalCenter": true, 269 | "_isAbsVerticalCenter": true, 270 | "_originalWidth": 0, 271 | "_originalHeight": 0 272 | }, 273 | { 274 | "__type__": "cc.Node", 275 | "_name": "Top Right", 276 | "_objFlags": 0, 277 | "_opacity": 255, 278 | "_color": { 279 | "__type__": "cc.Color", 280 | "r": 255, 281 | "g": 255, 282 | "b": 255, 283 | "a": 255 284 | }, 285 | "_cascadeOpacityEnabled": true, 286 | "_parent": { 287 | "__id__": 3 288 | }, 289 | "_anchorPoint": { 290 | "__type__": "cc.Vec2", 291 | "x": 0.5, 292 | "y": 0.5 293 | }, 294 | "_contentSize": { 295 | "__type__": "cc.Size", 296 | "width": 168.98, 297 | "height": 40 298 | }, 299 | "_children": [], 300 | "_rotationX": 0, 301 | "_rotationY": 0, 302 | "_scaleX": 1, 303 | "_scaleY": 1, 304 | "_position": { 305 | "__type__": "cc.Vec2", 306 | "x": 375.51, 307 | "y": 280 308 | }, 309 | "_skewX": 0, 310 | "_skewY": 0, 311 | "_localZOrder": 0, 312 | "_globalZOrder": 0, 313 | "_tag": -1, 314 | "_opacityModifyRGB": false, 315 | "_id": "f95a4YmZJNP1r8957Yl/3/E", 316 | "_active": true, 317 | "_components": [ 318 | { 319 | "__id__": 8 320 | }, 321 | { 322 | "__id__": 9 323 | } 324 | ], 325 | "_prefab": null, 326 | "groupIndex": 0 327 | }, 328 | { 329 | "__type__": "cc.Label", 330 | "_name": "", 331 | "_objFlags": 0, 332 | "node": { 333 | "__id__": 7 334 | }, 335 | "_enabled": true, 336 | "_useOriginalSize": false, 337 | "_actualFontSize": 40, 338 | "_fontSize": 40, 339 | "_lineHeight": 40, 340 | "_enableWrapText": true, 341 | "_N$file": null, 342 | "_isSystemFontUsed": true, 343 | "_N$string": "Top Right", 344 | "_N$horizontalAlign": 1, 345 | "_N$verticalAlign": 1, 346 | "_N$overflow": 0 347 | }, 348 | { 349 | "__type__": "cc.Widget", 350 | "_name": "", 351 | "_objFlags": 0, 352 | "node": { 353 | "__id__": 7 354 | }, 355 | "_enabled": true, 356 | "isAlignOnce": false, 357 | "_alignFlags": 33, 358 | "_left": 0, 359 | "_right": 20, 360 | "_top": 20, 361 | "_bottom": 0, 362 | "_verticalCenter": 0, 363 | "_horizontalCenter": 0, 364 | "_isAbsLeft": true, 365 | "_isAbsRight": true, 366 | "_isAbsTop": true, 367 | "_isAbsBottom": true, 368 | "_isAbsHorizontalCenter": true, 369 | "_isAbsVerticalCenter": true, 370 | "_originalWidth": 0, 371 | "_originalHeight": 0 372 | }, 373 | { 374 | "__type__": "cc.Node", 375 | "_name": "Bottom Left", 376 | "_objFlags": 0, 377 | "_opacity": 255, 378 | "_color": { 379 | "__type__": "cc.Color", 380 | "r": 255, 381 | "g": 255, 382 | "b": 255, 383 | "a": 255 384 | }, 385 | "_cascadeOpacityEnabled": true, 386 | "_parent": { 387 | "__id__": 3 388 | }, 389 | "_anchorPoint": { 390 | "__type__": "cc.Vec2", 391 | "x": 0.5, 392 | "y": 0.5 393 | }, 394 | "_contentSize": { 395 | "__type__": "cc.Size", 396 | "width": 204.55, 397 | "height": 40 398 | }, 399 | "_children": [], 400 | "_rotationX": 0, 401 | "_rotationY": 0, 402 | "_scaleX": 1, 403 | "_scaleY": 1, 404 | "_position": { 405 | "__type__": "cc.Vec2", 406 | "x": -357.725, 407 | "y": -280 408 | }, 409 | "_skewX": 0, 410 | "_skewY": 0, 411 | "_localZOrder": 0, 412 | "_globalZOrder": 0, 413 | "_tag": -1, 414 | "_opacityModifyRGB": false, 415 | "_id": "d8d39gqebZDYZUJ0GNN6fpz", 416 | "_active": true, 417 | "_components": [ 418 | { 419 | "__id__": 11 420 | }, 421 | { 422 | "__id__": 12 423 | } 424 | ], 425 | "_prefab": null, 426 | "groupIndex": 0 427 | }, 428 | { 429 | "__type__": "cc.Label", 430 | "_name": "", 431 | "_objFlags": 0, 432 | "node": { 433 | "__id__": 10 434 | }, 435 | "_enabled": true, 436 | "_useOriginalSize": false, 437 | "_actualFontSize": 40, 438 | "_fontSize": 40, 439 | "_lineHeight": 40, 440 | "_enableWrapText": true, 441 | "_N$file": null, 442 | "_isSystemFontUsed": true, 443 | "_N$string": "Bottom Left", 444 | "_N$horizontalAlign": 1, 445 | "_N$verticalAlign": 1, 446 | "_N$overflow": 0 447 | }, 448 | { 449 | "__type__": "cc.Widget", 450 | "_name": "", 451 | "_objFlags": 0, 452 | "node": { 453 | "__id__": 10 454 | }, 455 | "_enabled": true, 456 | "isAlignOnce": false, 457 | "_alignFlags": 12, 458 | "_left": 20, 459 | "_right": 0, 460 | "_top": 0, 461 | "_bottom": 20, 462 | "_verticalCenter": 0, 463 | "_horizontalCenter": 0, 464 | "_isAbsLeft": true, 465 | "_isAbsRight": true, 466 | "_isAbsTop": true, 467 | "_isAbsBottom": true, 468 | "_isAbsHorizontalCenter": true, 469 | "_isAbsVerticalCenter": true, 470 | "_originalWidth": 0, 471 | "_originalHeight": 0 472 | }, 473 | { 474 | "__type__": "cc.Node", 475 | "_name": "Bottom Right", 476 | "_objFlags": 0, 477 | "_opacity": 255, 478 | "_color": { 479 | "__type__": "cc.Color", 480 | "r": 255, 481 | "g": 255, 482 | "b": 255, 483 | "a": 255 484 | }, 485 | "_cascadeOpacityEnabled": true, 486 | "_parent": { 487 | "__id__": 3 488 | }, 489 | "_anchorPoint": { 490 | "__type__": "cc.Vec2", 491 | "x": 0.5, 492 | "y": 0.5 493 | }, 494 | "_contentSize": { 495 | "__type__": "cc.Size", 496 | "width": 231.21, 497 | "height": 40 498 | }, 499 | "_children": [], 500 | "_rotationX": 0, 501 | "_rotationY": 0, 502 | "_scaleX": 1, 503 | "_scaleY": 1, 504 | "_position": { 505 | "__type__": "cc.Vec2", 506 | "x": 344.395, 507 | "y": -280 508 | }, 509 | "_skewX": 0, 510 | "_skewY": 0, 511 | "_localZOrder": 0, 512 | "_globalZOrder": 0, 513 | "_tag": -1, 514 | "_opacityModifyRGB": false, 515 | "_id": "276a2sj1PNAcbb/4CzzLX5v", 516 | "_active": true, 517 | "_components": [ 518 | { 519 | "__id__": 14 520 | }, 521 | { 522 | "__id__": 15 523 | } 524 | ], 525 | "_prefab": null, 526 | "groupIndex": 0 527 | }, 528 | { 529 | "__type__": "cc.Label", 530 | "_name": "", 531 | "_objFlags": 0, 532 | "node": { 533 | "__id__": 13 534 | }, 535 | "_enabled": true, 536 | "_useOriginalSize": false, 537 | "_actualFontSize": 40, 538 | "_fontSize": 40, 539 | "_lineHeight": 40, 540 | "_enableWrapText": true, 541 | "_N$file": null, 542 | "_isSystemFontUsed": true, 543 | "_N$string": "Bottom Right", 544 | "_N$horizontalAlign": 1, 545 | "_N$verticalAlign": 1, 546 | "_N$overflow": 0 547 | }, 548 | { 549 | "__type__": "cc.Widget", 550 | "_name": "", 551 | "_objFlags": 0, 552 | "node": { 553 | "__id__": 13 554 | }, 555 | "_enabled": true, 556 | "isAlignOnce": false, 557 | "_alignFlags": 36, 558 | "_left": 0, 559 | "_right": 20, 560 | "_top": 0, 561 | "_bottom": 20, 562 | "_verticalCenter": 0, 563 | "_horizontalCenter": 0, 564 | "_isAbsLeft": true, 565 | "_isAbsRight": true, 566 | "_isAbsTop": true, 567 | "_isAbsBottom": true, 568 | "_isAbsHorizontalCenter": true, 569 | "_isAbsVerticalCenter": true, 570 | "_originalWidth": 0, 571 | "_originalHeight": 0 572 | }, 573 | { 574 | "__type__": "cc.Node", 575 | "_name": "Center", 576 | "_objFlags": 0, 577 | "_opacity": 255, 578 | "_color": { 579 | "__type__": "cc.Color", 580 | "r": 255, 581 | "g": 255, 582 | "b": 255, 583 | "a": 255 584 | }, 585 | "_cascadeOpacityEnabled": true, 586 | "_parent": { 587 | "__id__": 3 588 | }, 589 | "_anchorPoint": { 590 | "__type__": "cc.Vec2", 591 | "x": 0.5, 592 | "y": 0.5 593 | }, 594 | "_contentSize": { 595 | "__type__": "cc.Size", 596 | "width": 120.06, 597 | "height": 40 598 | }, 599 | "_children": [], 600 | "_rotationX": 0, 601 | "_rotationY": 0, 602 | "_scaleX": 1, 603 | "_scaleY": 1, 604 | "_position": { 605 | "__type__": "cc.Vec2", 606 | "x": 0, 607 | "y": 0 608 | }, 609 | "_skewX": 0, 610 | "_skewY": 0, 611 | "_localZOrder": 0, 612 | "_globalZOrder": 0, 613 | "_tag": -1, 614 | "_opacityModifyRGB": false, 615 | "_id": "d1c85TONqhAwKtpbMIXaro+", 616 | "_active": true, 617 | "_components": [ 618 | { 619 | "__id__": 17 620 | }, 621 | { 622 | "__id__": 18 623 | } 624 | ], 625 | "_prefab": null, 626 | "groupIndex": 0 627 | }, 628 | { 629 | "__type__": "cc.Label", 630 | "_name": "", 631 | "_objFlags": 0, 632 | "node": { 633 | "__id__": 16 634 | }, 635 | "_enabled": true, 636 | "_useOriginalSize": false, 637 | "_actualFontSize": 40, 638 | "_fontSize": 40, 639 | "_lineHeight": 40, 640 | "_enableWrapText": true, 641 | "_N$file": null, 642 | "_isSystemFontUsed": true, 643 | "_N$string": "Center", 644 | "_N$horizontalAlign": 1, 645 | "_N$verticalAlign": 1, 646 | "_N$overflow": 0 647 | }, 648 | { 649 | "__type__": "cc.Widget", 650 | "_name": "", 651 | "_objFlags": 0, 652 | "node": { 653 | "__id__": 16 654 | }, 655 | "_enabled": true, 656 | "isAlignOnce": false, 657 | "_alignFlags": 18, 658 | "_left": 0, 659 | "_right": 0, 660 | "_top": 0, 661 | "_bottom": 0, 662 | "_verticalCenter": 0, 663 | "_horizontalCenter": 0, 664 | "_isAbsLeft": true, 665 | "_isAbsRight": true, 666 | "_isAbsTop": true, 667 | "_isAbsBottom": true, 668 | "_isAbsHorizontalCenter": true, 669 | "_isAbsVerticalCenter": true, 670 | "_originalWidth": 0, 671 | "_originalHeight": 0 672 | }, 673 | { 674 | "__type__": "cc.Sprite", 675 | "_name": "", 676 | "_objFlags": 0, 677 | "node": { 678 | "__id__": 3 679 | }, 680 | "_enabled": true, 681 | "_spriteFrame": { 682 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" 683 | }, 684 | "_type": 0, 685 | "_sizeMode": 0, 686 | "_fillType": 0, 687 | "_fillCenter": { 688 | "__type__": "cc.Vec2", 689 | "x": 0, 690 | "y": 0 691 | }, 692 | "_fillStart": 0, 693 | "_fillRange": 0, 694 | "_isTrimmedMode": true, 695 | "_srcBlendFactor": 770, 696 | "_dstBlendFactor": 771, 697 | "_atlas": null 698 | }, 699 | { 700 | "__type__": "cc.Widget", 701 | "_name": "", 702 | "_objFlags": 0, 703 | "node": { 704 | "__id__": 3 705 | }, 706 | "_enabled": true, 707 | "isAlignOnce": false, 708 | "_alignFlags": 45, 709 | "_left": 0, 710 | "_right": 0, 711 | "_top": 0, 712 | "_bottom": 0, 713 | "_verticalCenter": 0, 714 | "_horizontalCenter": 0, 715 | "_isAbsLeft": true, 716 | "_isAbsRight": true, 717 | "_isAbsTop": true, 718 | "_isAbsBottom": true, 719 | "_isAbsHorizontalCenter": true, 720 | "_isAbsVerticalCenter": true, 721 | "_originalWidth": 100, 722 | "_originalHeight": 100 723 | }, 724 | { 725 | "__type__": "cc.Canvas", 726 | "_name": "", 727 | "_objFlags": 0, 728 | "node": { 729 | "__id__": 2 730 | }, 731 | "_enabled": true, 732 | "_designResolution": { 733 | "__type__": "cc.Size", 734 | "width": 960, 735 | "height": 640 736 | }, 737 | "_fitWidth": false, 738 | "_fitHeight": true 739 | } 740 | ] -------------------------------------------------------------------------------- /assets/Scene/01_align_basic.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "006ba2ce-fac1-45c1-8304-c1e7af88637a", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/Scene/02_align_center.fire: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.SceneAsset", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "scene": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Scene", 13 | "_objFlags": 0, 14 | "_opacity": 255, 15 | "_color": { 16 | "__type__": "cc.Color", 17 | "r": 255, 18 | "g": 255, 19 | "b": 255, 20 | "a": 255 21 | }, 22 | "_cascadeOpacityEnabled": true, 23 | "_parent": null, 24 | "_anchorPoint": { 25 | "__type__": "cc.Vec2", 26 | "x": 0, 27 | "y": 0 28 | }, 29 | "_contentSize": { 30 | "__type__": "cc.Size", 31 | "width": 0, 32 | "height": 0 33 | }, 34 | "_children": [ 35 | { 36 | "__id__": 2 37 | } 38 | ], 39 | "_localZOrder": 0, 40 | "_globalZOrder": 0, 41 | "_tag": -1, 42 | "_opacityModifyRGB": false, 43 | "_id": "35682W6by1CIpww9Ji/FOto" 44 | }, 45 | { 46 | "__type__": "cc.Node", 47 | "_name": "Canvas", 48 | "_objFlags": 0, 49 | "_opacity": 255, 50 | "_color": { 51 | "__type__": "cc.Color", 52 | "r": 255, 53 | "g": 255, 54 | "b": 255, 55 | "a": 255 56 | }, 57 | "_cascadeOpacityEnabled": true, 58 | "_parent": { 59 | "__id__": 1 60 | }, 61 | "_anchorPoint": { 62 | "__type__": "cc.Vec2", 63 | "x": 0.5, 64 | "y": 0.5 65 | }, 66 | "_contentSize": { 67 | "__type__": "cc.Size", 68 | "width": 960, 69 | "height": 640 70 | }, 71 | "_children": [ 72 | { 73 | "__id__": 3 74 | } 75 | ], 76 | "_rotationX": 0, 77 | "_rotationY": 0, 78 | "_scaleX": 1, 79 | "_scaleY": 1, 80 | "_position": { 81 | "__type__": "cc.Vec2", 82 | "x": 480, 83 | "y": 320 84 | }, 85 | "_skewX": 0, 86 | "_skewY": 0, 87 | "_localZOrder": 0, 88 | "_globalZOrder": 0, 89 | "_tag": -1, 90 | "_opacityModifyRGB": false, 91 | "_id": "d8bd5BJRapIzYlbXQQ9m5dI", 92 | "_active": true, 93 | "_components": [ 94 | { 95 | "__id__": 33 96 | } 97 | ], 98 | "_prefab": null, 99 | "groupIndex": 0 100 | }, 101 | { 102 | "__type__": "cc.Node", 103 | "_name": "bg", 104 | "_objFlags": 0, 105 | "_opacity": 255, 106 | "_color": { 107 | "__type__": "cc.Color", 108 | "r": 17, 109 | "g": 59, 110 | "b": 75, 111 | "a": 255 112 | }, 113 | "_cascadeOpacityEnabled": true, 114 | "_parent": { 115 | "__id__": 2 116 | }, 117 | "_anchorPoint": { 118 | "__type__": "cc.Vec2", 119 | "x": 0.5, 120 | "y": 0.5 121 | }, 122 | "_contentSize": { 123 | "__type__": "cc.Size", 124 | "width": 960, 125 | "height": 640 126 | }, 127 | "_children": [ 128 | { 129 | "__id__": 4 130 | }, 131 | { 132 | "__id__": 7 133 | }, 134 | { 135 | "__id__": 10 136 | }, 137 | { 138 | "__id__": 13 139 | }, 140 | { 141 | "__id__": 16 142 | }, 143 | { 144 | "__id__": 19 145 | }, 146 | { 147 | "__id__": 22 148 | }, 149 | { 150 | "__id__": 25 151 | }, 152 | { 153 | "__id__": 28 154 | } 155 | ], 156 | "_rotationX": 0, 157 | "_rotationY": 0, 158 | "_scaleX": 1, 159 | "_scaleY": 1, 160 | "_position": { 161 | "__type__": "cc.Vec2", 162 | "x": 0, 163 | "y": 0 164 | }, 165 | "_skewX": 0, 166 | "_skewY": 0, 167 | "_localZOrder": 0, 168 | "_globalZOrder": 0, 169 | "_tag": -1, 170 | "_opacityModifyRGB": false, 171 | "_id": "36d2dYbnypGQ6uV1Qdm6ne+", 172 | "_active": true, 173 | "_components": [ 174 | { 175 | "__id__": 31 176 | }, 177 | { 178 | "__id__": 32 179 | } 180 | ], 181 | "_prefab": null, 182 | "groupIndex": 0 183 | }, 184 | { 185 | "__type__": "cc.Node", 186 | "_name": "Top Center", 187 | "_objFlags": 0, 188 | "_opacity": 255, 189 | "_color": { 190 | "__type__": "cc.Color", 191 | "r": 255, 192 | "g": 255, 193 | "b": 255, 194 | "a": 255 195 | }, 196 | "_cascadeOpacityEnabled": true, 197 | "_parent": { 198 | "__id__": 3 199 | }, 200 | "_anchorPoint": { 201 | "__type__": "cc.Vec2", 202 | "x": 0.5, 203 | "y": 0.5 204 | }, 205 | "_contentSize": { 206 | "__type__": "cc.Size", 207 | "width": 195.66, 208 | "height": 40 209 | }, 210 | "_children": [], 211 | "_rotationX": 0, 212 | "_rotationY": 0, 213 | "_scaleX": 1, 214 | "_scaleY": 1, 215 | "_position": { 216 | "__type__": "cc.Vec2", 217 | "x": 0, 218 | "y": 280 219 | }, 220 | "_skewX": 0, 221 | "_skewY": 0, 222 | "_localZOrder": 0, 223 | "_globalZOrder": 0, 224 | "_tag": -1, 225 | "_opacityModifyRGB": false, 226 | "_id": "c07a2rs5rVEOKl1br6laJzc", 227 | "_active": true, 228 | "_components": [ 229 | { 230 | "__id__": 5 231 | }, 232 | { 233 | "__id__": 6 234 | } 235 | ], 236 | "_prefab": null, 237 | "groupIndex": 0 238 | }, 239 | { 240 | "__type__": "cc.Label", 241 | "_name": "", 242 | "_objFlags": 0, 243 | "node": { 244 | "__id__": 4 245 | }, 246 | "_enabled": true, 247 | "_useOriginalSize": false, 248 | "_actualFontSize": 40, 249 | "_fontSize": 40, 250 | "_lineHeight": 40, 251 | "_enableWrapText": true, 252 | "_N$file": null, 253 | "_isSystemFontUsed": true, 254 | "_N$string": "Top Center", 255 | "_N$horizontalAlign": 1, 256 | "_N$verticalAlign": 1, 257 | "_N$overflow": 0 258 | }, 259 | { 260 | "__type__": "cc.Widget", 261 | "_name": "", 262 | "_objFlags": 0, 263 | "node": { 264 | "__id__": 4 265 | }, 266 | "_enabled": true, 267 | "isAlignOnce": false, 268 | "_alignFlags": 17, 269 | "_left": 20, 270 | "_right": 0, 271 | "_top": 20, 272 | "_bottom": 0, 273 | "_verticalCenter": 0, 274 | "_horizontalCenter": 0, 275 | "_isAbsLeft": true, 276 | "_isAbsRight": true, 277 | "_isAbsTop": true, 278 | "_isAbsBottom": true, 279 | "_isAbsHorizontalCenter": true, 280 | "_isAbsVerticalCenter": true, 281 | "_originalWidth": 0, 282 | "_originalHeight": 0 283 | }, 284 | { 285 | "__type__": "cc.Node", 286 | "_name": "Middle Right", 287 | "_objFlags": 0, 288 | "_opacity": 255, 289 | "_color": { 290 | "__type__": "cc.Color", 291 | "r": 255, 292 | "g": 255, 293 | "b": 255, 294 | "a": 255 295 | }, 296 | "_cascadeOpacityEnabled": true, 297 | "_parent": { 298 | "__id__": 3 299 | }, 300 | "_anchorPoint": { 301 | "__type__": "cc.Vec2", 302 | "x": 0.5, 303 | "y": 0.5 304 | }, 305 | "_contentSize": { 306 | "__type__": "cc.Size", 307 | "width": 222.32, 308 | "height": 40 309 | }, 310 | "_children": [], 311 | "_rotationX": 0, 312 | "_rotationY": 0, 313 | "_scaleX": 1, 314 | "_scaleY": 1, 315 | "_position": { 316 | "__type__": "cc.Vec2", 317 | "x": 348.84000000000003, 318 | "y": 0 319 | }, 320 | "_skewX": 0, 321 | "_skewY": 0, 322 | "_localZOrder": 0, 323 | "_globalZOrder": 0, 324 | "_tag": -1, 325 | "_opacityModifyRGB": false, 326 | "_id": "10628qDIj9IT5bzKC/TGhI5", 327 | "_active": true, 328 | "_components": [ 329 | { 330 | "__id__": 8 331 | }, 332 | { 333 | "__id__": 9 334 | } 335 | ], 336 | "_prefab": null, 337 | "groupIndex": 0 338 | }, 339 | { 340 | "__type__": "cc.Label", 341 | "_name": "", 342 | "_objFlags": 0, 343 | "node": { 344 | "__id__": 7 345 | }, 346 | "_enabled": true, 347 | "_useOriginalSize": false, 348 | "_actualFontSize": 40, 349 | "_fontSize": 40, 350 | "_lineHeight": 40, 351 | "_enableWrapText": true, 352 | "_N$file": null, 353 | "_isSystemFontUsed": true, 354 | "_N$string": "Middle Right", 355 | "_N$horizontalAlign": 1, 356 | "_N$verticalAlign": 1, 357 | "_N$overflow": 0 358 | }, 359 | { 360 | "__type__": "cc.Widget", 361 | "_name": "", 362 | "_objFlags": 0, 363 | "node": { 364 | "__id__": 7 365 | }, 366 | "_enabled": true, 367 | "isAlignOnce": false, 368 | "_alignFlags": 34, 369 | "_left": 0, 370 | "_right": 20, 371 | "_top": 40, 372 | "_bottom": 0, 373 | "_verticalCenter": 0, 374 | "_horizontalCenter": 0, 375 | "_isAbsLeft": true, 376 | "_isAbsRight": true, 377 | "_isAbsTop": true, 378 | "_isAbsBottom": true, 379 | "_isAbsHorizontalCenter": true, 380 | "_isAbsVerticalCenter": true, 381 | "_originalWidth": 0, 382 | "_originalHeight": 0 383 | }, 384 | { 385 | "__type__": "cc.Node", 386 | "_name": "Middle Left", 387 | "_objFlags": 0, 388 | "_opacity": 255, 389 | "_color": { 390 | "__type__": "cc.Color", 391 | "r": 255, 392 | "g": 255, 393 | "b": 255, 394 | "a": 255 395 | }, 396 | "_cascadeOpacityEnabled": true, 397 | "_parent": { 398 | "__id__": 3 399 | }, 400 | "_anchorPoint": { 401 | "__type__": "cc.Vec2", 402 | "x": 0.5, 403 | "y": 0.5 404 | }, 405 | "_contentSize": { 406 | "__type__": "cc.Size", 407 | "width": 195.66, 408 | "height": 40 409 | }, 410 | "_children": [], 411 | "_rotationX": 0, 412 | "_rotationY": 0, 413 | "_scaleX": 1, 414 | "_scaleY": 1, 415 | "_position": { 416 | "__type__": "cc.Vec2", 417 | "x": -362.17, 418 | "y": 0 419 | }, 420 | "_skewX": 0, 421 | "_skewY": 0, 422 | "_localZOrder": 0, 423 | "_globalZOrder": 0, 424 | "_tag": -1, 425 | "_opacityModifyRGB": false, 426 | "_id": "0d70eRYF15IOb/lI0ZaPkCS", 427 | "_active": true, 428 | "_components": [ 429 | { 430 | "__id__": 11 431 | }, 432 | { 433 | "__id__": 12 434 | } 435 | ], 436 | "_prefab": null, 437 | "groupIndex": 0 438 | }, 439 | { 440 | "__type__": "cc.Label", 441 | "_name": "", 442 | "_objFlags": 0, 443 | "node": { 444 | "__id__": 10 445 | }, 446 | "_enabled": true, 447 | "_useOriginalSize": false, 448 | "_actualFontSize": 40, 449 | "_fontSize": 40, 450 | "_lineHeight": 40, 451 | "_enableWrapText": true, 452 | "_N$file": null, 453 | "_isSystemFontUsed": true, 454 | "_N$string": "Middle Left", 455 | "_N$horizontalAlign": 1, 456 | "_N$verticalAlign": 1, 457 | "_N$overflow": 0 458 | }, 459 | { 460 | "__type__": "cc.Widget", 461 | "_name": "", 462 | "_objFlags": 0, 463 | "node": { 464 | "__id__": 10 465 | }, 466 | "_enabled": true, 467 | "isAlignOnce": false, 468 | "_alignFlags": 10, 469 | "_left": 20, 470 | "_right": 0, 471 | "_top": 0, 472 | "_bottom": 20, 473 | "_verticalCenter": 0, 474 | "_horizontalCenter": 0, 475 | "_isAbsLeft": true, 476 | "_isAbsRight": true, 477 | "_isAbsTop": true, 478 | "_isAbsBottom": true, 479 | "_isAbsHorizontalCenter": true, 480 | "_isAbsVerticalCenter": true, 481 | "_originalWidth": 0, 482 | "_originalHeight": 0 483 | }, 484 | { 485 | "__type__": "cc.Node", 486 | "_name": "Bottom Center", 487 | "_objFlags": 0, 488 | "_opacity": 255, 489 | "_color": { 490 | "__type__": "cc.Color", 491 | "r": 255, 492 | "g": 255, 493 | "b": 255, 494 | "a": 255 495 | }, 496 | "_cascadeOpacityEnabled": true, 497 | "_parent": { 498 | "__id__": 3 499 | }, 500 | "_anchorPoint": { 501 | "__type__": "cc.Vec2", 502 | "x": 0.5, 503 | "y": 0.5 504 | }, 505 | "_contentSize": { 506 | "__type__": "cc.Size", 507 | "width": 257.89, 508 | "height": 40 509 | }, 510 | "_children": [], 511 | "_rotationX": 0, 512 | "_rotationY": 0, 513 | "_scaleX": 1, 514 | "_scaleY": 1, 515 | "_position": { 516 | "__type__": "cc.Vec2", 517 | "x": 0, 518 | "y": -280 519 | }, 520 | "_skewX": 0, 521 | "_skewY": 0, 522 | "_localZOrder": 0, 523 | "_globalZOrder": 0, 524 | "_tag": -1, 525 | "_opacityModifyRGB": false, 526 | "_id": "37fc0rfpqlBE6O92Qvd6B4V", 527 | "_active": true, 528 | "_components": [ 529 | { 530 | "__id__": 14 531 | }, 532 | { 533 | "__id__": 15 534 | } 535 | ], 536 | "_prefab": null, 537 | "groupIndex": 0 538 | }, 539 | { 540 | "__type__": "cc.Label", 541 | "_name": "", 542 | "_objFlags": 0, 543 | "node": { 544 | "__id__": 13 545 | }, 546 | "_enabled": true, 547 | "_useOriginalSize": false, 548 | "_actualFontSize": 40, 549 | "_fontSize": 40, 550 | "_lineHeight": 40, 551 | "_enableWrapText": true, 552 | "_N$file": null, 553 | "_isSystemFontUsed": true, 554 | "_N$string": "Bottom Center", 555 | "_N$horizontalAlign": 1, 556 | "_N$verticalAlign": 1, 557 | "_N$overflow": 0 558 | }, 559 | { 560 | "__type__": "cc.Widget", 561 | "_name": "", 562 | "_objFlags": 0, 563 | "node": { 564 | "__id__": 13 565 | }, 566 | "_enabled": true, 567 | "isAlignOnce": false, 568 | "_alignFlags": 20, 569 | "_left": 0, 570 | "_right": 6.660000000000011, 571 | "_top": 0, 572 | "_bottom": 20, 573 | "_verticalCenter": 0, 574 | "_horizontalCenter": 0, 575 | "_isAbsLeft": true, 576 | "_isAbsRight": true, 577 | "_isAbsTop": true, 578 | "_isAbsBottom": true, 579 | "_isAbsHorizontalCenter": true, 580 | "_isAbsVerticalCenter": true, 581 | "_originalWidth": 0, 582 | "_originalHeight": 0 583 | }, 584 | { 585 | "__type__": "cc.Node", 586 | "_name": "Center", 587 | "_objFlags": 0, 588 | "_opacity": 255, 589 | "_color": { 590 | "__type__": "cc.Color", 591 | "r": 255, 592 | "g": 255, 593 | "b": 255, 594 | "a": 255 595 | }, 596 | "_cascadeOpacityEnabled": true, 597 | "_parent": { 598 | "__id__": 3 599 | }, 600 | "_anchorPoint": { 601 | "__type__": "cc.Vec2", 602 | "x": 0.5, 603 | "y": 0.5 604 | }, 605 | "_contentSize": { 606 | "__type__": "cc.Size", 607 | "width": 120.06, 608 | "height": 40 609 | }, 610 | "_children": [], 611 | "_rotationX": 0, 612 | "_rotationY": 0, 613 | "_scaleX": 1, 614 | "_scaleY": 1, 615 | "_position": { 616 | "__type__": "cc.Vec2", 617 | "x": 0, 618 | "y": 0 619 | }, 620 | "_skewX": 0, 621 | "_skewY": 0, 622 | "_localZOrder": 0, 623 | "_globalZOrder": 0, 624 | "_tag": -1, 625 | "_opacityModifyRGB": false, 626 | "_id": "8f610kEFLdP2a3/foDCdTL0", 627 | "_active": true, 628 | "_components": [ 629 | { 630 | "__id__": 17 631 | }, 632 | { 633 | "__id__": 18 634 | } 635 | ], 636 | "_prefab": null, 637 | "groupIndex": 0 638 | }, 639 | { 640 | "__type__": "cc.Label", 641 | "_name": "", 642 | "_objFlags": 0, 643 | "node": { 644 | "__id__": 16 645 | }, 646 | "_enabled": true, 647 | "_useOriginalSize": false, 648 | "_actualFontSize": 40, 649 | "_fontSize": 40, 650 | "_lineHeight": 40, 651 | "_enableWrapText": true, 652 | "_N$file": null, 653 | "_isSystemFontUsed": true, 654 | "_N$string": "Center", 655 | "_N$horizontalAlign": 1, 656 | "_N$verticalAlign": 1, 657 | "_N$overflow": 0 658 | }, 659 | { 660 | "__type__": "cc.Widget", 661 | "_name": "", 662 | "_objFlags": 0, 663 | "node": { 664 | "__id__": 16 665 | }, 666 | "_enabled": true, 667 | "isAlignOnce": false, 668 | "_alignFlags": 18, 669 | "_left": 0, 670 | "_right": 0, 671 | "_top": 0, 672 | "_bottom": 0, 673 | "_verticalCenter": 0, 674 | "_horizontalCenter": 0, 675 | "_isAbsLeft": true, 676 | "_isAbsRight": true, 677 | "_isAbsTop": true, 678 | "_isAbsBottom": true, 679 | "_isAbsHorizontalCenter": true, 680 | "_isAbsVerticalCenter": true, 681 | "_originalWidth": 0, 682 | "_originalHeight": 0 683 | }, 684 | { 685 | "__type__": "cc.Node", 686 | "_name": "center_bot_left", 687 | "_objFlags": 0, 688 | "_opacity": 255, 689 | "_color": { 690 | "__type__": "cc.Color", 691 | "r": 255, 692 | "g": 255, 693 | "b": 255, 694 | "a": 255 695 | }, 696 | "_cascadeOpacityEnabled": true, 697 | "_parent": { 698 | "__id__": 3 699 | }, 700 | "_anchorPoint": { 701 | "__type__": "cc.Vec2", 702 | "x": 0.5, 703 | "y": 0.5 704 | }, 705 | "_contentSize": { 706 | "__type__": "cc.Size", 707 | "width": 50, 708 | "height": 50 709 | }, 710 | "_children": [], 711 | "_rotationX": 0, 712 | "_rotationY": 0, 713 | "_scaleX": 1, 714 | "_scaleY": 1, 715 | "_position": { 716 | "__type__": "cc.Vec2", 717 | "x": -100, 718 | "y": -100 719 | }, 720 | "_skewX": 0, 721 | "_skewY": 0, 722 | "_localZOrder": 0, 723 | "_globalZOrder": 0, 724 | "_tag": -1, 725 | "_opacityModifyRGB": false, 726 | "_id": "eb833Z16vtO55rWiYbsLc87", 727 | "_active": true, 728 | "_components": [ 729 | { 730 | "__id__": 20 731 | }, 732 | { 733 | "__id__": 21 734 | } 735 | ], 736 | "_prefab": null, 737 | "groupIndex": 0 738 | }, 739 | { 740 | "__type__": "cc.Sprite", 741 | "_name": "", 742 | "_objFlags": 0, 743 | "node": { 744 | "__id__": 19 745 | }, 746 | "_enabled": true, 747 | "_spriteFrame": { 748 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 749 | }, 750 | "_type": 0, 751 | "_sizeMode": 0, 752 | "_fillType": 0, 753 | "_fillCenter": { 754 | "__type__": "cc.Vec2", 755 | "x": 0, 756 | "y": 0 757 | }, 758 | "_fillStart": 0, 759 | "_fillRange": 0, 760 | "_isTrimmedMode": true, 761 | "_srcBlendFactor": 770, 762 | "_dstBlendFactor": 771, 763 | "_atlas": null 764 | }, 765 | { 766 | "__type__": "cc.Widget", 767 | "_name": "", 768 | "_objFlags": 0, 769 | "node": { 770 | "__id__": 19 771 | }, 772 | "_enabled": true, 773 | "isAlignOnce": false, 774 | "_alignFlags": 18, 775 | "_left": 0, 776 | "_right": 0, 777 | "_top": 0, 778 | "_bottom": 0, 779 | "_verticalCenter": -100, 780 | "_horizontalCenter": -100, 781 | "_isAbsLeft": true, 782 | "_isAbsRight": true, 783 | "_isAbsTop": true, 784 | "_isAbsBottom": true, 785 | "_isAbsHorizontalCenter": true, 786 | "_isAbsVerticalCenter": true, 787 | "_originalWidth": 0, 788 | "_originalHeight": 0 789 | }, 790 | { 791 | "__type__": "cc.Node", 792 | "_name": "center_bot_right", 793 | "_objFlags": 0, 794 | "_opacity": 255, 795 | "_color": { 796 | "__type__": "cc.Color", 797 | "r": 255, 798 | "g": 255, 799 | "b": 255, 800 | "a": 255 801 | }, 802 | "_cascadeOpacityEnabled": true, 803 | "_parent": { 804 | "__id__": 3 805 | }, 806 | "_anchorPoint": { 807 | "__type__": "cc.Vec2", 808 | "x": 0.5, 809 | "y": 0.5 810 | }, 811 | "_contentSize": { 812 | "__type__": "cc.Size", 813 | "width": 50, 814 | "height": 50 815 | }, 816 | "_children": [], 817 | "_rotationX": 0, 818 | "_rotationY": 0, 819 | "_scaleX": 1, 820 | "_scaleY": 1, 821 | "_position": { 822 | "__type__": "cc.Vec2", 823 | "x": 100, 824 | "y": -100 825 | }, 826 | "_skewX": 0, 827 | "_skewY": 0, 828 | "_localZOrder": 0, 829 | "_globalZOrder": 0, 830 | "_tag": -1, 831 | "_opacityModifyRGB": false, 832 | "_id": "d083fAKy0xPvrGH4sNebrEN", 833 | "_active": true, 834 | "_components": [ 835 | { 836 | "__id__": 23 837 | }, 838 | { 839 | "__id__": 24 840 | } 841 | ], 842 | "_prefab": null, 843 | "groupIndex": 0 844 | }, 845 | { 846 | "__type__": "cc.Sprite", 847 | "_name": "", 848 | "_objFlags": 0, 849 | "node": { 850 | "__id__": 22 851 | }, 852 | "_enabled": true, 853 | "_spriteFrame": { 854 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 855 | }, 856 | "_type": 0, 857 | "_sizeMode": 0, 858 | "_fillType": 0, 859 | "_fillCenter": { 860 | "__type__": "cc.Vec2", 861 | "x": 0, 862 | "y": 0 863 | }, 864 | "_fillStart": 0, 865 | "_fillRange": 0, 866 | "_isTrimmedMode": true, 867 | "_srcBlendFactor": 770, 868 | "_dstBlendFactor": 771, 869 | "_atlas": null 870 | }, 871 | { 872 | "__type__": "cc.Widget", 873 | "_name": "", 874 | "_objFlags": 0, 875 | "node": { 876 | "__id__": 22 877 | }, 878 | "_enabled": true, 879 | "isAlignOnce": false, 880 | "_alignFlags": 18, 881 | "_left": 0, 882 | "_right": 0, 883 | "_top": 0, 884 | "_bottom": 0, 885 | "_verticalCenter": -100, 886 | "_horizontalCenter": 100, 887 | "_isAbsLeft": true, 888 | "_isAbsRight": true, 889 | "_isAbsTop": true, 890 | "_isAbsBottom": true, 891 | "_isAbsHorizontalCenter": true, 892 | "_isAbsVerticalCenter": true, 893 | "_originalWidth": 0, 894 | "_originalHeight": 0 895 | }, 896 | { 897 | "__type__": "cc.Node", 898 | "_name": "center_top_left", 899 | "_objFlags": 0, 900 | "_opacity": 255, 901 | "_color": { 902 | "__type__": "cc.Color", 903 | "r": 255, 904 | "g": 255, 905 | "b": 255, 906 | "a": 255 907 | }, 908 | "_cascadeOpacityEnabled": true, 909 | "_parent": { 910 | "__id__": 3 911 | }, 912 | "_anchorPoint": { 913 | "__type__": "cc.Vec2", 914 | "x": 0.5, 915 | "y": 0.5 916 | }, 917 | "_contentSize": { 918 | "__type__": "cc.Size", 919 | "width": 50, 920 | "height": 50 921 | }, 922 | "_children": [], 923 | "_rotationX": 0, 924 | "_rotationY": 0, 925 | "_scaleX": 1, 926 | "_scaleY": 1, 927 | "_position": { 928 | "__type__": "cc.Vec2", 929 | "x": -100, 930 | "y": 100 931 | }, 932 | "_skewX": 0, 933 | "_skewY": 0, 934 | "_localZOrder": 0, 935 | "_globalZOrder": 0, 936 | "_tag": -1, 937 | "_opacityModifyRGB": false, 938 | "_id": "bddd9AJL+9Iboyvk+TUSjQ3", 939 | "_active": true, 940 | "_components": [ 941 | { 942 | "__id__": 26 943 | }, 944 | { 945 | "__id__": 27 946 | } 947 | ], 948 | "_prefab": null, 949 | "groupIndex": 0 950 | }, 951 | { 952 | "__type__": "cc.Sprite", 953 | "_name": "", 954 | "_objFlags": 0, 955 | "node": { 956 | "__id__": 25 957 | }, 958 | "_enabled": true, 959 | "_spriteFrame": { 960 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 961 | }, 962 | "_type": 0, 963 | "_sizeMode": 0, 964 | "_fillType": 0, 965 | "_fillCenter": { 966 | "__type__": "cc.Vec2", 967 | "x": 0, 968 | "y": 0 969 | }, 970 | "_fillStart": 0, 971 | "_fillRange": 0, 972 | "_isTrimmedMode": true, 973 | "_srcBlendFactor": 770, 974 | "_dstBlendFactor": 771, 975 | "_atlas": null 976 | }, 977 | { 978 | "__type__": "cc.Widget", 979 | "_name": "", 980 | "_objFlags": 0, 981 | "node": { 982 | "__id__": 25 983 | }, 984 | "_enabled": true, 985 | "isAlignOnce": false, 986 | "_alignFlags": 18, 987 | "_left": 0, 988 | "_right": 0, 989 | "_top": 0, 990 | "_bottom": 0, 991 | "_verticalCenter": 100, 992 | "_horizontalCenter": -100, 993 | "_isAbsLeft": true, 994 | "_isAbsRight": true, 995 | "_isAbsTop": true, 996 | "_isAbsBottom": true, 997 | "_isAbsHorizontalCenter": true, 998 | "_isAbsVerticalCenter": true, 999 | "_originalWidth": 0, 1000 | "_originalHeight": 0 1001 | }, 1002 | { 1003 | "__type__": "cc.Node", 1004 | "_name": "center_top_right", 1005 | "_objFlags": 0, 1006 | "_opacity": 255, 1007 | "_color": { 1008 | "__type__": "cc.Color", 1009 | "r": 255, 1010 | "g": 255, 1011 | "b": 255, 1012 | "a": 255 1013 | }, 1014 | "_cascadeOpacityEnabled": true, 1015 | "_parent": { 1016 | "__id__": 3 1017 | }, 1018 | "_anchorPoint": { 1019 | "__type__": "cc.Vec2", 1020 | "x": 0.5, 1021 | "y": 0.5 1022 | }, 1023 | "_contentSize": { 1024 | "__type__": "cc.Size", 1025 | "width": 50, 1026 | "height": 50 1027 | }, 1028 | "_children": [], 1029 | "_rotationX": 0, 1030 | "_rotationY": 0, 1031 | "_scaleX": 1, 1032 | "_scaleY": 1, 1033 | "_position": { 1034 | "__type__": "cc.Vec2", 1035 | "x": 100, 1036 | "y": 100 1037 | }, 1038 | "_skewX": 0, 1039 | "_skewY": 0, 1040 | "_localZOrder": 0, 1041 | "_globalZOrder": 0, 1042 | "_tag": -1, 1043 | "_opacityModifyRGB": false, 1044 | "_id": "42e42pweOlM6IRsx8Dykp5R", 1045 | "_active": true, 1046 | "_components": [ 1047 | { 1048 | "__id__": 29 1049 | }, 1050 | { 1051 | "__id__": 30 1052 | } 1053 | ], 1054 | "_prefab": null, 1055 | "groupIndex": 0 1056 | }, 1057 | { 1058 | "__type__": "cc.Sprite", 1059 | "_name": "", 1060 | "_objFlags": 0, 1061 | "node": { 1062 | "__id__": 28 1063 | }, 1064 | "_enabled": true, 1065 | "_spriteFrame": { 1066 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1067 | }, 1068 | "_type": 0, 1069 | "_sizeMode": 0, 1070 | "_fillType": 0, 1071 | "_fillCenter": { 1072 | "__type__": "cc.Vec2", 1073 | "x": 0, 1074 | "y": 0 1075 | }, 1076 | "_fillStart": 0, 1077 | "_fillRange": 0, 1078 | "_isTrimmedMode": true, 1079 | "_srcBlendFactor": 770, 1080 | "_dstBlendFactor": 771, 1081 | "_atlas": null 1082 | }, 1083 | { 1084 | "__type__": "cc.Widget", 1085 | "_name": "", 1086 | "_objFlags": 0, 1087 | "node": { 1088 | "__id__": 28 1089 | }, 1090 | "_enabled": true, 1091 | "isAlignOnce": false, 1092 | "_alignFlags": 18, 1093 | "_left": 0, 1094 | "_right": 0, 1095 | "_top": 0, 1096 | "_bottom": 0, 1097 | "_verticalCenter": 100, 1098 | "_horizontalCenter": 100, 1099 | "_isAbsLeft": true, 1100 | "_isAbsRight": true, 1101 | "_isAbsTop": true, 1102 | "_isAbsBottom": true, 1103 | "_isAbsHorizontalCenter": true, 1104 | "_isAbsVerticalCenter": true, 1105 | "_originalWidth": 0, 1106 | "_originalHeight": 0 1107 | }, 1108 | { 1109 | "__type__": "cc.Sprite", 1110 | "_name": "", 1111 | "_objFlags": 0, 1112 | "node": { 1113 | "__id__": 3 1114 | }, 1115 | "_enabled": true, 1116 | "_spriteFrame": { 1117 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" 1118 | }, 1119 | "_type": 0, 1120 | "_sizeMode": 0, 1121 | "_fillType": 0, 1122 | "_fillCenter": { 1123 | "__type__": "cc.Vec2", 1124 | "x": 0, 1125 | "y": 0 1126 | }, 1127 | "_fillStart": 0, 1128 | "_fillRange": 0, 1129 | "_isTrimmedMode": true, 1130 | "_srcBlendFactor": 770, 1131 | "_dstBlendFactor": 771, 1132 | "_atlas": null 1133 | }, 1134 | { 1135 | "__type__": "cc.Widget", 1136 | "_name": "", 1137 | "_objFlags": 0, 1138 | "node": { 1139 | "__id__": 3 1140 | }, 1141 | "_enabled": true, 1142 | "isAlignOnce": false, 1143 | "_alignFlags": 45, 1144 | "_left": 0, 1145 | "_right": 0, 1146 | "_top": 0, 1147 | "_bottom": 0, 1148 | "_verticalCenter": 0, 1149 | "_horizontalCenter": 0, 1150 | "_isAbsLeft": true, 1151 | "_isAbsRight": true, 1152 | "_isAbsTop": true, 1153 | "_isAbsBottom": true, 1154 | "_isAbsHorizontalCenter": true, 1155 | "_isAbsVerticalCenter": true, 1156 | "_originalWidth": 100, 1157 | "_originalHeight": 100 1158 | }, 1159 | { 1160 | "__type__": "cc.Canvas", 1161 | "_name": "", 1162 | "_objFlags": 0, 1163 | "node": { 1164 | "__id__": 2 1165 | }, 1166 | "_enabled": true, 1167 | "_designResolution": { 1168 | "__type__": "cc.Size", 1169 | "width": 960, 1170 | "height": 640 1171 | }, 1172 | "_fitWidth": false, 1173 | "_fitHeight": true 1174 | } 1175 | ] -------------------------------------------------------------------------------- /assets/Scene/02_align_center.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e734f348-f11c-4fe0-a200-747e106d71cc", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/Scene/03_align_percentage.fire: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.SceneAsset", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "scene": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Scene", 13 | "_objFlags": 0, 14 | "_opacity": 255, 15 | "_color": { 16 | "__type__": "cc.Color", 17 | "r": 255, 18 | "g": 255, 19 | "b": 255, 20 | "a": 255 21 | }, 22 | "_cascadeOpacityEnabled": true, 23 | "_parent": null, 24 | "_anchorPoint": { 25 | "__type__": "cc.Vec2", 26 | "x": 0, 27 | "y": 0 28 | }, 29 | "_contentSize": { 30 | "__type__": "cc.Size", 31 | "width": 0, 32 | "height": 0 33 | }, 34 | "_children": [ 35 | { 36 | "__id__": 2 37 | } 38 | ], 39 | "_localZOrder": 0, 40 | "_globalZOrder": 0, 41 | "_tag": -1, 42 | "_opacityModifyRGB": false, 43 | "_id": "5c52e75b-5dfc-46ff-b6e5-301011112319", 44 | "autoReleaseAssets": false 45 | }, 46 | { 47 | "__type__": "cc.Node", 48 | "_name": "Canvas", 49 | "_objFlags": 0, 50 | "_opacity": 255, 51 | "_color": { 52 | "__type__": "cc.Color", 53 | "r": 255, 54 | "g": 255, 55 | "b": 255, 56 | "a": 255 57 | }, 58 | "_cascadeOpacityEnabled": true, 59 | "_parent": { 60 | "__id__": 1 61 | }, 62 | "_anchorPoint": { 63 | "__type__": "cc.Vec2", 64 | "x": 0.5, 65 | "y": 0.5 66 | }, 67 | "_contentSize": { 68 | "__type__": "cc.Size", 69 | "width": 960, 70 | "height": 640 71 | }, 72 | "_children": [ 73 | { 74 | "__id__": 3 75 | } 76 | ], 77 | "_rotationX": 0, 78 | "_rotationY": 0, 79 | "_scaleX": 1, 80 | "_scaleY": 1, 81 | "_position": { 82 | "__type__": "cc.Vec2", 83 | "x": 480, 84 | "y": 320 85 | }, 86 | "_skewX": 0, 87 | "_skewY": 0, 88 | "_localZOrder": 0, 89 | "_globalZOrder": 0, 90 | "_tag": -1, 91 | "_opacityModifyRGB": false, 92 | "_id": "ea8fbH+HvtEZI9BjY2RVcPu", 93 | "_active": true, 94 | "_components": [ 95 | { 96 | "__id__": 36 97 | } 98 | ], 99 | "_prefab": null, 100 | "groupIndex": 0 101 | }, 102 | { 103 | "__type__": "cc.Node", 104 | "_name": "bg", 105 | "_objFlags": 0, 106 | "_opacity": 255, 107 | "_color": { 108 | "__type__": "cc.Color", 109 | "r": 17, 110 | "g": 59, 111 | "b": 75, 112 | "a": 255 113 | }, 114 | "_cascadeOpacityEnabled": true, 115 | "_parent": { 116 | "__id__": 2 117 | }, 118 | "_anchorPoint": { 119 | "__type__": "cc.Vec2", 120 | "x": 0.5, 121 | "y": 0.5 122 | }, 123 | "_contentSize": { 124 | "__type__": "cc.Size", 125 | "width": 960, 126 | "height": 640 127 | }, 128 | "_children": [ 129 | { 130 | "__id__": 4 131 | }, 132 | { 133 | "__id__": 7 134 | }, 135 | { 136 | "__id__": 10 137 | }, 138 | { 139 | "__id__": 13 140 | }, 141 | { 142 | "__id__": 16 143 | }, 144 | { 145 | "__id__": 19 146 | }, 147 | { 148 | "__id__": 22 149 | }, 150 | { 151 | "__id__": 25 152 | }, 153 | { 154 | "__id__": 28 155 | }, 156 | { 157 | "__id__": 31 158 | } 159 | ], 160 | "_rotationX": 0, 161 | "_rotationY": 0, 162 | "_scaleX": 1, 163 | "_scaleY": 1, 164 | "_position": { 165 | "__type__": "cc.Vec2", 166 | "x": 0, 167 | "y": 0 168 | }, 169 | "_skewX": 0, 170 | "_skewY": 0, 171 | "_localZOrder": 0, 172 | "_globalZOrder": 0, 173 | "_tag": -1, 174 | "_opacityModifyRGB": false, 175 | "_id": "cace2XV7E5GgqSJCQ0B7uPd", 176 | "_active": true, 177 | "_components": [ 178 | { 179 | "__id__": 34 180 | }, 181 | { 182 | "__id__": 35 183 | } 184 | ], 185 | "_prefab": null, 186 | "groupIndex": 0 187 | }, 188 | { 189 | "__type__": "cc.Node", 190 | "_name": "Center", 191 | "_objFlags": 0, 192 | "_opacity": 255, 193 | "_color": { 194 | "__type__": "cc.Color", 195 | "r": 255, 196 | "g": 255, 197 | "b": 255, 198 | "a": 255 199 | }, 200 | "_cascadeOpacityEnabled": true, 201 | "_parent": { 202 | "__id__": 3 203 | }, 204 | "_anchorPoint": { 205 | "__type__": "cc.Vec2", 206 | "x": 0.5, 207 | "y": 0.5 208 | }, 209 | "_contentSize": { 210 | "__type__": "cc.Size", 211 | "width": 520.06, 212 | "height": 40 213 | }, 214 | "_children": [], 215 | "_rotationX": 0, 216 | "_rotationY": 0, 217 | "_scaleX": 1, 218 | "_scaleY": 1, 219 | "_position": { 220 | "__type__": "cc.Vec2", 221 | "x": 0, 222 | "y": -200 223 | }, 224 | "_skewX": 0, 225 | "_skewY": 0, 226 | "_localZOrder": 0, 227 | "_globalZOrder": 0, 228 | "_tag": -1, 229 | "_opacityModifyRGB": false, 230 | "_id": "e8e4c3DdORAVo/PndazztPc", 231 | "_active": true, 232 | "_components": [ 233 | { 234 | "__id__": 5 235 | }, 236 | { 237 | "__id__": 6 238 | } 239 | ], 240 | "_prefab": null, 241 | "groupIndex": 0 242 | }, 243 | { 244 | "__type__": "cc.Label", 245 | "_name": "", 246 | "_objFlags": 0, 247 | "node": { 248 | "__id__": 4 249 | }, 250 | "_enabled": true, 251 | "_useOriginalSize": false, 252 | "_actualFontSize": 40, 253 | "_fontSize": 40, 254 | "_lineHeight": 40, 255 | "_enableWrapText": true, 256 | "_N$file": null, 257 | "_isSystemFontUsed": true, 258 | "_N$string": "每个金币间隔屏幕宽度的10%", 259 | "_N$horizontalAlign": 1, 260 | "_N$verticalAlign": 1, 261 | "_N$overflow": 0 262 | }, 263 | { 264 | "__type__": "cc.Widget", 265 | "_name": "", 266 | "_objFlags": 0, 267 | "node": { 268 | "__id__": 4 269 | }, 270 | "_enabled": true, 271 | "isAlignOnce": false, 272 | "_alignFlags": 20, 273 | "_left": 0, 274 | "_right": 0, 275 | "_top": 0, 276 | "_bottom": 100, 277 | "_verticalCenter": -245, 278 | "_horizontalCenter": 0, 279 | "_isAbsLeft": true, 280 | "_isAbsRight": true, 281 | "_isAbsTop": true, 282 | "_isAbsBottom": true, 283 | "_isAbsHorizontalCenter": true, 284 | "_isAbsVerticalCenter": true, 285 | "_originalWidth": 0, 286 | "_originalHeight": 0 287 | }, 288 | { 289 | "__type__": "cc.Node", 290 | "_name": "gold", 291 | "_objFlags": 0, 292 | "_opacity": 255, 293 | "_color": { 294 | "__type__": "cc.Color", 295 | "r": 255, 296 | "g": 255, 297 | "b": 255, 298 | "a": 255 299 | }, 300 | "_cascadeOpacityEnabled": true, 301 | "_parent": { 302 | "__id__": 3 303 | }, 304 | "_anchorPoint": { 305 | "__type__": "cc.Vec2", 306 | "x": 0.5, 307 | "y": 0.5 308 | }, 309 | "_contentSize": { 310 | "__type__": "cc.Size", 311 | "width": 80, 312 | "height": 80 313 | }, 314 | "_children": [], 315 | "_rotationX": 0, 316 | "_rotationY": 0, 317 | "_scaleX": 1, 318 | "_scaleY": 1, 319 | "_position": { 320 | "__type__": "cc.Vec2", 321 | "x": 384, 322 | "y": 0 323 | }, 324 | "_skewX": 0, 325 | "_skewY": 0, 326 | "_localZOrder": 0, 327 | "_globalZOrder": 0, 328 | "_tag": -1, 329 | "_opacityModifyRGB": false, 330 | "_id": "eb1b62zVSxI/Zx6ipnia13R", 331 | "_active": true, 332 | "_components": [ 333 | { 334 | "__id__": 8 335 | }, 336 | { 337 | "__id__": 9 338 | } 339 | ], 340 | "_prefab": null, 341 | "groupIndex": 0 342 | }, 343 | { 344 | "__type__": "cc.Sprite", 345 | "_name": "", 346 | "_objFlags": 0, 347 | "node": { 348 | "__id__": 7 349 | }, 350 | "_enabled": true, 351 | "_spriteFrame": { 352 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 353 | }, 354 | "_type": 0, 355 | "_sizeMode": 1, 356 | "_fillType": 0, 357 | "_fillCenter": { 358 | "__type__": "cc.Vec2", 359 | "x": 0, 360 | "y": 0 361 | }, 362 | "_fillStart": 0, 363 | "_fillRange": 0, 364 | "_isTrimmedMode": true, 365 | "_srcBlendFactor": 770, 366 | "_dstBlendFactor": 771, 367 | "_atlas": null 368 | }, 369 | { 370 | "__type__": "cc.Widget", 371 | "_name": "", 372 | "_objFlags": 0, 373 | "node": { 374 | "__id__": 7 375 | }, 376 | "_enabled": true, 377 | "isAlignOnce": false, 378 | "_alignFlags": 16, 379 | "_left": 0, 380 | "_right": 0, 381 | "_top": 0, 382 | "_bottom": 0, 383 | "_verticalCenter": 0, 384 | "_horizontalCenter": 0.4, 385 | "_isAbsLeft": true, 386 | "_isAbsRight": true, 387 | "_isAbsTop": true, 388 | "_isAbsBottom": true, 389 | "_isAbsHorizontalCenter": false, 390 | "_isAbsVerticalCenter": true, 391 | "_originalWidth": 0, 392 | "_originalHeight": 0 393 | }, 394 | { 395 | "__type__": "cc.Node", 396 | "_name": "gold", 397 | "_objFlags": 0, 398 | "_opacity": 255, 399 | "_color": { 400 | "__type__": "cc.Color", 401 | "r": 255, 402 | "g": 255, 403 | "b": 255, 404 | "a": 255 405 | }, 406 | "_cascadeOpacityEnabled": true, 407 | "_parent": { 408 | "__id__": 3 409 | }, 410 | "_anchorPoint": { 411 | "__type__": "cc.Vec2", 412 | "x": 0.5, 413 | "y": 0.5 414 | }, 415 | "_contentSize": { 416 | "__type__": "cc.Size", 417 | "width": 80, 418 | "height": 80 419 | }, 420 | "_children": [], 421 | "_rotationX": 0, 422 | "_rotationY": 0, 423 | "_scaleX": 1, 424 | "_scaleY": 1, 425 | "_position": { 426 | "__type__": "cc.Vec2", 427 | "x": 288, 428 | "y": 0 429 | }, 430 | "_skewX": 0, 431 | "_skewY": 0, 432 | "_localZOrder": 0, 433 | "_globalZOrder": 0, 434 | "_tag": -1, 435 | "_opacityModifyRGB": false, 436 | "_id": "462afDlCTxAb5niWBSTkdpD", 437 | "_active": true, 438 | "_components": [ 439 | { 440 | "__id__": 11 441 | }, 442 | { 443 | "__id__": 12 444 | } 445 | ], 446 | "_prefab": null, 447 | "groupIndex": 0 448 | }, 449 | { 450 | "__type__": "cc.Sprite", 451 | "_name": "", 452 | "_objFlags": 0, 453 | "node": { 454 | "__id__": 10 455 | }, 456 | "_enabled": true, 457 | "_spriteFrame": { 458 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 459 | }, 460 | "_type": 0, 461 | "_sizeMode": 1, 462 | "_fillType": 0, 463 | "_fillCenter": { 464 | "__type__": "cc.Vec2", 465 | "x": 0, 466 | "y": 0 467 | }, 468 | "_fillStart": 0, 469 | "_fillRange": 0, 470 | "_isTrimmedMode": true, 471 | "_srcBlendFactor": 770, 472 | "_dstBlendFactor": 771, 473 | "_atlas": null 474 | }, 475 | { 476 | "__type__": "cc.Widget", 477 | "_name": "", 478 | "_objFlags": 0, 479 | "node": { 480 | "__id__": 10 481 | }, 482 | "_enabled": true, 483 | "isAlignOnce": false, 484 | "_alignFlags": 16, 485 | "_left": 0, 486 | "_right": 0, 487 | "_top": 0, 488 | "_bottom": 0, 489 | "_verticalCenter": 0, 490 | "_horizontalCenter": 0.3, 491 | "_isAbsLeft": true, 492 | "_isAbsRight": true, 493 | "_isAbsTop": true, 494 | "_isAbsBottom": true, 495 | "_isAbsHorizontalCenter": false, 496 | "_isAbsVerticalCenter": true, 497 | "_originalWidth": 0, 498 | "_originalHeight": 0 499 | }, 500 | { 501 | "__type__": "cc.Node", 502 | "_name": "gold", 503 | "_objFlags": 0, 504 | "_opacity": 255, 505 | "_color": { 506 | "__type__": "cc.Color", 507 | "r": 255, 508 | "g": 255, 509 | "b": 255, 510 | "a": 255 511 | }, 512 | "_cascadeOpacityEnabled": true, 513 | "_parent": { 514 | "__id__": 3 515 | }, 516 | "_anchorPoint": { 517 | "__type__": "cc.Vec2", 518 | "x": 0.5, 519 | "y": 0.5 520 | }, 521 | "_contentSize": { 522 | "__type__": "cc.Size", 523 | "width": 80, 524 | "height": 80 525 | }, 526 | "_children": [], 527 | "_rotationX": 0, 528 | "_rotationY": 0, 529 | "_scaleX": 1, 530 | "_scaleY": 1, 531 | "_position": { 532 | "__type__": "cc.Vec2", 533 | "x": 192, 534 | "y": 0 535 | }, 536 | "_skewX": 0, 537 | "_skewY": 0, 538 | "_localZOrder": 0, 539 | "_globalZOrder": 0, 540 | "_tag": -1, 541 | "_opacityModifyRGB": false, 542 | "_id": "14406gAN8RLVKrbEfpRE+mC", 543 | "_active": true, 544 | "_components": [ 545 | { 546 | "__id__": 14 547 | }, 548 | { 549 | "__id__": 15 550 | } 551 | ], 552 | "_prefab": null, 553 | "groupIndex": 0 554 | }, 555 | { 556 | "__type__": "cc.Sprite", 557 | "_name": "", 558 | "_objFlags": 0, 559 | "node": { 560 | "__id__": 13 561 | }, 562 | "_enabled": true, 563 | "_spriteFrame": { 564 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 565 | }, 566 | "_type": 0, 567 | "_sizeMode": 1, 568 | "_fillType": 0, 569 | "_fillCenter": { 570 | "__type__": "cc.Vec2", 571 | "x": 0, 572 | "y": 0 573 | }, 574 | "_fillStart": 0, 575 | "_fillRange": 0, 576 | "_isTrimmedMode": true, 577 | "_srcBlendFactor": 770, 578 | "_dstBlendFactor": 771, 579 | "_atlas": null 580 | }, 581 | { 582 | "__type__": "cc.Widget", 583 | "_name": "", 584 | "_objFlags": 0, 585 | "node": { 586 | "__id__": 13 587 | }, 588 | "_enabled": true, 589 | "isAlignOnce": false, 590 | "_alignFlags": 16, 591 | "_left": 0, 592 | "_right": 0, 593 | "_top": 0, 594 | "_bottom": 0, 595 | "_verticalCenter": 0, 596 | "_horizontalCenter": 0.2, 597 | "_isAbsLeft": true, 598 | "_isAbsRight": true, 599 | "_isAbsTop": true, 600 | "_isAbsBottom": true, 601 | "_isAbsHorizontalCenter": false, 602 | "_isAbsVerticalCenter": true, 603 | "_originalWidth": 0, 604 | "_originalHeight": 0 605 | }, 606 | { 607 | "__type__": "cc.Node", 608 | "_name": "gold", 609 | "_objFlags": 0, 610 | "_opacity": 255, 611 | "_color": { 612 | "__type__": "cc.Color", 613 | "r": 255, 614 | "g": 255, 615 | "b": 255, 616 | "a": 255 617 | }, 618 | "_cascadeOpacityEnabled": true, 619 | "_parent": { 620 | "__id__": 3 621 | }, 622 | "_anchorPoint": { 623 | "__type__": "cc.Vec2", 624 | "x": 0.5, 625 | "y": 0.5 626 | }, 627 | "_contentSize": { 628 | "__type__": "cc.Size", 629 | "width": 80, 630 | "height": 80 631 | }, 632 | "_children": [], 633 | "_rotationX": 0, 634 | "_rotationY": 0, 635 | "_scaleX": 1, 636 | "_scaleY": 1, 637 | "_position": { 638 | "__type__": "cc.Vec2", 639 | "x": 96, 640 | "y": 0 641 | }, 642 | "_skewX": 0, 643 | "_skewY": 0, 644 | "_localZOrder": 0, 645 | "_globalZOrder": 0, 646 | "_tag": -1, 647 | "_opacityModifyRGB": false, 648 | "_id": "545d5qJ/UNMQbJWsZo79mY2", 649 | "_active": true, 650 | "_components": [ 651 | { 652 | "__id__": 17 653 | }, 654 | { 655 | "__id__": 18 656 | } 657 | ], 658 | "_prefab": null, 659 | "groupIndex": 0 660 | }, 661 | { 662 | "__type__": "cc.Sprite", 663 | "_name": "", 664 | "_objFlags": 0, 665 | "node": { 666 | "__id__": 16 667 | }, 668 | "_enabled": true, 669 | "_spriteFrame": { 670 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 671 | }, 672 | "_type": 0, 673 | "_sizeMode": 1, 674 | "_fillType": 0, 675 | "_fillCenter": { 676 | "__type__": "cc.Vec2", 677 | "x": 0, 678 | "y": 0 679 | }, 680 | "_fillStart": 0, 681 | "_fillRange": 0, 682 | "_isTrimmedMode": true, 683 | "_srcBlendFactor": 770, 684 | "_dstBlendFactor": 771, 685 | "_atlas": null 686 | }, 687 | { 688 | "__type__": "cc.Widget", 689 | "_name": "", 690 | "_objFlags": 0, 691 | "node": { 692 | "__id__": 16 693 | }, 694 | "_enabled": true, 695 | "isAlignOnce": false, 696 | "_alignFlags": 16, 697 | "_left": 0, 698 | "_right": 0, 699 | "_top": 0, 700 | "_bottom": 0, 701 | "_verticalCenter": 0, 702 | "_horizontalCenter": 0.1, 703 | "_isAbsLeft": true, 704 | "_isAbsRight": true, 705 | "_isAbsTop": true, 706 | "_isAbsBottom": true, 707 | "_isAbsHorizontalCenter": false, 708 | "_isAbsVerticalCenter": true, 709 | "_originalWidth": 0, 710 | "_originalHeight": 0 711 | }, 712 | { 713 | "__type__": "cc.Node", 714 | "_name": "gold", 715 | "_objFlags": 0, 716 | "_opacity": 255, 717 | "_color": { 718 | "__type__": "cc.Color", 719 | "r": 255, 720 | "g": 255, 721 | "b": 255, 722 | "a": 255 723 | }, 724 | "_cascadeOpacityEnabled": true, 725 | "_parent": { 726 | "__id__": 3 727 | }, 728 | "_anchorPoint": { 729 | "__type__": "cc.Vec2", 730 | "x": 0.5, 731 | "y": 0.5 732 | }, 733 | "_contentSize": { 734 | "__type__": "cc.Size", 735 | "width": 80, 736 | "height": 80 737 | }, 738 | "_children": [], 739 | "_rotationX": 0, 740 | "_rotationY": 0, 741 | "_scaleX": 1, 742 | "_scaleY": 1, 743 | "_position": { 744 | "__type__": "cc.Vec2", 745 | "x": 0, 746 | "y": 0 747 | }, 748 | "_skewX": 0, 749 | "_skewY": 0, 750 | "_localZOrder": 0, 751 | "_globalZOrder": 0, 752 | "_tag": -1, 753 | "_opacityModifyRGB": false, 754 | "_id": "155a0DYQZhA4IMJJY0exl3c", 755 | "_active": true, 756 | "_components": [ 757 | { 758 | "__id__": 20 759 | }, 760 | { 761 | "__id__": 21 762 | } 763 | ], 764 | "_prefab": null, 765 | "groupIndex": 0 766 | }, 767 | { 768 | "__type__": "cc.Sprite", 769 | "_name": "", 770 | "_objFlags": 0, 771 | "node": { 772 | "__id__": 19 773 | }, 774 | "_enabled": true, 775 | "_spriteFrame": { 776 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 777 | }, 778 | "_type": 0, 779 | "_sizeMode": 1, 780 | "_fillType": 0, 781 | "_fillCenter": { 782 | "__type__": "cc.Vec2", 783 | "x": 0, 784 | "y": 0 785 | }, 786 | "_fillStart": 0, 787 | "_fillRange": 0, 788 | "_isTrimmedMode": true, 789 | "_srcBlendFactor": 770, 790 | "_dstBlendFactor": 771, 791 | "_atlas": null 792 | }, 793 | { 794 | "__type__": "cc.Widget", 795 | "_name": "", 796 | "_objFlags": 0, 797 | "node": { 798 | "__id__": 19 799 | }, 800 | "_enabled": true, 801 | "isAlignOnce": false, 802 | "_alignFlags": 16, 803 | "_left": 0, 804 | "_right": 0, 805 | "_top": 0, 806 | "_bottom": 0, 807 | "_verticalCenter": 0, 808 | "_horizontalCenter": 0, 809 | "_isAbsLeft": true, 810 | "_isAbsRight": true, 811 | "_isAbsTop": true, 812 | "_isAbsBottom": true, 813 | "_isAbsHorizontalCenter": true, 814 | "_isAbsVerticalCenter": true, 815 | "_originalWidth": 0, 816 | "_originalHeight": 0 817 | }, 818 | { 819 | "__type__": "cc.Node", 820 | "_name": "gold", 821 | "_objFlags": 0, 822 | "_opacity": 255, 823 | "_color": { 824 | "__type__": "cc.Color", 825 | "r": 255, 826 | "g": 255, 827 | "b": 255, 828 | "a": 255 829 | }, 830 | "_cascadeOpacityEnabled": true, 831 | "_parent": { 832 | "__id__": 3 833 | }, 834 | "_anchorPoint": { 835 | "__type__": "cc.Vec2", 836 | "x": 0.5, 837 | "y": 0.5 838 | }, 839 | "_contentSize": { 840 | "__type__": "cc.Size", 841 | "width": 80, 842 | "height": 80 843 | }, 844 | "_children": [], 845 | "_rotationX": 0, 846 | "_rotationY": 0, 847 | "_scaleX": 1, 848 | "_scaleY": 1, 849 | "_position": { 850 | "__type__": "cc.Vec2", 851 | "x": -96, 852 | "y": 0 853 | }, 854 | "_skewX": 0, 855 | "_skewY": 0, 856 | "_localZOrder": 0, 857 | "_globalZOrder": 0, 858 | "_tag": -1, 859 | "_opacityModifyRGB": false, 860 | "_id": "4b9aeGAV4dAk7PnMvEpkX4D", 861 | "_active": true, 862 | "_components": [ 863 | { 864 | "__id__": 23 865 | }, 866 | { 867 | "__id__": 24 868 | } 869 | ], 870 | "_prefab": null, 871 | "groupIndex": 0 872 | }, 873 | { 874 | "__type__": "cc.Sprite", 875 | "_name": "", 876 | "_objFlags": 0, 877 | "node": { 878 | "__id__": 22 879 | }, 880 | "_enabled": true, 881 | "_spriteFrame": { 882 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 883 | }, 884 | "_type": 0, 885 | "_sizeMode": 1, 886 | "_fillType": 0, 887 | "_fillCenter": { 888 | "__type__": "cc.Vec2", 889 | "x": 0, 890 | "y": 0 891 | }, 892 | "_fillStart": 0, 893 | "_fillRange": 0, 894 | "_isTrimmedMode": true, 895 | "_srcBlendFactor": 770, 896 | "_dstBlendFactor": 771, 897 | "_atlas": null 898 | }, 899 | { 900 | "__type__": "cc.Widget", 901 | "_name": "", 902 | "_objFlags": 0, 903 | "node": { 904 | "__id__": 22 905 | }, 906 | "_enabled": true, 907 | "isAlignOnce": false, 908 | "_alignFlags": 16, 909 | "_left": 0, 910 | "_right": 0, 911 | "_top": 0, 912 | "_bottom": 0, 913 | "_verticalCenter": 0, 914 | "_horizontalCenter": -0.1, 915 | "_isAbsLeft": true, 916 | "_isAbsRight": true, 917 | "_isAbsTop": true, 918 | "_isAbsBottom": true, 919 | "_isAbsHorizontalCenter": false, 920 | "_isAbsVerticalCenter": true, 921 | "_originalWidth": 0, 922 | "_originalHeight": 0 923 | }, 924 | { 925 | "__type__": "cc.Node", 926 | "_name": "gold", 927 | "_objFlags": 0, 928 | "_opacity": 255, 929 | "_color": { 930 | "__type__": "cc.Color", 931 | "r": 255, 932 | "g": 255, 933 | "b": 255, 934 | "a": 255 935 | }, 936 | "_cascadeOpacityEnabled": true, 937 | "_parent": { 938 | "__id__": 3 939 | }, 940 | "_anchorPoint": { 941 | "__type__": "cc.Vec2", 942 | "x": 0.5, 943 | "y": 0.5 944 | }, 945 | "_contentSize": { 946 | "__type__": "cc.Size", 947 | "width": 80, 948 | "height": 80 949 | }, 950 | "_children": [], 951 | "_rotationX": 0, 952 | "_rotationY": 0, 953 | "_scaleX": 1, 954 | "_scaleY": 1, 955 | "_position": { 956 | "__type__": "cc.Vec2", 957 | "x": -192, 958 | "y": 0 959 | }, 960 | "_skewX": 0, 961 | "_skewY": 0, 962 | "_localZOrder": 0, 963 | "_globalZOrder": 0, 964 | "_tag": -1, 965 | "_opacityModifyRGB": false, 966 | "_id": "c4793LHnHlH5qaQg342wkOt", 967 | "_active": true, 968 | "_components": [ 969 | { 970 | "__id__": 26 971 | }, 972 | { 973 | "__id__": 27 974 | } 975 | ], 976 | "_prefab": null, 977 | "groupIndex": 0 978 | }, 979 | { 980 | "__type__": "cc.Sprite", 981 | "_name": "", 982 | "_objFlags": 0, 983 | "node": { 984 | "__id__": 25 985 | }, 986 | "_enabled": true, 987 | "_spriteFrame": { 988 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 989 | }, 990 | "_type": 0, 991 | "_sizeMode": 1, 992 | "_fillType": 0, 993 | "_fillCenter": { 994 | "__type__": "cc.Vec2", 995 | "x": 0, 996 | "y": 0 997 | }, 998 | "_fillStart": 0, 999 | "_fillRange": 0, 1000 | "_isTrimmedMode": true, 1001 | "_srcBlendFactor": 770, 1002 | "_dstBlendFactor": 771, 1003 | "_atlas": null 1004 | }, 1005 | { 1006 | "__type__": "cc.Widget", 1007 | "_name": "", 1008 | "_objFlags": 0, 1009 | "node": { 1010 | "__id__": 25 1011 | }, 1012 | "_enabled": true, 1013 | "isAlignOnce": false, 1014 | "_alignFlags": 16, 1015 | "_left": 0, 1016 | "_right": 0, 1017 | "_top": 0, 1018 | "_bottom": 0, 1019 | "_verticalCenter": 0, 1020 | "_horizontalCenter": -0.2, 1021 | "_isAbsLeft": true, 1022 | "_isAbsRight": true, 1023 | "_isAbsTop": true, 1024 | "_isAbsBottom": true, 1025 | "_isAbsHorizontalCenter": false, 1026 | "_isAbsVerticalCenter": true, 1027 | "_originalWidth": 0, 1028 | "_originalHeight": 0 1029 | }, 1030 | { 1031 | "__type__": "cc.Node", 1032 | "_name": "gold", 1033 | "_objFlags": 0, 1034 | "_opacity": 255, 1035 | "_color": { 1036 | "__type__": "cc.Color", 1037 | "r": 255, 1038 | "g": 255, 1039 | "b": 255, 1040 | "a": 255 1041 | }, 1042 | "_cascadeOpacityEnabled": true, 1043 | "_parent": { 1044 | "__id__": 3 1045 | }, 1046 | "_anchorPoint": { 1047 | "__type__": "cc.Vec2", 1048 | "x": 0.5, 1049 | "y": 0.5 1050 | }, 1051 | "_contentSize": { 1052 | "__type__": "cc.Size", 1053 | "width": 80, 1054 | "height": 80 1055 | }, 1056 | "_children": [], 1057 | "_rotationX": 0, 1058 | "_rotationY": 0, 1059 | "_scaleX": 1, 1060 | "_scaleY": 1, 1061 | "_position": { 1062 | "__type__": "cc.Vec2", 1063 | "x": -288, 1064 | "y": 0 1065 | }, 1066 | "_skewX": 0, 1067 | "_skewY": 0, 1068 | "_localZOrder": 0, 1069 | "_globalZOrder": 0, 1070 | "_tag": -1, 1071 | "_opacityModifyRGB": false, 1072 | "_id": "3f279YBAV5JB5VN1+gG4Uit", 1073 | "_active": true, 1074 | "_components": [ 1075 | { 1076 | "__id__": 29 1077 | }, 1078 | { 1079 | "__id__": 30 1080 | } 1081 | ], 1082 | "_prefab": null, 1083 | "groupIndex": 0 1084 | }, 1085 | { 1086 | "__type__": "cc.Sprite", 1087 | "_name": "", 1088 | "_objFlags": 0, 1089 | "node": { 1090 | "__id__": 28 1091 | }, 1092 | "_enabled": true, 1093 | "_spriteFrame": { 1094 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1095 | }, 1096 | "_type": 0, 1097 | "_sizeMode": 1, 1098 | "_fillType": 0, 1099 | "_fillCenter": { 1100 | "__type__": "cc.Vec2", 1101 | "x": 0, 1102 | "y": 0 1103 | }, 1104 | "_fillStart": 0, 1105 | "_fillRange": 0, 1106 | "_isTrimmedMode": true, 1107 | "_srcBlendFactor": 770, 1108 | "_dstBlendFactor": 771, 1109 | "_atlas": null 1110 | }, 1111 | { 1112 | "__type__": "cc.Widget", 1113 | "_name": "", 1114 | "_objFlags": 0, 1115 | "node": { 1116 | "__id__": 28 1117 | }, 1118 | "_enabled": true, 1119 | "isAlignOnce": false, 1120 | "_alignFlags": 16, 1121 | "_left": 0, 1122 | "_right": 0, 1123 | "_top": 0, 1124 | "_bottom": 0, 1125 | "_verticalCenter": 0, 1126 | "_horizontalCenter": -0.3, 1127 | "_isAbsLeft": true, 1128 | "_isAbsRight": true, 1129 | "_isAbsTop": true, 1130 | "_isAbsBottom": true, 1131 | "_isAbsHorizontalCenter": false, 1132 | "_isAbsVerticalCenter": true, 1133 | "_originalWidth": 0, 1134 | "_originalHeight": 0 1135 | }, 1136 | { 1137 | "__type__": "cc.Node", 1138 | "_name": "gold", 1139 | "_objFlags": 0, 1140 | "_opacity": 255, 1141 | "_color": { 1142 | "__type__": "cc.Color", 1143 | "r": 255, 1144 | "g": 255, 1145 | "b": 255, 1146 | "a": 255 1147 | }, 1148 | "_cascadeOpacityEnabled": true, 1149 | "_parent": { 1150 | "__id__": 3 1151 | }, 1152 | "_anchorPoint": { 1153 | "__type__": "cc.Vec2", 1154 | "x": 0.5, 1155 | "y": 0.5 1156 | }, 1157 | "_contentSize": { 1158 | "__type__": "cc.Size", 1159 | "width": 80, 1160 | "height": 80 1161 | }, 1162 | "_children": [], 1163 | "_rotationX": 0, 1164 | "_rotationY": 0, 1165 | "_scaleX": 1, 1166 | "_scaleY": 1, 1167 | "_position": { 1168 | "__type__": "cc.Vec2", 1169 | "x": -384, 1170 | "y": 0 1171 | }, 1172 | "_skewX": 0, 1173 | "_skewY": 0, 1174 | "_localZOrder": 0, 1175 | "_globalZOrder": 0, 1176 | "_tag": -1, 1177 | "_opacityModifyRGB": false, 1178 | "_id": "4b9b11AF79CG6g0o19xEuLE", 1179 | "_active": true, 1180 | "_components": [ 1181 | { 1182 | "__id__": 32 1183 | }, 1184 | { 1185 | "__id__": 33 1186 | } 1187 | ], 1188 | "_prefab": null, 1189 | "groupIndex": 0 1190 | }, 1191 | { 1192 | "__type__": "cc.Sprite", 1193 | "_name": "", 1194 | "_objFlags": 0, 1195 | "node": { 1196 | "__id__": 31 1197 | }, 1198 | "_enabled": true, 1199 | "_spriteFrame": { 1200 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1201 | }, 1202 | "_type": 0, 1203 | "_sizeMode": 1, 1204 | "_fillType": 0, 1205 | "_fillCenter": { 1206 | "__type__": "cc.Vec2", 1207 | "x": 0, 1208 | "y": 0 1209 | }, 1210 | "_fillStart": 0, 1211 | "_fillRange": 0, 1212 | "_isTrimmedMode": true, 1213 | "_srcBlendFactor": 770, 1214 | "_dstBlendFactor": 771, 1215 | "_atlas": null 1216 | }, 1217 | { 1218 | "__type__": "cc.Widget", 1219 | "_name": "", 1220 | "_objFlags": 0, 1221 | "node": { 1222 | "__id__": 31 1223 | }, 1224 | "_enabled": true, 1225 | "isAlignOnce": false, 1226 | "_alignFlags": 16, 1227 | "_left": 0, 1228 | "_right": 0, 1229 | "_top": 0, 1230 | "_bottom": 0, 1231 | "_verticalCenter": 0, 1232 | "_horizontalCenter": -0.4, 1233 | "_isAbsLeft": true, 1234 | "_isAbsRight": true, 1235 | "_isAbsTop": true, 1236 | "_isAbsBottom": true, 1237 | "_isAbsHorizontalCenter": false, 1238 | "_isAbsVerticalCenter": true, 1239 | "_originalWidth": 0, 1240 | "_originalHeight": 0 1241 | }, 1242 | { 1243 | "__type__": "cc.Sprite", 1244 | "_name": "", 1245 | "_objFlags": 0, 1246 | "node": { 1247 | "__id__": 3 1248 | }, 1249 | "_enabled": true, 1250 | "_spriteFrame": { 1251 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" 1252 | }, 1253 | "_type": 0, 1254 | "_sizeMode": 0, 1255 | "_fillType": 0, 1256 | "_fillCenter": { 1257 | "__type__": "cc.Vec2", 1258 | "x": 0, 1259 | "y": 0 1260 | }, 1261 | "_fillStart": 0, 1262 | "_fillRange": 0, 1263 | "_isTrimmedMode": true, 1264 | "_srcBlendFactor": 770, 1265 | "_dstBlendFactor": 771, 1266 | "_atlas": null 1267 | }, 1268 | { 1269 | "__type__": "cc.Widget", 1270 | "_name": "", 1271 | "_objFlags": 0, 1272 | "node": { 1273 | "__id__": 3 1274 | }, 1275 | "_enabled": true, 1276 | "isAlignOnce": false, 1277 | "_alignFlags": 45, 1278 | "_left": 0, 1279 | "_right": 0, 1280 | "_top": 0, 1281 | "_bottom": 0, 1282 | "_verticalCenter": 0, 1283 | "_horizontalCenter": 0, 1284 | "_isAbsLeft": true, 1285 | "_isAbsRight": true, 1286 | "_isAbsTop": true, 1287 | "_isAbsBottom": true, 1288 | "_isAbsHorizontalCenter": true, 1289 | "_isAbsVerticalCenter": true, 1290 | "_originalWidth": 100, 1291 | "_originalHeight": 100 1292 | }, 1293 | { 1294 | "__type__": "cc.Canvas", 1295 | "_name": "", 1296 | "_objFlags": 0, 1297 | "node": { 1298 | "__id__": 2 1299 | }, 1300 | "_enabled": true, 1301 | "_designResolution": { 1302 | "__type__": "cc.Size", 1303 | "width": 960, 1304 | "height": 640 1305 | }, 1306 | "_fitWidth": true, 1307 | "_fitHeight": false 1308 | } 1309 | ] -------------------------------------------------------------------------------- /assets/Scene/03_align_percentage.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5c52e75b-5dfc-46ff-b6e5-301011112319", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/Scene/04_size_percentage.fire: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.SceneAsset", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "scene": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Scene", 13 | "_objFlags": 0, 14 | "_opacity": 255, 15 | "_color": { 16 | "__type__": "cc.Color", 17 | "r": 255, 18 | "g": 255, 19 | "b": 255, 20 | "a": 255 21 | }, 22 | "_cascadeOpacityEnabled": true, 23 | "_parent": null, 24 | "_anchorPoint": { 25 | "__type__": "cc.Vec2", 26 | "x": 0, 27 | "y": 0 28 | }, 29 | "_contentSize": { 30 | "__type__": "cc.Size", 31 | "width": 0, 32 | "height": 0 33 | }, 34 | "_children": [ 35 | { 36 | "__id__": 2 37 | } 38 | ], 39 | "_localZOrder": 0, 40 | "_globalZOrder": 0, 41 | "_tag": -1, 42 | "_opacityModifyRGB": false, 43 | "_id": "08d62863-8a1e-4b74-a277-d684a9f9a1f9", 44 | "autoReleaseAssets": false 45 | }, 46 | { 47 | "__type__": "cc.Node", 48 | "_name": "Canvas", 49 | "_objFlags": 0, 50 | "_opacity": 255, 51 | "_color": { 52 | "__type__": "cc.Color", 53 | "r": 255, 54 | "g": 255, 55 | "b": 255, 56 | "a": 255 57 | }, 58 | "_cascadeOpacityEnabled": true, 59 | "_parent": { 60 | "__id__": 1 61 | }, 62 | "_anchorPoint": { 63 | "__type__": "cc.Vec2", 64 | "x": 0.5, 65 | "y": 0.5 66 | }, 67 | "_contentSize": { 68 | "__type__": "cc.Size", 69 | "width": 960, 70 | "height": 640 71 | }, 72 | "_children": [ 73 | { 74 | "__id__": 3 75 | } 76 | ], 77 | "_rotationX": 0, 78 | "_rotationY": 0, 79 | "_scaleX": 1, 80 | "_scaleY": 1, 81 | "_position": { 82 | "__type__": "cc.Vec2", 83 | "x": 480, 84 | "y": 320 85 | }, 86 | "_skewX": 0, 87 | "_skewY": 0, 88 | "_localZOrder": 0, 89 | "_globalZOrder": 0, 90 | "_tag": -1, 91 | "_opacityModifyRGB": false, 92 | "_id": "a85acG/MBVADLtV/FSfQS+U", 93 | "_active": true, 94 | "_components": [ 95 | { 96 | "__id__": 27 97 | } 98 | ], 99 | "_prefab": null, 100 | "groupIndex": 0 101 | }, 102 | { 103 | "__type__": "cc.Node", 104 | "_name": "bg", 105 | "_objFlags": 0, 106 | "_opacity": 255, 107 | "_color": { 108 | "__type__": "cc.Color", 109 | "r": 17, 110 | "g": 59, 111 | "b": 75, 112 | "a": 255 113 | }, 114 | "_cascadeOpacityEnabled": true, 115 | "_parent": { 116 | "__id__": 2 117 | }, 118 | "_anchorPoint": { 119 | "__type__": "cc.Vec2", 120 | "x": 0.5, 121 | "y": 0.5 122 | }, 123 | "_contentSize": { 124 | "__type__": "cc.Size", 125 | "width": 960, 126 | "height": 640 127 | }, 128 | "_children": [ 129 | { 130 | "__id__": 4 131 | }, 132 | { 133 | "__id__": 7 134 | }, 135 | { 136 | "__id__": 13 137 | }, 138 | { 139 | "__id__": 19 140 | } 141 | ], 142 | "_rotationX": 0, 143 | "_rotationY": 0, 144 | "_scaleX": 1, 145 | "_scaleY": 1, 146 | "_position": { 147 | "__type__": "cc.Vec2", 148 | "x": 0, 149 | "y": 0 150 | }, 151 | "_skewX": 0, 152 | "_skewY": 0, 153 | "_localZOrder": 0, 154 | "_globalZOrder": 0, 155 | "_tag": -1, 156 | "_opacityModifyRGB": false, 157 | "_id": "b6de1qhqwhK2p0WqYia9vno", 158 | "_active": true, 159 | "_components": [ 160 | { 161 | "__id__": 25 162 | }, 163 | { 164 | "__id__": 26 165 | } 166 | ], 167 | "_prefab": null, 168 | "groupIndex": 0 169 | }, 170 | { 171 | "__type__": "cc.Node", 172 | "_name": "label", 173 | "_objFlags": 0, 174 | "_opacity": 255, 175 | "_color": { 176 | "__type__": "cc.Color", 177 | "r": 255, 178 | "g": 255, 179 | "b": 255, 180 | "a": 255 181 | }, 182 | "_cascadeOpacityEnabled": true, 183 | "_parent": { 184 | "__id__": 3 185 | }, 186 | "_anchorPoint": { 187 | "__type__": "cc.Vec2", 188 | "x": 0.5, 189 | "y": 0.5 190 | }, 191 | "_contentSize": { 192 | "__type__": "cc.Size", 193 | "width": 185.13, 194 | "height": 30 195 | }, 196 | "_children": [], 197 | "_rotationX": 0, 198 | "_rotationY": 0, 199 | "_scaleX": 1, 200 | "_scaleY": 1, 201 | "_position": { 202 | "__type__": "cc.Vec2", 203 | "x": 347.435, 204 | "y": 285 205 | }, 206 | "_skewX": 0, 207 | "_skewY": 0, 208 | "_localZOrder": 0, 209 | "_globalZOrder": 0, 210 | "_tag": -1, 211 | "_opacityModifyRGB": false, 212 | "_id": "129f0HwUKtH1pL4KjAA99qs", 213 | "_active": true, 214 | "_components": [ 215 | { 216 | "__id__": 5 217 | }, 218 | { 219 | "__id__": 6 220 | } 221 | ], 222 | "_prefab": null, 223 | "groupIndex": 0 224 | }, 225 | { 226 | "__type__": "cc.Label", 227 | "_name": "", 228 | "_objFlags": 0, 229 | "node": { 230 | "__id__": 4 231 | }, 232 | "_enabled": true, 233 | "_useOriginalSize": false, 234 | "_actualFontSize": 30, 235 | "_fontSize": 30, 236 | "_lineHeight": 30, 237 | "_enableWrapText": true, 238 | "_N$file": null, 239 | "_isSystemFontUsed": true, 240 | "_N$string": "100% x 100%", 241 | "_N$horizontalAlign": 1, 242 | "_N$verticalAlign": 1, 243 | "_N$overflow": 0 244 | }, 245 | { 246 | "__type__": "cc.Widget", 247 | "_name": "", 248 | "_objFlags": 0, 249 | "node": { 250 | "__id__": 4 251 | }, 252 | "_enabled": true, 253 | "isAlignOnce": false, 254 | "_alignFlags": 33, 255 | "_left": 20, 256 | "_right": 40, 257 | "_top": 20, 258 | "_bottom": 20, 259 | "_verticalCenter": 0, 260 | "_horizontalCenter": -5.009999999999991, 261 | "_isAbsLeft": true, 262 | "_isAbsRight": true, 263 | "_isAbsTop": true, 264 | "_isAbsBottom": true, 265 | "_isAbsHorizontalCenter": true, 266 | "_isAbsVerticalCenter": true, 267 | "_originalWidth": 0, 268 | "_originalHeight": 0 269 | }, 270 | { 271 | "__type__": "cc.Node", 272 | "_name": "size75", 273 | "_objFlags": 0, 274 | "_opacity": 255, 275 | "_color": { 276 | "__type__": "cc.Color", 277 | "r": 77, 278 | "g": 67, 279 | "b": 67, 280 | "a": 255 281 | }, 282 | "_cascadeOpacityEnabled": true, 283 | "_parent": { 284 | "__id__": 3 285 | }, 286 | "_anchorPoint": { 287 | "__type__": "cc.Vec2", 288 | "x": 0.5, 289 | "y": 0.5 290 | }, 291 | "_contentSize": { 292 | "__type__": "cc.Size", 293 | "width": 720, 294 | "height": 480 295 | }, 296 | "_children": [ 297 | { 298 | "__id__": 8 299 | } 300 | ], 301 | "_rotationX": 0, 302 | "_rotationY": 0, 303 | "_scaleX": 1, 304 | "_scaleY": 1, 305 | "_position": { 306 | "__type__": "cc.Vec2", 307 | "x": -120, 308 | "y": -80 309 | }, 310 | "_skewX": 0, 311 | "_skewY": 0, 312 | "_localZOrder": 0, 313 | "_globalZOrder": 0, 314 | "_tag": -1, 315 | "_opacityModifyRGB": false, 316 | "_id": "25591ZaM9RJXKcUPKyAQn/m", 317 | "_active": true, 318 | "_components": [ 319 | { 320 | "__id__": 11 321 | }, 322 | { 323 | "__id__": 12 324 | } 325 | ], 326 | "_prefab": null, 327 | "groupIndex": 0 328 | }, 329 | { 330 | "__type__": "cc.Node", 331 | "_name": "label", 332 | "_objFlags": 0, 333 | "_opacity": 255, 334 | "_color": { 335 | "__type__": "cc.Color", 336 | "r": 255, 337 | "g": 255, 338 | "b": 255, 339 | "a": 255 340 | }, 341 | "_cascadeOpacityEnabled": true, 342 | "_parent": { 343 | "__id__": 7 344 | }, 345 | "_anchorPoint": { 346 | "__type__": "cc.Vec2", 347 | "x": 0.5, 348 | "y": 0.5 349 | }, 350 | "_contentSize": { 351 | "__type__": "cc.Size", 352 | "width": 151.76, 353 | "height": 30 354 | }, 355 | "_children": [], 356 | "_rotationX": 0, 357 | "_rotationY": 0, 358 | "_scaleX": 1, 359 | "_scaleY": 1, 360 | "_position": { 361 | "__type__": "cc.Vec2", 362 | "x": 264.12, 363 | "y": 205 364 | }, 365 | "_skewX": 0, 366 | "_skewY": 0, 367 | "_localZOrder": 0, 368 | "_globalZOrder": 0, 369 | "_tag": -1, 370 | "_opacityModifyRGB": false, 371 | "_id": "8ce16l9g5BA+60Bb4d5fFcR", 372 | "_active": true, 373 | "_components": [ 374 | { 375 | "__id__": 9 376 | }, 377 | { 378 | "__id__": 10 379 | } 380 | ], 381 | "_prefab": null, 382 | "groupIndex": 0 383 | }, 384 | { 385 | "__type__": "cc.Label", 386 | "_name": "", 387 | "_objFlags": 0, 388 | "node": { 389 | "__id__": 8 390 | }, 391 | "_enabled": true, 392 | "_useOriginalSize": false, 393 | "_actualFontSize": 30, 394 | "_fontSize": 30, 395 | "_lineHeight": 30, 396 | "_enableWrapText": true, 397 | "_N$file": null, 398 | "_isSystemFontUsed": true, 399 | "_N$string": "75% x 75%", 400 | "_N$horizontalAlign": 1, 401 | "_N$verticalAlign": 1, 402 | "_N$overflow": 0 403 | }, 404 | { 405 | "__type__": "cc.Widget", 406 | "_name": "", 407 | "_objFlags": 0, 408 | "node": { 409 | "__id__": 8 410 | }, 411 | "_enabled": true, 412 | "isAlignOnce": false, 413 | "_alignFlags": 33, 414 | "_left": 20, 415 | "_right": 20, 416 | "_top": 20, 417 | "_bottom": 20, 418 | "_verticalCenter": 0, 419 | "_horizontalCenter": -5.009999999999991, 420 | "_isAbsLeft": true, 421 | "_isAbsRight": true, 422 | "_isAbsTop": true, 423 | "_isAbsBottom": true, 424 | "_isAbsHorizontalCenter": true, 425 | "_isAbsVerticalCenter": true, 426 | "_originalWidth": 0, 427 | "_originalHeight": 0 428 | }, 429 | { 430 | "__type__": "cc.Sprite", 431 | "_name": "", 432 | "_objFlags": 0, 433 | "node": { 434 | "__id__": 7 435 | }, 436 | "_enabled": true, 437 | "_spriteFrame": { 438 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" 439 | }, 440 | "_type": 0, 441 | "_sizeMode": 0, 442 | "_fillType": 0, 443 | "_fillCenter": { 444 | "__type__": "cc.Vec2", 445 | "x": 0, 446 | "y": 0 447 | }, 448 | "_fillStart": 0, 449 | "_fillRange": 0, 450 | "_isTrimmedMode": true, 451 | "_srcBlendFactor": 770, 452 | "_dstBlendFactor": 771, 453 | "_atlas": null 454 | }, 455 | { 456 | "__type__": "cc.Widget", 457 | "_name": "", 458 | "_objFlags": 0, 459 | "node": { 460 | "__id__": 7 461 | }, 462 | "_enabled": true, 463 | "isAlignOnce": false, 464 | "_alignFlags": 45, 465 | "_left": 0, 466 | "_right": 0.25, 467 | "_top": 0.25, 468 | "_bottom": 0, 469 | "_verticalCenter": 0, 470 | "_horizontalCenter": 0, 471 | "_isAbsLeft": true, 472 | "_isAbsRight": false, 473 | "_isAbsTop": false, 474 | "_isAbsBottom": true, 475 | "_isAbsHorizontalCenter": true, 476 | "_isAbsVerticalCenter": true, 477 | "_originalWidth": 100, 478 | "_originalHeight": 100 479 | }, 480 | { 481 | "__type__": "cc.Node", 482 | "_name": "size50", 483 | "_objFlags": 0, 484 | "_opacity": 255, 485 | "_color": { 486 | "__type__": "cc.Color", 487 | "r": 128, 488 | "g": 118, 489 | "b": 118, 490 | "a": 255 491 | }, 492 | "_cascadeOpacityEnabled": true, 493 | "_parent": { 494 | "__id__": 3 495 | }, 496 | "_anchorPoint": { 497 | "__type__": "cc.Vec2", 498 | "x": 0.5, 499 | "y": 0.5 500 | }, 501 | "_contentSize": { 502 | "__type__": "cc.Size", 503 | "width": 480, 504 | "height": 320 505 | }, 506 | "_children": [ 507 | { 508 | "__id__": 14 509 | } 510 | ], 511 | "_rotationX": 0, 512 | "_rotationY": 0, 513 | "_scaleX": 1, 514 | "_scaleY": 1, 515 | "_position": { 516 | "__type__": "cc.Vec2", 517 | "x": -240, 518 | "y": -160 519 | }, 520 | "_skewX": 0, 521 | "_skewY": 0, 522 | "_localZOrder": 0, 523 | "_globalZOrder": 0, 524 | "_tag": -1, 525 | "_opacityModifyRGB": false, 526 | "_id": "8d55e/ezupF+rkcZ4EocUd3", 527 | "_active": true, 528 | "_components": [ 529 | { 530 | "__id__": 17 531 | }, 532 | { 533 | "__id__": 18 534 | } 535 | ], 536 | "_prefab": null, 537 | "groupIndex": 0 538 | }, 539 | { 540 | "__type__": "cc.Node", 541 | "_name": "label", 542 | "_objFlags": 0, 543 | "_opacity": 255, 544 | "_color": { 545 | "__type__": "cc.Color", 546 | "r": 255, 547 | "g": 255, 548 | "b": 255, 549 | "a": 255 550 | }, 551 | "_cascadeOpacityEnabled": true, 552 | "_parent": { 553 | "__id__": 13 554 | }, 555 | "_anchorPoint": { 556 | "__type__": "cc.Vec2", 557 | "x": 0.5, 558 | "y": 0.5 559 | }, 560 | "_contentSize": { 561 | "__type__": "cc.Size", 562 | "width": 151.76, 563 | "height": 30 564 | }, 565 | "_children": [], 566 | "_rotationX": 0, 567 | "_rotationY": 0, 568 | "_scaleX": 1, 569 | "_scaleY": 1, 570 | "_position": { 571 | "__type__": "cc.Vec2", 572 | "x": 144.12, 573 | "y": 125 574 | }, 575 | "_skewX": 0, 576 | "_skewY": 0, 577 | "_localZOrder": 0, 578 | "_globalZOrder": 0, 579 | "_tag": -1, 580 | "_opacityModifyRGB": false, 581 | "_id": "13d2cE3HEFJqZahgMKjC1cp", 582 | "_active": true, 583 | "_components": [ 584 | { 585 | "__id__": 15 586 | }, 587 | { 588 | "__id__": 16 589 | } 590 | ], 591 | "_prefab": null, 592 | "groupIndex": 0 593 | }, 594 | { 595 | "__type__": "cc.Label", 596 | "_name": "", 597 | "_objFlags": 0, 598 | "node": { 599 | "__id__": 14 600 | }, 601 | "_enabled": true, 602 | "_useOriginalSize": false, 603 | "_actualFontSize": 30, 604 | "_fontSize": 30, 605 | "_lineHeight": 30, 606 | "_enableWrapText": true, 607 | "_N$file": null, 608 | "_isSystemFontUsed": true, 609 | "_N$string": "50% x 50%", 610 | "_N$horizontalAlign": 1, 611 | "_N$verticalAlign": 1, 612 | "_N$overflow": 0 613 | }, 614 | { 615 | "__type__": "cc.Widget", 616 | "_name": "", 617 | "_objFlags": 0, 618 | "node": { 619 | "__id__": 14 620 | }, 621 | "_enabled": true, 622 | "isAlignOnce": false, 623 | "_alignFlags": 33, 624 | "_left": 20, 625 | "_right": 20, 626 | "_top": 20, 627 | "_bottom": 20, 628 | "_verticalCenter": 0, 629 | "_horizontalCenter": -5.009999999999991, 630 | "_isAbsLeft": true, 631 | "_isAbsRight": true, 632 | "_isAbsTop": true, 633 | "_isAbsBottom": true, 634 | "_isAbsHorizontalCenter": true, 635 | "_isAbsVerticalCenter": true, 636 | "_originalWidth": 0, 637 | "_originalHeight": 0 638 | }, 639 | { 640 | "__type__": "cc.Sprite", 641 | "_name": "", 642 | "_objFlags": 0, 643 | "node": { 644 | "__id__": 13 645 | }, 646 | "_enabled": true, 647 | "_spriteFrame": { 648 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" 649 | }, 650 | "_type": 0, 651 | "_sizeMode": 0, 652 | "_fillType": 0, 653 | "_fillCenter": { 654 | "__type__": "cc.Vec2", 655 | "x": 0, 656 | "y": 0 657 | }, 658 | "_fillStart": 0, 659 | "_fillRange": 0, 660 | "_isTrimmedMode": true, 661 | "_srcBlendFactor": 770, 662 | "_dstBlendFactor": 771, 663 | "_atlas": null 664 | }, 665 | { 666 | "__type__": "cc.Widget", 667 | "_name": "", 668 | "_objFlags": 0, 669 | "node": { 670 | "__id__": 13 671 | }, 672 | "_enabled": true, 673 | "isAlignOnce": false, 674 | "_alignFlags": 45, 675 | "_left": 0, 676 | "_right": 0.5, 677 | "_top": 0.5, 678 | "_bottom": 0, 679 | "_verticalCenter": 0, 680 | "_horizontalCenter": 0, 681 | "_isAbsLeft": true, 682 | "_isAbsRight": false, 683 | "_isAbsTop": false, 684 | "_isAbsBottom": true, 685 | "_isAbsHorizontalCenter": true, 686 | "_isAbsVerticalCenter": true, 687 | "_originalWidth": 100, 688 | "_originalHeight": 100 689 | }, 690 | { 691 | "__type__": "cc.Node", 692 | "_name": "size25", 693 | "_objFlags": 0, 694 | "_opacity": 255, 695 | "_color": { 696 | "__type__": "cc.Color", 697 | "r": 185, 698 | "g": 173, 699 | "b": 127, 700 | "a": 255 701 | }, 702 | "_cascadeOpacityEnabled": true, 703 | "_parent": { 704 | "__id__": 3 705 | }, 706 | "_anchorPoint": { 707 | "__type__": "cc.Vec2", 708 | "x": 0.5, 709 | "y": 0.5 710 | }, 711 | "_contentSize": { 712 | "__type__": "cc.Size", 713 | "width": 240, 714 | "height": 160 715 | }, 716 | "_children": [ 717 | { 718 | "__id__": 20 719 | } 720 | ], 721 | "_rotationX": 0, 722 | "_rotationY": 0, 723 | "_scaleX": 1, 724 | "_scaleY": 1, 725 | "_position": { 726 | "__type__": "cc.Vec2", 727 | "x": -360, 728 | "y": -240 729 | }, 730 | "_skewX": 0, 731 | "_skewY": 0, 732 | "_localZOrder": 0, 733 | "_globalZOrder": 0, 734 | "_tag": -1, 735 | "_opacityModifyRGB": false, 736 | "_id": "da635PHXZZNYZMGBPx5rxgE", 737 | "_active": true, 738 | "_components": [ 739 | { 740 | "__id__": 23 741 | }, 742 | { 743 | "__id__": 24 744 | } 745 | ], 746 | "_prefab": null, 747 | "groupIndex": 0 748 | }, 749 | { 750 | "__type__": "cc.Node", 751 | "_name": "label", 752 | "_objFlags": 0, 753 | "_opacity": 255, 754 | "_color": { 755 | "__type__": "cc.Color", 756 | "r": 255, 757 | "g": 255, 758 | "b": 255, 759 | "a": 255 760 | }, 761 | "_cascadeOpacityEnabled": true, 762 | "_parent": { 763 | "__id__": 19 764 | }, 765 | "_anchorPoint": { 766 | "__type__": "cc.Vec2", 767 | "x": 0.5, 768 | "y": 0.5 769 | }, 770 | "_contentSize": { 771 | "__type__": "cc.Size", 772 | "width": 151.76, 773 | "height": 30 774 | }, 775 | "_children": [], 776 | "_rotationX": 0, 777 | "_rotationY": 0, 778 | "_scaleX": 1, 779 | "_scaleY": 1, 780 | "_position": { 781 | "__type__": "cc.Vec2", 782 | "x": 24.120000000000005, 783 | "y": 45 784 | }, 785 | "_skewX": 0, 786 | "_skewY": 0, 787 | "_localZOrder": 0, 788 | "_globalZOrder": 0, 789 | "_tag": -1, 790 | "_opacityModifyRGB": false, 791 | "_id": "24595bT5wVF0aGnMFgTJw5S", 792 | "_active": true, 793 | "_components": [ 794 | { 795 | "__id__": 21 796 | }, 797 | { 798 | "__id__": 22 799 | } 800 | ], 801 | "_prefab": null, 802 | "groupIndex": 0 803 | }, 804 | { 805 | "__type__": "cc.Label", 806 | "_name": "", 807 | "_objFlags": 0, 808 | "node": { 809 | "__id__": 20 810 | }, 811 | "_enabled": true, 812 | "_useOriginalSize": false, 813 | "_actualFontSize": 30, 814 | "_fontSize": 30, 815 | "_lineHeight": 30, 816 | "_enableWrapText": true, 817 | "_N$file": null, 818 | "_isSystemFontUsed": true, 819 | "_N$string": "25% x 25%", 820 | "_N$horizontalAlign": 1, 821 | "_N$verticalAlign": 1, 822 | "_N$overflow": 0 823 | }, 824 | { 825 | "__type__": "cc.Widget", 826 | "_name": "", 827 | "_objFlags": 0, 828 | "node": { 829 | "__id__": 20 830 | }, 831 | "_enabled": true, 832 | "isAlignOnce": false, 833 | "_alignFlags": 33, 834 | "_left": 20, 835 | "_right": 20, 836 | "_top": 20, 837 | "_bottom": 20, 838 | "_verticalCenter": 0, 839 | "_horizontalCenter": -5.009999999999991, 840 | "_isAbsLeft": true, 841 | "_isAbsRight": true, 842 | "_isAbsTop": true, 843 | "_isAbsBottom": true, 844 | "_isAbsHorizontalCenter": true, 845 | "_isAbsVerticalCenter": true, 846 | "_originalWidth": 0, 847 | "_originalHeight": 0 848 | }, 849 | { 850 | "__type__": "cc.Sprite", 851 | "_name": "", 852 | "_objFlags": 0, 853 | "node": { 854 | "__id__": 19 855 | }, 856 | "_enabled": true, 857 | "_spriteFrame": { 858 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" 859 | }, 860 | "_type": 0, 861 | "_sizeMode": 0, 862 | "_fillType": 0, 863 | "_fillCenter": { 864 | "__type__": "cc.Vec2", 865 | "x": 0, 866 | "y": 0 867 | }, 868 | "_fillStart": 0, 869 | "_fillRange": 0, 870 | "_isTrimmedMode": true, 871 | "_srcBlendFactor": 770, 872 | "_dstBlendFactor": 771, 873 | "_atlas": null 874 | }, 875 | { 876 | "__type__": "cc.Widget", 877 | "_name": "", 878 | "_objFlags": 0, 879 | "node": { 880 | "__id__": 19 881 | }, 882 | "_enabled": true, 883 | "isAlignOnce": false, 884 | "_alignFlags": 45, 885 | "_left": 0, 886 | "_right": 0.75, 887 | "_top": 0.75, 888 | "_bottom": 0, 889 | "_verticalCenter": 0, 890 | "_horizontalCenter": 0, 891 | "_isAbsLeft": true, 892 | "_isAbsRight": false, 893 | "_isAbsTop": false, 894 | "_isAbsBottom": true, 895 | "_isAbsHorizontalCenter": true, 896 | "_isAbsVerticalCenter": true, 897 | "_originalWidth": 100, 898 | "_originalHeight": 100 899 | }, 900 | { 901 | "__type__": "cc.Sprite", 902 | "_name": "", 903 | "_objFlags": 0, 904 | "node": { 905 | "__id__": 3 906 | }, 907 | "_enabled": true, 908 | "_spriteFrame": { 909 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" 910 | }, 911 | "_type": 0, 912 | "_sizeMode": 0, 913 | "_fillType": 0, 914 | "_fillCenter": { 915 | "__type__": "cc.Vec2", 916 | "x": 0, 917 | "y": 0 918 | }, 919 | "_fillStart": 0, 920 | "_fillRange": 0, 921 | "_isTrimmedMode": true, 922 | "_srcBlendFactor": 770, 923 | "_dstBlendFactor": 771, 924 | "_atlas": null 925 | }, 926 | { 927 | "__type__": "cc.Widget", 928 | "_name": "", 929 | "_objFlags": 0, 930 | "node": { 931 | "__id__": 3 932 | }, 933 | "_enabled": true, 934 | "isAlignOnce": false, 935 | "_alignFlags": 45, 936 | "_left": 0, 937 | "_right": 0, 938 | "_top": 0, 939 | "_bottom": 0, 940 | "_verticalCenter": 0, 941 | "_horizontalCenter": 0, 942 | "_isAbsLeft": true, 943 | "_isAbsRight": true, 944 | "_isAbsTop": true, 945 | "_isAbsBottom": true, 946 | "_isAbsHorizontalCenter": true, 947 | "_isAbsVerticalCenter": true, 948 | "_originalWidth": 100, 949 | "_originalHeight": 100 950 | }, 951 | { 952 | "__type__": "cc.Canvas", 953 | "_name": "", 954 | "_objFlags": 0, 955 | "node": { 956 | "__id__": 2 957 | }, 958 | "_enabled": true, 959 | "_designResolution": { 960 | "__type__": "cc.Size", 961 | "width": 960, 962 | "height": 640 963 | }, 964 | "_fitWidth": false, 965 | "_fitHeight": true 966 | } 967 | ] -------------------------------------------------------------------------------- /assets/Scene/04_size_percentage.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "08d62863-8a1e-4b74-a277-d684a9f9a1f9", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/Scene/05_size_label.fire: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.SceneAsset", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "scene": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Scene", 13 | "_objFlags": 0, 14 | "_opacity": 255, 15 | "_color": { 16 | "__type__": "cc.Color", 17 | "r": 255, 18 | "g": 255, 19 | "b": 255, 20 | "a": 255 21 | }, 22 | "_cascadeOpacityEnabled": true, 23 | "_parent": null, 24 | "_anchorPoint": { 25 | "__type__": "cc.Vec2", 26 | "x": 0, 27 | "y": 0 28 | }, 29 | "_contentSize": { 30 | "__type__": "cc.Size", 31 | "width": 0, 32 | "height": 0 33 | }, 34 | "_children": [ 35 | { 36 | "__id__": 2 37 | } 38 | ], 39 | "_localZOrder": 0, 40 | "_globalZOrder": 0, 41 | "_tag": -1, 42 | "_opacityModifyRGB": false, 43 | "_id": "6192dac2-4c46-4741-8f81-394aea742a35", 44 | "autoReleaseAssets": false 45 | }, 46 | { 47 | "__type__": "cc.Node", 48 | "_name": "Canvas", 49 | "_objFlags": 0, 50 | "_opacity": 255, 51 | "_color": { 52 | "__type__": "cc.Color", 53 | "r": 255, 54 | "g": 255, 55 | "b": 255, 56 | "a": 255 57 | }, 58 | "_cascadeOpacityEnabled": true, 59 | "_parent": { 60 | "__id__": 1 61 | }, 62 | "_anchorPoint": { 63 | "__type__": "cc.Vec2", 64 | "x": 0.5, 65 | "y": 0.5 66 | }, 67 | "_contentSize": { 68 | "__type__": "cc.Size", 69 | "width": 960, 70 | "height": 640 71 | }, 72 | "_children": [ 73 | { 74 | "__id__": 3 75 | } 76 | ], 77 | "_rotationX": 0, 78 | "_rotationY": 0, 79 | "_scaleX": 1, 80 | "_scaleY": 1, 81 | "_position": { 82 | "__type__": "cc.Vec2", 83 | "x": 480, 84 | "y": 320 85 | }, 86 | "_skewX": 0, 87 | "_skewY": 0, 88 | "_localZOrder": 0, 89 | "_globalZOrder": 0, 90 | "_tag": -1, 91 | "_opacityModifyRGB": false, 92 | "_id": "f34e2TJvCJJBJZcbt81kbrY", 93 | "_active": true, 94 | "_components": [ 95 | { 96 | "__id__": 24 97 | } 98 | ], 99 | "_prefab": null, 100 | "groupIndex": 0 101 | }, 102 | { 103 | "__type__": "cc.Node", 104 | "_name": "bg", 105 | "_objFlags": 0, 106 | "_opacity": 255, 107 | "_color": { 108 | "__type__": "cc.Color", 109 | "r": 17, 110 | "g": 59, 111 | "b": 75, 112 | "a": 255 113 | }, 114 | "_cascadeOpacityEnabled": true, 115 | "_parent": { 116 | "__id__": 2 117 | }, 118 | "_anchorPoint": { 119 | "__type__": "cc.Vec2", 120 | "x": 0.5, 121 | "y": 0.5 122 | }, 123 | "_contentSize": { 124 | "__type__": "cc.Size", 125 | "width": 960, 126 | "height": 640 127 | }, 128 | "_children": [ 129 | { 130 | "__id__": 4 131 | }, 132 | { 133 | "__id__": 7 134 | }, 135 | { 136 | "__id__": 13 137 | }, 138 | { 139 | "__id__": 19 140 | } 141 | ], 142 | "_rotationX": 0, 143 | "_rotationY": 0, 144 | "_scaleX": 1, 145 | "_scaleY": 1, 146 | "_position": { 147 | "__type__": "cc.Vec2", 148 | "x": 0, 149 | "y": 0 150 | }, 151 | "_skewX": 0, 152 | "_skewY": 0, 153 | "_localZOrder": 0, 154 | "_globalZOrder": 0, 155 | "_tag": -1, 156 | "_opacityModifyRGB": false, 157 | "_id": "e694bcB+kZF67ROgzfc8MkS", 158 | "_active": true, 159 | "_components": [ 160 | { 161 | "__id__": 22 162 | }, 163 | { 164 | "__id__": 23 165 | } 166 | ], 167 | "_prefab": null, 168 | "groupIndex": 0 169 | }, 170 | { 171 | "__type__": "cc.Node", 172 | "_name": "label", 173 | "_objFlags": 0, 174 | "_opacity": 255, 175 | "_color": { 176 | "__type__": "cc.Color", 177 | "r": 255, 178 | "g": 255, 179 | "b": 255, 180 | "a": 255 181 | }, 182 | "_cascadeOpacityEnabled": true, 183 | "_parent": { 184 | "__id__": 3 185 | }, 186 | "_anchorPoint": { 187 | "__type__": "cc.Vec2", 188 | "x": 0.5, 189 | "y": 0.5 190 | }, 191 | "_contentSize": { 192 | "__type__": "cc.Size", 193 | "width": 120, 194 | "height": 30 195 | }, 196 | "_children": [], 197 | "_rotationX": 0, 198 | "_rotationY": 0, 199 | "_scaleX": 1, 200 | "_scaleY": 1, 201 | "_position": { 202 | "__type__": "cc.Vec2", 203 | "x": -240, 204 | "y": 275 205 | }, 206 | "_skewX": 0, 207 | "_skewY": 0, 208 | "_localZOrder": 0, 209 | "_globalZOrder": 0, 210 | "_tag": -1, 211 | "_opacityModifyRGB": false, 212 | "_id": "28daa+D0VpF/pmP1V+itced", 213 | "_active": true, 214 | "_components": [ 215 | { 216 | "__id__": 5 217 | }, 218 | { 219 | "__id__": 6 220 | } 221 | ], 222 | "_prefab": null, 223 | "groupIndex": 0 224 | }, 225 | { 226 | "__type__": "cc.Label", 227 | "_name": "", 228 | "_objFlags": 0, 229 | "node": { 230 | "__id__": 4 231 | }, 232 | "_enabled": true, 233 | "_useOriginalSize": false, 234 | "_actualFontSize": 30, 235 | "_fontSize": 30, 236 | "_lineHeight": 30, 237 | "_enableWrapText": true, 238 | "_N$file": null, 239 | "_isSystemFontUsed": true, 240 | "_N$string": "文字截断", 241 | "_N$horizontalAlign": 1, 242 | "_N$verticalAlign": 1, 243 | "_N$overflow": 0 244 | }, 245 | { 246 | "__type__": "cc.Widget", 247 | "_name": "", 248 | "_objFlags": 0, 249 | "node": { 250 | "__id__": 4 251 | }, 252 | "_enabled": true, 253 | "isAlignOnce": false, 254 | "_alignFlags": 17, 255 | "_left": 0.2, 256 | "_right": 657, 257 | "_top": 30, 258 | "_bottom": 20, 259 | "_verticalCenter": 0, 260 | "_horizontalCenter": -0.25, 261 | "_isAbsLeft": false, 262 | "_isAbsRight": true, 263 | "_isAbsTop": true, 264 | "_isAbsBottom": true, 265 | "_isAbsHorizontalCenter": false, 266 | "_isAbsVerticalCenter": true, 267 | "_originalWidth": 0, 268 | "_originalHeight": 0 269 | }, 270 | { 271 | "__type__": "cc.Node", 272 | "_name": "size75", 273 | "_objFlags": 0, 274 | "_opacity": 255, 275 | "_color": { 276 | "__type__": "cc.Color", 277 | "r": 255, 278 | "g": 255, 279 | "b": 255, 280 | "a": 255 281 | }, 282 | "_cascadeOpacityEnabled": true, 283 | "_parent": { 284 | "__id__": 3 285 | }, 286 | "_anchorPoint": { 287 | "__type__": "cc.Vec2", 288 | "x": 0.5, 289 | "y": 0.5 290 | }, 291 | "_contentSize": { 292 | "__type__": "cc.Size", 293 | "width": 460.4, 294 | "height": 480.00000000000006 295 | }, 296 | "_children": [ 297 | { 298 | "__id__": 8 299 | } 300 | ], 301 | "_rotationX": 0, 302 | "_rotationY": 0, 303 | "_scaleX": 1, 304 | "_scaleY": 1, 305 | "_position": { 306 | "__type__": "cc.Vec2", 307 | "x": -239.8, 308 | "y": -9 309 | }, 310 | "_skewX": 0, 311 | "_skewY": 0, 312 | "_localZOrder": 0, 313 | "_globalZOrder": 0, 314 | "_tag": -1, 315 | "_opacityModifyRGB": false, 316 | "_id": "feffbX6MRdEmpKXdOnEihTL", 317 | "_active": true, 318 | "_components": [ 319 | { 320 | "__id__": 11 321 | }, 322 | { 323 | "__id__": 12 324 | } 325 | ], 326 | "_prefab": null, 327 | "groupIndex": 0 328 | }, 329 | { 330 | "__type__": "cc.Node", 331 | "_name": "label", 332 | "_objFlags": 0, 333 | "_opacity": 255, 334 | "_color": { 335 | "__type__": "cc.Color", 336 | "r": 255, 337 | "g": 255, 338 | "b": 255, 339 | "a": 255 340 | }, 341 | "_cascadeOpacityEnabled": true, 342 | "_parent": { 343 | "__id__": 7 344 | }, 345 | "_anchorPoint": { 346 | "__type__": "cc.Vec2", 347 | "x": 0.5, 348 | "y": 0.5 349 | }, 350 | "_contentSize": { 351 | "__type__": "cc.Size", 352 | "width": 420.4, 353 | "height": 440.00000000000006 354 | }, 355 | "_children": [], 356 | "_rotationX": 0, 357 | "_rotationY": 0, 358 | "_scaleX": 1, 359 | "_scaleY": 1, 360 | "_position": { 361 | "__type__": "cc.Vec2", 362 | "x": 0, 363 | "y": 0 364 | }, 365 | "_skewX": 0, 366 | "_skewY": 0, 367 | "_localZOrder": 0, 368 | "_globalZOrder": 0, 369 | "_tag": -1, 370 | "_opacityModifyRGB": false, 371 | "_id": "93b37iAw3JBPpAakPkHA4Ha", 372 | "_active": true, 373 | "_components": [ 374 | { 375 | "__id__": 9 376 | }, 377 | { 378 | "__id__": 10 379 | } 380 | ], 381 | "_prefab": null, 382 | "groupIndex": 0 383 | }, 384 | { 385 | "__type__": "cc.Label", 386 | "_name": "", 387 | "_objFlags": 0, 388 | "node": { 389 | "__id__": 8 390 | }, 391 | "_enabled": true, 392 | "_useOriginalSize": false, 393 | "_actualFontSize": 25, 394 | "_fontSize": 25, 395 | "_lineHeight": 25, 396 | "_enableWrapText": true, 397 | "_N$file": null, 398 | "_isSystemFontUsed": true, 399 | "_N$string": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut mattis elit a congue consequat. Duis facilisis ultrices est, eget bibendum tellus viverra in. Fusce eros ante, vehicula vel urna at, pharetra sagittis sem. Praesent leo purus, pellentesque et libero at, vulputate condimentum tellus. Phasellus est purus, efficitur quis gravida et, iaculis sed arcu. Suspendisse leo lectus, volutpat vestibulum risus sed, eleifend consequat nibh. Pellentesque eget vulputate neque. Proin suscipit mi sit amet tristique cursus. Pellentesque et varius nunc, et tempor nisl. Vivamus quis ex nisi.\n\nNunc ut eros nisi. Maecenas quis eros eros. Integer tellus ex, posuere ut mi id, efficitur venenatis quam. Pellentesque in volutpat tellus. In gravida libero sit amet sem cursus efficitur. Fusce risus leo, congue in tellus non, eleifend sollicitudin libero. Nunc libero ex, dictum nec quam a, aliquet condimentum lectus. Proin gravida ipsum non mauris porttitor, sit amet luctus diam dictum. Nunc convallis consequat urna eget scelerisque. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris luctus ipsum et vehicula maximus. Phasellus vestibulum urna in sagittis euismod.\n\nInteger in mollis orci. Fusce ac nisi a tortor maximus faucibus ac ut ante. Vestibulum hendrerit ligula nulla, eget consequat libero ornare id. Suspendisse potenti. In ut porta enim. Aliquam enim libero, maximus id mattis ut, suscipit sit amet nisl. Aliquam ac nisi libero. Sed in ante convallis, euismod nunc a, sollicitudin lorem. Sed vitae venenatis risus. Etiam a turpis eget lacus ornare lacinia.\n\nIn in lacus pulvinar, porttitor sapien vitae, facilisis neque. Fusce ac aliquam diam. Phasellus ipsum nulla, tempus nec urna id, vestibulum finibus turpis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Mauris ac metus ut lacus tincidunt dictum. Cras sollicitudin sem vitae mauris mollis ornare. Maecenas elit metus, ullamcorper a velit suscipit, auctor posuere tortor. Phasellus sit amet tellus vel nulla tempus sagittis eu ut justo.\n\nCurabitur tellus nunc, finibus ut velit vel, ultrices sagittis quam. Integer sagittis quam a est ultricies, sed blandit arcu mollis. Donec convallis tortor nec velit bibendum auctor in a neque. Aenean tincidunt odio sed ipsum elementum, vitae luctus ipsum ullamcorper. Mauris auctor aliquet bibendum. Suspendisse urna nibh, fermentum id erat sed, vehicula viverra metus. Cras facilisis ultricies lorem eget suscipit. Donec condimentum porta consequat. Curabitur eget elit ac sem rhoncus congue. Mauris facilisis finibus lorem vitae tristique. Etiam maximus semper dolor at tristique.", 400 | "_N$horizontalAlign": 1, 401 | "_N$verticalAlign": 0, 402 | "_N$overflow": 1 403 | }, 404 | { 405 | "__type__": "cc.Widget", 406 | "_name": "", 407 | "_objFlags": 0, 408 | "node": { 409 | "__id__": 8 410 | }, 411 | "_enabled": true, 412 | "isAlignOnce": false, 413 | "_alignFlags": 45, 414 | "_left": 20, 415 | "_right": 20, 416 | "_top": 20, 417 | "_bottom": 20, 418 | "_verticalCenter": 0, 419 | "_horizontalCenter": -5.009999999999991, 420 | "_isAbsLeft": true, 421 | "_isAbsRight": true, 422 | "_isAbsTop": true, 423 | "_isAbsBottom": true, 424 | "_isAbsHorizontalCenter": true, 425 | "_isAbsVerticalCenter": true, 426 | "_originalWidth": 8007.77, 427 | "_originalHeight": 270 428 | }, 429 | { 430 | "__type__": "cc.Sprite", 431 | "_name": "", 432 | "_objFlags": 0, 433 | "node": { 434 | "__id__": 7 435 | }, 436 | "_enabled": true, 437 | "_spriteFrame": { 438 | "__uuid__": "033438e4-0051-447a-b785-b98a8adff3b0" 439 | }, 440 | "_type": 1, 441 | "_sizeMode": 0, 442 | "_fillType": 0, 443 | "_fillCenter": { 444 | "__type__": "cc.Vec2", 445 | "x": 0, 446 | "y": 0 447 | }, 448 | "_fillStart": 0, 449 | "_fillRange": 0, 450 | "_isTrimmedMode": true, 451 | "_srcBlendFactor": 770, 452 | "_dstBlendFactor": 771, 453 | "_atlas": null 454 | }, 455 | { 456 | "__type__": "cc.Widget", 457 | "_name": "", 458 | "_objFlags": 0, 459 | "node": { 460 | "__id__": 7 461 | }, 462 | "_enabled": true, 463 | "isAlignOnce": false, 464 | "_alignFlags": 45, 465 | "_left": 10, 466 | "_right": 0.51, 467 | "_top": 0.13906249999999995, 468 | "_bottom": 70.99999999999997, 469 | "_verticalCenter": 0, 470 | "_horizontalCenter": 0, 471 | "_isAbsLeft": true, 472 | "_isAbsRight": false, 473 | "_isAbsTop": false, 474 | "_isAbsBottom": true, 475 | "_isAbsHorizontalCenter": true, 476 | "_isAbsVerticalCenter": true, 477 | "_originalWidth": 100, 478 | "_originalHeight": 100 479 | }, 480 | { 481 | "__type__": "cc.Node", 482 | "_name": "size75", 483 | "_objFlags": 0, 484 | "_opacity": 255, 485 | "_color": { 486 | "__type__": "cc.Color", 487 | "r": 255, 488 | "g": 255, 489 | "b": 255, 490 | "a": 255 491 | }, 492 | "_cascadeOpacityEnabled": true, 493 | "_parent": { 494 | "__id__": 3 495 | }, 496 | "_anchorPoint": { 497 | "__type__": "cc.Vec2", 498 | "x": 0.5, 499 | "y": 0.5 500 | }, 501 | "_contentSize": { 502 | "__type__": "cc.Size", 503 | "width": 460.4, 504 | "height": 480.00000000000006 505 | }, 506 | "_children": [ 507 | { 508 | "__id__": 14 509 | } 510 | ], 511 | "_rotationX": 0, 512 | "_rotationY": 0, 513 | "_scaleX": 1, 514 | "_scaleY": 1, 515 | "_position": { 516 | "__type__": "cc.Vec2", 517 | "x": 239.8, 518 | "y": -9 519 | }, 520 | "_skewX": 0, 521 | "_skewY": 0, 522 | "_localZOrder": 0, 523 | "_globalZOrder": 0, 524 | "_tag": -1, 525 | "_opacityModifyRGB": false, 526 | "_id": "dcfe91ldY1GeIdQVm/UxfxW", 527 | "_active": true, 528 | "_components": [ 529 | { 530 | "__id__": 17 531 | }, 532 | { 533 | "__id__": 18 534 | } 535 | ], 536 | "_prefab": null, 537 | "groupIndex": 0 538 | }, 539 | { 540 | "__type__": "cc.Node", 541 | "_name": "label", 542 | "_objFlags": 0, 543 | "_opacity": 255, 544 | "_color": { 545 | "__type__": "cc.Color", 546 | "r": 255, 547 | "g": 255, 548 | "b": 255, 549 | "a": 255 550 | }, 551 | "_cascadeOpacityEnabled": true, 552 | "_parent": { 553 | "__id__": 13 554 | }, 555 | "_anchorPoint": { 556 | "__type__": "cc.Vec2", 557 | "x": 0.5, 558 | "y": 0.5 559 | }, 560 | "_contentSize": { 561 | "__type__": "cc.Size", 562 | "width": 420.4, 563 | "height": 440.00000000000006 564 | }, 565 | "_children": [], 566 | "_rotationX": 0, 567 | "_rotationY": 0, 568 | "_scaleX": 1, 569 | "_scaleY": 1, 570 | "_position": { 571 | "__type__": "cc.Vec2", 572 | "x": 0, 573 | "y": 0 574 | }, 575 | "_skewX": 0, 576 | "_skewY": 0, 577 | "_localZOrder": 0, 578 | "_globalZOrder": 0, 579 | "_tag": -1, 580 | "_opacityModifyRGB": false, 581 | "_id": "93cc07mny5CbY5/2V1n4mFi", 582 | "_active": true, 583 | "_components": [ 584 | { 585 | "__id__": 15 586 | }, 587 | { 588 | "__id__": 16 589 | } 590 | ], 591 | "_prefab": null, 592 | "groupIndex": 0 593 | }, 594 | { 595 | "__type__": "cc.Label", 596 | "_name": "", 597 | "_objFlags": 0, 598 | "node": { 599 | "__id__": 14 600 | }, 601 | "_enabled": true, 602 | "_useOriginalSize": false, 603 | "_actualFontSize": 17, 604 | "_fontSize": 25, 605 | "_lineHeight": 25, 606 | "_enableWrapText": true, 607 | "_N$file": null, 608 | "_isSystemFontUsed": true, 609 | "_N$string": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut mattis elit a congue consequat. Duis facilisis ultrices est, eget bibendum tellus viverra in. Fusce eros ante, vehicula vel urna at, pharetra sagittis sem. Praesent leo purus, pellentesque et libero at, vulputate condimentum tellus. Phasellus est purus, efficitur quis gravida et, iaculis sed arcu. Suspendisse leo lectus, volutpat vestibulum risus sed, eleifend consequat nibh. Pellentesque eget vulputate neque. Proin suscipit mi sit amet tristique cursus. Pellentesque et varius nunc, et tempor nisl. Vivamus quis ex nisi.\n\nNunc ut eros nisi. Maecenas quis eros eros. Integer tellus ex, posuere ut mi id, efficitur venenatis quam. Pellentesque in volutpat tellus. In gravida libero sit amet sem cursus efficitur. Fusce risus leo, congue in tellus non, eleifend sollicitudin libero. Nunc libero ex, dictum nec quam a, aliquet condimentum lectus. Proin gravida ipsum non mauris porttitor, sit amet luctus diam dictum. Nunc convallis consequat urna eget scelerisque. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris luctus ipsum et vehicula maximus. Phasellus vestibulum urna in sagittis euismod.", 610 | "_N$horizontalAlign": 1, 611 | "_N$verticalAlign": 0, 612 | "_N$overflow": 2 613 | }, 614 | { 615 | "__type__": "cc.Widget", 616 | "_name": "", 617 | "_objFlags": 0, 618 | "node": { 619 | "__id__": 14 620 | }, 621 | "_enabled": true, 622 | "isAlignOnce": false, 623 | "_alignFlags": 45, 624 | "_left": 20, 625 | "_right": 20, 626 | "_top": 20, 627 | "_bottom": 20, 628 | "_verticalCenter": 0, 629 | "_horizontalCenter": -5.009999999999991, 630 | "_isAbsLeft": true, 631 | "_isAbsRight": true, 632 | "_isAbsTop": true, 633 | "_isAbsBottom": true, 634 | "_isAbsHorizontalCenter": true, 635 | "_isAbsVerticalCenter": true, 636 | "_originalWidth": 8007.77, 637 | "_originalHeight": 270 638 | }, 639 | { 640 | "__type__": "cc.Sprite", 641 | "_name": "", 642 | "_objFlags": 0, 643 | "node": { 644 | "__id__": 13 645 | }, 646 | "_enabled": true, 647 | "_spriteFrame": { 648 | "__uuid__": "033438e4-0051-447a-b785-b98a8adff3b0" 649 | }, 650 | "_type": 1, 651 | "_sizeMode": 0, 652 | "_fillType": 0, 653 | "_fillCenter": { 654 | "__type__": "cc.Vec2", 655 | "x": 0, 656 | "y": 0 657 | }, 658 | "_fillStart": 0, 659 | "_fillRange": 0, 660 | "_isTrimmedMode": true, 661 | "_srcBlendFactor": 770, 662 | "_dstBlendFactor": 771, 663 | "_atlas": null 664 | }, 665 | { 666 | "__type__": "cc.Widget", 667 | "_name": "", 668 | "_objFlags": 0, 669 | "node": { 670 | "__id__": 13 671 | }, 672 | "_enabled": true, 673 | "isAlignOnce": false, 674 | "_alignFlags": 45, 675 | "_left": 0.51, 676 | "_right": 10, 677 | "_top": 0.13906249999999995, 678 | "_bottom": 70.99999999999997, 679 | "_verticalCenter": 0, 680 | "_horizontalCenter": 0, 681 | "_isAbsLeft": false, 682 | "_isAbsRight": true, 683 | "_isAbsTop": false, 684 | "_isAbsBottom": true, 685 | "_isAbsHorizontalCenter": true, 686 | "_isAbsVerticalCenter": true, 687 | "_originalWidth": 100, 688 | "_originalHeight": 100 689 | }, 690 | { 691 | "__type__": "cc.Node", 692 | "_name": "label", 693 | "_objFlags": 0, 694 | "_opacity": 255, 695 | "_color": { 696 | "__type__": "cc.Color", 697 | "r": 255, 698 | "g": 255, 699 | "b": 255, 700 | "a": 255 701 | }, 702 | "_cascadeOpacityEnabled": true, 703 | "_parent": { 704 | "__id__": 3 705 | }, 706 | "_anchorPoint": { 707 | "__type__": "cc.Vec2", 708 | "x": 0.5, 709 | "y": 0.5 710 | }, 711 | "_contentSize": { 712 | "__type__": "cc.Size", 713 | "width": 240, 714 | "height": 30 715 | }, 716 | "_children": [], 717 | "_rotationX": 0, 718 | "_rotationY": 0, 719 | "_scaleX": 1, 720 | "_scaleY": 1, 721 | "_position": { 722 | "__type__": "cc.Vec2", 723 | "x": 240, 724 | "y": 274 725 | }, 726 | "_skewX": 0, 727 | "_skewY": 0, 728 | "_localZOrder": 0, 729 | "_globalZOrder": 0, 730 | "_tag": -1, 731 | "_opacityModifyRGB": false, 732 | "_id": "f4260OpxYhIH78iqLIPd5+b", 733 | "_active": true, 734 | "_components": [ 735 | { 736 | "__id__": 20 737 | }, 738 | { 739 | "__id__": 21 740 | } 741 | ], 742 | "_prefab": null, 743 | "groupIndex": 0 744 | }, 745 | { 746 | "__type__": "cc.Label", 747 | "_name": "", 748 | "_objFlags": 0, 749 | "node": { 750 | "__id__": 19 751 | }, 752 | "_enabled": true, 753 | "_useOriginalSize": false, 754 | "_actualFontSize": 30, 755 | "_fontSize": 30, 756 | "_lineHeight": 30, 757 | "_enableWrapText": true, 758 | "_N$file": null, 759 | "_isSystemFontUsed": true, 760 | "_N$string": "文字尺寸自动适应", 761 | "_N$horizontalAlign": 1, 762 | "_N$verticalAlign": 1, 763 | "_N$overflow": 0 764 | }, 765 | { 766 | "__type__": "cc.Widget", 767 | "_name": "", 768 | "_objFlags": 0, 769 | "node": { 770 | "__id__": 19 771 | }, 772 | "_enabled": true, 773 | "isAlignOnce": false, 774 | "_alignFlags": 17, 775 | "_left": 20, 776 | "_right": 131, 777 | "_top": 31, 778 | "_bottom": 20, 779 | "_verticalCenter": 0, 780 | "_horizontalCenter": 0.25, 781 | "_isAbsLeft": true, 782 | "_isAbsRight": true, 783 | "_isAbsTop": true, 784 | "_isAbsBottom": true, 785 | "_isAbsHorizontalCenter": false, 786 | "_isAbsVerticalCenter": true, 787 | "_originalWidth": 0, 788 | "_originalHeight": 0 789 | }, 790 | { 791 | "__type__": "cc.Sprite", 792 | "_name": "", 793 | "_objFlags": 0, 794 | "node": { 795 | "__id__": 3 796 | }, 797 | "_enabled": true, 798 | "_spriteFrame": { 799 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" 800 | }, 801 | "_type": 0, 802 | "_sizeMode": 0, 803 | "_fillType": 0, 804 | "_fillCenter": { 805 | "__type__": "cc.Vec2", 806 | "x": 0, 807 | "y": 0 808 | }, 809 | "_fillStart": 0, 810 | "_fillRange": 0, 811 | "_isTrimmedMode": true, 812 | "_srcBlendFactor": 770, 813 | "_dstBlendFactor": 771, 814 | "_atlas": null 815 | }, 816 | { 817 | "__type__": "cc.Widget", 818 | "_name": "", 819 | "_objFlags": 0, 820 | "node": { 821 | "__id__": 3 822 | }, 823 | "_enabled": true, 824 | "isAlignOnce": false, 825 | "_alignFlags": 45, 826 | "_left": 0, 827 | "_right": 0, 828 | "_top": 0, 829 | "_bottom": 0, 830 | "_verticalCenter": 0, 831 | "_horizontalCenter": 0, 832 | "_isAbsLeft": true, 833 | "_isAbsRight": true, 834 | "_isAbsTop": true, 835 | "_isAbsBottom": true, 836 | "_isAbsHorizontalCenter": true, 837 | "_isAbsVerticalCenter": true, 838 | "_originalWidth": 100, 839 | "_originalHeight": 100 840 | }, 841 | { 842 | "__type__": "cc.Canvas", 843 | "_name": "", 844 | "_objFlags": 0, 845 | "node": { 846 | "__id__": 2 847 | }, 848 | "_enabled": true, 849 | "_designResolution": { 850 | "__type__": "cc.Size", 851 | "width": 960, 852 | "height": 640 853 | }, 854 | "_fitWidth": false, 855 | "_fitHeight": true 856 | } 857 | ] -------------------------------------------------------------------------------- /assets/Scene/05_size_label.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6192dac2-4c46-4741-8f81-394aea742a35", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/Scene/06_layout_grid.fire: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.SceneAsset", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "scene": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Scene", 13 | "_objFlags": 0, 14 | "_opacity": 255, 15 | "_color": { 16 | "__type__": "cc.Color", 17 | "r": 255, 18 | "g": 255, 19 | "b": 255, 20 | "a": 255 21 | }, 22 | "_cascadeOpacityEnabled": true, 23 | "_parent": null, 24 | "_anchorPoint": { 25 | "__type__": "cc.Vec2", 26 | "x": 0, 27 | "y": 0 28 | }, 29 | "_contentSize": { 30 | "__type__": "cc.Size", 31 | "width": 0, 32 | "height": 0 33 | }, 34 | "_children": [ 35 | { 36 | "__id__": 2 37 | } 38 | ], 39 | "_localZOrder": 0, 40 | "_globalZOrder": 0, 41 | "_tag": -1, 42 | "_opacityModifyRGB": false, 43 | "_id": "877de0ab-a1c0-412d-9f3d-911c38eb0776", 44 | "autoReleaseAssets": false 45 | }, 46 | { 47 | "__type__": "cc.Node", 48 | "_name": "Canvas", 49 | "_objFlags": 0, 50 | "_opacity": 255, 51 | "_color": { 52 | "__type__": "cc.Color", 53 | "r": 255, 54 | "g": 255, 55 | "b": 255, 56 | "a": 255 57 | }, 58 | "_cascadeOpacityEnabled": true, 59 | "_parent": { 60 | "__id__": 1 61 | }, 62 | "_anchorPoint": { 63 | "__type__": "cc.Vec2", 64 | "x": 0.5, 65 | "y": 0.5 66 | }, 67 | "_contentSize": { 68 | "__type__": "cc.Size", 69 | "width": 960, 70 | "height": 640 71 | }, 72 | "_children": [ 73 | { 74 | "__id__": 3 75 | } 76 | ], 77 | "_rotationX": 0, 78 | "_rotationY": 0, 79 | "_scaleX": 1, 80 | "_scaleY": 1, 81 | "_position": { 82 | "__type__": "cc.Vec2", 83 | "x": 480, 84 | "y": 320 85 | }, 86 | "_skewX": 0, 87 | "_skewY": 0, 88 | "_localZOrder": 0, 89 | "_globalZOrder": 0, 90 | "_tag": -1, 91 | "_opacityModifyRGB": false, 92 | "_id": "65a89gVG+1L/ZiCpXkMvu++", 93 | "_active": true, 94 | "_components": [ 95 | { 96 | "__id__": 79 97 | } 98 | ], 99 | "_prefab": null, 100 | "groupIndex": 0 101 | }, 102 | { 103 | "__type__": "cc.Node", 104 | "_name": "bg", 105 | "_objFlags": 0, 106 | "_opacity": 255, 107 | "_color": { 108 | "__type__": "cc.Color", 109 | "r": 17, 110 | "g": 59, 111 | "b": 75, 112 | "a": 255 113 | }, 114 | "_cascadeOpacityEnabled": true, 115 | "_parent": { 116 | "__id__": 2 117 | }, 118 | "_anchorPoint": { 119 | "__type__": "cc.Vec2", 120 | "x": 0.5, 121 | "y": 0.5 122 | }, 123 | "_contentSize": { 124 | "__type__": "cc.Size", 125 | "width": 960, 126 | "height": 640 127 | }, 128 | "_children": [ 129 | { 130 | "__id__": 4 131 | }, 132 | { 133 | "__id__": 7 134 | } 135 | ], 136 | "_rotationX": 0, 137 | "_rotationY": 0, 138 | "_scaleX": 1, 139 | "_scaleY": 1, 140 | "_position": { 141 | "__type__": "cc.Vec2", 142 | "x": 0, 143 | "y": 0 144 | }, 145 | "_skewX": 0, 146 | "_skewY": 0, 147 | "_localZOrder": 0, 148 | "_globalZOrder": 0, 149 | "_tag": -1, 150 | "_opacityModifyRGB": false, 151 | "_id": "4f0f7weAlpIQIlU0Yl5T+8y", 152 | "_active": true, 153 | "_components": [ 154 | { 155 | "__id__": 77 156 | }, 157 | { 158 | "__id__": 78 159 | } 160 | ], 161 | "_prefab": null, 162 | "groupIndex": 0 163 | }, 164 | { 165 | "__type__": "cc.Node", 166 | "_name": "label", 167 | "_objFlags": 0, 168 | "_opacity": 255, 169 | "_color": { 170 | "__type__": "cc.Color", 171 | "r": 255, 172 | "g": 255, 173 | "b": 255, 174 | "a": 255 175 | }, 176 | "_cascadeOpacityEnabled": true, 177 | "_parent": { 178 | "__id__": 3 179 | }, 180 | "_anchorPoint": { 181 | "__type__": "cc.Vec2", 182 | "x": 0.5, 183 | "y": 0.5 184 | }, 185 | "_contentSize": { 186 | "__type__": "cc.Size", 187 | "width": 120, 188 | "height": 30 189 | }, 190 | "_children": [], 191 | "_rotationX": 0, 192 | "_rotationY": 0, 193 | "_scaleX": 1, 194 | "_scaleY": 1, 195 | "_position": { 196 | "__type__": "cc.Vec2", 197 | "x": -5.009999999999991, 198 | "y": 255 199 | }, 200 | "_skewX": 0, 201 | "_skewY": 0, 202 | "_localZOrder": 0, 203 | "_globalZOrder": 0, 204 | "_tag": -1, 205 | "_opacityModifyRGB": false, 206 | "_id": "54414ZY2O5H85/TWNG84jII", 207 | "_active": true, 208 | "_components": [ 209 | { 210 | "__id__": 5 211 | }, 212 | { 213 | "__id__": 6 214 | } 215 | ], 216 | "_prefab": null, 217 | "groupIndex": 0 218 | }, 219 | { 220 | "__type__": "cc.Label", 221 | "_name": "", 222 | "_objFlags": 0, 223 | "node": { 224 | "__id__": 4 225 | }, 226 | "_enabled": true, 227 | "_useOriginalSize": false, 228 | "_actualFontSize": 30, 229 | "_fontSize": 30, 230 | "_lineHeight": 30, 231 | "_enableWrapText": true, 232 | "_N$file": null, 233 | "_isSystemFontUsed": true, 234 | "_N$string": "网格布局", 235 | "_N$horizontalAlign": 1, 236 | "_N$verticalAlign": 1, 237 | "_N$overflow": 0 238 | }, 239 | { 240 | "__type__": "cc.Widget", 241 | "_name": "", 242 | "_objFlags": 0, 243 | "node": { 244 | "__id__": 4 245 | }, 246 | "_enabled": true, 247 | "isAlignOnce": false, 248 | "_alignFlags": 17, 249 | "_left": 20, 250 | "_right": 657, 251 | "_top": 50, 252 | "_bottom": 20, 253 | "_verticalCenter": 0, 254 | "_horizontalCenter": -5.009999999999991, 255 | "_isAbsLeft": true, 256 | "_isAbsRight": true, 257 | "_isAbsTop": true, 258 | "_isAbsBottom": true, 259 | "_isAbsHorizontalCenter": true, 260 | "_isAbsVerticalCenter": true, 261 | "_originalWidth": 0, 262 | "_originalHeight": 0 263 | }, 264 | { 265 | "__type__": "cc.Node", 266 | "_name": "scrollView", 267 | "_objFlags": 0, 268 | "_opacity": 255, 269 | "_color": { 270 | "__type__": "cc.Color", 271 | "r": 184, 272 | "g": 184, 273 | "b": 184, 274 | "a": 255 275 | }, 276 | "_cascadeOpacityEnabled": true, 277 | "_parent": { 278 | "__id__": 3 279 | }, 280 | "_anchorPoint": { 281 | "__type__": "cc.Vec2", 282 | "x": 0.5, 283 | "y": 0.5 284 | }, 285 | "_contentSize": { 286 | "__type__": "cc.Size", 287 | "width": 672, 288 | "height": 416 289 | }, 290 | "_children": [ 291 | { 292 | "__id__": 8 293 | } 294 | ], 295 | "_rotationX": 0, 296 | "_rotationY": 0, 297 | "_scaleX": 1, 298 | "_scaleY": 1, 299 | "_position": { 300 | "__type__": "cc.Vec2", 301 | "x": 0, 302 | "y": -16 303 | }, 304 | "_skewX": 0, 305 | "_skewY": 0, 306 | "_localZOrder": 0, 307 | "_globalZOrder": 0, 308 | "_tag": -1, 309 | "_opacityModifyRGB": false, 310 | "_id": "3a72cbiEINA14sgQ++S3Ahq", 311 | "_active": true, 312 | "_components": [ 313 | { 314 | "__id__": 74 315 | }, 316 | { 317 | "__id__": 75 318 | }, 319 | { 320 | "__id__": 76 321 | } 322 | ], 323 | "_prefab": null, 324 | "groupIndex": 0 325 | }, 326 | { 327 | "__type__": "cc.Node", 328 | "_name": "view", 329 | "_objFlags": 0, 330 | "_opacity": 255, 331 | "_color": { 332 | "__type__": "cc.Color", 333 | "r": 255, 334 | "g": 255, 335 | "b": 255, 336 | "a": 255 337 | }, 338 | "_cascadeOpacityEnabled": true, 339 | "_parent": { 340 | "__id__": 7 341 | }, 342 | "_anchorPoint": { 343 | "__type__": "cc.Vec2", 344 | "x": 0.5, 345 | "y": 0.5 346 | }, 347 | "_contentSize": { 348 | "__type__": "cc.Size", 349 | "width": 662, 350 | "height": 406 351 | }, 352 | "_children": [ 353 | { 354 | "__id__": 9 355 | } 356 | ], 357 | "_rotationX": 0, 358 | "_rotationY": 0, 359 | "_scaleX": 1, 360 | "_scaleY": 1, 361 | "_position": { 362 | "__type__": "cc.Vec2", 363 | "x": 0, 364 | "y": 0 365 | }, 366 | "_skewX": 0, 367 | "_skewY": 0, 368 | "_localZOrder": 0, 369 | "_globalZOrder": 0, 370 | "_tag": -1, 371 | "_opacityModifyRGB": false, 372 | "_id": "b84563IZSBPA4cGMuOPRWNS", 373 | "_active": true, 374 | "_components": [ 375 | { 376 | "__id__": 72 377 | }, 378 | { 379 | "__id__": 73 380 | } 381 | ], 382 | "_prefab": null, 383 | "groupIndex": 0 384 | }, 385 | { 386 | "__type__": "cc.Node", 387 | "_name": "content", 388 | "_objFlags": 0, 389 | "_opacity": 255, 390 | "_color": { 391 | "__type__": "cc.Color", 392 | "r": 255, 393 | "g": 255, 394 | "b": 255, 395 | "a": 255 396 | }, 397 | "_cascadeOpacityEnabled": true, 398 | "_parent": { 399 | "__id__": 8 400 | }, 401 | "_anchorPoint": { 402 | "__type__": "cc.Vec2", 403 | "x": 0.5, 404 | "y": 1 405 | }, 406 | "_contentSize": { 407 | "__type__": "cc.Size", 408 | "width": 652, 409 | "height": 544 410 | }, 411 | "_children": [ 412 | { 413 | "__id__": 10 414 | }, 415 | { 416 | "__id__": 12 417 | }, 418 | { 419 | "__id__": 14 420 | }, 421 | { 422 | "__id__": 16 423 | }, 424 | { 425 | "__id__": 18 426 | }, 427 | { 428 | "__id__": 20 429 | }, 430 | { 431 | "__id__": 22 432 | }, 433 | { 434 | "__id__": 24 435 | }, 436 | { 437 | "__id__": 26 438 | }, 439 | { 440 | "__id__": 28 441 | }, 442 | { 443 | "__id__": 30 444 | }, 445 | { 446 | "__id__": 32 447 | }, 448 | { 449 | "__id__": 34 450 | }, 451 | { 452 | "__id__": 36 453 | }, 454 | { 455 | "__id__": 38 456 | }, 457 | { 458 | "__id__": 40 459 | }, 460 | { 461 | "__id__": 42 462 | }, 463 | { 464 | "__id__": 44 465 | }, 466 | { 467 | "__id__": 46 468 | }, 469 | { 470 | "__id__": 48 471 | }, 472 | { 473 | "__id__": 50 474 | }, 475 | { 476 | "__id__": 52 477 | }, 478 | { 479 | "__id__": 54 480 | }, 481 | { 482 | "__id__": 56 483 | }, 484 | { 485 | "__id__": 58 486 | }, 487 | { 488 | "__id__": 60 489 | }, 490 | { 491 | "__id__": 62 492 | }, 493 | { 494 | "__id__": 64 495 | }, 496 | { 497 | "__id__": 66 498 | }, 499 | { 500 | "__id__": 68 501 | } 502 | ], 503 | "_rotationX": 0, 504 | "_rotationY": 0, 505 | "_scaleX": 1, 506 | "_scaleY": 1, 507 | "_position": { 508 | "__type__": "cc.Vec2", 509 | "x": 0, 510 | "y": 200 511 | }, 512 | "_skewX": 0, 513 | "_skewY": 0, 514 | "_localZOrder": 0, 515 | "_globalZOrder": 0, 516 | "_tag": -1, 517 | "_opacityModifyRGB": false, 518 | "_id": "a1bc25Ha2ZBP6oFgbCiCXXx", 519 | "_active": true, 520 | "_components": [ 521 | { 522 | "__id__": 70 523 | }, 524 | { 525 | "__id__": 71 526 | } 527 | ], 528 | "_prefab": null, 529 | "groupIndex": 0 530 | }, 531 | { 532 | "__type__": "cc.Node", 533 | "_name": "gold", 534 | "_objFlags": 0, 535 | "_opacity": 255, 536 | "_color": { 537 | "__type__": "cc.Color", 538 | "r": 255, 539 | "g": 255, 540 | "b": 255, 541 | "a": 255 542 | }, 543 | "_cascadeOpacityEnabled": true, 544 | "_parent": { 545 | "__id__": 9 546 | }, 547 | "_anchorPoint": { 548 | "__type__": "cc.Vec2", 549 | "x": 0.5, 550 | "y": 0.5 551 | }, 552 | "_contentSize": { 553 | "__type__": "cc.Size", 554 | "width": 80, 555 | "height": 80 556 | }, 557 | "_children": [], 558 | "_rotationX": 0, 559 | "_rotationY": 0, 560 | "_scaleX": 1, 561 | "_scaleY": 1, 562 | "_position": { 563 | "__type__": "cc.Vec2", 564 | "x": -254, 565 | "y": -72 566 | }, 567 | "_skewX": 0, 568 | "_skewY": 0, 569 | "_localZOrder": 0, 570 | "_globalZOrder": 0, 571 | "_tag": -1, 572 | "_opacityModifyRGB": false, 573 | "_id": "b9351DYz4dLEZ202IB3V9sY", 574 | "_active": true, 575 | "_components": [ 576 | { 577 | "__id__": 11 578 | } 579 | ], 580 | "_prefab": null, 581 | "groupIndex": 0 582 | }, 583 | { 584 | "__type__": "cc.Sprite", 585 | "_name": "", 586 | "_objFlags": 0, 587 | "node": { 588 | "__id__": 10 589 | }, 590 | "_enabled": true, 591 | "_spriteFrame": { 592 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 593 | }, 594 | "_type": 0, 595 | "_sizeMode": 1, 596 | "_fillType": 0, 597 | "_fillCenter": { 598 | "__type__": "cc.Vec2", 599 | "x": 0, 600 | "y": 0 601 | }, 602 | "_fillStart": 0, 603 | "_fillRange": 0, 604 | "_isTrimmedMode": true, 605 | "_srcBlendFactor": 770, 606 | "_dstBlendFactor": 771, 607 | "_atlas": null 608 | }, 609 | { 610 | "__type__": "cc.Node", 611 | "_name": "gold", 612 | "_objFlags": 0, 613 | "_opacity": 255, 614 | "_color": { 615 | "__type__": "cc.Color", 616 | "r": 255, 617 | "g": 255, 618 | "b": 255, 619 | "a": 255 620 | }, 621 | "_cascadeOpacityEnabled": true, 622 | "_parent": { 623 | "__id__": 9 624 | }, 625 | "_anchorPoint": { 626 | "__type__": "cc.Vec2", 627 | "x": 0.5, 628 | "y": 0.5 629 | }, 630 | "_contentSize": { 631 | "__type__": "cc.Size", 632 | "width": 80, 633 | "height": 80 634 | }, 635 | "_children": [], 636 | "_rotationX": 0, 637 | "_rotationY": 0, 638 | "_scaleX": 1, 639 | "_scaleY": 1, 640 | "_position": { 641 | "__type__": "cc.Vec2", 642 | "x": -154, 643 | "y": -72 644 | }, 645 | "_skewX": 0, 646 | "_skewY": 0, 647 | "_localZOrder": 0, 648 | "_globalZOrder": 0, 649 | "_tag": -1, 650 | "_opacityModifyRGB": false, 651 | "_id": "a5be7Se+m5G/K3q5ES3FT4q", 652 | "_active": true, 653 | "_components": [ 654 | { 655 | "__id__": 13 656 | } 657 | ], 658 | "_prefab": null, 659 | "groupIndex": 0 660 | }, 661 | { 662 | "__type__": "cc.Sprite", 663 | "_name": "", 664 | "_objFlags": 0, 665 | "node": { 666 | "__id__": 12 667 | }, 668 | "_enabled": true, 669 | "_spriteFrame": { 670 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 671 | }, 672 | "_type": 0, 673 | "_sizeMode": 1, 674 | "_fillType": 0, 675 | "_fillCenter": { 676 | "__type__": "cc.Vec2", 677 | "x": 0, 678 | "y": 0 679 | }, 680 | "_fillStart": 0, 681 | "_fillRange": 0, 682 | "_isTrimmedMode": true, 683 | "_srcBlendFactor": 770, 684 | "_dstBlendFactor": 771, 685 | "_atlas": null 686 | }, 687 | { 688 | "__type__": "cc.Node", 689 | "_name": "gold", 690 | "_objFlags": 0, 691 | "_opacity": 255, 692 | "_color": { 693 | "__type__": "cc.Color", 694 | "r": 255, 695 | "g": 255, 696 | "b": 255, 697 | "a": 255 698 | }, 699 | "_cascadeOpacityEnabled": true, 700 | "_parent": { 701 | "__id__": 9 702 | }, 703 | "_anchorPoint": { 704 | "__type__": "cc.Vec2", 705 | "x": 0.5, 706 | "y": 0.5 707 | }, 708 | "_contentSize": { 709 | "__type__": "cc.Size", 710 | "width": 80, 711 | "height": 80 712 | }, 713 | "_children": [], 714 | "_rotationX": 0, 715 | "_rotationY": 0, 716 | "_scaleX": 1, 717 | "_scaleY": 1, 718 | "_position": { 719 | "__type__": "cc.Vec2", 720 | "x": -54, 721 | "y": -72 722 | }, 723 | "_skewX": 0, 724 | "_skewY": 0, 725 | "_localZOrder": 0, 726 | "_globalZOrder": 0, 727 | "_tag": -1, 728 | "_opacityModifyRGB": false, 729 | "_id": "01fb3cDCsRLCa71FSDFX77S", 730 | "_active": true, 731 | "_components": [ 732 | { 733 | "__id__": 15 734 | } 735 | ], 736 | "_prefab": null, 737 | "groupIndex": 0 738 | }, 739 | { 740 | "__type__": "cc.Sprite", 741 | "_name": "", 742 | "_objFlags": 0, 743 | "node": { 744 | "__id__": 14 745 | }, 746 | "_enabled": true, 747 | "_spriteFrame": { 748 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 749 | }, 750 | "_type": 0, 751 | "_sizeMode": 1, 752 | "_fillType": 0, 753 | "_fillCenter": { 754 | "__type__": "cc.Vec2", 755 | "x": 0, 756 | "y": 0 757 | }, 758 | "_fillStart": 0, 759 | "_fillRange": 0, 760 | "_isTrimmedMode": true, 761 | "_srcBlendFactor": 770, 762 | "_dstBlendFactor": 771, 763 | "_atlas": null 764 | }, 765 | { 766 | "__type__": "cc.Node", 767 | "_name": "gold", 768 | "_objFlags": 0, 769 | "_opacity": 255, 770 | "_color": { 771 | "__type__": "cc.Color", 772 | "r": 255, 773 | "g": 255, 774 | "b": 255, 775 | "a": 255 776 | }, 777 | "_cascadeOpacityEnabled": true, 778 | "_parent": { 779 | "__id__": 9 780 | }, 781 | "_anchorPoint": { 782 | "__type__": "cc.Vec2", 783 | "x": 0.5, 784 | "y": 0.5 785 | }, 786 | "_contentSize": { 787 | "__type__": "cc.Size", 788 | "width": 80, 789 | "height": 80 790 | }, 791 | "_children": [], 792 | "_rotationX": 0, 793 | "_rotationY": 0, 794 | "_scaleX": 1, 795 | "_scaleY": 1, 796 | "_position": { 797 | "__type__": "cc.Vec2", 798 | "x": 46, 799 | "y": -72 800 | }, 801 | "_skewX": 0, 802 | "_skewY": 0, 803 | "_localZOrder": 0, 804 | "_globalZOrder": 0, 805 | "_tag": -1, 806 | "_opacityModifyRGB": false, 807 | "_id": "13f00qItxFEo6xBBopeqVGT", 808 | "_active": true, 809 | "_components": [ 810 | { 811 | "__id__": 17 812 | } 813 | ], 814 | "_prefab": null, 815 | "groupIndex": 0 816 | }, 817 | { 818 | "__type__": "cc.Sprite", 819 | "_name": "", 820 | "_objFlags": 0, 821 | "node": { 822 | "__id__": 16 823 | }, 824 | "_enabled": true, 825 | "_spriteFrame": { 826 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 827 | }, 828 | "_type": 0, 829 | "_sizeMode": 1, 830 | "_fillType": 0, 831 | "_fillCenter": { 832 | "__type__": "cc.Vec2", 833 | "x": 0, 834 | "y": 0 835 | }, 836 | "_fillStart": 0, 837 | "_fillRange": 0, 838 | "_isTrimmedMode": true, 839 | "_srcBlendFactor": 770, 840 | "_dstBlendFactor": 771, 841 | "_atlas": null 842 | }, 843 | { 844 | "__type__": "cc.Node", 845 | "_name": "gold", 846 | "_objFlags": 0, 847 | "_opacity": 255, 848 | "_color": { 849 | "__type__": "cc.Color", 850 | "r": 255, 851 | "g": 255, 852 | "b": 255, 853 | "a": 255 854 | }, 855 | "_cascadeOpacityEnabled": true, 856 | "_parent": { 857 | "__id__": 9 858 | }, 859 | "_anchorPoint": { 860 | "__type__": "cc.Vec2", 861 | "x": 0.5, 862 | "y": 0.5 863 | }, 864 | "_contentSize": { 865 | "__type__": "cc.Size", 866 | "width": 80, 867 | "height": 80 868 | }, 869 | "_children": [], 870 | "_rotationX": 0, 871 | "_rotationY": 0, 872 | "_scaleX": 1, 873 | "_scaleY": 1, 874 | "_position": { 875 | "__type__": "cc.Vec2", 876 | "x": 146, 877 | "y": -72 878 | }, 879 | "_skewX": 0, 880 | "_skewY": 0, 881 | "_localZOrder": 0, 882 | "_globalZOrder": 0, 883 | "_tag": -1, 884 | "_opacityModifyRGB": false, 885 | "_id": "5fd0470TFBLj7gPD2udpJCO", 886 | "_active": true, 887 | "_components": [ 888 | { 889 | "__id__": 19 890 | } 891 | ], 892 | "_prefab": null, 893 | "groupIndex": 0 894 | }, 895 | { 896 | "__type__": "cc.Sprite", 897 | "_name": "", 898 | "_objFlags": 0, 899 | "node": { 900 | "__id__": 18 901 | }, 902 | "_enabled": true, 903 | "_spriteFrame": { 904 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 905 | }, 906 | "_type": 0, 907 | "_sizeMode": 1, 908 | "_fillType": 0, 909 | "_fillCenter": { 910 | "__type__": "cc.Vec2", 911 | "x": 0, 912 | "y": 0 913 | }, 914 | "_fillStart": 0, 915 | "_fillRange": 0, 916 | "_isTrimmedMode": true, 917 | "_srcBlendFactor": 770, 918 | "_dstBlendFactor": 771, 919 | "_atlas": null 920 | }, 921 | { 922 | "__type__": "cc.Node", 923 | "_name": "gold", 924 | "_objFlags": 0, 925 | "_opacity": 255, 926 | "_color": { 927 | "__type__": "cc.Color", 928 | "r": 255, 929 | "g": 255, 930 | "b": 255, 931 | "a": 255 932 | }, 933 | "_cascadeOpacityEnabled": true, 934 | "_parent": { 935 | "__id__": 9 936 | }, 937 | "_anchorPoint": { 938 | "__type__": "cc.Vec2", 939 | "x": 0.5, 940 | "y": 0.5 941 | }, 942 | "_contentSize": { 943 | "__type__": "cc.Size", 944 | "width": 80, 945 | "height": 80 946 | }, 947 | "_children": [], 948 | "_rotationX": 0, 949 | "_rotationY": 0, 950 | "_scaleX": 1, 951 | "_scaleY": 1, 952 | "_position": { 953 | "__type__": "cc.Vec2", 954 | "x": 246, 955 | "y": -72 956 | }, 957 | "_skewX": 0, 958 | "_skewY": 0, 959 | "_localZOrder": 0, 960 | "_globalZOrder": 0, 961 | "_tag": -1, 962 | "_opacityModifyRGB": false, 963 | "_id": "2999a+y3SdFxJhmK+NT/e8Y", 964 | "_active": true, 965 | "_components": [ 966 | { 967 | "__id__": 21 968 | } 969 | ], 970 | "_prefab": null, 971 | "groupIndex": 0 972 | }, 973 | { 974 | "__type__": "cc.Sprite", 975 | "_name": "", 976 | "_objFlags": 0, 977 | "node": { 978 | "__id__": 20 979 | }, 980 | "_enabled": true, 981 | "_spriteFrame": { 982 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 983 | }, 984 | "_type": 0, 985 | "_sizeMode": 1, 986 | "_fillType": 0, 987 | "_fillCenter": { 988 | "__type__": "cc.Vec2", 989 | "x": 0, 990 | "y": 0 991 | }, 992 | "_fillStart": 0, 993 | "_fillRange": 0, 994 | "_isTrimmedMode": true, 995 | "_srcBlendFactor": 770, 996 | "_dstBlendFactor": 771, 997 | "_atlas": null 998 | }, 999 | { 1000 | "__type__": "cc.Node", 1001 | "_name": "gold", 1002 | "_objFlags": 0, 1003 | "_opacity": 255, 1004 | "_color": { 1005 | "__type__": "cc.Color", 1006 | "r": 255, 1007 | "g": 255, 1008 | "b": 255, 1009 | "a": 255 1010 | }, 1011 | "_cascadeOpacityEnabled": true, 1012 | "_parent": { 1013 | "__id__": 9 1014 | }, 1015 | "_anchorPoint": { 1016 | "__type__": "cc.Vec2", 1017 | "x": 0.5, 1018 | "y": 0.5 1019 | }, 1020 | "_contentSize": { 1021 | "__type__": "cc.Size", 1022 | "width": 80, 1023 | "height": 80 1024 | }, 1025 | "_children": [], 1026 | "_rotationX": 0, 1027 | "_rotationY": 0, 1028 | "_scaleX": 1, 1029 | "_scaleY": 1, 1030 | "_position": { 1031 | "__type__": "cc.Vec2", 1032 | "x": -254, 1033 | "y": -172 1034 | }, 1035 | "_skewX": 0, 1036 | "_skewY": 0, 1037 | "_localZOrder": 0, 1038 | "_globalZOrder": 0, 1039 | "_tag": -1, 1040 | "_opacityModifyRGB": false, 1041 | "_id": "ae1c2zb6dtMoqTqnpVYynM4", 1042 | "_active": true, 1043 | "_components": [ 1044 | { 1045 | "__id__": 23 1046 | } 1047 | ], 1048 | "_prefab": null, 1049 | "groupIndex": 0 1050 | }, 1051 | { 1052 | "__type__": "cc.Sprite", 1053 | "_name": "", 1054 | "_objFlags": 0, 1055 | "node": { 1056 | "__id__": 22 1057 | }, 1058 | "_enabled": true, 1059 | "_spriteFrame": { 1060 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1061 | }, 1062 | "_type": 0, 1063 | "_sizeMode": 1, 1064 | "_fillType": 0, 1065 | "_fillCenter": { 1066 | "__type__": "cc.Vec2", 1067 | "x": 0, 1068 | "y": 0 1069 | }, 1070 | "_fillStart": 0, 1071 | "_fillRange": 0, 1072 | "_isTrimmedMode": true, 1073 | "_srcBlendFactor": 770, 1074 | "_dstBlendFactor": 771, 1075 | "_atlas": null 1076 | }, 1077 | { 1078 | "__type__": "cc.Node", 1079 | "_name": "gold", 1080 | "_objFlags": 0, 1081 | "_opacity": 255, 1082 | "_color": { 1083 | "__type__": "cc.Color", 1084 | "r": 255, 1085 | "g": 255, 1086 | "b": 255, 1087 | "a": 255 1088 | }, 1089 | "_cascadeOpacityEnabled": true, 1090 | "_parent": { 1091 | "__id__": 9 1092 | }, 1093 | "_anchorPoint": { 1094 | "__type__": "cc.Vec2", 1095 | "x": 0.5, 1096 | "y": 0.5 1097 | }, 1098 | "_contentSize": { 1099 | "__type__": "cc.Size", 1100 | "width": 80, 1101 | "height": 80 1102 | }, 1103 | "_children": [], 1104 | "_rotationX": 0, 1105 | "_rotationY": 0, 1106 | "_scaleX": 1, 1107 | "_scaleY": 1, 1108 | "_position": { 1109 | "__type__": "cc.Vec2", 1110 | "x": -154, 1111 | "y": -172 1112 | }, 1113 | "_skewX": 0, 1114 | "_skewY": 0, 1115 | "_localZOrder": 0, 1116 | "_globalZOrder": 0, 1117 | "_tag": -1, 1118 | "_opacityModifyRGB": false, 1119 | "_id": "b4108a+SXBB5K9xlGuM2zHX", 1120 | "_active": true, 1121 | "_components": [ 1122 | { 1123 | "__id__": 25 1124 | } 1125 | ], 1126 | "_prefab": null, 1127 | "groupIndex": 0 1128 | }, 1129 | { 1130 | "__type__": "cc.Sprite", 1131 | "_name": "", 1132 | "_objFlags": 0, 1133 | "node": { 1134 | "__id__": 24 1135 | }, 1136 | "_enabled": true, 1137 | "_spriteFrame": { 1138 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1139 | }, 1140 | "_type": 0, 1141 | "_sizeMode": 1, 1142 | "_fillType": 0, 1143 | "_fillCenter": { 1144 | "__type__": "cc.Vec2", 1145 | "x": 0, 1146 | "y": 0 1147 | }, 1148 | "_fillStart": 0, 1149 | "_fillRange": 0, 1150 | "_isTrimmedMode": true, 1151 | "_srcBlendFactor": 770, 1152 | "_dstBlendFactor": 771, 1153 | "_atlas": null 1154 | }, 1155 | { 1156 | "__type__": "cc.Node", 1157 | "_name": "gold", 1158 | "_objFlags": 0, 1159 | "_opacity": 255, 1160 | "_color": { 1161 | "__type__": "cc.Color", 1162 | "r": 255, 1163 | "g": 255, 1164 | "b": 255, 1165 | "a": 255 1166 | }, 1167 | "_cascadeOpacityEnabled": true, 1168 | "_parent": { 1169 | "__id__": 9 1170 | }, 1171 | "_anchorPoint": { 1172 | "__type__": "cc.Vec2", 1173 | "x": 0.5, 1174 | "y": 0.5 1175 | }, 1176 | "_contentSize": { 1177 | "__type__": "cc.Size", 1178 | "width": 80, 1179 | "height": 80 1180 | }, 1181 | "_children": [], 1182 | "_rotationX": 0, 1183 | "_rotationY": 0, 1184 | "_scaleX": 1, 1185 | "_scaleY": 1, 1186 | "_position": { 1187 | "__type__": "cc.Vec2", 1188 | "x": -54, 1189 | "y": -172 1190 | }, 1191 | "_skewX": 0, 1192 | "_skewY": 0, 1193 | "_localZOrder": 0, 1194 | "_globalZOrder": 0, 1195 | "_tag": -1, 1196 | "_opacityModifyRGB": false, 1197 | "_id": "a223aRrwG5LXIYCHJJmpiiD", 1198 | "_active": true, 1199 | "_components": [ 1200 | { 1201 | "__id__": 27 1202 | } 1203 | ], 1204 | "_prefab": null, 1205 | "groupIndex": 0 1206 | }, 1207 | { 1208 | "__type__": "cc.Sprite", 1209 | "_name": "", 1210 | "_objFlags": 0, 1211 | "node": { 1212 | "__id__": 26 1213 | }, 1214 | "_enabled": true, 1215 | "_spriteFrame": { 1216 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1217 | }, 1218 | "_type": 0, 1219 | "_sizeMode": 1, 1220 | "_fillType": 0, 1221 | "_fillCenter": { 1222 | "__type__": "cc.Vec2", 1223 | "x": 0, 1224 | "y": 0 1225 | }, 1226 | "_fillStart": 0, 1227 | "_fillRange": 0, 1228 | "_isTrimmedMode": true, 1229 | "_srcBlendFactor": 770, 1230 | "_dstBlendFactor": 771, 1231 | "_atlas": null 1232 | }, 1233 | { 1234 | "__type__": "cc.Node", 1235 | "_name": "gold", 1236 | "_objFlags": 0, 1237 | "_opacity": 255, 1238 | "_color": { 1239 | "__type__": "cc.Color", 1240 | "r": 255, 1241 | "g": 255, 1242 | "b": 255, 1243 | "a": 255 1244 | }, 1245 | "_cascadeOpacityEnabled": true, 1246 | "_parent": { 1247 | "__id__": 9 1248 | }, 1249 | "_anchorPoint": { 1250 | "__type__": "cc.Vec2", 1251 | "x": 0.5, 1252 | "y": 0.5 1253 | }, 1254 | "_contentSize": { 1255 | "__type__": "cc.Size", 1256 | "width": 80, 1257 | "height": 80 1258 | }, 1259 | "_children": [], 1260 | "_rotationX": 0, 1261 | "_rotationY": 0, 1262 | "_scaleX": 1, 1263 | "_scaleY": 1, 1264 | "_position": { 1265 | "__type__": "cc.Vec2", 1266 | "x": 46, 1267 | "y": -172 1268 | }, 1269 | "_skewX": 0, 1270 | "_skewY": 0, 1271 | "_localZOrder": 0, 1272 | "_globalZOrder": 0, 1273 | "_tag": -1, 1274 | "_opacityModifyRGB": false, 1275 | "_id": "981ccrWaG5PWpRp73tLWv/I", 1276 | "_active": true, 1277 | "_components": [ 1278 | { 1279 | "__id__": 29 1280 | } 1281 | ], 1282 | "_prefab": null, 1283 | "groupIndex": 0 1284 | }, 1285 | { 1286 | "__type__": "cc.Sprite", 1287 | "_name": "", 1288 | "_objFlags": 0, 1289 | "node": { 1290 | "__id__": 28 1291 | }, 1292 | "_enabled": true, 1293 | "_spriteFrame": { 1294 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1295 | }, 1296 | "_type": 0, 1297 | "_sizeMode": 1, 1298 | "_fillType": 0, 1299 | "_fillCenter": { 1300 | "__type__": "cc.Vec2", 1301 | "x": 0, 1302 | "y": 0 1303 | }, 1304 | "_fillStart": 0, 1305 | "_fillRange": 0, 1306 | "_isTrimmedMode": true, 1307 | "_srcBlendFactor": 770, 1308 | "_dstBlendFactor": 771, 1309 | "_atlas": null 1310 | }, 1311 | { 1312 | "__type__": "cc.Node", 1313 | "_name": "gold", 1314 | "_objFlags": 0, 1315 | "_opacity": 255, 1316 | "_color": { 1317 | "__type__": "cc.Color", 1318 | "r": 255, 1319 | "g": 255, 1320 | "b": 255, 1321 | "a": 255 1322 | }, 1323 | "_cascadeOpacityEnabled": true, 1324 | "_parent": { 1325 | "__id__": 9 1326 | }, 1327 | "_anchorPoint": { 1328 | "__type__": "cc.Vec2", 1329 | "x": 0.5, 1330 | "y": 0.5 1331 | }, 1332 | "_contentSize": { 1333 | "__type__": "cc.Size", 1334 | "width": 80, 1335 | "height": 80 1336 | }, 1337 | "_children": [], 1338 | "_rotationX": 0, 1339 | "_rotationY": 0, 1340 | "_scaleX": 1, 1341 | "_scaleY": 1, 1342 | "_position": { 1343 | "__type__": "cc.Vec2", 1344 | "x": 146, 1345 | "y": -172 1346 | }, 1347 | "_skewX": 0, 1348 | "_skewY": 0, 1349 | "_localZOrder": 0, 1350 | "_globalZOrder": 0, 1351 | "_tag": -1, 1352 | "_opacityModifyRGB": false, 1353 | "_id": "f1810v08WdAYqKZ+rpEoGAo", 1354 | "_active": true, 1355 | "_components": [ 1356 | { 1357 | "__id__": 31 1358 | } 1359 | ], 1360 | "_prefab": null, 1361 | "groupIndex": 0 1362 | }, 1363 | { 1364 | "__type__": "cc.Sprite", 1365 | "_name": "", 1366 | "_objFlags": 0, 1367 | "node": { 1368 | "__id__": 30 1369 | }, 1370 | "_enabled": true, 1371 | "_spriteFrame": { 1372 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1373 | }, 1374 | "_type": 0, 1375 | "_sizeMode": 1, 1376 | "_fillType": 0, 1377 | "_fillCenter": { 1378 | "__type__": "cc.Vec2", 1379 | "x": 0, 1380 | "y": 0 1381 | }, 1382 | "_fillStart": 0, 1383 | "_fillRange": 0, 1384 | "_isTrimmedMode": true, 1385 | "_srcBlendFactor": 770, 1386 | "_dstBlendFactor": 771, 1387 | "_atlas": null 1388 | }, 1389 | { 1390 | "__type__": "cc.Node", 1391 | "_name": "gold", 1392 | "_objFlags": 0, 1393 | "_opacity": 255, 1394 | "_color": { 1395 | "__type__": "cc.Color", 1396 | "r": 255, 1397 | "g": 255, 1398 | "b": 255, 1399 | "a": 255 1400 | }, 1401 | "_cascadeOpacityEnabled": true, 1402 | "_parent": { 1403 | "__id__": 9 1404 | }, 1405 | "_anchorPoint": { 1406 | "__type__": "cc.Vec2", 1407 | "x": 0.5, 1408 | "y": 0.5 1409 | }, 1410 | "_contentSize": { 1411 | "__type__": "cc.Size", 1412 | "width": 80, 1413 | "height": 80 1414 | }, 1415 | "_children": [], 1416 | "_rotationX": 0, 1417 | "_rotationY": 0, 1418 | "_scaleX": 1, 1419 | "_scaleY": 1, 1420 | "_position": { 1421 | "__type__": "cc.Vec2", 1422 | "x": 246, 1423 | "y": -172 1424 | }, 1425 | "_skewX": 0, 1426 | "_skewY": 0, 1427 | "_localZOrder": 0, 1428 | "_globalZOrder": 0, 1429 | "_tag": -1, 1430 | "_opacityModifyRGB": false, 1431 | "_id": "2c6cfRN+21Dv7ufRoCTKXcp", 1432 | "_active": true, 1433 | "_components": [ 1434 | { 1435 | "__id__": 33 1436 | } 1437 | ], 1438 | "_prefab": null, 1439 | "groupIndex": 0 1440 | }, 1441 | { 1442 | "__type__": "cc.Sprite", 1443 | "_name": "", 1444 | "_objFlags": 0, 1445 | "node": { 1446 | "__id__": 32 1447 | }, 1448 | "_enabled": true, 1449 | "_spriteFrame": { 1450 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1451 | }, 1452 | "_type": 0, 1453 | "_sizeMode": 1, 1454 | "_fillType": 0, 1455 | "_fillCenter": { 1456 | "__type__": "cc.Vec2", 1457 | "x": 0, 1458 | "y": 0 1459 | }, 1460 | "_fillStart": 0, 1461 | "_fillRange": 0, 1462 | "_isTrimmedMode": true, 1463 | "_srcBlendFactor": 770, 1464 | "_dstBlendFactor": 771, 1465 | "_atlas": null 1466 | }, 1467 | { 1468 | "__type__": "cc.Node", 1469 | "_name": "gold", 1470 | "_objFlags": 0, 1471 | "_opacity": 255, 1472 | "_color": { 1473 | "__type__": "cc.Color", 1474 | "r": 255, 1475 | "g": 255, 1476 | "b": 255, 1477 | "a": 255 1478 | }, 1479 | "_cascadeOpacityEnabled": true, 1480 | "_parent": { 1481 | "__id__": 9 1482 | }, 1483 | "_anchorPoint": { 1484 | "__type__": "cc.Vec2", 1485 | "x": 0.5, 1486 | "y": 0.5 1487 | }, 1488 | "_contentSize": { 1489 | "__type__": "cc.Size", 1490 | "width": 80, 1491 | "height": 80 1492 | }, 1493 | "_children": [], 1494 | "_rotationX": 0, 1495 | "_rotationY": 0, 1496 | "_scaleX": 1, 1497 | "_scaleY": 1, 1498 | "_position": { 1499 | "__type__": "cc.Vec2", 1500 | "x": -254, 1501 | "y": -272 1502 | }, 1503 | "_skewX": 0, 1504 | "_skewY": 0, 1505 | "_localZOrder": 0, 1506 | "_globalZOrder": 0, 1507 | "_tag": -1, 1508 | "_opacityModifyRGB": false, 1509 | "_id": "c9672fxkN1L06yAEyZaGDVZ", 1510 | "_active": true, 1511 | "_components": [ 1512 | { 1513 | "__id__": 35 1514 | } 1515 | ], 1516 | "_prefab": null, 1517 | "groupIndex": 0 1518 | }, 1519 | { 1520 | "__type__": "cc.Sprite", 1521 | "_name": "", 1522 | "_objFlags": 0, 1523 | "node": { 1524 | "__id__": 34 1525 | }, 1526 | "_enabled": true, 1527 | "_spriteFrame": { 1528 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1529 | }, 1530 | "_type": 0, 1531 | "_sizeMode": 1, 1532 | "_fillType": 0, 1533 | "_fillCenter": { 1534 | "__type__": "cc.Vec2", 1535 | "x": 0, 1536 | "y": 0 1537 | }, 1538 | "_fillStart": 0, 1539 | "_fillRange": 0, 1540 | "_isTrimmedMode": true, 1541 | "_srcBlendFactor": 770, 1542 | "_dstBlendFactor": 771, 1543 | "_atlas": null 1544 | }, 1545 | { 1546 | "__type__": "cc.Node", 1547 | "_name": "gold", 1548 | "_objFlags": 0, 1549 | "_opacity": 255, 1550 | "_color": { 1551 | "__type__": "cc.Color", 1552 | "r": 255, 1553 | "g": 255, 1554 | "b": 255, 1555 | "a": 255 1556 | }, 1557 | "_cascadeOpacityEnabled": true, 1558 | "_parent": { 1559 | "__id__": 9 1560 | }, 1561 | "_anchorPoint": { 1562 | "__type__": "cc.Vec2", 1563 | "x": 0.5, 1564 | "y": 0.5 1565 | }, 1566 | "_contentSize": { 1567 | "__type__": "cc.Size", 1568 | "width": 80, 1569 | "height": 80 1570 | }, 1571 | "_children": [], 1572 | "_rotationX": 0, 1573 | "_rotationY": 0, 1574 | "_scaleX": 1, 1575 | "_scaleY": 1, 1576 | "_position": { 1577 | "__type__": "cc.Vec2", 1578 | "x": -154, 1579 | "y": -272 1580 | }, 1581 | "_skewX": 0, 1582 | "_skewY": 0, 1583 | "_localZOrder": 0, 1584 | "_globalZOrder": 0, 1585 | "_tag": -1, 1586 | "_opacityModifyRGB": false, 1587 | "_id": "dc984Dr7AJJlZpbrM7o72C5", 1588 | "_active": true, 1589 | "_components": [ 1590 | { 1591 | "__id__": 37 1592 | } 1593 | ], 1594 | "_prefab": null, 1595 | "groupIndex": 0 1596 | }, 1597 | { 1598 | "__type__": "cc.Sprite", 1599 | "_name": "", 1600 | "_objFlags": 0, 1601 | "node": { 1602 | "__id__": 36 1603 | }, 1604 | "_enabled": true, 1605 | "_spriteFrame": { 1606 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1607 | }, 1608 | "_type": 0, 1609 | "_sizeMode": 1, 1610 | "_fillType": 0, 1611 | "_fillCenter": { 1612 | "__type__": "cc.Vec2", 1613 | "x": 0, 1614 | "y": 0 1615 | }, 1616 | "_fillStart": 0, 1617 | "_fillRange": 0, 1618 | "_isTrimmedMode": true, 1619 | "_srcBlendFactor": 770, 1620 | "_dstBlendFactor": 771, 1621 | "_atlas": null 1622 | }, 1623 | { 1624 | "__type__": "cc.Node", 1625 | "_name": "gold", 1626 | "_objFlags": 0, 1627 | "_opacity": 255, 1628 | "_color": { 1629 | "__type__": "cc.Color", 1630 | "r": 255, 1631 | "g": 255, 1632 | "b": 255, 1633 | "a": 255 1634 | }, 1635 | "_cascadeOpacityEnabled": true, 1636 | "_parent": { 1637 | "__id__": 9 1638 | }, 1639 | "_anchorPoint": { 1640 | "__type__": "cc.Vec2", 1641 | "x": 0.5, 1642 | "y": 0.5 1643 | }, 1644 | "_contentSize": { 1645 | "__type__": "cc.Size", 1646 | "width": 80, 1647 | "height": 80 1648 | }, 1649 | "_children": [], 1650 | "_rotationX": 0, 1651 | "_rotationY": 0, 1652 | "_scaleX": 1, 1653 | "_scaleY": 1, 1654 | "_position": { 1655 | "__type__": "cc.Vec2", 1656 | "x": -54, 1657 | "y": -272 1658 | }, 1659 | "_skewX": 0, 1660 | "_skewY": 0, 1661 | "_localZOrder": 0, 1662 | "_globalZOrder": 0, 1663 | "_tag": -1, 1664 | "_opacityModifyRGB": false, 1665 | "_id": "b8e10BuVvlKaaIqKjlb4drZ", 1666 | "_active": true, 1667 | "_components": [ 1668 | { 1669 | "__id__": 39 1670 | } 1671 | ], 1672 | "_prefab": null, 1673 | "groupIndex": 0 1674 | }, 1675 | { 1676 | "__type__": "cc.Sprite", 1677 | "_name": "", 1678 | "_objFlags": 0, 1679 | "node": { 1680 | "__id__": 38 1681 | }, 1682 | "_enabled": true, 1683 | "_spriteFrame": { 1684 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1685 | }, 1686 | "_type": 0, 1687 | "_sizeMode": 1, 1688 | "_fillType": 0, 1689 | "_fillCenter": { 1690 | "__type__": "cc.Vec2", 1691 | "x": 0, 1692 | "y": 0 1693 | }, 1694 | "_fillStart": 0, 1695 | "_fillRange": 0, 1696 | "_isTrimmedMode": true, 1697 | "_srcBlendFactor": 770, 1698 | "_dstBlendFactor": 771, 1699 | "_atlas": null 1700 | }, 1701 | { 1702 | "__type__": "cc.Node", 1703 | "_name": "gold", 1704 | "_objFlags": 0, 1705 | "_opacity": 255, 1706 | "_color": { 1707 | "__type__": "cc.Color", 1708 | "r": 255, 1709 | "g": 255, 1710 | "b": 255, 1711 | "a": 255 1712 | }, 1713 | "_cascadeOpacityEnabled": true, 1714 | "_parent": { 1715 | "__id__": 9 1716 | }, 1717 | "_anchorPoint": { 1718 | "__type__": "cc.Vec2", 1719 | "x": 0.5, 1720 | "y": 0.5 1721 | }, 1722 | "_contentSize": { 1723 | "__type__": "cc.Size", 1724 | "width": 80, 1725 | "height": 80 1726 | }, 1727 | "_children": [], 1728 | "_rotationX": 0, 1729 | "_rotationY": 0, 1730 | "_scaleX": 1, 1731 | "_scaleY": 1, 1732 | "_position": { 1733 | "__type__": "cc.Vec2", 1734 | "x": 46, 1735 | "y": -272 1736 | }, 1737 | "_skewX": 0, 1738 | "_skewY": 0, 1739 | "_localZOrder": 0, 1740 | "_globalZOrder": 0, 1741 | "_tag": -1, 1742 | "_opacityModifyRGB": false, 1743 | "_id": "f50a1mVdCpHGonZuKR8xs65", 1744 | "_active": true, 1745 | "_components": [ 1746 | { 1747 | "__id__": 41 1748 | } 1749 | ], 1750 | "_prefab": null, 1751 | "groupIndex": 0 1752 | }, 1753 | { 1754 | "__type__": "cc.Sprite", 1755 | "_name": "", 1756 | "_objFlags": 0, 1757 | "node": { 1758 | "__id__": 40 1759 | }, 1760 | "_enabled": true, 1761 | "_spriteFrame": { 1762 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1763 | }, 1764 | "_type": 0, 1765 | "_sizeMode": 1, 1766 | "_fillType": 0, 1767 | "_fillCenter": { 1768 | "__type__": "cc.Vec2", 1769 | "x": 0, 1770 | "y": 0 1771 | }, 1772 | "_fillStart": 0, 1773 | "_fillRange": 0, 1774 | "_isTrimmedMode": true, 1775 | "_srcBlendFactor": 770, 1776 | "_dstBlendFactor": 771, 1777 | "_atlas": null 1778 | }, 1779 | { 1780 | "__type__": "cc.Node", 1781 | "_name": "gold", 1782 | "_objFlags": 0, 1783 | "_opacity": 255, 1784 | "_color": { 1785 | "__type__": "cc.Color", 1786 | "r": 255, 1787 | "g": 255, 1788 | "b": 255, 1789 | "a": 255 1790 | }, 1791 | "_cascadeOpacityEnabled": true, 1792 | "_parent": { 1793 | "__id__": 9 1794 | }, 1795 | "_anchorPoint": { 1796 | "__type__": "cc.Vec2", 1797 | "x": 0.5, 1798 | "y": 0.5 1799 | }, 1800 | "_contentSize": { 1801 | "__type__": "cc.Size", 1802 | "width": 80, 1803 | "height": 80 1804 | }, 1805 | "_children": [], 1806 | "_rotationX": 0, 1807 | "_rotationY": 0, 1808 | "_scaleX": 1, 1809 | "_scaleY": 1, 1810 | "_position": { 1811 | "__type__": "cc.Vec2", 1812 | "x": 146, 1813 | "y": -272 1814 | }, 1815 | "_skewX": 0, 1816 | "_skewY": 0, 1817 | "_localZOrder": 0, 1818 | "_globalZOrder": 0, 1819 | "_tag": -1, 1820 | "_opacityModifyRGB": false, 1821 | "_id": "ef76dEAvABLp4Ax0rRgZdQx", 1822 | "_active": true, 1823 | "_components": [ 1824 | { 1825 | "__id__": 43 1826 | } 1827 | ], 1828 | "_prefab": null, 1829 | "groupIndex": 0 1830 | }, 1831 | { 1832 | "__type__": "cc.Sprite", 1833 | "_name": "", 1834 | "_objFlags": 0, 1835 | "node": { 1836 | "__id__": 42 1837 | }, 1838 | "_enabled": true, 1839 | "_spriteFrame": { 1840 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1841 | }, 1842 | "_type": 0, 1843 | "_sizeMode": 1, 1844 | "_fillType": 0, 1845 | "_fillCenter": { 1846 | "__type__": "cc.Vec2", 1847 | "x": 0, 1848 | "y": 0 1849 | }, 1850 | "_fillStart": 0, 1851 | "_fillRange": 0, 1852 | "_isTrimmedMode": true, 1853 | "_srcBlendFactor": 770, 1854 | "_dstBlendFactor": 771, 1855 | "_atlas": null 1856 | }, 1857 | { 1858 | "__type__": "cc.Node", 1859 | "_name": "gold", 1860 | "_objFlags": 0, 1861 | "_opacity": 255, 1862 | "_color": { 1863 | "__type__": "cc.Color", 1864 | "r": 255, 1865 | "g": 255, 1866 | "b": 255, 1867 | "a": 255 1868 | }, 1869 | "_cascadeOpacityEnabled": true, 1870 | "_parent": { 1871 | "__id__": 9 1872 | }, 1873 | "_anchorPoint": { 1874 | "__type__": "cc.Vec2", 1875 | "x": 0.5, 1876 | "y": 0.5 1877 | }, 1878 | "_contentSize": { 1879 | "__type__": "cc.Size", 1880 | "width": 80, 1881 | "height": 80 1882 | }, 1883 | "_children": [], 1884 | "_rotationX": 0, 1885 | "_rotationY": 0, 1886 | "_scaleX": 1, 1887 | "_scaleY": 1, 1888 | "_position": { 1889 | "__type__": "cc.Vec2", 1890 | "x": 246, 1891 | "y": -272 1892 | }, 1893 | "_skewX": 0, 1894 | "_skewY": 0, 1895 | "_localZOrder": 0, 1896 | "_globalZOrder": 0, 1897 | "_tag": -1, 1898 | "_opacityModifyRGB": false, 1899 | "_id": "be5885QGclDLqC5LPLCak07", 1900 | "_active": true, 1901 | "_components": [ 1902 | { 1903 | "__id__": 45 1904 | } 1905 | ], 1906 | "_prefab": null, 1907 | "groupIndex": 0 1908 | }, 1909 | { 1910 | "__type__": "cc.Sprite", 1911 | "_name": "", 1912 | "_objFlags": 0, 1913 | "node": { 1914 | "__id__": 44 1915 | }, 1916 | "_enabled": true, 1917 | "_spriteFrame": { 1918 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1919 | }, 1920 | "_type": 0, 1921 | "_sizeMode": 1, 1922 | "_fillType": 0, 1923 | "_fillCenter": { 1924 | "__type__": "cc.Vec2", 1925 | "x": 0, 1926 | "y": 0 1927 | }, 1928 | "_fillStart": 0, 1929 | "_fillRange": 0, 1930 | "_isTrimmedMode": true, 1931 | "_srcBlendFactor": 770, 1932 | "_dstBlendFactor": 771, 1933 | "_atlas": null 1934 | }, 1935 | { 1936 | "__type__": "cc.Node", 1937 | "_name": "gold", 1938 | "_objFlags": 0, 1939 | "_opacity": 255, 1940 | "_color": { 1941 | "__type__": "cc.Color", 1942 | "r": 255, 1943 | "g": 255, 1944 | "b": 255, 1945 | "a": 255 1946 | }, 1947 | "_cascadeOpacityEnabled": true, 1948 | "_parent": { 1949 | "__id__": 9 1950 | }, 1951 | "_anchorPoint": { 1952 | "__type__": "cc.Vec2", 1953 | "x": 0.5, 1954 | "y": 0.5 1955 | }, 1956 | "_contentSize": { 1957 | "__type__": "cc.Size", 1958 | "width": 80, 1959 | "height": 80 1960 | }, 1961 | "_children": [], 1962 | "_rotationX": 0, 1963 | "_rotationY": 0, 1964 | "_scaleX": 1, 1965 | "_scaleY": 1, 1966 | "_position": { 1967 | "__type__": "cc.Vec2", 1968 | "x": -254, 1969 | "y": -372 1970 | }, 1971 | "_skewX": 0, 1972 | "_skewY": 0, 1973 | "_localZOrder": 0, 1974 | "_globalZOrder": 0, 1975 | "_tag": -1, 1976 | "_opacityModifyRGB": false, 1977 | "_id": "1de4f1P2pBKorw4PmhO6D6s", 1978 | "_active": true, 1979 | "_components": [ 1980 | { 1981 | "__id__": 47 1982 | } 1983 | ], 1984 | "_prefab": null, 1985 | "groupIndex": 0 1986 | }, 1987 | { 1988 | "__type__": "cc.Sprite", 1989 | "_name": "", 1990 | "_objFlags": 0, 1991 | "node": { 1992 | "__id__": 46 1993 | }, 1994 | "_enabled": true, 1995 | "_spriteFrame": { 1996 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 1997 | }, 1998 | "_type": 0, 1999 | "_sizeMode": 1, 2000 | "_fillType": 0, 2001 | "_fillCenter": { 2002 | "__type__": "cc.Vec2", 2003 | "x": 0, 2004 | "y": 0 2005 | }, 2006 | "_fillStart": 0, 2007 | "_fillRange": 0, 2008 | "_isTrimmedMode": true, 2009 | "_srcBlendFactor": 770, 2010 | "_dstBlendFactor": 771, 2011 | "_atlas": null 2012 | }, 2013 | { 2014 | "__type__": "cc.Node", 2015 | "_name": "gold", 2016 | "_objFlags": 0, 2017 | "_opacity": 255, 2018 | "_color": { 2019 | "__type__": "cc.Color", 2020 | "r": 255, 2021 | "g": 255, 2022 | "b": 255, 2023 | "a": 255 2024 | }, 2025 | "_cascadeOpacityEnabled": true, 2026 | "_parent": { 2027 | "__id__": 9 2028 | }, 2029 | "_anchorPoint": { 2030 | "__type__": "cc.Vec2", 2031 | "x": 0.5, 2032 | "y": 0.5 2033 | }, 2034 | "_contentSize": { 2035 | "__type__": "cc.Size", 2036 | "width": 80, 2037 | "height": 80 2038 | }, 2039 | "_children": [], 2040 | "_rotationX": 0, 2041 | "_rotationY": 0, 2042 | "_scaleX": 1, 2043 | "_scaleY": 1, 2044 | "_position": { 2045 | "__type__": "cc.Vec2", 2046 | "x": -154, 2047 | "y": -372 2048 | }, 2049 | "_skewX": 0, 2050 | "_skewY": 0, 2051 | "_localZOrder": 0, 2052 | "_globalZOrder": 0, 2053 | "_tag": -1, 2054 | "_opacityModifyRGB": false, 2055 | "_id": "96e0c0mNSZFCKNx1QYXCYXJ", 2056 | "_active": true, 2057 | "_components": [ 2058 | { 2059 | "__id__": 49 2060 | } 2061 | ], 2062 | "_prefab": null, 2063 | "groupIndex": 0 2064 | }, 2065 | { 2066 | "__type__": "cc.Sprite", 2067 | "_name": "", 2068 | "_objFlags": 0, 2069 | "node": { 2070 | "__id__": 48 2071 | }, 2072 | "_enabled": true, 2073 | "_spriteFrame": { 2074 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2075 | }, 2076 | "_type": 0, 2077 | "_sizeMode": 1, 2078 | "_fillType": 0, 2079 | "_fillCenter": { 2080 | "__type__": "cc.Vec2", 2081 | "x": 0, 2082 | "y": 0 2083 | }, 2084 | "_fillStart": 0, 2085 | "_fillRange": 0, 2086 | "_isTrimmedMode": true, 2087 | "_srcBlendFactor": 770, 2088 | "_dstBlendFactor": 771, 2089 | "_atlas": null 2090 | }, 2091 | { 2092 | "__type__": "cc.Node", 2093 | "_name": "gold", 2094 | "_objFlags": 0, 2095 | "_opacity": 255, 2096 | "_color": { 2097 | "__type__": "cc.Color", 2098 | "r": 255, 2099 | "g": 255, 2100 | "b": 255, 2101 | "a": 255 2102 | }, 2103 | "_cascadeOpacityEnabled": true, 2104 | "_parent": { 2105 | "__id__": 9 2106 | }, 2107 | "_anchorPoint": { 2108 | "__type__": "cc.Vec2", 2109 | "x": 0.5, 2110 | "y": 0.5 2111 | }, 2112 | "_contentSize": { 2113 | "__type__": "cc.Size", 2114 | "width": 80, 2115 | "height": 80 2116 | }, 2117 | "_children": [], 2118 | "_rotationX": 0, 2119 | "_rotationY": 0, 2120 | "_scaleX": 1, 2121 | "_scaleY": 1, 2122 | "_position": { 2123 | "__type__": "cc.Vec2", 2124 | "x": -54, 2125 | "y": -372 2126 | }, 2127 | "_skewX": 0, 2128 | "_skewY": 0, 2129 | "_localZOrder": 0, 2130 | "_globalZOrder": 0, 2131 | "_tag": -1, 2132 | "_opacityModifyRGB": false, 2133 | "_id": "ba3dfeUuHBIxLk1QCBpwBzN", 2134 | "_active": true, 2135 | "_components": [ 2136 | { 2137 | "__id__": 51 2138 | } 2139 | ], 2140 | "_prefab": null, 2141 | "groupIndex": 0 2142 | }, 2143 | { 2144 | "__type__": "cc.Sprite", 2145 | "_name": "", 2146 | "_objFlags": 0, 2147 | "node": { 2148 | "__id__": 50 2149 | }, 2150 | "_enabled": true, 2151 | "_spriteFrame": { 2152 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2153 | }, 2154 | "_type": 0, 2155 | "_sizeMode": 1, 2156 | "_fillType": 0, 2157 | "_fillCenter": { 2158 | "__type__": "cc.Vec2", 2159 | "x": 0, 2160 | "y": 0 2161 | }, 2162 | "_fillStart": 0, 2163 | "_fillRange": 0, 2164 | "_isTrimmedMode": true, 2165 | "_srcBlendFactor": 770, 2166 | "_dstBlendFactor": 771, 2167 | "_atlas": null 2168 | }, 2169 | { 2170 | "__type__": "cc.Node", 2171 | "_name": "gold", 2172 | "_objFlags": 0, 2173 | "_opacity": 255, 2174 | "_color": { 2175 | "__type__": "cc.Color", 2176 | "r": 255, 2177 | "g": 255, 2178 | "b": 255, 2179 | "a": 255 2180 | }, 2181 | "_cascadeOpacityEnabled": true, 2182 | "_parent": { 2183 | "__id__": 9 2184 | }, 2185 | "_anchorPoint": { 2186 | "__type__": "cc.Vec2", 2187 | "x": 0.5, 2188 | "y": 0.5 2189 | }, 2190 | "_contentSize": { 2191 | "__type__": "cc.Size", 2192 | "width": 80, 2193 | "height": 80 2194 | }, 2195 | "_children": [], 2196 | "_rotationX": 0, 2197 | "_rotationY": 0, 2198 | "_scaleX": 1, 2199 | "_scaleY": 1, 2200 | "_position": { 2201 | "__type__": "cc.Vec2", 2202 | "x": 46, 2203 | "y": -372 2204 | }, 2205 | "_skewX": 0, 2206 | "_skewY": 0, 2207 | "_localZOrder": 0, 2208 | "_globalZOrder": 0, 2209 | "_tag": -1, 2210 | "_opacityModifyRGB": false, 2211 | "_id": "c2d05QV4GhI5bwiMt6iIQWm", 2212 | "_active": true, 2213 | "_components": [ 2214 | { 2215 | "__id__": 53 2216 | } 2217 | ], 2218 | "_prefab": null, 2219 | "groupIndex": 0 2220 | }, 2221 | { 2222 | "__type__": "cc.Sprite", 2223 | "_name": "", 2224 | "_objFlags": 0, 2225 | "node": { 2226 | "__id__": 52 2227 | }, 2228 | "_enabled": true, 2229 | "_spriteFrame": { 2230 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2231 | }, 2232 | "_type": 0, 2233 | "_sizeMode": 1, 2234 | "_fillType": 0, 2235 | "_fillCenter": { 2236 | "__type__": "cc.Vec2", 2237 | "x": 0, 2238 | "y": 0 2239 | }, 2240 | "_fillStart": 0, 2241 | "_fillRange": 0, 2242 | "_isTrimmedMode": true, 2243 | "_srcBlendFactor": 770, 2244 | "_dstBlendFactor": 771, 2245 | "_atlas": null 2246 | }, 2247 | { 2248 | "__type__": "cc.Node", 2249 | "_name": "gold", 2250 | "_objFlags": 0, 2251 | "_opacity": 255, 2252 | "_color": { 2253 | "__type__": "cc.Color", 2254 | "r": 255, 2255 | "g": 255, 2256 | "b": 255, 2257 | "a": 255 2258 | }, 2259 | "_cascadeOpacityEnabled": true, 2260 | "_parent": { 2261 | "__id__": 9 2262 | }, 2263 | "_anchorPoint": { 2264 | "__type__": "cc.Vec2", 2265 | "x": 0.5, 2266 | "y": 0.5 2267 | }, 2268 | "_contentSize": { 2269 | "__type__": "cc.Size", 2270 | "width": 80, 2271 | "height": 80 2272 | }, 2273 | "_children": [], 2274 | "_rotationX": 0, 2275 | "_rotationY": 0, 2276 | "_scaleX": 1, 2277 | "_scaleY": 1, 2278 | "_position": { 2279 | "__type__": "cc.Vec2", 2280 | "x": 146, 2281 | "y": -372 2282 | }, 2283 | "_skewX": 0, 2284 | "_skewY": 0, 2285 | "_localZOrder": 0, 2286 | "_globalZOrder": 0, 2287 | "_tag": -1, 2288 | "_opacityModifyRGB": false, 2289 | "_id": "7859dap+VxOU6Hzlu1Mmzo9", 2290 | "_active": true, 2291 | "_components": [ 2292 | { 2293 | "__id__": 55 2294 | } 2295 | ], 2296 | "_prefab": null, 2297 | "groupIndex": 0 2298 | }, 2299 | { 2300 | "__type__": "cc.Sprite", 2301 | "_name": "", 2302 | "_objFlags": 0, 2303 | "node": { 2304 | "__id__": 54 2305 | }, 2306 | "_enabled": true, 2307 | "_spriteFrame": { 2308 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2309 | }, 2310 | "_type": 0, 2311 | "_sizeMode": 1, 2312 | "_fillType": 0, 2313 | "_fillCenter": { 2314 | "__type__": "cc.Vec2", 2315 | "x": 0, 2316 | "y": 0 2317 | }, 2318 | "_fillStart": 0, 2319 | "_fillRange": 0, 2320 | "_isTrimmedMode": true, 2321 | "_srcBlendFactor": 770, 2322 | "_dstBlendFactor": 771, 2323 | "_atlas": null 2324 | }, 2325 | { 2326 | "__type__": "cc.Node", 2327 | "_name": "gold", 2328 | "_objFlags": 0, 2329 | "_opacity": 255, 2330 | "_color": { 2331 | "__type__": "cc.Color", 2332 | "r": 255, 2333 | "g": 255, 2334 | "b": 255, 2335 | "a": 255 2336 | }, 2337 | "_cascadeOpacityEnabled": true, 2338 | "_parent": { 2339 | "__id__": 9 2340 | }, 2341 | "_anchorPoint": { 2342 | "__type__": "cc.Vec2", 2343 | "x": 0.5, 2344 | "y": 0.5 2345 | }, 2346 | "_contentSize": { 2347 | "__type__": "cc.Size", 2348 | "width": 80, 2349 | "height": 80 2350 | }, 2351 | "_children": [], 2352 | "_rotationX": 0, 2353 | "_rotationY": 0, 2354 | "_scaleX": 1, 2355 | "_scaleY": 1, 2356 | "_position": { 2357 | "__type__": "cc.Vec2", 2358 | "x": 246, 2359 | "y": -372 2360 | }, 2361 | "_skewX": 0, 2362 | "_skewY": 0, 2363 | "_localZOrder": 0, 2364 | "_globalZOrder": 0, 2365 | "_tag": -1, 2366 | "_opacityModifyRGB": false, 2367 | "_id": "ad77ezXMfRPA5h598ZSEiwI", 2368 | "_active": true, 2369 | "_components": [ 2370 | { 2371 | "__id__": 57 2372 | } 2373 | ], 2374 | "_prefab": null, 2375 | "groupIndex": 0 2376 | }, 2377 | { 2378 | "__type__": "cc.Sprite", 2379 | "_name": "", 2380 | "_objFlags": 0, 2381 | "node": { 2382 | "__id__": 56 2383 | }, 2384 | "_enabled": true, 2385 | "_spriteFrame": { 2386 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2387 | }, 2388 | "_type": 0, 2389 | "_sizeMode": 1, 2390 | "_fillType": 0, 2391 | "_fillCenter": { 2392 | "__type__": "cc.Vec2", 2393 | "x": 0, 2394 | "y": 0 2395 | }, 2396 | "_fillStart": 0, 2397 | "_fillRange": 0, 2398 | "_isTrimmedMode": true, 2399 | "_srcBlendFactor": 770, 2400 | "_dstBlendFactor": 771, 2401 | "_atlas": null 2402 | }, 2403 | { 2404 | "__type__": "cc.Node", 2405 | "_name": "gold", 2406 | "_objFlags": 0, 2407 | "_opacity": 255, 2408 | "_color": { 2409 | "__type__": "cc.Color", 2410 | "r": 255, 2411 | "g": 255, 2412 | "b": 255, 2413 | "a": 255 2414 | }, 2415 | "_cascadeOpacityEnabled": true, 2416 | "_parent": { 2417 | "__id__": 9 2418 | }, 2419 | "_anchorPoint": { 2420 | "__type__": "cc.Vec2", 2421 | "x": 0.5, 2422 | "y": 0.5 2423 | }, 2424 | "_contentSize": { 2425 | "__type__": "cc.Size", 2426 | "width": 80, 2427 | "height": 80 2428 | }, 2429 | "_children": [], 2430 | "_rotationX": 0, 2431 | "_rotationY": 0, 2432 | "_scaleX": 1, 2433 | "_scaleY": 1, 2434 | "_position": { 2435 | "__type__": "cc.Vec2", 2436 | "x": -254, 2437 | "y": -472 2438 | }, 2439 | "_skewX": 0, 2440 | "_skewY": 0, 2441 | "_localZOrder": 0, 2442 | "_globalZOrder": 0, 2443 | "_tag": -1, 2444 | "_opacityModifyRGB": false, 2445 | "_id": "3d930Nb/h5N56uRuFQx3Yoy", 2446 | "_active": true, 2447 | "_components": [ 2448 | { 2449 | "__id__": 59 2450 | } 2451 | ], 2452 | "_prefab": null, 2453 | "groupIndex": 0 2454 | }, 2455 | { 2456 | "__type__": "cc.Sprite", 2457 | "_name": "", 2458 | "_objFlags": 0, 2459 | "node": { 2460 | "__id__": 58 2461 | }, 2462 | "_enabled": true, 2463 | "_spriteFrame": { 2464 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2465 | }, 2466 | "_type": 0, 2467 | "_sizeMode": 1, 2468 | "_fillType": 0, 2469 | "_fillCenter": { 2470 | "__type__": "cc.Vec2", 2471 | "x": 0, 2472 | "y": 0 2473 | }, 2474 | "_fillStart": 0, 2475 | "_fillRange": 0, 2476 | "_isTrimmedMode": true, 2477 | "_srcBlendFactor": 770, 2478 | "_dstBlendFactor": 771, 2479 | "_atlas": null 2480 | }, 2481 | { 2482 | "__type__": "cc.Node", 2483 | "_name": "gold", 2484 | "_objFlags": 0, 2485 | "_opacity": 255, 2486 | "_color": { 2487 | "__type__": "cc.Color", 2488 | "r": 255, 2489 | "g": 255, 2490 | "b": 255, 2491 | "a": 255 2492 | }, 2493 | "_cascadeOpacityEnabled": true, 2494 | "_parent": { 2495 | "__id__": 9 2496 | }, 2497 | "_anchorPoint": { 2498 | "__type__": "cc.Vec2", 2499 | "x": 0.5, 2500 | "y": 0.5 2501 | }, 2502 | "_contentSize": { 2503 | "__type__": "cc.Size", 2504 | "width": 80, 2505 | "height": 80 2506 | }, 2507 | "_children": [], 2508 | "_rotationX": 0, 2509 | "_rotationY": 0, 2510 | "_scaleX": 1, 2511 | "_scaleY": 1, 2512 | "_position": { 2513 | "__type__": "cc.Vec2", 2514 | "x": -154, 2515 | "y": -472 2516 | }, 2517 | "_skewX": 0, 2518 | "_skewY": 0, 2519 | "_localZOrder": 0, 2520 | "_globalZOrder": 0, 2521 | "_tag": -1, 2522 | "_opacityModifyRGB": false, 2523 | "_id": "e55f2mHq19JMb6Pn+/APnOx", 2524 | "_active": true, 2525 | "_components": [ 2526 | { 2527 | "__id__": 61 2528 | } 2529 | ], 2530 | "_prefab": null, 2531 | "groupIndex": 0 2532 | }, 2533 | { 2534 | "__type__": "cc.Sprite", 2535 | "_name": "", 2536 | "_objFlags": 0, 2537 | "node": { 2538 | "__id__": 60 2539 | }, 2540 | "_enabled": true, 2541 | "_spriteFrame": { 2542 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2543 | }, 2544 | "_type": 0, 2545 | "_sizeMode": 1, 2546 | "_fillType": 0, 2547 | "_fillCenter": { 2548 | "__type__": "cc.Vec2", 2549 | "x": 0, 2550 | "y": 0 2551 | }, 2552 | "_fillStart": 0, 2553 | "_fillRange": 0, 2554 | "_isTrimmedMode": true, 2555 | "_srcBlendFactor": 770, 2556 | "_dstBlendFactor": 771, 2557 | "_atlas": null 2558 | }, 2559 | { 2560 | "__type__": "cc.Node", 2561 | "_name": "gold", 2562 | "_objFlags": 0, 2563 | "_opacity": 255, 2564 | "_color": { 2565 | "__type__": "cc.Color", 2566 | "r": 255, 2567 | "g": 255, 2568 | "b": 255, 2569 | "a": 255 2570 | }, 2571 | "_cascadeOpacityEnabled": true, 2572 | "_parent": { 2573 | "__id__": 9 2574 | }, 2575 | "_anchorPoint": { 2576 | "__type__": "cc.Vec2", 2577 | "x": 0.5, 2578 | "y": 0.5 2579 | }, 2580 | "_contentSize": { 2581 | "__type__": "cc.Size", 2582 | "width": 80, 2583 | "height": 80 2584 | }, 2585 | "_children": [], 2586 | "_rotationX": 0, 2587 | "_rotationY": 0, 2588 | "_scaleX": 1, 2589 | "_scaleY": 1, 2590 | "_position": { 2591 | "__type__": "cc.Vec2", 2592 | "x": -54, 2593 | "y": -472 2594 | }, 2595 | "_skewX": 0, 2596 | "_skewY": 0, 2597 | "_localZOrder": 0, 2598 | "_globalZOrder": 0, 2599 | "_tag": -1, 2600 | "_opacityModifyRGB": false, 2601 | "_id": "cb70ev6htZBCaH/BUPVp+gK", 2602 | "_active": true, 2603 | "_components": [ 2604 | { 2605 | "__id__": 63 2606 | } 2607 | ], 2608 | "_prefab": null, 2609 | "groupIndex": 0 2610 | }, 2611 | { 2612 | "__type__": "cc.Sprite", 2613 | "_name": "", 2614 | "_objFlags": 0, 2615 | "node": { 2616 | "__id__": 62 2617 | }, 2618 | "_enabled": true, 2619 | "_spriteFrame": { 2620 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2621 | }, 2622 | "_type": 0, 2623 | "_sizeMode": 1, 2624 | "_fillType": 0, 2625 | "_fillCenter": { 2626 | "__type__": "cc.Vec2", 2627 | "x": 0, 2628 | "y": 0 2629 | }, 2630 | "_fillStart": 0, 2631 | "_fillRange": 0, 2632 | "_isTrimmedMode": true, 2633 | "_srcBlendFactor": 770, 2634 | "_dstBlendFactor": 771, 2635 | "_atlas": null 2636 | }, 2637 | { 2638 | "__type__": "cc.Node", 2639 | "_name": "gold", 2640 | "_objFlags": 0, 2641 | "_opacity": 255, 2642 | "_color": { 2643 | "__type__": "cc.Color", 2644 | "r": 255, 2645 | "g": 255, 2646 | "b": 255, 2647 | "a": 255 2648 | }, 2649 | "_cascadeOpacityEnabled": true, 2650 | "_parent": { 2651 | "__id__": 9 2652 | }, 2653 | "_anchorPoint": { 2654 | "__type__": "cc.Vec2", 2655 | "x": 0.5, 2656 | "y": 0.5 2657 | }, 2658 | "_contentSize": { 2659 | "__type__": "cc.Size", 2660 | "width": 80, 2661 | "height": 80 2662 | }, 2663 | "_children": [], 2664 | "_rotationX": 0, 2665 | "_rotationY": 0, 2666 | "_scaleX": 1, 2667 | "_scaleY": 1, 2668 | "_position": { 2669 | "__type__": "cc.Vec2", 2670 | "x": 46, 2671 | "y": -472 2672 | }, 2673 | "_skewX": 0, 2674 | "_skewY": 0, 2675 | "_localZOrder": 0, 2676 | "_globalZOrder": 0, 2677 | "_tag": -1, 2678 | "_opacityModifyRGB": false, 2679 | "_id": "8f7e5eBxCdJLaDd/81IzAUz", 2680 | "_active": true, 2681 | "_components": [ 2682 | { 2683 | "__id__": 65 2684 | } 2685 | ], 2686 | "_prefab": null, 2687 | "groupIndex": 0 2688 | }, 2689 | { 2690 | "__type__": "cc.Sprite", 2691 | "_name": "", 2692 | "_objFlags": 0, 2693 | "node": { 2694 | "__id__": 64 2695 | }, 2696 | "_enabled": true, 2697 | "_spriteFrame": { 2698 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2699 | }, 2700 | "_type": 0, 2701 | "_sizeMode": 1, 2702 | "_fillType": 0, 2703 | "_fillCenter": { 2704 | "__type__": "cc.Vec2", 2705 | "x": 0, 2706 | "y": 0 2707 | }, 2708 | "_fillStart": 0, 2709 | "_fillRange": 0, 2710 | "_isTrimmedMode": true, 2711 | "_srcBlendFactor": 770, 2712 | "_dstBlendFactor": 771, 2713 | "_atlas": null 2714 | }, 2715 | { 2716 | "__type__": "cc.Node", 2717 | "_name": "gold", 2718 | "_objFlags": 0, 2719 | "_opacity": 255, 2720 | "_color": { 2721 | "__type__": "cc.Color", 2722 | "r": 255, 2723 | "g": 255, 2724 | "b": 255, 2725 | "a": 255 2726 | }, 2727 | "_cascadeOpacityEnabled": true, 2728 | "_parent": { 2729 | "__id__": 9 2730 | }, 2731 | "_anchorPoint": { 2732 | "__type__": "cc.Vec2", 2733 | "x": 0.5, 2734 | "y": 0.5 2735 | }, 2736 | "_contentSize": { 2737 | "__type__": "cc.Size", 2738 | "width": 80, 2739 | "height": 80 2740 | }, 2741 | "_children": [], 2742 | "_rotationX": 0, 2743 | "_rotationY": 0, 2744 | "_scaleX": 1, 2745 | "_scaleY": 1, 2746 | "_position": { 2747 | "__type__": "cc.Vec2", 2748 | "x": 146, 2749 | "y": -472 2750 | }, 2751 | "_skewX": 0, 2752 | "_skewY": 0, 2753 | "_localZOrder": 0, 2754 | "_globalZOrder": 0, 2755 | "_tag": -1, 2756 | "_opacityModifyRGB": false, 2757 | "_id": "22f20ViRFhLJY0ob7O1gi2H", 2758 | "_active": true, 2759 | "_components": [ 2760 | { 2761 | "__id__": 67 2762 | } 2763 | ], 2764 | "_prefab": null, 2765 | "groupIndex": 0 2766 | }, 2767 | { 2768 | "__type__": "cc.Sprite", 2769 | "_name": "", 2770 | "_objFlags": 0, 2771 | "node": { 2772 | "__id__": 66 2773 | }, 2774 | "_enabled": true, 2775 | "_spriteFrame": { 2776 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2777 | }, 2778 | "_type": 0, 2779 | "_sizeMode": 1, 2780 | "_fillType": 0, 2781 | "_fillCenter": { 2782 | "__type__": "cc.Vec2", 2783 | "x": 0, 2784 | "y": 0 2785 | }, 2786 | "_fillStart": 0, 2787 | "_fillRange": 0, 2788 | "_isTrimmedMode": true, 2789 | "_srcBlendFactor": 770, 2790 | "_dstBlendFactor": 771, 2791 | "_atlas": null 2792 | }, 2793 | { 2794 | "__type__": "cc.Node", 2795 | "_name": "gold", 2796 | "_objFlags": 0, 2797 | "_opacity": 255, 2798 | "_color": { 2799 | "__type__": "cc.Color", 2800 | "r": 255, 2801 | "g": 255, 2802 | "b": 255, 2803 | "a": 255 2804 | }, 2805 | "_cascadeOpacityEnabled": true, 2806 | "_parent": { 2807 | "__id__": 9 2808 | }, 2809 | "_anchorPoint": { 2810 | "__type__": "cc.Vec2", 2811 | "x": 0.5, 2812 | "y": 0.5 2813 | }, 2814 | "_contentSize": { 2815 | "__type__": "cc.Size", 2816 | "width": 80, 2817 | "height": 80 2818 | }, 2819 | "_children": [], 2820 | "_rotationX": 0, 2821 | "_rotationY": 0, 2822 | "_scaleX": 1, 2823 | "_scaleY": 1, 2824 | "_position": { 2825 | "__type__": "cc.Vec2", 2826 | "x": 246, 2827 | "y": -472 2828 | }, 2829 | "_skewX": 0, 2830 | "_skewY": 0, 2831 | "_localZOrder": 0, 2832 | "_globalZOrder": 0, 2833 | "_tag": -1, 2834 | "_opacityModifyRGB": false, 2835 | "_id": "144f2/R6wpAapXy+gE43umL", 2836 | "_active": true, 2837 | "_components": [ 2838 | { 2839 | "__id__": 69 2840 | } 2841 | ], 2842 | "_prefab": null, 2843 | "groupIndex": 0 2844 | }, 2845 | { 2846 | "__type__": "cc.Sprite", 2847 | "_name": "", 2848 | "_objFlags": 0, 2849 | "node": { 2850 | "__id__": 68 2851 | }, 2852 | "_enabled": true, 2853 | "_spriteFrame": { 2854 | "__uuid__": "d479137c-14e8-4fbc-96aa-be0ac2e24bff" 2855 | }, 2856 | "_type": 0, 2857 | "_sizeMode": 1, 2858 | "_fillType": 0, 2859 | "_fillCenter": { 2860 | "__type__": "cc.Vec2", 2861 | "x": 0, 2862 | "y": 0 2863 | }, 2864 | "_fillStart": 0, 2865 | "_fillRange": 0, 2866 | "_isTrimmedMode": true, 2867 | "_srcBlendFactor": 770, 2868 | "_dstBlendFactor": 771, 2869 | "_atlas": null 2870 | }, 2871 | { 2872 | "__type__": "cc.Layout", 2873 | "_name": "", 2874 | "_objFlags": 0, 2875 | "node": { 2876 | "__id__": 9 2877 | }, 2878 | "_enabled": true, 2879 | "_layoutSize": { 2880 | "__type__": "cc.Size", 2881 | "width": 652, 2882 | "height": 544 2883 | }, 2884 | "_resize": 1, 2885 | "_N$layoutType": 3, 2886 | "_N$cellSize": { 2887 | "__type__": "cc.Size", 2888 | "width": 40, 2889 | "height": 40 2890 | }, 2891 | "_N$startAxis": 0, 2892 | "_N$padding": 32, 2893 | "_N$spacingX": 20, 2894 | "_N$spacingY": 20, 2895 | "_N$verticalDirection": 1, 2896 | "_N$horizontalDirection": 0 2897 | }, 2898 | { 2899 | "__type__": "cc.Widget", 2900 | "_name": "", 2901 | "_objFlags": 0, 2902 | "node": { 2903 | "__id__": 9 2904 | }, 2905 | "_enabled": true, 2906 | "isAlignOnce": false, 2907 | "_alignFlags": 40, 2908 | "_left": 5, 2909 | "_right": 5, 2910 | "_top": 0, 2911 | "_bottom": 0, 2912 | "_verticalCenter": 0, 2913 | "_horizontalCenter": 0, 2914 | "_isAbsLeft": true, 2915 | "_isAbsRight": true, 2916 | "_isAbsTop": true, 2917 | "_isAbsBottom": true, 2918 | "_isAbsHorizontalCenter": true, 2919 | "_isAbsVerticalCenter": true, 2920 | "_originalWidth": 80, 2921 | "_originalHeight": 0 2922 | }, 2923 | { 2924 | "__type__": "cc.Mask", 2925 | "_name": "", 2926 | "_objFlags": 0, 2927 | "node": { 2928 | "__id__": 8 2929 | }, 2930 | "_enabled": true, 2931 | "_type": 0, 2932 | "_segements": 64 2933 | }, 2934 | { 2935 | "__type__": "cc.Widget", 2936 | "_name": "", 2937 | "_objFlags": 0, 2938 | "node": { 2939 | "__id__": 8 2940 | }, 2941 | "_enabled": true, 2942 | "isAlignOnce": false, 2943 | "_alignFlags": 45, 2944 | "_left": 5, 2945 | "_right": 5, 2946 | "_top": 5, 2947 | "_bottom": 5, 2948 | "_verticalCenter": 0, 2949 | "_horizontalCenter": 0, 2950 | "_isAbsLeft": true, 2951 | "_isAbsRight": true, 2952 | "_isAbsTop": true, 2953 | "_isAbsBottom": true, 2954 | "_isAbsHorizontalCenter": true, 2955 | "_isAbsVerticalCenter": true, 2956 | "_originalWidth": 240, 2957 | "_originalHeight": 250 2958 | }, 2959 | { 2960 | "__type__": "cc.Sprite", 2961 | "_name": "", 2962 | "_objFlags": 0, 2963 | "node": { 2964 | "__id__": 7 2965 | }, 2966 | "_enabled": true, 2967 | "_spriteFrame": { 2968 | "__uuid__": "033438e4-0051-447a-b785-b98a8adff3b0" 2969 | }, 2970 | "_type": 1, 2971 | "_sizeMode": 0, 2972 | "_fillType": 0, 2973 | "_fillCenter": { 2974 | "__type__": "cc.Vec2", 2975 | "x": 0, 2976 | "y": 0 2977 | }, 2978 | "_fillStart": 0, 2979 | "_fillRange": 0, 2980 | "_isTrimmedMode": true, 2981 | "_srcBlendFactor": 770, 2982 | "_dstBlendFactor": 771, 2983 | "_atlas": null 2984 | }, 2985 | { 2986 | "__type__": "cc.ScrollView", 2987 | "_name": "", 2988 | "_objFlags": 0, 2989 | "node": { 2990 | "__id__": 7 2991 | }, 2992 | "_enabled": true, 2993 | "content": { 2994 | "__id__": 9 2995 | }, 2996 | "horizontal": false, 2997 | "vertical": true, 2998 | "inertia": true, 2999 | "brake": 0.8, 3000 | "elastic": true, 3001 | "bounceDuration": 0.23, 3002 | "scrollEvents": [], 3003 | "cancelInnerEvents": true, 3004 | "_N$horizontalScrollBar": null, 3005 | "_N$verticalScrollBar": null 3006 | }, 3007 | { 3008 | "__type__": "cc.Widget", 3009 | "_name": "", 3010 | "_objFlags": 0, 3011 | "node": { 3012 | "__id__": 7 3013 | }, 3014 | "_enabled": true, 3015 | "isAlignOnce": false, 3016 | "_alignFlags": 45, 3017 | "_left": 0.15, 3018 | "_right": 0.15, 3019 | "_top": 0.2, 3020 | "_bottom": 0.15, 3021 | "_verticalCenter": 0, 3022 | "_horizontalCenter": 0, 3023 | "_isAbsLeft": false, 3024 | "_isAbsRight": false, 3025 | "_isAbsTop": false, 3026 | "_isAbsBottom": false, 3027 | "_isAbsHorizontalCenter": true, 3028 | "_isAbsVerticalCenter": true, 3029 | "_originalWidth": 240, 3030 | "_originalHeight": 250 3031 | }, 3032 | { 3033 | "__type__": "cc.Sprite", 3034 | "_name": "", 3035 | "_objFlags": 0, 3036 | "node": { 3037 | "__id__": 3 3038 | }, 3039 | "_enabled": true, 3040 | "_spriteFrame": { 3041 | "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" 3042 | }, 3043 | "_type": 0, 3044 | "_sizeMode": 0, 3045 | "_fillType": 0, 3046 | "_fillCenter": { 3047 | "__type__": "cc.Vec2", 3048 | "x": 0, 3049 | "y": 0 3050 | }, 3051 | "_fillStart": 0, 3052 | "_fillRange": 0, 3053 | "_isTrimmedMode": true, 3054 | "_srcBlendFactor": 770, 3055 | "_dstBlendFactor": 771, 3056 | "_atlas": null 3057 | }, 3058 | { 3059 | "__type__": "cc.Widget", 3060 | "_name": "", 3061 | "_objFlags": 0, 3062 | "node": { 3063 | "__id__": 3 3064 | }, 3065 | "_enabled": true, 3066 | "isAlignOnce": false, 3067 | "_alignFlags": 45, 3068 | "_left": 0, 3069 | "_right": 0, 3070 | "_top": 0, 3071 | "_bottom": 0, 3072 | "_verticalCenter": 0, 3073 | "_horizontalCenter": 0, 3074 | "_isAbsLeft": true, 3075 | "_isAbsRight": true, 3076 | "_isAbsTop": true, 3077 | "_isAbsBottom": true, 3078 | "_isAbsHorizontalCenter": true, 3079 | "_isAbsVerticalCenter": true, 3080 | "_originalWidth": 100, 3081 | "_originalHeight": 100 3082 | }, 3083 | { 3084 | "__type__": "cc.Canvas", 3085 | "_name": "", 3086 | "_objFlags": 0, 3087 | "node": { 3088 | "__id__": 2 3089 | }, 3090 | "_enabled": true, 3091 | "_designResolution": { 3092 | "__type__": "cc.Size", 3093 | "width": 960, 3094 | "height": 640 3095 | }, 3096 | "_fitWidth": false, 3097 | "_fitHeight": true 3098 | } 3099 | ] -------------------------------------------------------------------------------- /assets/Scene/06_layout_grid.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "877de0ab-a1c0-412d-9f3d-911c38eb0776", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/Script.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "4734c20c-0db8-4eb2-92ea-e692f4d70934", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/Script/Launch.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | }, 6 | 7 | // use this for initialization 8 | onLoad: function () { 9 | var self = this; 10 | this.canLoad = true; 11 | cc.game.addPersistRootNode(this.node); 12 | this.sceneList = cc.game._sceneInfos; 13 | cc.log(this.sceneList); 14 | cc.director.loadScene('01_align_basic'); 15 | var listener = { 16 | event: cc.EventListener.KEYBOARD, 17 | onKeyPressed: function (keyCode, event) { 18 | cc.log('keyDown: ' + keyCode); 19 | var idx = keyCode - 48; 20 | if (idx >= 0 && idx < self.sceneList.length && self.canLoad) { 21 | self.loadScene(self.sceneList[idx].url); 22 | } 23 | } 24 | } 25 | cc.eventManager.addListener(listener, this.node); 26 | }, 27 | 28 | // called every frame 29 | loadScene (name) { 30 | this.canLoad = false; 31 | cc.director.loadScene(name, this.onLoadSceneFinish.bind(this)); 32 | }, 33 | 34 | onLoadSceneFinish () { 35 | this.canLoad = true; 36 | } 37 | }); 38 | -------------------------------------------------------------------------------- /assets/Script/Launch.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.2", 3 | "uuid": "280c3aec-6492-4a9d-9f51-a9b00b570b4a", 4 | "isPlugin": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/Texture.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "7b81d4e8-ec84-4716-968d-500ac1d78a54", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/Texture/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos-creator/example-responsive-ui-deprecated/f5170e5a7f629c87bd52764a06977bca53a64bf3/assets/Texture/HelloWorld.png -------------------------------------------------------------------------------- /assets/Texture/HelloWorld.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6aa0aa6a-ebee-4155-a088-a687a6aadec4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "HelloWorld": { 9 | "ver": "1.0.3", 10 | "uuid": "31bc895a-c003-4566-a9f3-2e54ae1c17dc", 11 | "rawTextureUuid": "6aa0aa6a-ebee-4155-a088-a687a6aadec4", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 195, 20 | "height": 270, 21 | "rawWidth": 195, 22 | "rawHeight": 270, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/Texture/bg_grey_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos-creator/example-responsive-ui-deprecated/f5170e5a7f629c87bd52764a06977bca53a64bf3/assets/Texture/bg_grey_round.png -------------------------------------------------------------------------------- /assets/Texture/bg_grey_round.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c482fada-1468-40c8-a445-b7428118e36c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bg_grey_round": { 9 | "ver": "1.0.3", 10 | "uuid": "033438e4-0051-447a-b785-b98a8adff3b0", 11 | "rawTextureUuid": "c482fada-1468-40c8-a445-b7428118e36c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 173, 20 | "height": 69, 21 | "rawWidth": 173, 22 | "rawHeight": 71, 23 | "borderTop": 19, 24 | "borderBottom": 23, 25 | "borderLeft": 23, 26 | "borderRight": 20, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/Texture/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos-creator/example-responsive-ui-deprecated/f5170e5a7f629c87bd52764a06977bca53a64bf3/assets/Texture/gold.png -------------------------------------------------------------------------------- /assets/Texture/gold.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "43a6d08c-5105-4084-8252-3e3db48fac6f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "gold": { 9 | "ver": "1.0.3", 10 | "uuid": "d479137c-14e8-4fbc-96aa-be0ac2e24bff", 11 | "rawTextureUuid": "43a6d08c-5105-4084-8252-3e3db48fac6f", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 80, 20 | "height": 80, 21 | "rawWidth": 80, 22 | "rawHeight": 80, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/Texture/singleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos-creator/example-responsive-ui-deprecated/f5170e5a7f629c87bd52764a06977bca53a64bf3/assets/Texture/singleColor.png -------------------------------------------------------------------------------- /assets/Texture/singleColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a8027877-d8d6-4645-97a0-52d4a0123dba", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "singleColor": { 9 | "ver": "1.0.3", 10 | "uuid": "410fb916-8721-4663-bab8-34397391ace7", 11 | "rawTextureUuid": "a8027877-d8d6-4645-97a0-52d4a0123dba", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 2, 20 | "height": 2, 21 | "rawWidth": 2, 22 | "rawHeight": 2, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs" 5 | }, 6 | "exclude": [ 7 | "node_modules", 8 | "library", 9 | "local", 10 | "settings", 11 | "temp" 12 | ] 13 | } -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine": "cocos2d-html5", 3 | "packages": "packages" 4 | } -------------------------------------------------------------------------------- /settings/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "excludeScenes": [], 3 | "includeAnysdk": false, 4 | "includeSdk": [ 5 | "anysdk" 6 | ], 7 | "orientation": { 8 | "landscapeLeft": true, 9 | "landscapeRight": true, 10 | "portrait": false, 11 | "upsideDown": false 12 | }, 13 | "packageName": "org.cocos2d.helloworld", 14 | "startScene": "63cb32ba-00da-4230-b31d-37aa43ec7772", 15 | "title": "hello_world", 16 | "webOrientation": "auto" 17 | } -------------------------------------------------------------------------------- /settings/builder.panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "excludeScenes": [], 3 | "packageName": "org.cocos2d.helloworld", 4 | "platform": "web-mobile", 5 | "startScene": "2d2f792f-a40c-49bb-a189-ed176a246e49", 6 | "title": "HelloWorld" 7 | } -------------------------------------------------------------------------------- /settings/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "collision-matrix": [ 3 | [ 4 | true 5 | ] 6 | ], 7 | "excluded-modules": [], 8 | "group-list": [ 9 | "default" 10 | ], 11 | "start-scene": "current" 12 | } -------------------------------------------------------------------------------- /template-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos-creator/example-responsive-ui-deprecated/f5170e5a7f629c87bd52764a06977bca53a64bf3/template-banner.png -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TEMPLATES.helloworld.name", 3 | "desc": "TEMPLATES.helloworld.desc", 4 | "banner": "template-banner.png" 5 | } --------------------------------------------------------------------------------