AStar.fire 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_objFlags": 0,
  14. "_parent": null,
  15. "_children": [
  16. {
  17. "__id__": 2
  18. }
  19. ],
  20. "_active": true,
  21. "_level": 0,
  22. "_components": [],
  23. "_prefab": null,
  24. "_opacity": 255,
  25. "_color": {
  26. "__type__": "cc.Color",
  27. "r": 255,
  28. "g": 255,
  29. "b": 255,
  30. "a": 255
  31. },
  32. "_contentSize": {
  33. "__type__": "cc.Size",
  34. "width": 0,
  35. "height": 0
  36. },
  37. "_anchorPoint": {
  38. "__type__": "cc.Vec2",
  39. "x": 0,
  40. "y": 0
  41. },
  42. "_scale": {
  43. "__type__": "cc.Vec3",
  44. "x": 0.5130871121806629,
  45. "y": 0.5130871121806629,
  46. "z": 0.5130871121806629
  47. },
  48. "_quat": {
  49. "__type__": "cc.Quat",
  50. "x": 0,
  51. "y": 0,
  52. "z": 0,
  53. "w": 1
  54. },
  55. "_zIndex": 0,
  56. "_is3DNode": true,
  57. "groupIndex": 0,
  58. "autoReleaseAssets": false,
  59. "_id": "5c124b77-f066-4b1d-bbdd-a2c8b0e3d74b"
  60. },
  61. {
  62. "__type__": "cc.Node",
  63. "_name": "Canvas",
  64. "_objFlags": 0,
  65. "_parent": {
  66. "__id__": 1
  67. },
  68. "_children": [
  69. {
  70. "__id__": 3
  71. },
  72. {
  73. "__id__": 7
  74. },
  75. {
  76. "__id__": 10
  77. },
  78. {
  79. "__id__": 16
  80. },
  81. {
  82. "__id__": 22
  83. },
  84. {
  85. "__id__": 31
  86. },
  87. {
  88. "__id__": 40
  89. },
  90. {
  91. "__id__": 49
  92. }
  93. ],
  94. "_active": true,
  95. "_level": 0,
  96. "_components": [
  97. {
  98. "__id__": 58
  99. }
  100. ],
  101. "_prefab": null,
  102. "_opacity": 255,
  103. "_color": {
  104. "__type__": "cc.Color",
  105. "r": 255,
  106. "g": 255,
  107. "b": 255,
  108. "a": 255
  109. },
  110. "_contentSize": {
  111. "__type__": "cc.Size",
  112. "width": 640,
  113. "height": 640
  114. },
  115. "_anchorPoint": {
  116. "__type__": "cc.Vec2",
  117. "x": 0.5,
  118. "y": 0.5
  119. },
  120. "_position": {
  121. "__type__": "cc.Vec3",
  122. "x": 320,
  123. "y": 320,
  124. "z": 0
  125. },
  126. "_scale": {
  127. "__type__": "cc.Vec3",
  128. "x": 1,
  129. "y": 1,
  130. "z": 1
  131. },
  132. "_quat": {
  133. "__type__": "cc.Quat",
  134. "x": 0,
  135. "y": 0,
  136. "z": 0,
  137. "w": 1
  138. },
  139. "_skewX": 0,
  140. "_skewY": 0,
  141. "_zIndex": 0,
  142. "_is3DNode": false,
  143. "groupIndex": 0,
  144. "_id": "d8c1j/SjtEHZ68JyF/sV4J"
  145. },
  146. {
  147. "__type__": "cc.Node",
  148. "_name": "Main Camera",
  149. "_objFlags": 0,
  150. "_parent": {
  151. "__id__": 2
  152. },
  153. "_children": [
  154. {
  155. "__id__": 4
  156. }
  157. ],
  158. "_active": true,
  159. "_level": 1,
  160. "_components": [
  161. {
  162. "__id__": 6
  163. }
  164. ],
  165. "_prefab": null,
  166. "_opacity": 255,
  167. "_color": {
  168. "__type__": "cc.Color",
  169. "r": 255,
  170. "g": 255,
  171. "b": 255,
  172. "a": 255
  173. },
  174. "_contentSize": {
  175. "__type__": "cc.Size",
  176. "width": 0,
  177. "height": 0
  178. },
  179. "_anchorPoint": {
  180. "__type__": "cc.Vec2",
  181. "x": 0.5,
  182. "y": 0.5
  183. },
  184. "_position": {
  185. "__type__": "cc.Vec3",
  186. "x": 0,
  187. "y": 0,
  188. "z": 0
  189. },
  190. "_scale": {
  191. "__type__": "cc.Vec3",
  192. "x": 1,
  193. "y": 1,
  194. "z": 1
  195. },
  196. "_quat": {
  197. "__type__": "cc.Quat",
  198. "x": 0,
  199. "y": 0,
  200. "z": 0,
  201. "w": 1
  202. },
  203. "_skewX": 0,
  204. "_skewY": 0,
  205. "_zIndex": 0,
  206. "_is3DNode": false,
  207. "groupIndex": 0,
  208. "_id": "53TIaCJJlMbbjzmsOQjxZt"
  209. },
  210. {
  211. "__type__": "cc.Node",
  212. "_name": "BG",
  213. "_objFlags": 0,
  214. "_parent": {
  215. "__id__": 3
  216. },
  217. "_children": [],
  218. "_active": true,
  219. "_level": 2,
  220. "_components": [
  221. {
  222. "__id__": 5
  223. }
  224. ],
  225. "_prefab": null,
  226. "_opacity": 255,
  227. "_color": {
  228. "__type__": "cc.Color",
  229. "r": 255,
  230. "g": 255,
  231. "b": 255,
  232. "a": 255
  233. },
  234. "_contentSize": {
  235. "__type__": "cc.Size",
  236. "width": 100,
  237. "height": 100
  238. },
  239. "_anchorPoint": {
  240. "__type__": "cc.Vec2",
  241. "x": 0.5,
  242. "y": 0.5
  243. },
  244. "_position": {
  245. "__type__": "cc.Vec3",
  246. "x": 0,
  247. "y": 0,
  248. "z": 0
  249. },
  250. "_scale": {
  251. "__type__": "cc.Vec3",
  252. "x": 15,
  253. "y": 15,
  254. "z": 15
  255. },
  256. "_quat": {
  257. "__type__": "cc.Quat",
  258. "x": 0,
  259. "y": 0,
  260. "z": 0,
  261. "w": 1
  262. },
  263. "_skewX": 0,
  264. "_skewY": 0,
  265. "_zIndex": 0,
  266. "_is3DNode": false,
  267. "groupIndex": 0,
  268. "_rotationX": 0,
  269. "_rotationY": 0,
  270. "_id": "5cOHM722ZA0qGVNPPvIW0B"
  271. },
  272. {
  273. "__type__": "cc.Sprite",
  274. "_name": "",
  275. "_objFlags": 0,
  276. "node": {
  277. "__id__": 4
  278. },
  279. "_enabled": true,
  280. "_srcBlendFactor": 770,
  281. "_dstBlendFactor": 771,
  282. "_spriteFrame": {
  283. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  284. },
  285. "_type": 0,
  286. "_sizeMode": 0,
  287. "_fillType": 0,
  288. "_fillCenter": {
  289. "__type__": "cc.Vec2",
  290. "x": 0,
  291. "y": 0
  292. },
  293. "_fillStart": 0,
  294. "_fillRange": 0,
  295. "_isTrimmedMode": true,
  296. "_state": 0,
  297. "_atlas": null,
  298. "_id": "b9qonlPiFAq4mxffeir4XS"
  299. },
  300. {
  301. "__type__": "cc.Camera",
  302. "_name": "",
  303. "_objFlags": 0,
  304. "node": {
  305. "__id__": 3
  306. },
  307. "_enabled": true,
  308. "_cullingMask": 4294967295,
  309. "_clearFlags": 7,
  310. "_backgroundColor": {
  311. "__type__": "cc.Color",
  312. "r": 0,
  313. "g": 0,
  314. "b": 0,
  315. "a": 255
  316. },
  317. "_depth": -1,
  318. "_zoomRatio": 1,
  319. "_targetTexture": null,
  320. "_fov": 60,
  321. "_orthoSize": 10,
  322. "_nearClip": 0.1,
  323. "_farClip": 4096,
  324. "_ortho": true,
  325. "_rect": {
  326. "__type__": "cc.Rect",
  327. "x": 0,
  328. "y": 0,
  329. "width": 1,
  330. "height": 1
  331. },
  332. "_id": "3aFI+5lvVMOpGE0ATnw+C1"
  333. },
  334. {
  335. "__type__": "cc.Node",
  336. "_name": "AStarNode",
  337. "_objFlags": 0,
  338. "_parent": {
  339. "__id__": 2
  340. },
  341. "_children": [],
  342. "_active": true,
  343. "_level": 1,
  344. "_components": [
  345. {
  346. "__id__": 8
  347. },
  348. {
  349. "__id__": 9
  350. }
  351. ],
  352. "_prefab": null,
  353. "_opacity": 255,
  354. "_color": {
  355. "__type__": "cc.Color",
  356. "r": 255,
  357. "g": 255,
  358. "b": 255,
  359. "a": 255
  360. },
  361. "_contentSize": {
  362. "__type__": "cc.Size",
  363. "width": 0,
  364. "height": 0
  365. },
  366. "_anchorPoint": {
  367. "__type__": "cc.Vec2",
  368. "x": 0.5,
  369. "y": 0.5
  370. },
  371. "_position": {
  372. "__type__": "cc.Vec3",
  373. "x": -261,
  374. "y": -183,
  375. "z": 0
  376. },
  377. "_scale": {
  378. "__type__": "cc.Vec3",
  379. "x": 1,
  380. "y": 1,
  381. "z": 1
  382. },
  383. "_quat": {
  384. "__type__": "cc.Quat",
  385. "x": 0,
  386. "y": 0,
  387. "z": 0,
  388. "w": 1
  389. },
  390. "_skewX": 0,
  391. "_skewY": 0,
  392. "_zIndex": 0,
  393. "_is3DNode": false,
  394. "groupIndex": 0,
  395. "_id": "65uM2d+zhCAqSweATLeD5t"
  396. },
  397. {
  398. "__type__": "d4ba1/gvslImrQRa3LT7bcn",
  399. "_name": "",
  400. "_objFlags": 0,
  401. "node": {
  402. "__id__": 7
  403. },
  404. "_enabled": true,
  405. "_id": "a9muncqUxDXJA0heZ984r+"
  406. },
  407. {
  408. "__type__": "cc.Graphics",
  409. "_name": "",
  410. "_objFlags": 0,
  411. "node": {
  412. "__id__": 7
  413. },
  414. "_enabled": true,
  415. "_srcBlendFactor": 770,
  416. "_dstBlendFactor": 771,
  417. "_lineWidth": 1,
  418. "_strokeColor": {
  419. "__type__": "cc.Color",
  420. "r": 0,
  421. "g": 0,
  422. "b": 0,
  423. "a": 255
  424. },
  425. "_lineJoin": 2,
  426. "_lineCap": 0,
  427. "_fillColor": {
  428. "__type__": "cc.Color",
  429. "r": 51,
  430. "g": 51,
  431. "b": 51,
  432. "a": 255
  433. },
  434. "_miterLimit": 10,
  435. "_id": "55zwzfHvBD7qXs2xqObnRc"
  436. },
  437. {
  438. "__type__": "cc.Node",
  439. "_name": "Random",
  440. "_objFlags": 0,
  441. "_parent": {
  442. "__id__": 2
  443. },
  444. "_children": [
  445. {
  446. "__id__": 11
  447. }
  448. ],
  449. "_active": true,
  450. "_level": 1,
  451. "_components": [
  452. {
  453. "__id__": 13
  454. },
  455. {
  456. "__id__": 14
  457. }
  458. ],
  459. "_prefab": null,
  460. "_opacity": 255,
  461. "_color": {
  462. "__type__": "cc.Color",
  463. "r": 255,
  464. "g": 255,
  465. "b": 255,
  466. "a": 255
  467. },
  468. "_contentSize": {
  469. "__type__": "cc.Size",
  470. "width": 100,
  471. "height": 40
  472. },
  473. "_anchorPoint": {
  474. "__type__": "cc.Vec2",
  475. "x": 0.5,
  476. "y": 0.5
  477. },
  478. "_position": {
  479. "__type__": "cc.Vec3",
  480. "x": 22,
  481. "y": -231,
  482. "z": 0
  483. },
  484. "_scale": {
  485. "__type__": "cc.Vec3",
  486. "x": 1,
  487. "y": 1,
  488. "z": 1
  489. },
  490. "_quat": {
  491. "__type__": "cc.Quat",
  492. "x": 0,
  493. "y": 0,
  494. "z": 0,
  495. "w": 1
  496. },
  497. "_skewX": 0,
  498. "_skewY": 0,
  499. "_zIndex": 0,
  500. "_is3DNode": false,
  501. "groupIndex": 0,
  502. "_rotationX": 0,
  503. "_rotationY": 0,
  504. "_id": "7dX+nN/yxFzqjqbrUJdGtg"
  505. },
  506. {
  507. "__type__": "cc.Node",
  508. "_name": "Label",
  509. "_objFlags": 0,
  510. "_parent": {
  511. "__id__": 10
  512. },
  513. "_children": [],
  514. "_active": true,
  515. "_level": 0,
  516. "_components": [
  517. {
  518. "__id__": 12
  519. }
  520. ],
  521. "_prefab": null,
  522. "_opacity": 255,
  523. "_color": {
  524. "__type__": "cc.Color",
  525. "r": 0,
  526. "g": 0,
  527. "b": 0,
  528. "a": 255
  529. },
  530. "_contentSize": {
  531. "__type__": "cc.Size",
  532. "width": 100,
  533. "height": 40
  534. },
  535. "_anchorPoint": {
  536. "__type__": "cc.Vec2",
  537. "x": 0.5,
  538. "y": 0.5
  539. },
  540. "_position": {
  541. "__type__": "cc.Vec3",
  542. "x": 0,
  543. "y": 0,
  544. "z": 0
  545. },
  546. "_scale": {
  547. "__type__": "cc.Vec3",
  548. "x": 1,
  549. "y": 1,
  550. "z": 1
  551. },
  552. "_quat": {
  553. "__type__": "cc.Quat",
  554. "x": 0,
  555. "y": 0,
  556. "z": 0,
  557. "w": 1
  558. },
  559. "_skewX": 0,
  560. "_skewY": 0,
  561. "_zIndex": 0,
  562. "_is3DNode": false,
  563. "groupIndex": 0,
  564. "_rotationX": 0,
  565. "_rotationY": 0,
  566. "_id": "f5aZsyyBlMXZKN/vnsEnNX"
  567. },
  568. {
  569. "__type__": "cc.Label",
  570. "_name": "",
  571. "_objFlags": 0,
  572. "node": {
  573. "__id__": 11
  574. },
  575. "_enabled": true,
  576. "_srcBlendFactor": 1,
  577. "_dstBlendFactor": 771,
  578. "_useOriginalSize": false,
  579. "_string": "随机生成",
  580. "_N$string": "随机生成",
  581. "_fontSize": 20,
  582. "_lineHeight": 40,
  583. "_enableWrapText": false,
  584. "_N$file": null,
  585. "_isSystemFontUsed": true,
  586. "_spacingX": 0,
  587. "_N$horizontalAlign": 1,
  588. "_N$verticalAlign": 1,
  589. "_N$fontFamily": "Arial",
  590. "_N$overflow": 1,
  591. "_id": "9au+0OSn5FHbS0L8lFijzG"
  592. },
  593. {
  594. "__type__": "cc.Sprite",
  595. "_name": "",
  596. "_objFlags": 0,
  597. "node": {
  598. "__id__": 10
  599. },
  600. "_enabled": true,
  601. "_srcBlendFactor": 770,
  602. "_dstBlendFactor": 771,
  603. "_spriteFrame": {
  604. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  605. },
  606. "_type": 1,
  607. "_sizeMode": 0,
  608. "_fillType": 0,
  609. "_fillCenter": {
  610. "__type__": "cc.Vec2",
  611. "x": 0,
  612. "y": 0
  613. },
  614. "_fillStart": 0,
  615. "_fillRange": 0,
  616. "_isTrimmedMode": true,
  617. "_state": 0,
  618. "_atlas": null,
  619. "_id": "9fRAy4dXdFW5HvMCstPJRK"
  620. },
  621. {
  622. "__type__": "cc.Button",
  623. "_name": "",
  624. "_objFlags": 0,
  625. "node": {
  626. "__id__": 10
  627. },
  628. "_enabled": true,
  629. "duration": 0.1,
  630. "zoomScale": 1.2,
  631. "clickEvents": [
  632. {
  633. "__id__": 15
  634. }
  635. ],
  636. "_N$interactable": true,
  637. "_N$enableAutoGrayEffect": false,
  638. "_N$transition": 2,
  639. "transition": 2,
  640. "_N$normalColor": {
  641. "__type__": "cc.Color",
  642. "r": 255,
  643. "g": 255,
  644. "b": 255,
  645. "a": 255
  646. },
  647. "_N$pressedColor": {
  648. "__type__": "cc.Color",
  649. "r": 255,
  650. "g": 255,
  651. "b": 255,
  652. "a": 255
  653. },
  654. "pressedColor": {
  655. "__type__": "cc.Color",
  656. "r": 255,
  657. "g": 255,
  658. "b": 255,
  659. "a": 255
  660. },
  661. "_N$hoverColor": {
  662. "__type__": "cc.Color",
  663. "r": 255,
  664. "g": 255,
  665. "b": 255,
  666. "a": 255
  667. },
  668. "hoverColor": {
  669. "__type__": "cc.Color",
  670. "r": 255,
  671. "g": 255,
  672. "b": 255,
  673. "a": 255
  674. },
  675. "_N$disabledColor": {
  676. "__type__": "cc.Color",
  677. "r": 255,
  678. "g": 255,
  679. "b": 255,
  680. "a": 255
  681. },
  682. "_N$normalSprite": {
  683. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  684. },
  685. "_N$pressedSprite": {
  686. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  687. },
  688. "pressedSprite": {
  689. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  690. },
  691. "_N$hoverSprite": {
  692. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  693. },
  694. "hoverSprite": {
  695. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  696. },
  697. "_N$disabledSprite": {
  698. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  699. },
  700. "_N$target": {
  701. "__id__": 10
  702. },
  703. "_id": "bfQfmIZY9JdacFz7UL7r9o"
  704. },
  705. {
  706. "__type__": "cc.ClickEvent",
  707. "target": {
  708. "__id__": 7
  709. },
  710. "component": "",
  711. "_componentId": "d4ba1/gvslImrQRa3LT7bcn",
  712. "handler": "randomMap",
  713. "customEventData": ""
  714. },
  715. {
  716. "__type__": "cc.Node",
  717. "_name": "Clear",
  718. "_objFlags": 0,
  719. "_parent": {
  720. "__id__": 2
  721. },
  722. "_children": [
  723. {
  724. "__id__": 17
  725. }
  726. ],
  727. "_active": true,
  728. "_level": 1,
  729. "_components": [
  730. {
  731. "__id__": 19
  732. },
  733. {
  734. "__id__": 20
  735. }
  736. ],
  737. "_prefab": null,
  738. "_opacity": 255,
  739. "_color": {
  740. "__type__": "cc.Color",
  741. "r": 255,
  742. "g": 255,
  743. "b": 255,
  744. "a": 255
  745. },
  746. "_contentSize": {
  747. "__type__": "cc.Size",
  748. "width": 100,
  749. "height": 40
  750. },
  751. "_anchorPoint": {
  752. "__type__": "cc.Vec2",
  753. "x": 0.5,
  754. "y": 0.5
  755. },
  756. "_position": {
  757. "__type__": "cc.Vec3",
  758. "x": 22,
  759. "y": -287,
  760. "z": 0
  761. },
  762. "_scale": {
  763. "__type__": "cc.Vec3",
  764. "x": 1,
  765. "y": 1,
  766. "z": 1
  767. },
  768. "_quat": {
  769. "__type__": "cc.Quat",
  770. "x": 0,
  771. "y": 0,
  772. "z": 0,
  773. "w": 1
  774. },
  775. "_skewX": 0,
  776. "_skewY": 0,
  777. "_zIndex": 0,
  778. "_is3DNode": false,
  779. "groupIndex": 0,
  780. "_rotationX": 0,
  781. "_rotationY": 0,
  782. "_id": "c5FVrpdGZAYLDe46Bd8twA"
  783. },
  784. {
  785. "__type__": "cc.Node",
  786. "_name": "Label",
  787. "_objFlags": 0,
  788. "_parent": {
  789. "__id__": 16
  790. },
  791. "_children": [],
  792. "_active": true,
  793. "_level": 0,
  794. "_components": [
  795. {
  796. "__id__": 18
  797. }
  798. ],
  799. "_prefab": null,
  800. "_opacity": 255,
  801. "_color": {
  802. "__type__": "cc.Color",
  803. "r": 0,
  804. "g": 0,
  805. "b": 0,
  806. "a": 255
  807. },
  808. "_contentSize": {
  809. "__type__": "cc.Size",
  810. "width": 100,
  811. "height": 40
  812. },
  813. "_anchorPoint": {
  814. "__type__": "cc.Vec2",
  815. "x": 0.5,
  816. "y": 0.5
  817. },
  818. "_position": {
  819. "__type__": "cc.Vec3",
  820. "x": 0,
  821. "y": 0,
  822. "z": 0
  823. },
  824. "_scale": {
  825. "__type__": "cc.Vec3",
  826. "x": 1,
  827. "y": 1,
  828. "z": 1
  829. },
  830. "_quat": {
  831. "__type__": "cc.Quat",
  832. "x": 0,
  833. "y": 0,
  834. "z": 0,
  835. "w": 1
  836. },
  837. "_skewX": 0,
  838. "_skewY": 0,
  839. "_zIndex": 0,
  840. "_is3DNode": false,
  841. "groupIndex": 0,
  842. "_rotationX": 0,
  843. "_rotationY": 0,
  844. "_id": "2bqWw7yY1NrrDkmRdFKTEV"
  845. },
  846. {
  847. "__type__": "cc.Label",
  848. "_name": "",
  849. "_objFlags": 0,
  850. "node": {
  851. "__id__": 17
  852. },
  853. "_enabled": true,
  854. "_srcBlendFactor": 1,
  855. "_dstBlendFactor": 771,
  856. "_useOriginalSize": false,
  857. "_string": "清空",
  858. "_N$string": "清空",
  859. "_fontSize": 20,
  860. "_lineHeight": 40,
  861. "_enableWrapText": false,
  862. "_N$file": null,
  863. "_isSystemFontUsed": true,
  864. "_spacingX": 0,
  865. "_N$horizontalAlign": 1,
  866. "_N$verticalAlign": 1,
  867. "_N$fontFamily": "Arial",
  868. "_N$overflow": 1,
  869. "_id": "aal/ODMllBsalm8Ot2XUu2"
  870. },
  871. {
  872. "__type__": "cc.Sprite",
  873. "_name": "",
  874. "_objFlags": 0,
  875. "node": {
  876. "__id__": 16
  877. },
  878. "_enabled": true,
  879. "_srcBlendFactor": 770,
  880. "_dstBlendFactor": 771,
  881. "_spriteFrame": {
  882. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  883. },
  884. "_type": 1,
  885. "_sizeMode": 0,
  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. "_state": 0,
  896. "_atlas": null,
  897. "_id": "dfJdytKFJN2KkFCK8pxPz8"
  898. },
  899. {
  900. "__type__": "cc.Button",
  901. "_name": "",
  902. "_objFlags": 0,
  903. "node": {
  904. "__id__": 16
  905. },
  906. "_enabled": true,
  907. "duration": 0.1,
  908. "zoomScale": 1.2,
  909. "clickEvents": [
  910. {
  911. "__id__": 21
  912. }
  913. ],
  914. "_N$interactable": true,
  915. "_N$enableAutoGrayEffect": false,
  916. "_N$transition": 2,
  917. "transition": 2,
  918. "_N$normalColor": {
  919. "__type__": "cc.Color",
  920. "r": 255,
  921. "g": 255,
  922. "b": 255,
  923. "a": 255
  924. },
  925. "_N$pressedColor": {
  926. "__type__": "cc.Color",
  927. "r": 255,
  928. "g": 255,
  929. "b": 255,
  930. "a": 255
  931. },
  932. "pressedColor": {
  933. "__type__": "cc.Color",
  934. "r": 255,
  935. "g": 255,
  936. "b": 255,
  937. "a": 255
  938. },
  939. "_N$hoverColor": {
  940. "__type__": "cc.Color",
  941. "r": 255,
  942. "g": 255,
  943. "b": 255,
  944. "a": 255
  945. },
  946. "hoverColor": {
  947. "__type__": "cc.Color",
  948. "r": 255,
  949. "g": 255,
  950. "b": 255,
  951. "a": 255
  952. },
  953. "_N$disabledColor": {
  954. "__type__": "cc.Color",
  955. "r": 255,
  956. "g": 255,
  957. "b": 255,
  958. "a": 255
  959. },
  960. "_N$normalSprite": {
  961. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  962. },
  963. "_N$pressedSprite": {
  964. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  965. },
  966. "pressedSprite": {
  967. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  968. },
  969. "_N$hoverSprite": {
  970. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  971. },
  972. "hoverSprite": {
  973. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  974. },
  975. "_N$disabledSprite": {
  976. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  977. },
  978. "_N$target": {
  979. "__id__": 16
  980. },
  981. "_id": "0a4LiOt3NN8KgOxHgc/6D/"
  982. },
  983. {
  984. "__type__": "cc.ClickEvent",
  985. "target": {
  986. "__id__": 7
  987. },
  988. "component": "",
  989. "_componentId": "d4ba1/gvslImrQRa3LT7bcn",
  990. "handler": "clearMap",
  991. "customEventData": ""
  992. },
  993. {
  994. "__type__": "cc.Node",
  995. "_name": "Allow diagonals",
  996. "_objFlags": 0,
  997. "_parent": {
  998. "__id__": 2
  999. },
  1000. "_children": [
  1001. {
  1002. "__id__": 23
  1003. },
  1004. {
  1005. "__id__": 25
  1006. },
  1007. {
  1008. "__id__": 27
  1009. }
  1010. ],
  1011. "_active": true,
  1012. "_level": 1,
  1013. "_components": [
  1014. {
  1015. "__id__": 29
  1016. }
  1017. ],
  1018. "_prefab": null,
  1019. "_opacity": 255,
  1020. "_color": {
  1021. "__type__": "cc.Color",
  1022. "r": 255,
  1023. "g": 255,
  1024. "b": 255,
  1025. "a": 255
  1026. },
  1027. "_contentSize": {
  1028. "__type__": "cc.Size",
  1029. "width": 28,
  1030. "height": 28
  1031. },
  1032. "_anchorPoint": {
  1033. "__type__": "cc.Vec2",
  1034. "x": 0.5,
  1035. "y": 0.5
  1036. },
  1037. "_position": {
  1038. "__type__": "cc.Vec3",
  1039. "x": 129,
  1040. "y": -204,
  1041. "z": 0
  1042. },
  1043. "_scale": {
  1044. "__type__": "cc.Vec3",
  1045. "x": 1,
  1046. "y": 1,
  1047. "z": 1
  1048. },
  1049. "_quat": {
  1050. "__type__": "cc.Quat",
  1051. "x": 0,
  1052. "y": 0,
  1053. "z": 0,
  1054. "w": 1
  1055. },
  1056. "_skewX": 0,
  1057. "_skewY": 0,
  1058. "_zIndex": 0,
  1059. "_is3DNode": false,
  1060. "groupIndex": 0,
  1061. "_rotationX": 0,
  1062. "_rotationY": 0,
  1063. "_id": "0fhT3qM4hPa5PIKv1P4NGz"
  1064. },
  1065. {
  1066. "__type__": "cc.Node",
  1067. "_name": "Background",
  1068. "_objFlags": 0,
  1069. "_parent": {
  1070. "__id__": 22
  1071. },
  1072. "_children": [],
  1073. "_active": true,
  1074. "_level": 0,
  1075. "_components": [
  1076. {
  1077. "__id__": 24
  1078. }
  1079. ],
  1080. "_prefab": null,
  1081. "_opacity": 255,
  1082. "_color": {
  1083. "__type__": "cc.Color",
  1084. "r": 255,
  1085. "g": 255,
  1086. "b": 255,
  1087. "a": 255
  1088. },
  1089. "_contentSize": {
  1090. "__type__": "cc.Size",
  1091. "width": 28,
  1092. "height": 28
  1093. },
  1094. "_anchorPoint": {
  1095. "__type__": "cc.Vec2",
  1096. "x": 0.5,
  1097. "y": 0.5
  1098. },
  1099. "_position": {
  1100. "__type__": "cc.Vec3",
  1101. "x": 0,
  1102. "y": 0,
  1103. "z": 0
  1104. },
  1105. "_scale": {
  1106. "__type__": "cc.Vec3",
  1107. "x": 1,
  1108. "y": 1,
  1109. "z": 1
  1110. },
  1111. "_quat": {
  1112. "__type__": "cc.Quat",
  1113. "x": 0,
  1114. "y": 0,
  1115. "z": 0,
  1116. "w": 1
  1117. },
  1118. "_skewX": 0,
  1119. "_skewY": 0,
  1120. "_zIndex": 0,
  1121. "_is3DNode": false,
  1122. "groupIndex": 0,
  1123. "_rotationX": 0,
  1124. "_rotationY": 0,
  1125. "_id": "91ZyxBrJtJqb0tKPkzmAHi"
  1126. },
  1127. {
  1128. "__type__": "cc.Sprite",
  1129. "_name": "",
  1130. "_objFlags": 0,
  1131. "node": {
  1132. "__id__": 23
  1133. },
  1134. "_enabled": true,
  1135. "_srcBlendFactor": 770,
  1136. "_dstBlendFactor": 771,
  1137. "_spriteFrame": {
  1138. "__uuid__": "6827ca32-0107-4552-bab2-dfb31799bb44"
  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. "_state": 0,
  1152. "_atlas": null,
  1153. "_id": "aclYIwBa9E/Zf4saX+sTYN"
  1154. },
  1155. {
  1156. "__type__": "cc.Node",
  1157. "_name": "checkmark",
  1158. "_objFlags": 0,
  1159. "_parent": {
  1160. "__id__": 22
  1161. },
  1162. "_children": [],
  1163. "_active": false,
  1164. "_level": 0,
  1165. "_components": [
  1166. {
  1167. "__id__": 26
  1168. }
  1169. ],
  1170. "_prefab": null,
  1171. "_opacity": 255,
  1172. "_color": {
  1173. "__type__": "cc.Color",
  1174. "r": 255,
  1175. "g": 255,
  1176. "b": 255,
  1177. "a": 255
  1178. },
  1179. "_contentSize": {
  1180. "__type__": "cc.Size",
  1181. "width": 28,
  1182. "height": 28
  1183. },
  1184. "_anchorPoint": {
  1185. "__type__": "cc.Vec2",
  1186. "x": 0.5,
  1187. "y": 0.5
  1188. },
  1189. "_position": {
  1190. "__type__": "cc.Vec3",
  1191. "x": 0,
  1192. "y": 0,
  1193. "z": 0
  1194. },
  1195. "_scale": {
  1196. "__type__": "cc.Vec3",
  1197. "x": 1,
  1198. "y": 1,
  1199. "z": 1
  1200. },
  1201. "_quat": {
  1202. "__type__": "cc.Quat",
  1203. "x": 0,
  1204. "y": 0,
  1205. "z": 0,
  1206. "w": 1
  1207. },
  1208. "_skewX": 0,
  1209. "_skewY": 0,
  1210. "_zIndex": 0,
  1211. "_is3DNode": false,
  1212. "groupIndex": 0,
  1213. "_rotationX": 0,
  1214. "_rotationY": 0,
  1215. "_id": "02aqNUqvpExrqpPizb/bmj"
  1216. },
  1217. {
  1218. "__type__": "cc.Sprite",
  1219. "_name": "",
  1220. "_objFlags": 0,
  1221. "node": {
  1222. "__id__": 25
  1223. },
  1224. "_enabled": true,
  1225. "_srcBlendFactor": 770,
  1226. "_dstBlendFactor": 771,
  1227. "_spriteFrame": {
  1228. "__uuid__": "90004ad6-2f6d-40e1-93ef-b714375c6f06"
  1229. },
  1230. "_type": 0,
  1231. "_sizeMode": 2,
  1232. "_fillType": 0,
  1233. "_fillCenter": {
  1234. "__type__": "cc.Vec2",
  1235. "x": 0,
  1236. "y": 0
  1237. },
  1238. "_fillStart": 0,
  1239. "_fillRange": 0,
  1240. "_isTrimmedMode": false,
  1241. "_state": 0,
  1242. "_atlas": null,
  1243. "_id": "56jeJqHUhON4fCm6QwGHPg"
  1244. },
  1245. {
  1246. "__type__": "cc.Node",
  1247. "_name": "New Label",
  1248. "_objFlags": 0,
  1249. "_parent": {
  1250. "__id__": 22
  1251. },
  1252. "_children": [],
  1253. "_active": true,
  1254. "_level": 2,
  1255. "_components": [
  1256. {
  1257. "__id__": 28
  1258. }
  1259. ],
  1260. "_prefab": null,
  1261. "_opacity": 255,
  1262. "_color": {
  1263. "__type__": "cc.Color",
  1264. "r": 0,
  1265. "g": 0,
  1266. "b": 0,
  1267. "a": 255
  1268. },
  1269. "_contentSize": {
  1270. "__type__": "cc.Size",
  1271. "width": 138.97,
  1272. "height": 20
  1273. },
  1274. "_anchorPoint": {
  1275. "__type__": "cc.Vec2",
  1276. "x": 0.5,
  1277. "y": 0.5
  1278. },
  1279. "_position": {
  1280. "__type__": "cc.Vec3",
  1281. "x": 89,
  1282. "y": 0,
  1283. "z": 0
  1284. },
  1285. "_scale": {
  1286. "__type__": "cc.Vec3",
  1287. "x": 1,
  1288. "y": 1,
  1289. "z": 1
  1290. },
  1291. "_quat": {
  1292. "__type__": "cc.Quat",
  1293. "x": 0,
  1294. "y": 0,
  1295. "z": 0,
  1296. "w": 1
  1297. },
  1298. "_skewX": 0,
  1299. "_skewY": 0,
  1300. "_zIndex": 0,
  1301. "_is3DNode": false,
  1302. "groupIndex": 0,
  1303. "_rotationX": 0,
  1304. "_rotationY": 0,
  1305. "_id": "c9kTECADFPqY08I0+Whvmc"
  1306. },
  1307. {
  1308. "__type__": "cc.Label",
  1309. "_name": "",
  1310. "_objFlags": 0,
  1311. "node": {
  1312. "__id__": 27
  1313. },
  1314. "_enabled": true,
  1315. "_srcBlendFactor": 1,
  1316. "_dstBlendFactor": 771,
  1317. "_useOriginalSize": false,
  1318. "_string": "Allow diagonals",
  1319. "_N$string": "Allow diagonals",
  1320. "_fontSize": 20,
  1321. "_lineHeight": 20,
  1322. "_enableWrapText": true,
  1323. "_N$file": null,
  1324. "_isSystemFontUsed": true,
  1325. "_spacingX": 0,
  1326. "_N$horizontalAlign": 1,
  1327. "_N$verticalAlign": 1,
  1328. "_N$fontFamily": "Arial",
  1329. "_N$overflow": 0,
  1330. "_id": "e9EnfU5DpCt49L/nWdunto"
  1331. },
  1332. {
  1333. "__type__": "cc.Toggle",
  1334. "_name": "",
  1335. "_objFlags": 0,
  1336. "node": {
  1337. "__id__": 22
  1338. },
  1339. "_enabled": true,
  1340. "duration": 0.1,
  1341. "zoomScale": 1.2,
  1342. "clickEvents": [],
  1343. "_N$interactable": true,
  1344. "_N$enableAutoGrayEffect": false,
  1345. "_N$transition": 3,
  1346. "transition": 3,
  1347. "_N$normalColor": {
  1348. "__type__": "cc.Color",
  1349. "r": 214,
  1350. "g": 214,
  1351. "b": 214,
  1352. "a": 255
  1353. },
  1354. "_N$pressedColor": {
  1355. "__type__": "cc.Color",
  1356. "r": 211,
  1357. "g": 211,
  1358. "b": 211,
  1359. "a": 255
  1360. },
  1361. "pressedColor": {
  1362. "__type__": "cc.Color",
  1363. "r": 211,
  1364. "g": 211,
  1365. "b": 211,
  1366. "a": 255
  1367. },
  1368. "_N$hoverColor": {
  1369. "__type__": "cc.Color",
  1370. "r": 255,
  1371. "g": 255,
  1372. "b": 255,
  1373. "a": 255
  1374. },
  1375. "hoverColor": {
  1376. "__type__": "cc.Color",
  1377. "r": 255,
  1378. "g": 255,
  1379. "b": 255,
  1380. "a": 255
  1381. },
  1382. "_N$disabledColor": {
  1383. "__type__": "cc.Color",
  1384. "r": 124,
  1385. "g": 124,
  1386. "b": 124,
  1387. "a": 255
  1388. },
  1389. "_N$normalSprite": null,
  1390. "_N$pressedSprite": null,
  1391. "pressedSprite": null,
  1392. "_N$hoverSprite": null,
  1393. "hoverSprite": null,
  1394. "_N$disabledSprite": null,
  1395. "_N$target": {
  1396. "__id__": 23
  1397. },
  1398. "_N$isChecked": false,
  1399. "toggleGroup": null,
  1400. "checkMark": {
  1401. "__id__": 26
  1402. },
  1403. "checkEvents": [
  1404. {
  1405. "__id__": 30
  1406. }
  1407. ],
  1408. "_id": "a2wyL8imhGJI+ST240/E/e"
  1409. },
  1410. {
  1411. "__type__": "cc.ClickEvent",
  1412. "target": {
  1413. "__id__": 7
  1414. },
  1415. "component": "",
  1416. "_componentId": "d4ba1/gvslImrQRa3LT7bcn",
  1417. "handler": "setAllowDiagonals",
  1418. "customEventData": ""
  1419. },
  1420. {
  1421. "__type__": "cc.Node",
  1422. "_name": "Tweak diagonal cost",
  1423. "_objFlags": 0,
  1424. "_parent": {
  1425. "__id__": 2
  1426. },
  1427. "_children": [
  1428. {
  1429. "__id__": 32
  1430. },
  1431. {
  1432. "__id__": 34
  1433. },
  1434. {
  1435. "__id__": 36
  1436. }
  1437. ],
  1438. "_active": true,
  1439. "_level": 1,
  1440. "_components": [
  1441. {
  1442. "__id__": 38
  1443. }
  1444. ],
  1445. "_prefab": null,
  1446. "_opacity": 255,
  1447. "_color": {
  1448. "__type__": "cc.Color",
  1449. "r": 255,
  1450. "g": 255,
  1451. "b": 255,
  1452. "a": 255
  1453. },
  1454. "_contentSize": {
  1455. "__type__": "cc.Size",
  1456. "width": 28,
  1457. "height": 28
  1458. },
  1459. "_anchorPoint": {
  1460. "__type__": "cc.Vec2",
  1461. "x": 0.5,
  1462. "y": 0.5
  1463. },
  1464. "_position": {
  1465. "__type__": "cc.Vec3",
  1466. "x": 129,
  1467. "y": -238,
  1468. "z": 0
  1469. },
  1470. "_scale": {
  1471. "__type__": "cc.Vec3",
  1472. "x": 1,
  1473. "y": 1,
  1474. "z": 1
  1475. },
  1476. "_quat": {
  1477. "__type__": "cc.Quat",
  1478. "x": 0,
  1479. "y": 0,
  1480. "z": 0,
  1481. "w": 1
  1482. },
  1483. "_skewX": 0,
  1484. "_skewY": 0,
  1485. "_zIndex": 0,
  1486. "_is3DNode": false,
  1487. "groupIndex": 0,
  1488. "_rotationX": 0,
  1489. "_rotationY": 0,
  1490. "_id": "b4nHDNfNBIQbK2hGKYYLuB"
  1491. },
  1492. {
  1493. "__type__": "cc.Node",
  1494. "_name": "Background",
  1495. "_objFlags": 0,
  1496. "_parent": {
  1497. "__id__": 31
  1498. },
  1499. "_children": [],
  1500. "_active": true,
  1501. "_level": 0,
  1502. "_components": [
  1503. {
  1504. "__id__": 33
  1505. }
  1506. ],
  1507. "_prefab": null,
  1508. "_opacity": 255,
  1509. "_color": {
  1510. "__type__": "cc.Color",
  1511. "r": 255,
  1512. "g": 255,
  1513. "b": 255,
  1514. "a": 255
  1515. },
  1516. "_contentSize": {
  1517. "__type__": "cc.Size",
  1518. "width": 28,
  1519. "height": 28
  1520. },
  1521. "_anchorPoint": {
  1522. "__type__": "cc.Vec2",
  1523. "x": 0.5,
  1524. "y": 0.5
  1525. },
  1526. "_position": {
  1527. "__type__": "cc.Vec3",
  1528. "x": 0,
  1529. "y": 0,
  1530. "z": 0
  1531. },
  1532. "_scale": {
  1533. "__type__": "cc.Vec3",
  1534. "x": 1,
  1535. "y": 1,
  1536. "z": 1
  1537. },
  1538. "_quat": {
  1539. "__type__": "cc.Quat",
  1540. "x": 0,
  1541. "y": 0,
  1542. "z": 0,
  1543. "w": 1
  1544. },
  1545. "_skewX": 0,
  1546. "_skewY": 0,
  1547. "_zIndex": 0,
  1548. "_is3DNode": false,
  1549. "groupIndex": 0,
  1550. "_rotationX": 0,
  1551. "_rotationY": 0,
  1552. "_id": "20WMerMxFCD6lHk17vckGE"
  1553. },
  1554. {
  1555. "__type__": "cc.Sprite",
  1556. "_name": "",
  1557. "_objFlags": 0,
  1558. "node": {
  1559. "__id__": 32
  1560. },
  1561. "_enabled": true,
  1562. "_srcBlendFactor": 770,
  1563. "_dstBlendFactor": 771,
  1564. "_spriteFrame": {
  1565. "__uuid__": "6827ca32-0107-4552-bab2-dfb31799bb44"
  1566. },
  1567. "_type": 0,
  1568. "_sizeMode": 1,
  1569. "_fillType": 0,
  1570. "_fillCenter": {
  1571. "__type__": "cc.Vec2",
  1572. "x": 0,
  1573. "y": 0
  1574. },
  1575. "_fillStart": 0,
  1576. "_fillRange": 0,
  1577. "_isTrimmedMode": true,
  1578. "_state": 0,
  1579. "_atlas": null,
  1580. "_id": "deKeGNPYVN1KLPIcx6anOL"
  1581. },
  1582. {
  1583. "__type__": "cc.Node",
  1584. "_name": "checkmark",
  1585. "_objFlags": 0,
  1586. "_parent": {
  1587. "__id__": 31
  1588. },
  1589. "_children": [],
  1590. "_active": false,
  1591. "_level": 0,
  1592. "_components": [
  1593. {
  1594. "__id__": 35
  1595. }
  1596. ],
  1597. "_prefab": null,
  1598. "_opacity": 255,
  1599. "_color": {
  1600. "__type__": "cc.Color",
  1601. "r": 255,
  1602. "g": 255,
  1603. "b": 255,
  1604. "a": 255
  1605. },
  1606. "_contentSize": {
  1607. "__type__": "cc.Size",
  1608. "width": 28,
  1609. "height": 28
  1610. },
  1611. "_anchorPoint": {
  1612. "__type__": "cc.Vec2",
  1613. "x": 0.5,
  1614. "y": 0.5
  1615. },
  1616. "_position": {
  1617. "__type__": "cc.Vec3",
  1618. "x": 0,
  1619. "y": 0,
  1620. "z": 0
  1621. },
  1622. "_scale": {
  1623. "__type__": "cc.Vec3",
  1624. "x": 1,
  1625. "y": 1,
  1626. "z": 1
  1627. },
  1628. "_quat": {
  1629. "__type__": "cc.Quat",
  1630. "x": 0,
  1631. "y": 0,
  1632. "z": 0,
  1633. "w": 1
  1634. },
  1635. "_skewX": 0,
  1636. "_skewY": 0,
  1637. "_zIndex": 0,
  1638. "_is3DNode": false,
  1639. "groupIndex": 0,
  1640. "_rotationX": 0,
  1641. "_rotationY": 0,
  1642. "_id": "cepMoApIhMt7R4lhLpi4NK"
  1643. },
  1644. {
  1645. "__type__": "cc.Sprite",
  1646. "_name": "",
  1647. "_objFlags": 0,
  1648. "node": {
  1649. "__id__": 34
  1650. },
  1651. "_enabled": true,
  1652. "_srcBlendFactor": 770,
  1653. "_dstBlendFactor": 771,
  1654. "_spriteFrame": {
  1655. "__uuid__": "90004ad6-2f6d-40e1-93ef-b714375c6f06"
  1656. },
  1657. "_type": 0,
  1658. "_sizeMode": 2,
  1659. "_fillType": 0,
  1660. "_fillCenter": {
  1661. "__type__": "cc.Vec2",
  1662. "x": 0,
  1663. "y": 0
  1664. },
  1665. "_fillStart": 0,
  1666. "_fillRange": 0,
  1667. "_isTrimmedMode": false,
  1668. "_state": 0,
  1669. "_atlas": null,
  1670. "_id": "b4riWZW5xLGqzOMQbhFhGp"
  1671. },
  1672. {
  1673. "__type__": "cc.Node",
  1674. "_name": "New Label",
  1675. "_objFlags": 0,
  1676. "_parent": {
  1677. "__id__": 31
  1678. },
  1679. "_children": [],
  1680. "_active": true,
  1681. "_level": 2,
  1682. "_components": [
  1683. {
  1684. "__id__": 37
  1685. }
  1686. ],
  1687. "_prefab": null,
  1688. "_opacity": 255,
  1689. "_color": {
  1690. "__type__": "cc.Color",
  1691. "r": 0,
  1692. "g": 0,
  1693. "b": 0,
  1694. "a": 255
  1695. },
  1696. "_contentSize": {
  1697. "__type__": "cc.Size",
  1698. "width": 116.75,
  1699. "height": 20
  1700. },
  1701. "_anchorPoint": {
  1702. "__type__": "cc.Vec2",
  1703. "x": 0.5,
  1704. "y": 0.5
  1705. },
  1706. "_position": {
  1707. "__type__": "cc.Vec3",
  1708. "x": 89,
  1709. "y": 0,
  1710. "z": 0
  1711. },
  1712. "_scale": {
  1713. "__type__": "cc.Vec3",
  1714. "x": 1,
  1715. "y": 1,
  1716. "z": 1
  1717. },
  1718. "_quat": {
  1719. "__type__": "cc.Quat",
  1720. "x": 0,
  1721. "y": 0,
  1722. "z": 0,
  1723. "w": 1
  1724. },
  1725. "_skewX": 0,
  1726. "_skewY": 0,
  1727. "_zIndex": 0,
  1728. "_is3DNode": false,
  1729. "groupIndex": 0,
  1730. "_rotationX": 0,
  1731. "_rotationY": 0,
  1732. "_id": "32Mi2Z1R5HsKkR9b2DnWH4"
  1733. },
  1734. {
  1735. "__type__": "cc.Label",
  1736. "_name": "",
  1737. "_objFlags": 0,
  1738. "node": {
  1739. "__id__": 36
  1740. },
  1741. "_enabled": true,
  1742. "_srcBlendFactor": 1,
  1743. "_dstBlendFactor": 771,
  1744. "_useOriginalSize": false,
  1745. "_string": "diagonalCost",
  1746. "_N$string": "diagonalCost",
  1747. "_fontSize": 20,
  1748. "_lineHeight": 20,
  1749. "_enableWrapText": true,
  1750. "_N$file": null,
  1751. "_isSystemFontUsed": true,
  1752. "_spacingX": 0,
  1753. "_N$horizontalAlign": 1,
  1754. "_N$verticalAlign": 1,
  1755. "_N$fontFamily": "Arial",
  1756. "_N$overflow": 0,
  1757. "_id": "50lpwYjMtDgoB+jNh128vY"
  1758. },
  1759. {
  1760. "__type__": "cc.Toggle",
  1761. "_name": "",
  1762. "_objFlags": 0,
  1763. "node": {
  1764. "__id__": 31
  1765. },
  1766. "_enabled": true,
  1767. "duration": 0.1,
  1768. "zoomScale": 1.2,
  1769. "clickEvents": [],
  1770. "_N$interactable": true,
  1771. "_N$enableAutoGrayEffect": false,
  1772. "_N$transition": 3,
  1773. "transition": 3,
  1774. "_N$normalColor": {
  1775. "__type__": "cc.Color",
  1776. "r": 214,
  1777. "g": 214,
  1778. "b": 214,
  1779. "a": 255
  1780. },
  1781. "_N$pressedColor": {
  1782. "__type__": "cc.Color",
  1783. "r": 211,
  1784. "g": 211,
  1785. "b": 211,
  1786. "a": 255
  1787. },
  1788. "pressedColor": {
  1789. "__type__": "cc.Color",
  1790. "r": 211,
  1791. "g": 211,
  1792. "b": 211,
  1793. "a": 255
  1794. },
  1795. "_N$hoverColor": {
  1796. "__type__": "cc.Color",
  1797. "r": 255,
  1798. "g": 255,
  1799. "b": 255,
  1800. "a": 255
  1801. },
  1802. "hoverColor": {
  1803. "__type__": "cc.Color",
  1804. "r": 255,
  1805. "g": 255,
  1806. "b": 255,
  1807. "a": 255
  1808. },
  1809. "_N$disabledColor": {
  1810. "__type__": "cc.Color",
  1811. "r": 124,
  1812. "g": 124,
  1813. "b": 124,
  1814. "a": 255
  1815. },
  1816. "_N$normalSprite": null,
  1817. "_N$pressedSprite": null,
  1818. "pressedSprite": null,
  1819. "_N$hoverSprite": null,
  1820. "hoverSprite": null,
  1821. "_N$disabledSprite": null,
  1822. "_N$target": {
  1823. "__id__": 32
  1824. },
  1825. "_N$isChecked": false,
  1826. "toggleGroup": null,
  1827. "checkMark": {
  1828. "__id__": 35
  1829. },
  1830. "checkEvents": [
  1831. {
  1832. "__id__": 39
  1833. }
  1834. ],
  1835. "_id": "4ctsiSc2BAHrGokRIv/YHW"
  1836. },
  1837. {
  1838. "__type__": "cc.ClickEvent",
  1839. "target": {
  1840. "__id__": 7
  1841. },
  1842. "component": "",
  1843. "_componentId": "d4ba1/gvslImrQRa3LT7bcn",
  1844. "handler": "setDiagonalCost",
  1845. "customEventData": ""
  1846. },
  1847. {
  1848. "__type__": "cc.Node",
  1849. "_name": "Prefer new nodes",
  1850. "_objFlags": 0,
  1851. "_parent": {
  1852. "__id__": 2
  1853. },
  1854. "_children": [
  1855. {
  1856. "__id__": 41
  1857. },
  1858. {
  1859. "__id__": 43
  1860. },
  1861. {
  1862. "__id__": 45
  1863. }
  1864. ],
  1865. "_active": true,
  1866. "_level": 1,
  1867. "_components": [
  1868. {
  1869. "__id__": 47
  1870. }
  1871. ],
  1872. "_prefab": null,
  1873. "_opacity": 255,
  1874. "_color": {
  1875. "__type__": "cc.Color",
  1876. "r": 255,
  1877. "g": 255,
  1878. "b": 255,
  1879. "a": 255
  1880. },
  1881. "_contentSize": {
  1882. "__type__": "cc.Size",
  1883. "width": 28,
  1884. "height": 28
  1885. },
  1886. "_anchorPoint": {
  1887. "__type__": "cc.Vec2",
  1888. "x": 0.5,
  1889. "y": 0.5
  1890. },
  1891. "_position": {
  1892. "__type__": "cc.Vec3",
  1893. "x": 129,
  1894. "y": -272,
  1895. "z": 0
  1896. },
  1897. "_scale": {
  1898. "__type__": "cc.Vec3",
  1899. "x": 1,
  1900. "y": 1,
  1901. "z": 1
  1902. },
  1903. "_quat": {
  1904. "__type__": "cc.Quat",
  1905. "x": 0,
  1906. "y": 0,
  1907. "z": 0,
  1908. "w": 1
  1909. },
  1910. "_skewX": 0,
  1911. "_skewY": 0,
  1912. "_zIndex": 0,
  1913. "_is3DNode": false,
  1914. "groupIndex": 0,
  1915. "_rotationX": 0,
  1916. "_rotationY": 0,
  1917. "_id": "eedbiZAcFEUq7x6dXqpCVw"
  1918. },
  1919. {
  1920. "__type__": "cc.Node",
  1921. "_name": "Background",
  1922. "_objFlags": 0,
  1923. "_parent": {
  1924. "__id__": 40
  1925. },
  1926. "_children": [],
  1927. "_active": true,
  1928. "_level": 0,
  1929. "_components": [
  1930. {
  1931. "__id__": 42
  1932. }
  1933. ],
  1934. "_prefab": null,
  1935. "_opacity": 255,
  1936. "_color": {
  1937. "__type__": "cc.Color",
  1938. "r": 255,
  1939. "g": 255,
  1940. "b": 255,
  1941. "a": 255
  1942. },
  1943. "_contentSize": {
  1944. "__type__": "cc.Size",
  1945. "width": 28,
  1946. "height": 28
  1947. },
  1948. "_anchorPoint": {
  1949. "__type__": "cc.Vec2",
  1950. "x": 0.5,
  1951. "y": 0.5
  1952. },
  1953. "_position": {
  1954. "__type__": "cc.Vec3",
  1955. "x": 0,
  1956. "y": 0,
  1957. "z": 0
  1958. },
  1959. "_scale": {
  1960. "__type__": "cc.Vec3",
  1961. "x": 1,
  1962. "y": 1,
  1963. "z": 1
  1964. },
  1965. "_quat": {
  1966. "__type__": "cc.Quat",
  1967. "x": 0,
  1968. "y": 0,
  1969. "z": 0,
  1970. "w": 1
  1971. },
  1972. "_skewX": 0,
  1973. "_skewY": 0,
  1974. "_zIndex": 0,
  1975. "_is3DNode": false,
  1976. "groupIndex": 0,
  1977. "_rotationX": 0,
  1978. "_rotationY": 0,
  1979. "_id": "5c6hL7v+9EppTzsD6rhzoF"
  1980. },
  1981. {
  1982. "__type__": "cc.Sprite",
  1983. "_name": "",
  1984. "_objFlags": 0,
  1985. "node": {
  1986. "__id__": 41
  1987. },
  1988. "_enabled": true,
  1989. "_srcBlendFactor": 770,
  1990. "_dstBlendFactor": 771,
  1991. "_spriteFrame": {
  1992. "__uuid__": "6827ca32-0107-4552-bab2-dfb31799bb44"
  1993. },
  1994. "_type": 0,
  1995. "_sizeMode": 1,
  1996. "_fillType": 0,
  1997. "_fillCenter": {
  1998. "__type__": "cc.Vec2",
  1999. "x": 0,
  2000. "y": 0
  2001. },
  2002. "_fillStart": 0,
  2003. "_fillRange": 0,
  2004. "_isTrimmedMode": true,
  2005. "_state": 0,
  2006. "_atlas": null,
  2007. "_id": "fd96YuwxVAoL++In/84cgD"
  2008. },
  2009. {
  2010. "__type__": "cc.Node",
  2011. "_name": "checkmark",
  2012. "_objFlags": 0,
  2013. "_parent": {
  2014. "__id__": 40
  2015. },
  2016. "_children": [],
  2017. "_active": true,
  2018. "_level": 0,
  2019. "_components": [
  2020. {
  2021. "__id__": 44
  2022. }
  2023. ],
  2024. "_prefab": null,
  2025. "_opacity": 255,
  2026. "_color": {
  2027. "__type__": "cc.Color",
  2028. "r": 255,
  2029. "g": 255,
  2030. "b": 255,
  2031. "a": 255
  2032. },
  2033. "_contentSize": {
  2034. "__type__": "cc.Size",
  2035. "width": 28,
  2036. "height": 28
  2037. },
  2038. "_anchorPoint": {
  2039. "__type__": "cc.Vec2",
  2040. "x": 0.5,
  2041. "y": 0.5
  2042. },
  2043. "_position": {
  2044. "__type__": "cc.Vec3",
  2045. "x": 0,
  2046. "y": 0,
  2047. "z": 0
  2048. },
  2049. "_scale": {
  2050. "__type__": "cc.Vec3",
  2051. "x": 1,
  2052. "y": 1,
  2053. "z": 1
  2054. },
  2055. "_quat": {
  2056. "__type__": "cc.Quat",
  2057. "x": 0,
  2058. "y": 0,
  2059. "z": 0,
  2060. "w": 1
  2061. },
  2062. "_skewX": 0,
  2063. "_skewY": 0,
  2064. "_zIndex": 0,
  2065. "_is3DNode": false,
  2066. "groupIndex": 0,
  2067. "_rotationX": 0,
  2068. "_rotationY": 0,
  2069. "_id": "e6GJ9BEPFOa7E5y1640N/3"
  2070. },
  2071. {
  2072. "__type__": "cc.Sprite",
  2073. "_name": "",
  2074. "_objFlags": 0,
  2075. "node": {
  2076. "__id__": 43
  2077. },
  2078. "_enabled": true,
  2079. "_srcBlendFactor": 770,
  2080. "_dstBlendFactor": 771,
  2081. "_spriteFrame": {
  2082. "__uuid__": "90004ad6-2f6d-40e1-93ef-b714375c6f06"
  2083. },
  2084. "_type": 0,
  2085. "_sizeMode": 2,
  2086. "_fillType": 0,
  2087. "_fillCenter": {
  2088. "__type__": "cc.Vec2",
  2089. "x": 0,
  2090. "y": 0
  2091. },
  2092. "_fillStart": 0,
  2093. "_fillRange": 0,
  2094. "_isTrimmedMode": false,
  2095. "_state": 0,
  2096. "_atlas": null,
  2097. "_id": "f03b4bYh5Fl6FWaA1zk/jn"
  2098. },
  2099. {
  2100. "__type__": "cc.Node",
  2101. "_name": "New Label",
  2102. "_objFlags": 0,
  2103. "_parent": {
  2104. "__id__": 40
  2105. },
  2106. "_children": [],
  2107. "_active": true,
  2108. "_level": 2,
  2109. "_components": [
  2110. {
  2111. "__id__": 46
  2112. }
  2113. ],
  2114. "_prefab": null,
  2115. "_opacity": 255,
  2116. "_color": {
  2117. "__type__": "cc.Color",
  2118. "r": 0,
  2119. "g": 0,
  2120. "b": 0,
  2121. "a": 255
  2122. },
  2123. "_contentSize": {
  2124. "__type__": "cc.Size",
  2125. "width": 96.74,
  2126. "height": 20
  2127. },
  2128. "_anchorPoint": {
  2129. "__type__": "cc.Vec2",
  2130. "x": 0.5,
  2131. "y": 0.5
  2132. },
  2133. "_position": {
  2134. "__type__": "cc.Vec3",
  2135. "x": 89,
  2136. "y": 0,
  2137. "z": 0
  2138. },
  2139. "_scale": {
  2140. "__type__": "cc.Vec3",
  2141. "x": 1,
  2142. "y": 1,
  2143. "z": 1
  2144. },
  2145. "_quat": {
  2146. "__type__": "cc.Quat",
  2147. "x": 0,
  2148. "y": 0,
  2149. "z": 0,
  2150. "w": 1
  2151. },
  2152. "_skewX": 0,
  2153. "_skewY": 0,
  2154. "_zIndex": 0,
  2155. "_is3DNode": false,
  2156. "groupIndex": 0,
  2157. "_rotationX": 0,
  2158. "_rotationY": 0,
  2159. "_id": "f5Wz7IeDRAprzBgAzOBwNH"
  2160. },
  2161. {
  2162. "__type__": "cc.Label",
  2163. "_name": "",
  2164. "_objFlags": 0,
  2165. "node": {
  2166. "__id__": 45
  2167. },
  2168. "_enabled": true,
  2169. "_srcBlendFactor": 1,
  2170. "_dstBlendFactor": 771,
  2171. "_useOriginalSize": false,
  2172. "_string": "badSorting",
  2173. "_N$string": "badSorting",
  2174. "_fontSize": 20,
  2175. "_lineHeight": 20,
  2176. "_enableWrapText": true,
  2177. "_N$file": null,
  2178. "_isSystemFontUsed": true,
  2179. "_spacingX": 0,
  2180. "_N$horizontalAlign": 1,
  2181. "_N$verticalAlign": 1,
  2182. "_N$fontFamily": "Arial",
  2183. "_N$overflow": 0,
  2184. "_id": "2aozPqqzdFE5V1u+Z5I49u"
  2185. },
  2186. {
  2187. "__type__": "cc.Toggle",
  2188. "_name": "",
  2189. "_objFlags": 0,
  2190. "node": {
  2191. "__id__": 40
  2192. },
  2193. "_enabled": true,
  2194. "duration": 0.1,
  2195. "zoomScale": 1.2,
  2196. "clickEvents": [],
  2197. "_N$interactable": true,
  2198. "_N$enableAutoGrayEffect": false,
  2199. "_N$transition": 3,
  2200. "transition": 3,
  2201. "_N$normalColor": {
  2202. "__type__": "cc.Color",
  2203. "r": 214,
  2204. "g": 214,
  2205. "b": 214,
  2206. "a": 255
  2207. },
  2208. "_N$pressedColor": {
  2209. "__type__": "cc.Color",
  2210. "r": 211,
  2211. "g": 211,
  2212. "b": 211,
  2213. "a": 255
  2214. },
  2215. "pressedColor": {
  2216. "__type__": "cc.Color",
  2217. "r": 211,
  2218. "g": 211,
  2219. "b": 211,
  2220. "a": 255
  2221. },
  2222. "_N$hoverColor": {
  2223. "__type__": "cc.Color",
  2224. "r": 255,
  2225. "g": 255,
  2226. "b": 255,
  2227. "a": 255
  2228. },
  2229. "hoverColor": {
  2230. "__type__": "cc.Color",
  2231. "r": 255,
  2232. "g": 255,
  2233. "b": 255,
  2234. "a": 255
  2235. },
  2236. "_N$disabledColor": {
  2237. "__type__": "cc.Color",
  2238. "r": 124,
  2239. "g": 124,
  2240. "b": 124,
  2241. "a": 255
  2242. },
  2243. "_N$normalSprite": null,
  2244. "_N$pressedSprite": null,
  2245. "pressedSprite": null,
  2246. "_N$hoverSprite": null,
  2247. "hoverSprite": null,
  2248. "_N$disabledSprite": null,
  2249. "_N$target": {
  2250. "__id__": 41
  2251. },
  2252. "_N$isChecked": true,
  2253. "toggleGroup": null,
  2254. "checkMark": {
  2255. "__id__": 44
  2256. },
  2257. "checkEvents": [
  2258. {
  2259. "__id__": 48
  2260. }
  2261. ],
  2262. "_id": "3fpXUJYDBLCrGwuCYGzn46"
  2263. },
  2264. {
  2265. "__type__": "cc.ClickEvent",
  2266. "target": {
  2267. "__id__": 7
  2268. },
  2269. "component": "",
  2270. "_componentId": "d4ba1/gvslImrQRa3LT7bcn",
  2271. "handler": "setBadSorting",
  2272. "customEventData": ""
  2273. },
  2274. {
  2275. "__type__": "cc.Node",
  2276. "_name": "Dot product tie breaker",
  2277. "_objFlags": 0,
  2278. "_parent": {
  2279. "__id__": 2
  2280. },
  2281. "_children": [
  2282. {
  2283. "__id__": 50
  2284. },
  2285. {
  2286. "__id__": 52
  2287. },
  2288. {
  2289. "__id__": 54
  2290. }
  2291. ],
  2292. "_active": true,
  2293. "_level": 1,
  2294. "_components": [
  2295. {
  2296. "__id__": 56
  2297. }
  2298. ],
  2299. "_prefab": null,
  2300. "_opacity": 255,
  2301. "_color": {
  2302. "__type__": "cc.Color",
  2303. "r": 255,
  2304. "g": 255,
  2305. "b": 255,
  2306. "a": 255
  2307. },
  2308. "_contentSize": {
  2309. "__type__": "cc.Size",
  2310. "width": 28,
  2311. "height": 28
  2312. },
  2313. "_anchorPoint": {
  2314. "__type__": "cc.Vec2",
  2315. "x": 0.5,
  2316. "y": 0.5
  2317. },
  2318. "_position": {
  2319. "__type__": "cc.Vec3",
  2320. "x": 129,
  2321. "y": -304,
  2322. "z": 0
  2323. },
  2324. "_scale": {
  2325. "__type__": "cc.Vec3",
  2326. "x": 1,
  2327. "y": 1,
  2328. "z": 1
  2329. },
  2330. "_quat": {
  2331. "__type__": "cc.Quat",
  2332. "x": 0,
  2333. "y": 0,
  2334. "z": 0,
  2335. "w": 1
  2336. },
  2337. "_skewX": 0,
  2338. "_skewY": 0,
  2339. "_zIndex": 0,
  2340. "_is3DNode": false,
  2341. "groupIndex": 0,
  2342. "_rotationX": 0,
  2343. "_rotationY": 0,
  2344. "_id": "d29EQJ4GxMeafQGZo9L4Mk"
  2345. },
  2346. {
  2347. "__type__": "cc.Node",
  2348. "_name": "Background",
  2349. "_objFlags": 0,
  2350. "_parent": {
  2351. "__id__": 49
  2352. },
  2353. "_children": [],
  2354. "_active": true,
  2355. "_level": 0,
  2356. "_components": [
  2357. {
  2358. "__id__": 51
  2359. }
  2360. ],
  2361. "_prefab": null,
  2362. "_opacity": 255,
  2363. "_color": {
  2364. "__type__": "cc.Color",
  2365. "r": 255,
  2366. "g": 255,
  2367. "b": 255,
  2368. "a": 255
  2369. },
  2370. "_contentSize": {
  2371. "__type__": "cc.Size",
  2372. "width": 28,
  2373. "height": 28
  2374. },
  2375. "_anchorPoint": {
  2376. "__type__": "cc.Vec2",
  2377. "x": 0.5,
  2378. "y": 0.5
  2379. },
  2380. "_position": {
  2381. "__type__": "cc.Vec3",
  2382. "x": 0,
  2383. "y": 0,
  2384. "z": 0
  2385. },
  2386. "_scale": {
  2387. "__type__": "cc.Vec3",
  2388. "x": 1,
  2389. "y": 1,
  2390. "z": 1
  2391. },
  2392. "_quat": {
  2393. "__type__": "cc.Quat",
  2394. "x": 0,
  2395. "y": 0,
  2396. "z": 0,
  2397. "w": 1
  2398. },
  2399. "_skewX": 0,
  2400. "_skewY": 0,
  2401. "_zIndex": 0,
  2402. "_is3DNode": false,
  2403. "groupIndex": 0,
  2404. "_rotationX": 0,
  2405. "_rotationY": 0,
  2406. "_id": "bfMD7n82lLNojSSn7HPEtc"
  2407. },
  2408. {
  2409. "__type__": "cc.Sprite",
  2410. "_name": "",
  2411. "_objFlags": 0,
  2412. "node": {
  2413. "__id__": 50
  2414. },
  2415. "_enabled": true,
  2416. "_srcBlendFactor": 770,
  2417. "_dstBlendFactor": 771,
  2418. "_spriteFrame": {
  2419. "__uuid__": "6827ca32-0107-4552-bab2-dfb31799bb44"
  2420. },
  2421. "_type": 0,
  2422. "_sizeMode": 1,
  2423. "_fillType": 0,
  2424. "_fillCenter": {
  2425. "__type__": "cc.Vec2",
  2426. "x": 0,
  2427. "y": 0
  2428. },
  2429. "_fillStart": 0,
  2430. "_fillRange": 0,
  2431. "_isTrimmedMode": true,
  2432. "_state": 0,
  2433. "_atlas": null,
  2434. "_id": "6b1jlPfVFDVoAqOrl7JGvl"
  2435. },
  2436. {
  2437. "__type__": "cc.Node",
  2438. "_name": "checkmark",
  2439. "_objFlags": 0,
  2440. "_parent": {
  2441. "__id__": 49
  2442. },
  2443. "_children": [],
  2444. "_active": false,
  2445. "_level": 0,
  2446. "_components": [
  2447. {
  2448. "__id__": 53
  2449. }
  2450. ],
  2451. "_prefab": null,
  2452. "_opacity": 255,
  2453. "_color": {
  2454. "__type__": "cc.Color",
  2455. "r": 255,
  2456. "g": 255,
  2457. "b": 255,
  2458. "a": 255
  2459. },
  2460. "_contentSize": {
  2461. "__type__": "cc.Size",
  2462. "width": 28,
  2463. "height": 28
  2464. },
  2465. "_anchorPoint": {
  2466. "__type__": "cc.Vec2",
  2467. "x": 0.5,
  2468. "y": 0.5
  2469. },
  2470. "_position": {
  2471. "__type__": "cc.Vec3",
  2472. "x": 0,
  2473. "y": 0,
  2474. "z": 0
  2475. },
  2476. "_scale": {
  2477. "__type__": "cc.Vec3",
  2478. "x": 1,
  2479. "y": 1,
  2480. "z": 1
  2481. },
  2482. "_quat": {
  2483. "__type__": "cc.Quat",
  2484. "x": 0,
  2485. "y": 0,
  2486. "z": 0,
  2487. "w": 1
  2488. },
  2489. "_skewX": 0,
  2490. "_skewY": 0,
  2491. "_zIndex": 0,
  2492. "_is3DNode": false,
  2493. "groupIndex": 0,
  2494. "_rotationX": 0,
  2495. "_rotationY": 0,
  2496. "_id": "33rg6U1khKILpfrn+qNKag"
  2497. },
  2498. {
  2499. "__type__": "cc.Sprite",
  2500. "_name": "",
  2501. "_objFlags": 0,
  2502. "node": {
  2503. "__id__": 52
  2504. },
  2505. "_enabled": true,
  2506. "_srcBlendFactor": 770,
  2507. "_dstBlendFactor": 771,
  2508. "_spriteFrame": {
  2509. "__uuid__": "90004ad6-2f6d-40e1-93ef-b714375c6f06"
  2510. },
  2511. "_type": 0,
  2512. "_sizeMode": 2,
  2513. "_fillType": 0,
  2514. "_fillCenter": {
  2515. "__type__": "cc.Vec2",
  2516. "x": 0,
  2517. "y": 0
  2518. },
  2519. "_fillStart": 0,
  2520. "_fillRange": 0,
  2521. "_isTrimmedMode": false,
  2522. "_state": 0,
  2523. "_atlas": null,
  2524. "_id": "c4GloCqWdNtYC5VBXTnpoP"
  2525. },
  2526. {
  2527. "__type__": "cc.Node",
  2528. "_name": "New Label",
  2529. "_objFlags": 0,
  2530. "_parent": {
  2531. "__id__": 49
  2532. },
  2533. "_children": [],
  2534. "_active": true,
  2535. "_level": 2,
  2536. "_components": [
  2537. {
  2538. "__id__": 55
  2539. }
  2540. ],
  2541. "_prefab": null,
  2542. "_opacity": 255,
  2543. "_color": {
  2544. "__type__": "cc.Color",
  2545. "r": 0,
  2546. "g": 0,
  2547. "b": 0,
  2548. "a": 255
  2549. },
  2550. "_contentSize": {
  2551. "__type__": "cc.Size",
  2552. "width": 122.66,
  2553. "height": 20
  2554. },
  2555. "_anchorPoint": {
  2556. "__type__": "cc.Vec2",
  2557. "x": 0.5,
  2558. "y": 0.5
  2559. },
  2560. "_position": {
  2561. "__type__": "cc.Vec3",
  2562. "x": 89,
  2563. "y": 0,
  2564. "z": 0
  2565. },
  2566. "_scale": {
  2567. "__type__": "cc.Vec3",
  2568. "x": 1,
  2569. "y": 1,
  2570. "z": 1
  2571. },
  2572. "_quat": {
  2573. "__type__": "cc.Quat",
  2574. "x": 0,
  2575. "y": 0,
  2576. "z": 0,
  2577. "w": 1
  2578. },
  2579. "_skewX": 0,
  2580. "_skewY": 0,
  2581. "_zIndex": 0,
  2582. "_is3DNode": false,
  2583. "groupIndex": 0,
  2584. "_rotationX": 0,
  2585. "_rotationY": 0,
  2586. "_id": "b3ysRhUJ1Oy7m06/TPXzdn"
  2587. },
  2588. {
  2589. "__type__": "cc.Label",
  2590. "_name": "",
  2591. "_objFlags": 0,
  2592. "node": {
  2593. "__id__": 54
  2594. },
  2595. "_enabled": true,
  2596. "_srcBlendFactor": 1,
  2597. "_dstBlendFactor": 771,
  2598. "_useOriginalSize": false,
  2599. "_string": "dotTiebreaker",
  2600. "_N$string": "dotTiebreaker",
  2601. "_fontSize": 20,
  2602. "_lineHeight": 20,
  2603. "_enableWrapText": true,
  2604. "_N$file": null,
  2605. "_isSystemFontUsed": true,
  2606. "_spacingX": 0,
  2607. "_N$horizontalAlign": 1,
  2608. "_N$verticalAlign": 1,
  2609. "_N$fontFamily": "Arial",
  2610. "_N$overflow": 0,
  2611. "_id": "1dMmzBP25GU65pkZeVU/R0"
  2612. },
  2613. {
  2614. "__type__": "cc.Toggle",
  2615. "_name": "",
  2616. "_objFlags": 0,
  2617. "node": {
  2618. "__id__": 49
  2619. },
  2620. "_enabled": true,
  2621. "duration": 0.1,
  2622. "zoomScale": 1.2,
  2623. "clickEvents": [],
  2624. "_N$interactable": true,
  2625. "_N$enableAutoGrayEffect": false,
  2626. "_N$transition": 3,
  2627. "transition": 3,
  2628. "_N$normalColor": {
  2629. "__type__": "cc.Color",
  2630. "r": 214,
  2631. "g": 214,
  2632. "b": 214,
  2633. "a": 255
  2634. },
  2635. "_N$pressedColor": {
  2636. "__type__": "cc.Color",
  2637. "r": 211,
  2638. "g": 211,
  2639. "b": 211,
  2640. "a": 255
  2641. },
  2642. "pressedColor": {
  2643. "__type__": "cc.Color",
  2644. "r": 211,
  2645. "g": 211,
  2646. "b": 211,
  2647. "a": 255
  2648. },
  2649. "_N$hoverColor": {
  2650. "__type__": "cc.Color",
  2651. "r": 255,
  2652. "g": 255,
  2653. "b": 255,
  2654. "a": 255
  2655. },
  2656. "hoverColor": {
  2657. "__type__": "cc.Color",
  2658. "r": 255,
  2659. "g": 255,
  2660. "b": 255,
  2661. "a": 255
  2662. },
  2663. "_N$disabledColor": {
  2664. "__type__": "cc.Color",
  2665. "r": 124,
  2666. "g": 124,
  2667. "b": 124,
  2668. "a": 255
  2669. },
  2670. "_N$normalSprite": null,
  2671. "_N$pressedSprite": null,
  2672. "pressedSprite": null,
  2673. "_N$hoverSprite": null,
  2674. "hoverSprite": null,
  2675. "_N$disabledSprite": null,
  2676. "_N$target": {
  2677. "__id__": 50
  2678. },
  2679. "_N$isChecked": false,
  2680. "toggleGroup": null,
  2681. "checkMark": {
  2682. "__id__": 53
  2683. },
  2684. "checkEvents": [
  2685. {
  2686. "__id__": 57
  2687. }
  2688. ],
  2689. "_id": "06XBTFspZJqL6hwpMSPvqt"
  2690. },
  2691. {
  2692. "__type__": "cc.ClickEvent",
  2693. "target": {
  2694. "__id__": 7
  2695. },
  2696. "component": "",
  2697. "_componentId": "d4ba1/gvslImrQRa3LT7bcn",
  2698. "handler": "setDotTiebreaker",
  2699. "customEventData": ""
  2700. },
  2701. {
  2702. "__type__": "cc.Canvas",
  2703. "_name": "",
  2704. "_objFlags": 0,
  2705. "node": {
  2706. "__id__": 2
  2707. },
  2708. "_enabled": true,
  2709. "_designResolution": {
  2710. "__type__": "cc.Size",
  2711. "width": 640,
  2712. "height": 640
  2713. },
  2714. "_fitWidth": true,
  2715. "_fitHeight": true,
  2716. "_id": "fbP+2ypahHl7s8UVGKogBd"
  2717. }
  2718. ]