MainScene.scene 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "MainScene",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "MainScene",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": null,
  26. "_lpos": {
  27. "__type__": "cc.Vec3",
  28. "x": 0,
  29. "y": 0,
  30. "z": 0
  31. },
  32. "_lrot": {
  33. "__type__": "cc.Quat",
  34. "x": 0,
  35. "y": 0,
  36. "z": 0,
  37. "w": 1
  38. },
  39. "_lscale": {
  40. "__type__": "cc.Vec3",
  41. "x": 1,
  42. "y": 1,
  43. "z": 1
  44. },
  45. "_mobility": 0,
  46. "_layer": 1073741824,
  47. "_euler": {
  48. "__type__": "cc.Vec3",
  49. "x": 0,
  50. "y": 0,
  51. "z": 0
  52. },
  53. "autoReleaseAssets": false,
  54. "_globals": {
  55. "__id__": 132
  56. },
  57. "_id": "f7698205-646f-415b-b2e4-00c79a96fe2b"
  58. },
  59. {
  60. "__type__": "cc.Node",
  61. "_name": "Canvas",
  62. "_objFlags": 0,
  63. "__editorExtras__": {},
  64. "_parent": {
  65. "__id__": 1
  66. },
  67. "_children": [
  68. {
  69. "__id__": 3
  70. },
  71. {
  72. "__id__": 5
  73. },
  74. {
  75. "__id__": 8
  76. },
  77. {
  78. "__id__": 11
  79. },
  80. {
  81. "__id__": 16
  82. },
  83. {
  84. "__id__": 57
  85. },
  86. {
  87. "__id__": 83
  88. },
  89. {
  90. "__id__": 127
  91. }
  92. ],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 129
  97. },
  98. {
  99. "__id__": 130
  100. },
  101. {
  102. "__id__": 131
  103. }
  104. ],
  105. "_prefab": null,
  106. "_lpos": {
  107. "__type__": "cc.Vec3",
  108. "x": 375,
  109. "y": 667,
  110. "z": 0
  111. },
  112. "_lrot": {
  113. "__type__": "cc.Quat",
  114. "x": 0,
  115. "y": 0,
  116. "z": 0,
  117. "w": 1
  118. },
  119. "_lscale": {
  120. "__type__": "cc.Vec3",
  121. "x": 1,
  122. "y": 1,
  123. "z": 1
  124. },
  125. "_mobility": 0,
  126. "_layer": 33554432,
  127. "_euler": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_id": "beI88Z2HpFELqR4T5EMHpg"
  134. },
  135. {
  136. "__type__": "cc.Node",
  137. "_name": "Camera",
  138. "_objFlags": 0,
  139. "__editorExtras__": {},
  140. "_parent": {
  141. "__id__": 2
  142. },
  143. "_children": [],
  144. "_active": true,
  145. "_components": [
  146. {
  147. "__id__": 4
  148. }
  149. ],
  150. "_prefab": null,
  151. "_lpos": {
  152. "__type__": "cc.Vec3",
  153. "x": 0,
  154. "y": 0,
  155. "z": 1000
  156. },
  157. "_lrot": {
  158. "__type__": "cc.Quat",
  159. "x": 0,
  160. "y": 0,
  161. "z": 0,
  162. "w": 1
  163. },
  164. "_lscale": {
  165. "__type__": "cc.Vec3",
  166. "x": 1,
  167. "y": 1,
  168. "z": 1
  169. },
  170. "_mobility": 0,
  171. "_layer": 1073741824,
  172. "_euler": {
  173. "__type__": "cc.Vec3",
  174. "x": 0,
  175. "y": 0,
  176. "z": 0
  177. },
  178. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  179. },
  180. {
  181. "__type__": "cc.Camera",
  182. "_name": "",
  183. "_objFlags": 0,
  184. "__editorExtras__": {},
  185. "node": {
  186. "__id__": 3
  187. },
  188. "_enabled": true,
  189. "__prefab": null,
  190. "_projection": 0,
  191. "_priority": 0,
  192. "_fov": 45,
  193. "_fovAxis": 0,
  194. "_orthoHeight": 667,
  195. "_near": 0,
  196. "_far": 2000,
  197. "_color": {
  198. "__type__": "cc.Color",
  199. "r": 0,
  200. "g": 0,
  201. "b": 0,
  202. "a": 255
  203. },
  204. "_depth": 1,
  205. "_stencil": 0,
  206. "_clearFlags": 7,
  207. "_rect": {
  208. "__type__": "cc.Rect",
  209. "x": 0,
  210. "y": 0,
  211. "width": 1,
  212. "height": 1
  213. },
  214. "_aperture": 19,
  215. "_shutter": 7,
  216. "_iso": 0,
  217. "_screenScale": 1,
  218. "_visibility": 1108344832,
  219. "_targetTexture": null,
  220. "_postProcess": null,
  221. "_usePostProcess": false,
  222. "_cameraType": -1,
  223. "_trackingType": 0,
  224. "_id": "63WIch3o5BEYRlXzTT0oWc"
  225. },
  226. {
  227. "__type__": "cc.Node",
  228. "_name": "走廊",
  229. "_objFlags": 0,
  230. "__editorExtras__": {},
  231. "_parent": {
  232. "__id__": 2
  233. },
  234. "_children": [],
  235. "_active": true,
  236. "_components": [
  237. {
  238. "__id__": 6
  239. },
  240. {
  241. "__id__": 7
  242. }
  243. ],
  244. "_prefab": null,
  245. "_lpos": {
  246. "__type__": "cc.Vec3",
  247. "x": 0,
  248. "y": 0,
  249. "z": 0
  250. },
  251. "_lrot": {
  252. "__type__": "cc.Quat",
  253. "x": 0,
  254. "y": 0,
  255. "z": 0,
  256. "w": 1
  257. },
  258. "_lscale": {
  259. "__type__": "cc.Vec3",
  260. "x": 1,
  261. "y": 1,
  262. "z": 1
  263. },
  264. "_mobility": 0,
  265. "_layer": 33554432,
  266. "_euler": {
  267. "__type__": "cc.Vec3",
  268. "x": 0,
  269. "y": 0,
  270. "z": 0
  271. },
  272. "_id": "96JDyzsedEH6DX8WwVbO+U"
  273. },
  274. {
  275. "__type__": "cc.UITransform",
  276. "_name": "",
  277. "_objFlags": 0,
  278. "__editorExtras__": {},
  279. "node": {
  280. "__id__": 5
  281. },
  282. "_enabled": true,
  283. "__prefab": null,
  284. "_contentSize": {
  285. "__type__": "cc.Size",
  286. "width": 404,
  287. "height": 494
  288. },
  289. "_anchorPoint": {
  290. "__type__": "cc.Vec2",
  291. "x": 0.5,
  292. "y": 0.5
  293. },
  294. "_id": "6dKQnNXYBGoLT8+CMa2RoR"
  295. },
  296. {
  297. "__type__": "cc.Sprite",
  298. "_name": "",
  299. "_objFlags": 0,
  300. "__editorExtras__": {},
  301. "node": {
  302. "__id__": 5
  303. },
  304. "_enabled": true,
  305. "__prefab": null,
  306. "_customMaterial": null,
  307. "_srcBlendFactor": 2,
  308. "_dstBlendFactor": 4,
  309. "_color": {
  310. "__type__": "cc.Color",
  311. "r": 255,
  312. "g": 255,
  313. "b": 255,
  314. "a": 255
  315. },
  316. "_spriteFrame": {
  317. "__uuid__": "01a3635e-a492-4c09-8275-2af7cf1ea1c0@f9941",
  318. "__expectedType__": "cc.SpriteFrame"
  319. },
  320. "_type": 0,
  321. "_fillType": 0,
  322. "_sizeMode": 1,
  323. "_fillCenter": {
  324. "__type__": "cc.Vec2",
  325. "x": 0,
  326. "y": 0
  327. },
  328. "_fillStart": 0,
  329. "_fillRange": 0,
  330. "_isTrimmedMode": true,
  331. "_useGrayscale": false,
  332. "_atlas": null,
  333. "_id": "57jMAC0oZHoIT/LAclDluK"
  334. },
  335. {
  336. "__type__": "cc.Node",
  337. "_name": "1",
  338. "_objFlags": 0,
  339. "__editorExtras__": {},
  340. "_parent": {
  341. "__id__": 2
  342. },
  343. "_children": [],
  344. "_active": true,
  345. "_components": [
  346. {
  347. "__id__": 9
  348. },
  349. {
  350. "__id__": 10
  351. }
  352. ],
  353. "_prefab": null,
  354. "_lpos": {
  355. "__type__": "cc.Vec3",
  356. "x": 0.43200000000001637,
  357. "y": 164.04099999999994,
  358. "z": 0
  359. },
  360. "_lrot": {
  361. "__type__": "cc.Quat",
  362. "x": 0,
  363. "y": 0,
  364. "z": 0,
  365. "w": 1
  366. },
  367. "_lscale": {
  368. "__type__": "cc.Vec3",
  369. "x": 1,
  370. "y": 1,
  371. "z": 1
  372. },
  373. "_mobility": 0,
  374. "_layer": 33554432,
  375. "_euler": {
  376. "__type__": "cc.Vec3",
  377. "x": 0,
  378. "y": 0,
  379. "z": 0
  380. },
  381. "_id": "ddg/iselRBn5iTX3bi1jUy"
  382. },
  383. {
  384. "__type__": "cc.UITransform",
  385. "_name": "",
  386. "_objFlags": 0,
  387. "__editorExtras__": {},
  388. "node": {
  389. "__id__": 8
  390. },
  391. "_enabled": true,
  392. "__prefab": null,
  393. "_contentSize": {
  394. "__type__": "cc.Size",
  395. "width": 286,
  396. "height": 494
  397. },
  398. "_anchorPoint": {
  399. "__type__": "cc.Vec2",
  400. "x": 0.5,
  401. "y": 0.5
  402. },
  403. "_id": "b4jqIYO4BMjKiluFc20yyT"
  404. },
  405. {
  406. "__type__": "cc.Sprite",
  407. "_name": "",
  408. "_objFlags": 0,
  409. "__editorExtras__": {},
  410. "node": {
  411. "__id__": 8
  412. },
  413. "_enabled": true,
  414. "__prefab": null,
  415. "_customMaterial": null,
  416. "_srcBlendFactor": 2,
  417. "_dstBlendFactor": 4,
  418. "_color": {
  419. "__type__": "cc.Color",
  420. "r": 255,
  421. "g": 255,
  422. "b": 255,
  423. "a": 255
  424. },
  425. "_spriteFrame": {
  426. "__uuid__": "fd8af2c0-819e-4204-92ad-6d5c1a836eb1@f9941",
  427. "__expectedType__": "cc.SpriteFrame"
  428. },
  429. "_type": 0,
  430. "_fillType": 0,
  431. "_sizeMode": 1,
  432. "_fillCenter": {
  433. "__type__": "cc.Vec2",
  434. "x": 0,
  435. "y": 0
  436. },
  437. "_fillStart": 0,
  438. "_fillRange": 0,
  439. "_isTrimmedMode": true,
  440. "_useGrayscale": false,
  441. "_atlas": null,
  442. "_id": "78/kvPT1FP1onUyhPqapbQ"
  443. },
  444. {
  445. "__type__": "cc.Node",
  446. "_name": "背景",
  447. "_objFlags": 0,
  448. "__editorExtras__": {},
  449. "_parent": {
  450. "__id__": 2
  451. },
  452. "_children": [],
  453. "_active": true,
  454. "_components": [
  455. {
  456. "__id__": 12
  457. },
  458. {
  459. "__id__": 13
  460. },
  461. {
  462. "__id__": 14
  463. },
  464. {
  465. "__id__": 15
  466. }
  467. ],
  468. "_prefab": null,
  469. "_lpos": {
  470. "__type__": "cc.Vec3",
  471. "x": 0,
  472. "y": 0,
  473. "z": 0
  474. },
  475. "_lrot": {
  476. "__type__": "cc.Quat",
  477. "x": 0,
  478. "y": 0,
  479. "z": 0,
  480. "w": 1
  481. },
  482. "_lscale": {
  483. "__type__": "cc.Vec3",
  484. "x": 1,
  485. "y": 1,
  486. "z": 1
  487. },
  488. "_mobility": 0,
  489. "_layer": 33554432,
  490. "_euler": {
  491. "__type__": "cc.Vec3",
  492. "x": 0,
  493. "y": 0,
  494. "z": 0
  495. },
  496. "_id": "7cN4ehZxdBa5yAwTI7+yQX"
  497. },
  498. {
  499. "__type__": "cc.UITransform",
  500. "_name": "",
  501. "_objFlags": 0,
  502. "__editorExtras__": {},
  503. "node": {
  504. "__id__": 11
  505. },
  506. "_enabled": true,
  507. "__prefab": null,
  508. "_contentSize": {
  509. "__type__": "cc.Size",
  510. "width": 750,
  511. "height": 1334
  512. },
  513. "_anchorPoint": {
  514. "__type__": "cc.Vec2",
  515. "x": 0.5,
  516. "y": 0.5
  517. },
  518. "_id": "d4WGHamY9LU6xBAKiSVbjx"
  519. },
  520. {
  521. "__type__": "cc.Sprite",
  522. "_name": "",
  523. "_objFlags": 0,
  524. "__editorExtras__": {},
  525. "node": {
  526. "__id__": 11
  527. },
  528. "_enabled": true,
  529. "__prefab": null,
  530. "_customMaterial": null,
  531. "_srcBlendFactor": 2,
  532. "_dstBlendFactor": 4,
  533. "_color": {
  534. "__type__": "cc.Color",
  535. "r": 255,
  536. "g": 255,
  537. "b": 255,
  538. "a": 255
  539. },
  540. "_spriteFrame": {
  541. "__uuid__": "16f00073-8a1c-4bbf-9cc9-c6bc400df661@f9941",
  542. "__expectedType__": "cc.SpriteFrame"
  543. },
  544. "_type": 0,
  545. "_fillType": 0,
  546. "_sizeMode": 0,
  547. "_fillCenter": {
  548. "__type__": "cc.Vec2",
  549. "x": 0,
  550. "y": 0
  551. },
  552. "_fillStart": 0,
  553. "_fillRange": 0,
  554. "_isTrimmedMode": true,
  555. "_useGrayscale": false,
  556. "_atlas": null,
  557. "_id": "bewfHg/wVMyasyLRy91sPm"
  558. },
  559. {
  560. "__type__": "cc.Widget",
  561. "_name": "",
  562. "_objFlags": 0,
  563. "__editorExtras__": {},
  564. "node": {
  565. "__id__": 11
  566. },
  567. "_enabled": true,
  568. "__prefab": null,
  569. "_alignFlags": 45,
  570. "_target": null,
  571. "_left": 0,
  572. "_right": 0,
  573. "_top": 0,
  574. "_bottom": 0,
  575. "_horizontalCenter": 0,
  576. "_verticalCenter": 0,
  577. "_isAbsLeft": true,
  578. "_isAbsRight": true,
  579. "_isAbsTop": true,
  580. "_isAbsBottom": true,
  581. "_isAbsHorizontalCenter": true,
  582. "_isAbsVerticalCenter": true,
  583. "_originalWidth": 720,
  584. "_originalHeight": 1280,
  585. "_alignMode": 2,
  586. "_lockFlags": 0,
  587. "_id": "51aKpxa7dLuYosDoLfHqT2"
  588. },
  589. {
  590. "__type__": "cc.Mask",
  591. "_name": "",
  592. "_objFlags": 0,
  593. "__editorExtras__": {},
  594. "node": {
  595. "__id__": 11
  596. },
  597. "_enabled": true,
  598. "__prefab": null,
  599. "_type": 0,
  600. "_inverted": false,
  601. "_segments": 64,
  602. "_alphaThreshold": 0.1,
  603. "_id": "55Rl47OxVFE6tpx7MukBPJ"
  604. },
  605. {
  606. "__type__": "cc.Node",
  607. "_name": "顶栏",
  608. "_objFlags": 0,
  609. "__editorExtras__": {},
  610. "_parent": {
  611. "__id__": 2
  612. },
  613. "_children": [
  614. {
  615. "__id__": 17
  616. },
  617. {
  618. "__id__": 20
  619. },
  620. {
  621. "__id__": 26
  622. },
  623. {
  624. "__id__": 29
  625. },
  626. {
  627. "__id__": 32
  628. },
  629. {
  630. "__id__": 35
  631. },
  632. {
  633. "__id__": 38
  634. },
  635. {
  636. "__id__": 41
  637. },
  638. {
  639. "__id__": 44
  640. }
  641. ],
  642. "_active": true,
  643. "_components": [
  644. {
  645. "__id__": 56
  646. }
  647. ],
  648. "_prefab": null,
  649. "_lpos": {
  650. "__type__": "cc.Vec3",
  651. "x": 0,
  652. "y": 0,
  653. "z": 0
  654. },
  655. "_lrot": {
  656. "__type__": "cc.Quat",
  657. "x": 0,
  658. "y": 0,
  659. "z": 0,
  660. "w": 1
  661. },
  662. "_lscale": {
  663. "__type__": "cc.Vec3",
  664. "x": 1,
  665. "y": 1,
  666. "z": 1
  667. },
  668. "_mobility": 0,
  669. "_layer": 33554432,
  670. "_euler": {
  671. "__type__": "cc.Vec3",
  672. "x": 0,
  673. "y": 0,
  674. "z": 0
  675. },
  676. "_id": "53La3jRg5Dr7fFcHIE9HE2"
  677. },
  678. {
  679. "__type__": "cc.Node",
  680. "_name": "黑色顶栏(色号就是纯黑)",
  681. "_objFlags": 0,
  682. "__editorExtras__": {},
  683. "_parent": {
  684. "__id__": 16
  685. },
  686. "_children": [],
  687. "_active": true,
  688. "_components": [
  689. {
  690. "__id__": 18
  691. },
  692. {
  693. "__id__": 19
  694. }
  695. ],
  696. "_prefab": null,
  697. "_lpos": {
  698. "__type__": "cc.Vec3",
  699. "x": 0.977,
  700. "y": 625.501,
  701. "z": 0
  702. },
  703. "_lrot": {
  704. "__type__": "cc.Quat",
  705. "x": 0,
  706. "y": 0,
  707. "z": 0,
  708. "w": 1
  709. },
  710. "_lscale": {
  711. "__type__": "cc.Vec3",
  712. "x": 1,
  713. "y": 1,
  714. "z": 1
  715. },
  716. "_mobility": 0,
  717. "_layer": 33554432,
  718. "_euler": {
  719. "__type__": "cc.Vec3",
  720. "x": 0,
  721. "y": 0,
  722. "z": 0
  723. },
  724. "_id": "edCBFC3TJFI4QWMz/Wq6Sr"
  725. },
  726. {
  727. "__type__": "cc.UITransform",
  728. "_name": "",
  729. "_objFlags": 0,
  730. "__editorExtras__": {},
  731. "node": {
  732. "__id__": 17
  733. },
  734. "_enabled": true,
  735. "__prefab": null,
  736. "_contentSize": {
  737. "__type__": "cc.Size",
  738. "width": 750,
  739. "height": 83.59999999999991
  740. },
  741. "_anchorPoint": {
  742. "__type__": "cc.Vec2",
  743. "x": 0.5,
  744. "y": 0.5
  745. },
  746. "_id": "bfixlJtn9BsaNBSk9cuX6j"
  747. },
  748. {
  749. "__type__": "cc.Sprite",
  750. "_name": "",
  751. "_objFlags": 0,
  752. "__editorExtras__": {},
  753. "node": {
  754. "__id__": 17
  755. },
  756. "_enabled": true,
  757. "__prefab": null,
  758. "_customMaterial": null,
  759. "_srcBlendFactor": 2,
  760. "_dstBlendFactor": 4,
  761. "_color": {
  762. "__type__": "cc.Color",
  763. "r": 255,
  764. "g": 255,
  765. "b": 255,
  766. "a": 255
  767. },
  768. "_spriteFrame": {
  769. "__uuid__": "1d4850fb-7321-4585-806d-c1051084d44a@f9941",
  770. "__expectedType__": "cc.SpriteFrame"
  771. },
  772. "_type": 0,
  773. "_fillType": 0,
  774. "_sizeMode": 0,
  775. "_fillCenter": {
  776. "__type__": "cc.Vec2",
  777. "x": 0,
  778. "y": 0
  779. },
  780. "_fillStart": 0,
  781. "_fillRange": 0,
  782. "_isTrimmedMode": true,
  783. "_useGrayscale": false,
  784. "_atlas": null,
  785. "_id": "6cG2Ky5x5PTpFZ9yNAAaY5"
  786. },
  787. {
  788. "__type__": "cc.Node",
  789. "_name": "痿人数量UI",
  790. "_objFlags": 0,
  791. "__editorExtras__": {},
  792. "_parent": {
  793. "__id__": 16
  794. },
  795. "_children": [
  796. {
  797. "__id__": 21
  798. }
  799. ],
  800. "_active": true,
  801. "_components": [
  802. {
  803. "__id__": 24
  804. },
  805. {
  806. "__id__": 25
  807. }
  808. ],
  809. "_prefab": null,
  810. "_lpos": {
  811. "__type__": "cc.Vec3",
  812. "x": -324.617,
  813. "y": 621.502,
  814. "z": 0
  815. },
  816. "_lrot": {
  817. "__type__": "cc.Quat",
  818. "x": 0,
  819. "y": 0,
  820. "z": 0,
  821. "w": 1
  822. },
  823. "_lscale": {
  824. "__type__": "cc.Vec3",
  825. "x": 1,
  826. "y": 1,
  827. "z": 1
  828. },
  829. "_mobility": 0,
  830. "_layer": 33554432,
  831. "_euler": {
  832. "__type__": "cc.Vec3",
  833. "x": 0,
  834. "y": 0,
  835. "z": 0
  836. },
  837. "_id": "4fztq2U/ZNV6S4wHekec3K"
  838. },
  839. {
  840. "__type__": "cc.Node",
  841. "_name": "伪人数量",
  842. "_objFlags": 0,
  843. "__editorExtras__": {},
  844. "_parent": {
  845. "__id__": 20
  846. },
  847. "_children": [],
  848. "_active": true,
  849. "_components": [
  850. {
  851. "__id__": 22
  852. },
  853. {
  854. "__id__": 23
  855. }
  856. ],
  857. "_prefab": null,
  858. "_lpos": {
  859. "__type__": "cc.Vec3",
  860. "x": 63.864,
  861. "y": 0,
  862. "z": 0
  863. },
  864. "_lrot": {
  865. "__type__": "cc.Quat",
  866. "x": 0,
  867. "y": 0,
  868. "z": 0,
  869. "w": 1
  870. },
  871. "_lscale": {
  872. "__type__": "cc.Vec3",
  873. "x": 1,
  874. "y": 1,
  875. "z": 1
  876. },
  877. "_mobility": 0,
  878. "_layer": 33554432,
  879. "_euler": {
  880. "__type__": "cc.Vec3",
  881. "x": 0,
  882. "y": 0,
  883. "z": 0
  884. },
  885. "_id": "d0NiDTQK1G1KdYwhOn8grM"
  886. },
  887. {
  888. "__type__": "cc.UITransform",
  889. "_name": "",
  890. "_objFlags": 0,
  891. "__editorExtras__": {},
  892. "node": {
  893. "__id__": 21
  894. },
  895. "_enabled": true,
  896. "__prefab": null,
  897. "_contentSize": {
  898. "__type__": "cc.Size",
  899. "width": 33.369140625,
  900. "height": 50.4
  901. },
  902. "_anchorPoint": {
  903. "__type__": "cc.Vec2",
  904. "x": 0.5,
  905. "y": 0.5
  906. },
  907. "_id": "e0vPxn6qRFOIXoxfEz7gaE"
  908. },
  909. {
  910. "__type__": "cc.Label",
  911. "_name": "",
  912. "_objFlags": 0,
  913. "__editorExtras__": {},
  914. "node": {
  915. "__id__": 21
  916. },
  917. "_enabled": true,
  918. "__prefab": null,
  919. "_customMaterial": null,
  920. "_srcBlendFactor": 2,
  921. "_dstBlendFactor": 4,
  922. "_color": {
  923. "__type__": "cc.Color",
  924. "r": 247,
  925. "g": 5,
  926. "b": 5,
  927. "a": 255
  928. },
  929. "_string": "3",
  930. "_horizontalAlign": 1,
  931. "_verticalAlign": 1,
  932. "_actualFontSize": 60,
  933. "_fontSize": 60,
  934. "_fontFamily": "Arial",
  935. "_lineHeight": 40,
  936. "_overflow": 0,
  937. "_enableWrapText": true,
  938. "_font": null,
  939. "_isSystemFontUsed": true,
  940. "_spacingX": 0,
  941. "_isItalic": false,
  942. "_isBold": false,
  943. "_isUnderline": false,
  944. "_underlineHeight": 2,
  945. "_cacheMode": 0,
  946. "_enableOutline": false,
  947. "_outlineColor": {
  948. "__type__": "cc.Color",
  949. "r": 0,
  950. "g": 0,
  951. "b": 0,
  952. "a": 255
  953. },
  954. "_outlineWidth": 2,
  955. "_enableShadow": false,
  956. "_shadowColor": {
  957. "__type__": "cc.Color",
  958. "r": 0,
  959. "g": 0,
  960. "b": 0,
  961. "a": 255
  962. },
  963. "_shadowOffset": {
  964. "__type__": "cc.Vec2",
  965. "x": 2,
  966. "y": 2
  967. },
  968. "_shadowBlur": 2,
  969. "_id": "7dVtNhPYRKPLPTH9tpLWyv"
  970. },
  971. {
  972. "__type__": "cc.UITransform",
  973. "_name": "",
  974. "_objFlags": 0,
  975. "__editorExtras__": {},
  976. "node": {
  977. "__id__": 20
  978. },
  979. "_enabled": true,
  980. "__prefab": null,
  981. "_contentSize": {
  982. "__type__": "cc.Size",
  983. "width": 67,
  984. "height": 67
  985. },
  986. "_anchorPoint": {
  987. "__type__": "cc.Vec2",
  988. "x": 0.5,
  989. "y": 0.5
  990. },
  991. "_id": "9930URHVdH16cAPIoObId/"
  992. },
  993. {
  994. "__type__": "cc.Sprite",
  995. "_name": "",
  996. "_objFlags": 0,
  997. "__editorExtras__": {},
  998. "node": {
  999. "__id__": 20
  1000. },
  1001. "_enabled": true,
  1002. "__prefab": null,
  1003. "_customMaterial": null,
  1004. "_srcBlendFactor": 2,
  1005. "_dstBlendFactor": 4,
  1006. "_color": {
  1007. "__type__": "cc.Color",
  1008. "r": 255,
  1009. "g": 255,
  1010. "b": 255,
  1011. "a": 255
  1012. },
  1013. "_spriteFrame": {
  1014. "__uuid__": "ac156cd5-0ea1-42cb-a608-b7ffcd49a8b2@f9941",
  1015. "__expectedType__": "cc.SpriteFrame"
  1016. },
  1017. "_type": 0,
  1018. "_fillType": 0,
  1019. "_sizeMode": 1,
  1020. "_fillCenter": {
  1021. "__type__": "cc.Vec2",
  1022. "x": 0,
  1023. "y": 0
  1024. },
  1025. "_fillStart": 0,
  1026. "_fillRange": 0,
  1027. "_isTrimmedMode": true,
  1028. "_useGrayscale": false,
  1029. "_atlas": null,
  1030. "_id": "e6Bl1pfWlHh4ATjci92AHY"
  1031. },
  1032. {
  1033. "__type__": "cc.Node",
  1034. "_name": "生命值2",
  1035. "_objFlags": 0,
  1036. "__editorExtras__": {},
  1037. "_parent": {
  1038. "__id__": 16
  1039. },
  1040. "_children": [],
  1041. "_active": true,
  1042. "_components": [
  1043. {
  1044. "__id__": 27
  1045. },
  1046. {
  1047. "__id__": 28
  1048. }
  1049. ],
  1050. "_prefab": null,
  1051. "_lpos": {
  1052. "__type__": "cc.Vec3",
  1053. "x": 200.713,
  1054. "y": 625.08,
  1055. "z": 0
  1056. },
  1057. "_lrot": {
  1058. "__type__": "cc.Quat",
  1059. "x": 0,
  1060. "y": 0,
  1061. "z": 0,
  1062. "w": 1
  1063. },
  1064. "_lscale": {
  1065. "__type__": "cc.Vec3",
  1066. "x": 1,
  1067. "y": 1,
  1068. "z": 1
  1069. },
  1070. "_mobility": 0,
  1071. "_layer": 33554432,
  1072. "_euler": {
  1073. "__type__": "cc.Vec3",
  1074. "x": 0,
  1075. "y": 0,
  1076. "z": 0
  1077. },
  1078. "_id": "49u8GDIkNPAaKg7AQMYtXK"
  1079. },
  1080. {
  1081. "__type__": "cc.UITransform",
  1082. "_name": "",
  1083. "_objFlags": 0,
  1084. "__editorExtras__": {},
  1085. "node": {
  1086. "__id__": 26
  1087. },
  1088. "_enabled": true,
  1089. "__prefab": null,
  1090. "_contentSize": {
  1091. "__type__": "cc.Size",
  1092. "width": 52,
  1093. "height": 47
  1094. },
  1095. "_anchorPoint": {
  1096. "__type__": "cc.Vec2",
  1097. "x": 0.5,
  1098. "y": 0.5
  1099. },
  1100. "_id": "e0XGFG4ZZOGaMj2kaMBx2S"
  1101. },
  1102. {
  1103. "__type__": "cc.Sprite",
  1104. "_name": "",
  1105. "_objFlags": 0,
  1106. "__editorExtras__": {},
  1107. "node": {
  1108. "__id__": 26
  1109. },
  1110. "_enabled": true,
  1111. "__prefab": null,
  1112. "_customMaterial": null,
  1113. "_srcBlendFactor": 2,
  1114. "_dstBlendFactor": 4,
  1115. "_color": {
  1116. "__type__": "cc.Color",
  1117. "r": 255,
  1118. "g": 255,
  1119. "b": 255,
  1120. "a": 255
  1121. },
  1122. "_spriteFrame": {
  1123. "__uuid__": "7b39a1de-75e3-4d4b-808e-359a8272b4f9@f9941",
  1124. "__expectedType__": "cc.SpriteFrame"
  1125. },
  1126. "_type": 0,
  1127. "_fillType": 0,
  1128. "_sizeMode": 1,
  1129. "_fillCenter": {
  1130. "__type__": "cc.Vec2",
  1131. "x": 0,
  1132. "y": 0
  1133. },
  1134. "_fillStart": 0,
  1135. "_fillRange": 0,
  1136. "_isTrimmedMode": true,
  1137. "_useGrayscale": false,
  1138. "_atlas": null,
  1139. "_id": "19CowsIb1BCJGc/FvoSUyQ"
  1140. },
  1141. {
  1142. "__type__": "cc.Node",
  1143. "_name": "生命值",
  1144. "_objFlags": 0,
  1145. "__editorExtras__": {},
  1146. "_parent": {
  1147. "__id__": 16
  1148. },
  1149. "_children": [],
  1150. "_active": true,
  1151. "_components": [
  1152. {
  1153. "__id__": 30
  1154. },
  1155. {
  1156. "__id__": 31
  1157. }
  1158. ],
  1159. "_prefab": null,
  1160. "_lpos": {
  1161. "__type__": "cc.Vec3",
  1162. "x": 200.713,
  1163. "y": 625.08,
  1164. "z": 0
  1165. },
  1166. "_lrot": {
  1167. "__type__": "cc.Quat",
  1168. "x": 0,
  1169. "y": 0,
  1170. "z": 0,
  1171. "w": 1
  1172. },
  1173. "_lscale": {
  1174. "__type__": "cc.Vec3",
  1175. "x": 1,
  1176. "y": 1,
  1177. "z": 1
  1178. },
  1179. "_mobility": 0,
  1180. "_layer": 33554432,
  1181. "_euler": {
  1182. "__type__": "cc.Vec3",
  1183. "x": 0,
  1184. "y": 0,
  1185. "z": 0
  1186. },
  1187. "_id": "c5iCfQxlFLlbT7nzCX6rBc"
  1188. },
  1189. {
  1190. "__type__": "cc.UITransform",
  1191. "_name": "",
  1192. "_objFlags": 0,
  1193. "__editorExtras__": {},
  1194. "node": {
  1195. "__id__": 29
  1196. },
  1197. "_enabled": true,
  1198. "__prefab": null,
  1199. "_contentSize": {
  1200. "__type__": "cc.Size",
  1201. "width": 52,
  1202. "height": 47
  1203. },
  1204. "_anchorPoint": {
  1205. "__type__": "cc.Vec2",
  1206. "x": 0.5,
  1207. "y": 0.5
  1208. },
  1209. "_id": "a1K9vim/xGOq2ApDRu3Few"
  1210. },
  1211. {
  1212. "__type__": "cc.Sprite",
  1213. "_name": "",
  1214. "_objFlags": 0,
  1215. "__editorExtras__": {},
  1216. "node": {
  1217. "__id__": 29
  1218. },
  1219. "_enabled": true,
  1220. "__prefab": null,
  1221. "_customMaterial": null,
  1222. "_srcBlendFactor": 2,
  1223. "_dstBlendFactor": 4,
  1224. "_color": {
  1225. "__type__": "cc.Color",
  1226. "r": 255,
  1227. "g": 255,
  1228. "b": 255,
  1229. "a": 255
  1230. },
  1231. "_spriteFrame": {
  1232. "__uuid__": "8077f7e9-ed2f-4266-af10-63123aa48a2f@f9941",
  1233. "__expectedType__": "cc.SpriteFrame"
  1234. },
  1235. "_type": 0,
  1236. "_fillType": 0,
  1237. "_sizeMode": 1,
  1238. "_fillCenter": {
  1239. "__type__": "cc.Vec2",
  1240. "x": 0,
  1241. "y": 0
  1242. },
  1243. "_fillStart": 0,
  1244. "_fillRange": 0,
  1245. "_isTrimmedMode": true,
  1246. "_useGrayscale": false,
  1247. "_atlas": null,
  1248. "_id": "9eNuDrYJBA8qgcQZZfS7XF"
  1249. },
  1250. {
  1251. "__type__": "cc.Node",
  1252. "_name": "生命值3",
  1253. "_objFlags": 0,
  1254. "__editorExtras__": {},
  1255. "_parent": {
  1256. "__id__": 16
  1257. },
  1258. "_children": [],
  1259. "_active": true,
  1260. "_components": [
  1261. {
  1262. "__id__": 33
  1263. },
  1264. {
  1265. "__id__": 34
  1266. }
  1267. ],
  1268. "_prefab": null,
  1269. "_lpos": {
  1270. "__type__": "cc.Vec3",
  1271. "x": 263.173,
  1272. "y": 625.08,
  1273. "z": 0
  1274. },
  1275. "_lrot": {
  1276. "__type__": "cc.Quat",
  1277. "x": 0,
  1278. "y": 0,
  1279. "z": 0,
  1280. "w": 1
  1281. },
  1282. "_lscale": {
  1283. "__type__": "cc.Vec3",
  1284. "x": 1,
  1285. "y": 1,
  1286. "z": 1
  1287. },
  1288. "_mobility": 0,
  1289. "_layer": 33554432,
  1290. "_euler": {
  1291. "__type__": "cc.Vec3",
  1292. "x": 0,
  1293. "y": 0,
  1294. "z": 0
  1295. },
  1296. "_id": "ffXdDCNqVCX57oMUniRtNH"
  1297. },
  1298. {
  1299. "__type__": "cc.UITransform",
  1300. "_name": "",
  1301. "_objFlags": 0,
  1302. "__editorExtras__": {},
  1303. "node": {
  1304. "__id__": 32
  1305. },
  1306. "_enabled": true,
  1307. "__prefab": null,
  1308. "_contentSize": {
  1309. "__type__": "cc.Size",
  1310. "width": 52,
  1311. "height": 47
  1312. },
  1313. "_anchorPoint": {
  1314. "__type__": "cc.Vec2",
  1315. "x": 0.5,
  1316. "y": 0.5
  1317. },
  1318. "_id": "15LUfNU8pFrLvdcaNDlI2Q"
  1319. },
  1320. {
  1321. "__type__": "cc.Sprite",
  1322. "_name": "",
  1323. "_objFlags": 0,
  1324. "__editorExtras__": {},
  1325. "node": {
  1326. "__id__": 32
  1327. },
  1328. "_enabled": true,
  1329. "__prefab": null,
  1330. "_customMaterial": null,
  1331. "_srcBlendFactor": 2,
  1332. "_dstBlendFactor": 4,
  1333. "_color": {
  1334. "__type__": "cc.Color",
  1335. "r": 255,
  1336. "g": 255,
  1337. "b": 255,
  1338. "a": 255
  1339. },
  1340. "_spriteFrame": {
  1341. "__uuid__": "7b39a1de-75e3-4d4b-808e-359a8272b4f9@f9941",
  1342. "__expectedType__": "cc.SpriteFrame"
  1343. },
  1344. "_type": 0,
  1345. "_fillType": 0,
  1346. "_sizeMode": 1,
  1347. "_fillCenter": {
  1348. "__type__": "cc.Vec2",
  1349. "x": 0,
  1350. "y": 0
  1351. },
  1352. "_fillStart": 0,
  1353. "_fillRange": 0,
  1354. "_isTrimmedMode": true,
  1355. "_useGrayscale": false,
  1356. "_atlas": null,
  1357. "_id": "c31ll+9RBFNayuyFTv75Nf"
  1358. },
  1359. {
  1360. "__type__": "cc.Node",
  1361. "_name": "生命值-001",
  1362. "_objFlags": 0,
  1363. "__editorExtras__": {},
  1364. "_parent": {
  1365. "__id__": 16
  1366. },
  1367. "_children": [],
  1368. "_active": true,
  1369. "_components": [
  1370. {
  1371. "__id__": 36
  1372. },
  1373. {
  1374. "__id__": 37
  1375. }
  1376. ],
  1377. "_prefab": null,
  1378. "_lpos": {
  1379. "__type__": "cc.Vec3",
  1380. "x": 263.173,
  1381. "y": 625.08,
  1382. "z": 0
  1383. },
  1384. "_lrot": {
  1385. "__type__": "cc.Quat",
  1386. "x": 0,
  1387. "y": 0,
  1388. "z": 0,
  1389. "w": 1
  1390. },
  1391. "_lscale": {
  1392. "__type__": "cc.Vec3",
  1393. "x": 1,
  1394. "y": 1,
  1395. "z": 1
  1396. },
  1397. "_mobility": 0,
  1398. "_layer": 33554432,
  1399. "_euler": {
  1400. "__type__": "cc.Vec3",
  1401. "x": 0,
  1402. "y": 0,
  1403. "z": 0
  1404. },
  1405. "_id": "25ob3s5P5CO74LyphhOD4c"
  1406. },
  1407. {
  1408. "__type__": "cc.UITransform",
  1409. "_name": "",
  1410. "_objFlags": 0,
  1411. "__editorExtras__": {},
  1412. "node": {
  1413. "__id__": 35
  1414. },
  1415. "_enabled": true,
  1416. "__prefab": null,
  1417. "_contentSize": {
  1418. "__type__": "cc.Size",
  1419. "width": 52,
  1420. "height": 47
  1421. },
  1422. "_anchorPoint": {
  1423. "__type__": "cc.Vec2",
  1424. "x": 0.5,
  1425. "y": 0.5
  1426. },
  1427. "_id": "4b/yrSk1RPdqxBANqDhk6/"
  1428. },
  1429. {
  1430. "__type__": "cc.Sprite",
  1431. "_name": "",
  1432. "_objFlags": 0,
  1433. "__editorExtras__": {},
  1434. "node": {
  1435. "__id__": 35
  1436. },
  1437. "_enabled": true,
  1438. "__prefab": null,
  1439. "_customMaterial": null,
  1440. "_srcBlendFactor": 2,
  1441. "_dstBlendFactor": 4,
  1442. "_color": {
  1443. "__type__": "cc.Color",
  1444. "r": 255,
  1445. "g": 255,
  1446. "b": 255,
  1447. "a": 255
  1448. },
  1449. "_spriteFrame": {
  1450. "__uuid__": "8077f7e9-ed2f-4266-af10-63123aa48a2f@f9941",
  1451. "__expectedType__": "cc.SpriteFrame"
  1452. },
  1453. "_type": 0,
  1454. "_fillType": 0,
  1455. "_sizeMode": 1,
  1456. "_fillCenter": {
  1457. "__type__": "cc.Vec2",
  1458. "x": 0,
  1459. "y": 0
  1460. },
  1461. "_fillStart": 0,
  1462. "_fillRange": 0,
  1463. "_isTrimmedMode": true,
  1464. "_useGrayscale": false,
  1465. "_atlas": null,
  1466. "_id": "cbzA3JoB9IEaj3/+uXF5ze"
  1467. },
  1468. {
  1469. "__type__": "cc.Node",
  1470. "_name": "生命值-002",
  1471. "_objFlags": 0,
  1472. "__editorExtras__": {},
  1473. "_parent": {
  1474. "__id__": 16
  1475. },
  1476. "_children": [],
  1477. "_active": true,
  1478. "_components": [
  1479. {
  1480. "__id__": 39
  1481. },
  1482. {
  1483. "__id__": 40
  1484. }
  1485. ],
  1486. "_prefab": null,
  1487. "_lpos": {
  1488. "__type__": "cc.Vec3",
  1489. "x": 327.052,
  1490. "y": 625.08,
  1491. "z": 0
  1492. },
  1493. "_lrot": {
  1494. "__type__": "cc.Quat",
  1495. "x": 0,
  1496. "y": 0,
  1497. "z": 0,
  1498. "w": 1
  1499. },
  1500. "_lscale": {
  1501. "__type__": "cc.Vec3",
  1502. "x": 1,
  1503. "y": 1,
  1504. "z": 1
  1505. },
  1506. "_mobility": 0,
  1507. "_layer": 33554432,
  1508. "_euler": {
  1509. "__type__": "cc.Vec3",
  1510. "x": 0,
  1511. "y": 0,
  1512. "z": 0
  1513. },
  1514. "_id": "6apsKWALFDO67k7XdXRqCU"
  1515. },
  1516. {
  1517. "__type__": "cc.UITransform",
  1518. "_name": "",
  1519. "_objFlags": 0,
  1520. "__editorExtras__": {},
  1521. "node": {
  1522. "__id__": 38
  1523. },
  1524. "_enabled": true,
  1525. "__prefab": null,
  1526. "_contentSize": {
  1527. "__type__": "cc.Size",
  1528. "width": 52,
  1529. "height": 47
  1530. },
  1531. "_anchorPoint": {
  1532. "__type__": "cc.Vec2",
  1533. "x": 0.5,
  1534. "y": 0.5
  1535. },
  1536. "_id": "fehvCpUsdL5oc+iqV+DUE5"
  1537. },
  1538. {
  1539. "__type__": "cc.Sprite",
  1540. "_name": "",
  1541. "_objFlags": 0,
  1542. "__editorExtras__": {},
  1543. "node": {
  1544. "__id__": 38
  1545. },
  1546. "_enabled": true,
  1547. "__prefab": null,
  1548. "_customMaterial": null,
  1549. "_srcBlendFactor": 2,
  1550. "_dstBlendFactor": 4,
  1551. "_color": {
  1552. "__type__": "cc.Color",
  1553. "r": 255,
  1554. "g": 255,
  1555. "b": 255,
  1556. "a": 255
  1557. },
  1558. "_spriteFrame": {
  1559. "__uuid__": "8077f7e9-ed2f-4266-af10-63123aa48a2f@f9941",
  1560. "__expectedType__": "cc.SpriteFrame"
  1561. },
  1562. "_type": 0,
  1563. "_fillType": 0,
  1564. "_sizeMode": 1,
  1565. "_fillCenter": {
  1566. "__type__": "cc.Vec2",
  1567. "x": 0,
  1568. "y": 0
  1569. },
  1570. "_fillStart": 0,
  1571. "_fillRange": 0,
  1572. "_isTrimmedMode": true,
  1573. "_useGrayscale": false,
  1574. "_atlas": null,
  1575. "_id": "fdmicz33xNfIesQNTxp0ZG"
  1576. },
  1577. {
  1578. "__type__": "cc.Node",
  1579. "_name": "生命值4",
  1580. "_objFlags": 0,
  1581. "__editorExtras__": {},
  1582. "_parent": {
  1583. "__id__": 16
  1584. },
  1585. "_children": [],
  1586. "_active": true,
  1587. "_components": [
  1588. {
  1589. "__id__": 42
  1590. },
  1591. {
  1592. "__id__": 43
  1593. }
  1594. ],
  1595. "_prefab": null,
  1596. "_lpos": {
  1597. "__type__": "cc.Vec3",
  1598. "x": 327.052,
  1599. "y": 625.08,
  1600. "z": 0
  1601. },
  1602. "_lrot": {
  1603. "__type__": "cc.Quat",
  1604. "x": 0,
  1605. "y": 0,
  1606. "z": 0,
  1607. "w": 1
  1608. },
  1609. "_lscale": {
  1610. "__type__": "cc.Vec3",
  1611. "x": 1,
  1612. "y": 1,
  1613. "z": 1
  1614. },
  1615. "_mobility": 0,
  1616. "_layer": 33554432,
  1617. "_euler": {
  1618. "__type__": "cc.Vec3",
  1619. "x": 0,
  1620. "y": 0,
  1621. "z": 0
  1622. },
  1623. "_id": "525cTsy0JJxKJRL0FX8ljT"
  1624. },
  1625. {
  1626. "__type__": "cc.UITransform",
  1627. "_name": "",
  1628. "_objFlags": 0,
  1629. "__editorExtras__": {},
  1630. "node": {
  1631. "__id__": 41
  1632. },
  1633. "_enabled": true,
  1634. "__prefab": null,
  1635. "_contentSize": {
  1636. "__type__": "cc.Size",
  1637. "width": 52,
  1638. "height": 47
  1639. },
  1640. "_anchorPoint": {
  1641. "__type__": "cc.Vec2",
  1642. "x": 0.5,
  1643. "y": 0.5
  1644. },
  1645. "_id": "07H+iqPChKpZ6u3FNnnMF6"
  1646. },
  1647. {
  1648. "__type__": "cc.Sprite",
  1649. "_name": "",
  1650. "_objFlags": 0,
  1651. "__editorExtras__": {},
  1652. "node": {
  1653. "__id__": 41
  1654. },
  1655. "_enabled": true,
  1656. "__prefab": null,
  1657. "_customMaterial": null,
  1658. "_srcBlendFactor": 2,
  1659. "_dstBlendFactor": 4,
  1660. "_color": {
  1661. "__type__": "cc.Color",
  1662. "r": 255,
  1663. "g": 255,
  1664. "b": 255,
  1665. "a": 255
  1666. },
  1667. "_spriteFrame": {
  1668. "__uuid__": "7b39a1de-75e3-4d4b-808e-359a8272b4f9@f9941",
  1669. "__expectedType__": "cc.SpriteFrame"
  1670. },
  1671. "_type": 0,
  1672. "_fillType": 0,
  1673. "_sizeMode": 1,
  1674. "_fillCenter": {
  1675. "__type__": "cc.Vec2",
  1676. "x": 0,
  1677. "y": 0
  1678. },
  1679. "_fillStart": 0,
  1680. "_fillRange": 0,
  1681. "_isTrimmedMode": true,
  1682. "_useGrayscale": false,
  1683. "_atlas": null,
  1684. "_id": "32LXgTp81CZoVh/qocIk6p"
  1685. },
  1686. {
  1687. "__type__": "cc.Node",
  1688. "_name": "时间底座",
  1689. "_objFlags": 0,
  1690. "__editorExtras__": {},
  1691. "_parent": {
  1692. "__id__": 16
  1693. },
  1694. "_children": [
  1695. {
  1696. "__id__": 45
  1697. },
  1698. {
  1699. "__id__": 48
  1700. },
  1701. {
  1702. "__id__": 51
  1703. }
  1704. ],
  1705. "_active": true,
  1706. "_components": [
  1707. {
  1708. "__id__": 54
  1709. },
  1710. {
  1711. "__id__": 55
  1712. }
  1713. ],
  1714. "_prefab": null,
  1715. "_lpos": {
  1716. "__type__": "cc.Vec3",
  1717. "x": 0,
  1718. "y": 546.287,
  1719. "z": 0
  1720. },
  1721. "_lrot": {
  1722. "__type__": "cc.Quat",
  1723. "x": 0,
  1724. "y": 0,
  1725. "z": 0,
  1726. "w": 1
  1727. },
  1728. "_lscale": {
  1729. "__type__": "cc.Vec3",
  1730. "x": 1,
  1731. "y": 1,
  1732. "z": 1
  1733. },
  1734. "_mobility": 0,
  1735. "_layer": 33554432,
  1736. "_euler": {
  1737. "__type__": "cc.Vec3",
  1738. "x": 0,
  1739. "y": 0,
  1740. "z": 0
  1741. },
  1742. "_id": "7cR9thI8xMAIwU+3mR5fbY"
  1743. },
  1744. {
  1745. "__type__": "cc.Node",
  1746. "_name": "时间灯1",
  1747. "_objFlags": 0,
  1748. "__editorExtras__": {},
  1749. "_parent": {
  1750. "__id__": 44
  1751. },
  1752. "_children": [],
  1753. "_active": true,
  1754. "_components": [
  1755. {
  1756. "__id__": 46
  1757. },
  1758. {
  1759. "__id__": 47
  1760. }
  1761. ],
  1762. "_prefab": null,
  1763. "_lpos": {
  1764. "__type__": "cc.Vec3",
  1765. "x": 0,
  1766. "y": 0,
  1767. "z": 0
  1768. },
  1769. "_lrot": {
  1770. "__type__": "cc.Quat",
  1771. "x": 0,
  1772. "y": 0,
  1773. "z": 0,
  1774. "w": 1
  1775. },
  1776. "_lscale": {
  1777. "__type__": "cc.Vec3",
  1778. "x": 1,
  1779. "y": 1,
  1780. "z": 1
  1781. },
  1782. "_mobility": 0,
  1783. "_layer": 33554432,
  1784. "_euler": {
  1785. "__type__": "cc.Vec3",
  1786. "x": 0,
  1787. "y": 0,
  1788. "z": 0
  1789. },
  1790. "_id": "2edU5tIfVEZ69DP4s3Admf"
  1791. },
  1792. {
  1793. "__type__": "cc.UITransform",
  1794. "_name": "",
  1795. "_objFlags": 0,
  1796. "__editorExtras__": {},
  1797. "node": {
  1798. "__id__": 45
  1799. },
  1800. "_enabled": true,
  1801. "__prefab": null,
  1802. "_contentSize": {
  1803. "__type__": "cc.Size",
  1804. "width": 218,
  1805. "height": 46
  1806. },
  1807. "_anchorPoint": {
  1808. "__type__": "cc.Vec2",
  1809. "x": 0.5,
  1810. "y": 0.5
  1811. },
  1812. "_id": "72G2uzZ0pCRLYDhwoc0r44"
  1813. },
  1814. {
  1815. "__type__": "cc.Sprite",
  1816. "_name": "",
  1817. "_objFlags": 0,
  1818. "__editorExtras__": {},
  1819. "node": {
  1820. "__id__": 45
  1821. },
  1822. "_enabled": true,
  1823. "__prefab": null,
  1824. "_customMaterial": null,
  1825. "_srcBlendFactor": 2,
  1826. "_dstBlendFactor": 4,
  1827. "_color": {
  1828. "__type__": "cc.Color",
  1829. "r": 255,
  1830. "g": 255,
  1831. "b": 255,
  1832. "a": 255
  1833. },
  1834. "_spriteFrame": {
  1835. "__uuid__": "2484f6ca-4410-4b8e-bd19-22cae8d03658@f9941",
  1836. "__expectedType__": "cc.SpriteFrame"
  1837. },
  1838. "_type": 0,
  1839. "_fillType": 0,
  1840. "_sizeMode": 1,
  1841. "_fillCenter": {
  1842. "__type__": "cc.Vec2",
  1843. "x": 0,
  1844. "y": 0
  1845. },
  1846. "_fillStart": 0,
  1847. "_fillRange": 0,
  1848. "_isTrimmedMode": true,
  1849. "_useGrayscale": false,
  1850. "_atlas": null,
  1851. "_id": "d3DU/q/3VLF6IOVMZyDVTR"
  1852. },
  1853. {
  1854. "__type__": "cc.Node",
  1855. "_name": "时间灯2",
  1856. "_objFlags": 0,
  1857. "__editorExtras__": {},
  1858. "_parent": {
  1859. "__id__": 44
  1860. },
  1861. "_children": [],
  1862. "_active": true,
  1863. "_components": [
  1864. {
  1865. "__id__": 49
  1866. },
  1867. {
  1868. "__id__": 50
  1869. }
  1870. ],
  1871. "_prefab": null,
  1872. "_lpos": {
  1873. "__type__": "cc.Vec3",
  1874. "x": 0,
  1875. "y": 0,
  1876. "z": 0
  1877. },
  1878. "_lrot": {
  1879. "__type__": "cc.Quat",
  1880. "x": 0,
  1881. "y": 0,
  1882. "z": 0,
  1883. "w": 1
  1884. },
  1885. "_lscale": {
  1886. "__type__": "cc.Vec3",
  1887. "x": 1,
  1888. "y": 1,
  1889. "z": 1
  1890. },
  1891. "_mobility": 0,
  1892. "_layer": 33554432,
  1893. "_euler": {
  1894. "__type__": "cc.Vec3",
  1895. "x": 0,
  1896. "y": 0,
  1897. "z": 0
  1898. },
  1899. "_id": "bdQh/I6z1Gm6pAU9bYYcV8"
  1900. },
  1901. {
  1902. "__type__": "cc.UITransform",
  1903. "_name": "",
  1904. "_objFlags": 0,
  1905. "__editorExtras__": {},
  1906. "node": {
  1907. "__id__": 48
  1908. },
  1909. "_enabled": true,
  1910. "__prefab": null,
  1911. "_contentSize": {
  1912. "__type__": "cc.Size",
  1913. "width": 218,
  1914. "height": 46
  1915. },
  1916. "_anchorPoint": {
  1917. "__type__": "cc.Vec2",
  1918. "x": 0.5,
  1919. "y": 0.5
  1920. },
  1921. "_id": "1a4WUWRndAA5lzvMhT8rPR"
  1922. },
  1923. {
  1924. "__type__": "cc.Sprite",
  1925. "_name": "",
  1926. "_objFlags": 0,
  1927. "__editorExtras__": {},
  1928. "node": {
  1929. "__id__": 48
  1930. },
  1931. "_enabled": true,
  1932. "__prefab": null,
  1933. "_customMaterial": null,
  1934. "_srcBlendFactor": 2,
  1935. "_dstBlendFactor": 4,
  1936. "_color": {
  1937. "__type__": "cc.Color",
  1938. "r": 255,
  1939. "g": 255,
  1940. "b": 255,
  1941. "a": 255
  1942. },
  1943. "_spriteFrame": {
  1944. "__uuid__": "f66467f5-31fd-4b41-a0c3-b16cc43956e7@f9941",
  1945. "__expectedType__": "cc.SpriteFrame"
  1946. },
  1947. "_type": 0,
  1948. "_fillType": 0,
  1949. "_sizeMode": 1,
  1950. "_fillCenter": {
  1951. "__type__": "cc.Vec2",
  1952. "x": 0,
  1953. "y": 0
  1954. },
  1955. "_fillStart": 0,
  1956. "_fillRange": 0,
  1957. "_isTrimmedMode": true,
  1958. "_useGrayscale": false,
  1959. "_atlas": null,
  1960. "_id": "e5XNvfVAtBYprsQE/Hfq6A"
  1961. },
  1962. {
  1963. "__type__": "cc.Node",
  1964. "_name": "倒计时",
  1965. "_objFlags": 0,
  1966. "__editorExtras__": {},
  1967. "_parent": {
  1968. "__id__": 44
  1969. },
  1970. "_children": [],
  1971. "_active": true,
  1972. "_components": [
  1973. {
  1974. "__id__": 52
  1975. },
  1976. {
  1977. "__id__": 53
  1978. }
  1979. ],
  1980. "_prefab": null,
  1981. "_lpos": {
  1982. "__type__": "cc.Vec3",
  1983. "x": 0,
  1984. "y": -0.873,
  1985. "z": 0
  1986. },
  1987. "_lrot": {
  1988. "__type__": "cc.Quat",
  1989. "x": 0,
  1990. "y": 0,
  1991. "z": 0,
  1992. "w": 1
  1993. },
  1994. "_lscale": {
  1995. "__type__": "cc.Vec3",
  1996. "x": 1,
  1997. "y": 1,
  1998. "z": 1
  1999. },
  2000. "_mobility": 0,
  2001. "_layer": 33554432,
  2002. "_euler": {
  2003. "__type__": "cc.Vec3",
  2004. "x": 0,
  2005. "y": 0,
  2006. "z": 0
  2007. },
  2008. "_id": "a6Gw9OgWNKaojIJ7FshGVk"
  2009. },
  2010. {
  2011. "__type__": "cc.UITransform",
  2012. "_name": "",
  2013. "_objFlags": 0,
  2014. "__editorExtras__": {},
  2015. "node": {
  2016. "__id__": 51
  2017. },
  2018. "_enabled": true,
  2019. "__prefab": null,
  2020. "_contentSize": {
  2021. "__type__": "cc.Size",
  2022. "width": 87.5830078125,
  2023. "height": 50.4
  2024. },
  2025. "_anchorPoint": {
  2026. "__type__": "cc.Vec2",
  2027. "x": 0.5,
  2028. "y": 0.5
  2029. },
  2030. "_id": "c7O5I6YgxGZqLYYD2B6icZ"
  2031. },
  2032. {
  2033. "__type__": "cc.Label",
  2034. "_name": "",
  2035. "_objFlags": 0,
  2036. "__editorExtras__": {},
  2037. "node": {
  2038. "__id__": 51
  2039. },
  2040. "_enabled": true,
  2041. "__prefab": null,
  2042. "_customMaterial": null,
  2043. "_srcBlendFactor": 2,
  2044. "_dstBlendFactor": 4,
  2045. "_color": {
  2046. "__type__": "cc.Color",
  2047. "r": 248,
  2048. "g": 3,
  2049. "b": 3,
  2050. "a": 255
  2051. },
  2052. "_string": "2:54",
  2053. "_horizontalAlign": 1,
  2054. "_verticalAlign": 1,
  2055. "_actualFontSize": 45,
  2056. "_fontSize": 45,
  2057. "_fontFamily": "Arial",
  2058. "_lineHeight": 40,
  2059. "_overflow": 0,
  2060. "_enableWrapText": true,
  2061. "_font": null,
  2062. "_isSystemFontUsed": true,
  2063. "_spacingX": 0,
  2064. "_isItalic": false,
  2065. "_isBold": false,
  2066. "_isUnderline": false,
  2067. "_underlineHeight": 2,
  2068. "_cacheMode": 0,
  2069. "_enableOutline": false,
  2070. "_outlineColor": {
  2071. "__type__": "cc.Color",
  2072. "r": 0,
  2073. "g": 0,
  2074. "b": 0,
  2075. "a": 255
  2076. },
  2077. "_outlineWidth": 2,
  2078. "_enableShadow": false,
  2079. "_shadowColor": {
  2080. "__type__": "cc.Color",
  2081. "r": 0,
  2082. "g": 0,
  2083. "b": 0,
  2084. "a": 255
  2085. },
  2086. "_shadowOffset": {
  2087. "__type__": "cc.Vec2",
  2088. "x": 2,
  2089. "y": 2
  2090. },
  2091. "_shadowBlur": 2,
  2092. "_id": "61fK46PgJCZroWCRsszazL"
  2093. },
  2094. {
  2095. "__type__": "cc.UITransform",
  2096. "_name": "",
  2097. "_objFlags": 0,
  2098. "__editorExtras__": {},
  2099. "node": {
  2100. "__id__": 44
  2101. },
  2102. "_enabled": true,
  2103. "__prefab": null,
  2104. "_contentSize": {
  2105. "__type__": "cc.Size",
  2106. "width": 237,
  2107. "height": 68
  2108. },
  2109. "_anchorPoint": {
  2110. "__type__": "cc.Vec2",
  2111. "x": 0.5,
  2112. "y": 0.5
  2113. },
  2114. "_id": "0fb5o35GZEbIO8O+AYy9JQ"
  2115. },
  2116. {
  2117. "__type__": "cc.Sprite",
  2118. "_name": "",
  2119. "_objFlags": 0,
  2120. "__editorExtras__": {},
  2121. "node": {
  2122. "__id__": 44
  2123. },
  2124. "_enabled": true,
  2125. "__prefab": null,
  2126. "_customMaterial": null,
  2127. "_srcBlendFactor": 2,
  2128. "_dstBlendFactor": 4,
  2129. "_color": {
  2130. "__type__": "cc.Color",
  2131. "r": 255,
  2132. "g": 255,
  2133. "b": 255,
  2134. "a": 255
  2135. },
  2136. "_spriteFrame": {
  2137. "__uuid__": "0fd340d0-f347-4424-b384-63c36a500b66@f9941",
  2138. "__expectedType__": "cc.SpriteFrame"
  2139. },
  2140. "_type": 0,
  2141. "_fillType": 0,
  2142. "_sizeMode": 1,
  2143. "_fillCenter": {
  2144. "__type__": "cc.Vec2",
  2145. "x": 0,
  2146. "y": 0
  2147. },
  2148. "_fillStart": 0,
  2149. "_fillRange": 0,
  2150. "_isTrimmedMode": true,
  2151. "_useGrayscale": false,
  2152. "_atlas": null,
  2153. "_id": "6dCvtXnodAhLRsiwdlcNNG"
  2154. },
  2155. {
  2156. "__type__": "cc.UITransform",
  2157. "_name": "",
  2158. "_objFlags": 0,
  2159. "__editorExtras__": {},
  2160. "node": {
  2161. "__id__": 16
  2162. },
  2163. "_enabled": true,
  2164. "__prefab": null,
  2165. "_contentSize": {
  2166. "__type__": "cc.Size",
  2167. "width": 100,
  2168. "height": 100
  2169. },
  2170. "_anchorPoint": {
  2171. "__type__": "cc.Vec2",
  2172. "x": 0.5,
  2173. "y": 0.5
  2174. },
  2175. "_id": "cfm2jSCBhO2r6YKQthmA4p"
  2176. },
  2177. {
  2178. "__type__": "cc.Node",
  2179. "_name": "主体区域",
  2180. "_objFlags": 0,
  2181. "__editorExtras__": {},
  2182. "_parent": {
  2183. "__id__": 2
  2184. },
  2185. "_children": [
  2186. {
  2187. "__id__": 58
  2188. },
  2189. {
  2190. "__id__": 64
  2191. },
  2192. {
  2193. "__id__": 70
  2194. },
  2195. {
  2196. "__id__": 76
  2197. }
  2198. ],
  2199. "_active": true,
  2200. "_components": [
  2201. {
  2202. "__id__": 82
  2203. }
  2204. ],
  2205. "_prefab": null,
  2206. "_lpos": {
  2207. "__type__": "cc.Vec3",
  2208. "x": 0,
  2209. "y": 0,
  2210. "z": 0
  2211. },
  2212. "_lrot": {
  2213. "__type__": "cc.Quat",
  2214. "x": 0,
  2215. "y": 0,
  2216. "z": 0,
  2217. "w": 1
  2218. },
  2219. "_lscale": {
  2220. "__type__": "cc.Vec3",
  2221. "x": 1,
  2222. "y": 1,
  2223. "z": 1
  2224. },
  2225. "_mobility": 0,
  2226. "_layer": 33554432,
  2227. "_euler": {
  2228. "__type__": "cc.Vec3",
  2229. "x": 0,
  2230. "y": 0,
  2231. "z": 0
  2232. },
  2233. "_id": "efAFAIoC5C5pPFJ/ig6usB"
  2234. },
  2235. {
  2236. "__type__": "cc.Node",
  2237. "_name": "对话框",
  2238. "_objFlags": 0,
  2239. "__editorExtras__": {},
  2240. "_parent": {
  2241. "__id__": 57
  2242. },
  2243. "_children": [
  2244. {
  2245. "__id__": 59
  2246. }
  2247. ],
  2248. "_active": true,
  2249. "_components": [
  2250. {
  2251. "__id__": 62
  2252. },
  2253. {
  2254. "__id__": 63
  2255. }
  2256. ],
  2257. "_prefab": null,
  2258. "_lpos": {
  2259. "__type__": "cc.Vec3",
  2260. "x": -207.678,
  2261. "y": 389.238,
  2262. "z": 0
  2263. },
  2264. "_lrot": {
  2265. "__type__": "cc.Quat",
  2266. "x": 0,
  2267. "y": 0,
  2268. "z": 0,
  2269. "w": 1
  2270. },
  2271. "_lscale": {
  2272. "__type__": "cc.Vec3",
  2273. "x": 1,
  2274. "y": 1,
  2275. "z": 1
  2276. },
  2277. "_mobility": 0,
  2278. "_layer": 33554432,
  2279. "_euler": {
  2280. "__type__": "cc.Vec3",
  2281. "x": 0,
  2282. "y": 0,
  2283. "z": 0
  2284. },
  2285. "_id": "24oOaw7wVDR6FPYtcB3Wun"
  2286. },
  2287. {
  2288. "__type__": "cc.Node",
  2289. "_name": "对话内容",
  2290. "_objFlags": 0,
  2291. "__editorExtras__": {},
  2292. "_parent": {
  2293. "__id__": 58
  2294. },
  2295. "_children": [],
  2296. "_active": true,
  2297. "_components": [
  2298. {
  2299. "__id__": 60
  2300. },
  2301. {
  2302. "__id__": 61
  2303. }
  2304. ],
  2305. "_prefab": null,
  2306. "_lpos": {
  2307. "__type__": "cc.Vec3",
  2308. "x": 18.979,
  2309. "y": 20.805,
  2310. "z": 0
  2311. },
  2312. "_lrot": {
  2313. "__type__": "cc.Quat",
  2314. "x": 0,
  2315. "y": 0,
  2316. "z": 0,
  2317. "w": 1
  2318. },
  2319. "_lscale": {
  2320. "__type__": "cc.Vec3",
  2321. "x": 1,
  2322. "y": 1,
  2323. "z": 1
  2324. },
  2325. "_mobility": 0,
  2326. "_layer": 33554432,
  2327. "_euler": {
  2328. "__type__": "cc.Vec3",
  2329. "x": 0,
  2330. "y": 0,
  2331. "z": 0
  2332. },
  2333. "_id": "ceRiyHWapPoqKdTfKas8NH"
  2334. },
  2335. {
  2336. "__type__": "cc.UITransform",
  2337. "_name": "",
  2338. "_objFlags": 0,
  2339. "__editorExtras__": {},
  2340. "node": {
  2341. "__id__": 59
  2342. },
  2343. "_enabled": true,
  2344. "__prefab": null,
  2345. "_contentSize": {
  2346. "__type__": "cc.Size",
  2347. "width": 300,
  2348. "height": 90.39999999999999
  2349. },
  2350. "_anchorPoint": {
  2351. "__type__": "cc.Vec2",
  2352. "x": 0.5,
  2353. "y": 0.5
  2354. },
  2355. "_id": "15IxNFlhxGSJF8gyYt0ZlV"
  2356. },
  2357. {
  2358. "__type__": "cc.Label",
  2359. "_name": "",
  2360. "_objFlags": 0,
  2361. "__editorExtras__": {},
  2362. "node": {
  2363. "__id__": 59
  2364. },
  2365. "_enabled": true,
  2366. "__prefab": null,
  2367. "_customMaterial": null,
  2368. "_srcBlendFactor": 2,
  2369. "_dstBlendFactor": 4,
  2370. "_color": {
  2371. "__type__": "cc.Color",
  2372. "r": 7,
  2373. "g": 7,
  2374. "b": 7,
  2375. "a": 255
  2376. },
  2377. "_string": "怎么?\n我不像这里的住户么?",
  2378. "_horizontalAlign": 0,
  2379. "_verticalAlign": 1,
  2380. "_actualFontSize": 30,
  2381. "_fontSize": 30,
  2382. "_fontFamily": "Arial",
  2383. "_lineHeight": 40,
  2384. "_overflow": 0,
  2385. "_enableWrapText": true,
  2386. "_font": null,
  2387. "_isSystemFontUsed": true,
  2388. "_spacingX": 0,
  2389. "_isItalic": false,
  2390. "_isBold": false,
  2391. "_isUnderline": false,
  2392. "_underlineHeight": 2,
  2393. "_cacheMode": 0,
  2394. "_enableOutline": false,
  2395. "_outlineColor": {
  2396. "__type__": "cc.Color",
  2397. "r": 0,
  2398. "g": 0,
  2399. "b": 0,
  2400. "a": 255
  2401. },
  2402. "_outlineWidth": 2,
  2403. "_enableShadow": false,
  2404. "_shadowColor": {
  2405. "__type__": "cc.Color",
  2406. "r": 0,
  2407. "g": 0,
  2408. "b": 0,
  2409. "a": 255
  2410. },
  2411. "_shadowOffset": {
  2412. "__type__": "cc.Vec2",
  2413. "x": 2,
  2414. "y": 2
  2415. },
  2416. "_shadowBlur": 2,
  2417. "_id": "e4AVRG0hZFpK71tojoESOl"
  2418. },
  2419. {
  2420. "__type__": "cc.UITransform",
  2421. "_name": "",
  2422. "_objFlags": 0,
  2423. "__editorExtras__": {},
  2424. "node": {
  2425. "__id__": 58
  2426. },
  2427. "_enabled": true,
  2428. "__prefab": null,
  2429. "_contentSize": {
  2430. "__type__": "cc.Size",
  2431. "width": 315,
  2432. "height": 172
  2433. },
  2434. "_anchorPoint": {
  2435. "__type__": "cc.Vec2",
  2436. "x": 0.5,
  2437. "y": 0.5
  2438. },
  2439. "_id": "5fq/5+BCBJvrX7iBNwv7Fm"
  2440. },
  2441. {
  2442. "__type__": "cc.Sprite",
  2443. "_name": "",
  2444. "_objFlags": 0,
  2445. "__editorExtras__": {},
  2446. "node": {
  2447. "__id__": 58
  2448. },
  2449. "_enabled": true,
  2450. "__prefab": null,
  2451. "_customMaterial": null,
  2452. "_srcBlendFactor": 2,
  2453. "_dstBlendFactor": 4,
  2454. "_color": {
  2455. "__type__": "cc.Color",
  2456. "r": 255,
  2457. "g": 255,
  2458. "b": 255,
  2459. "a": 255
  2460. },
  2461. "_spriteFrame": {
  2462. "__uuid__": "1b5b44a5-60e3-4c4d-aa4f-17424a10fd07@f9941",
  2463. "__expectedType__": "cc.SpriteFrame"
  2464. },
  2465. "_type": 0,
  2466. "_fillType": 0,
  2467. "_sizeMode": 1,
  2468. "_fillCenter": {
  2469. "__type__": "cc.Vec2",
  2470. "x": 0,
  2471. "y": 0
  2472. },
  2473. "_fillStart": 0,
  2474. "_fillRange": 0,
  2475. "_isTrimmedMode": true,
  2476. "_useGrayscale": false,
  2477. "_atlas": null,
  2478. "_id": "14nSAWb3tJbLcVjp9zJrjT"
  2479. },
  2480. {
  2481. "__type__": "cc.Node",
  2482. "_name": "名单",
  2483. "_objFlags": 0,
  2484. "__editorExtras__": {},
  2485. "_parent": {
  2486. "__id__": 57
  2487. },
  2488. "_children": [
  2489. {
  2490. "__id__": 65
  2491. }
  2492. ],
  2493. "_active": true,
  2494. "_components": [
  2495. {
  2496. "__id__": 68
  2497. },
  2498. {
  2499. "__id__": 69
  2500. }
  2501. ],
  2502. "_prefab": null,
  2503. "_lpos": {
  2504. "__type__": "cc.Vec3",
  2505. "x": -311.359,
  2506. "y": 163.868,
  2507. "z": 0
  2508. },
  2509. "_lrot": {
  2510. "__type__": "cc.Quat",
  2511. "x": 0,
  2512. "y": 0,
  2513. "z": 0,
  2514. "w": 1
  2515. },
  2516. "_lscale": {
  2517. "__type__": "cc.Vec3",
  2518. "x": 1,
  2519. "y": 1,
  2520. "z": 1
  2521. },
  2522. "_mobility": 0,
  2523. "_layer": 33554432,
  2524. "_euler": {
  2525. "__type__": "cc.Vec3",
  2526. "x": 0,
  2527. "y": 0,
  2528. "z": 0
  2529. },
  2530. "_id": "c6pLQH8ipPJZQVdtg6ALUq"
  2531. },
  2532. {
  2533. "__type__": "cc.Node",
  2534. "_name": "名单",
  2535. "_objFlags": 0,
  2536. "__editorExtras__": {},
  2537. "_parent": {
  2538. "__id__": 64
  2539. },
  2540. "_children": [],
  2541. "_active": true,
  2542. "_components": [
  2543. {
  2544. "__id__": 66
  2545. },
  2546. {
  2547. "__id__": 67
  2548. }
  2549. ],
  2550. "_prefab": null,
  2551. "_lpos": {
  2552. "__type__": "cc.Vec3",
  2553. "x": 0,
  2554. "y": -76.154,
  2555. "z": 0
  2556. },
  2557. "_lrot": {
  2558. "__type__": "cc.Quat",
  2559. "x": 0,
  2560. "y": 0,
  2561. "z": 0,
  2562. "w": 1
  2563. },
  2564. "_lscale": {
  2565. "__type__": "cc.Vec3",
  2566. "x": 1,
  2567. "y": 1,
  2568. "z": 1
  2569. },
  2570. "_mobility": 0,
  2571. "_layer": 33554432,
  2572. "_euler": {
  2573. "__type__": "cc.Vec3",
  2574. "x": 0,
  2575. "y": 0,
  2576. "z": 0
  2577. },
  2578. "_id": "14l8f97xxFQKzejZPv+6Fk"
  2579. },
  2580. {
  2581. "__type__": "cc.UITransform",
  2582. "_name": "",
  2583. "_objFlags": 0,
  2584. "__editorExtras__": {},
  2585. "node": {
  2586. "__id__": 65
  2587. },
  2588. "_enabled": true,
  2589. "__prefab": null,
  2590. "_contentSize": {
  2591. "__type__": "cc.Size",
  2592. "width": 40,
  2593. "height": 50.4
  2594. },
  2595. "_anchorPoint": {
  2596. "__type__": "cc.Vec2",
  2597. "x": 0.5,
  2598. "y": 0.5
  2599. },
  2600. "_id": "af8p3/efVEipxHSe3icCkS"
  2601. },
  2602. {
  2603. "__type__": "cc.Label",
  2604. "_name": "",
  2605. "_objFlags": 0,
  2606. "__editorExtras__": {},
  2607. "node": {
  2608. "__id__": 65
  2609. },
  2610. "_enabled": true,
  2611. "__prefab": null,
  2612. "_customMaterial": null,
  2613. "_srcBlendFactor": 2,
  2614. "_dstBlendFactor": 4,
  2615. "_color": {
  2616. "__type__": "cc.Color",
  2617. "r": 255,
  2618. "g": 255,
  2619. "b": 255,
  2620. "a": 255
  2621. },
  2622. "_string": "名单",
  2623. "_horizontalAlign": 1,
  2624. "_verticalAlign": 1,
  2625. "_actualFontSize": 20,
  2626. "_fontSize": 20,
  2627. "_fontFamily": "Arial",
  2628. "_lineHeight": 40,
  2629. "_overflow": 0,
  2630. "_enableWrapText": true,
  2631. "_font": null,
  2632. "_isSystemFontUsed": true,
  2633. "_spacingX": 0,
  2634. "_isItalic": false,
  2635. "_isBold": false,
  2636. "_isUnderline": false,
  2637. "_underlineHeight": 2,
  2638. "_cacheMode": 0,
  2639. "_enableOutline": false,
  2640. "_outlineColor": {
  2641. "__type__": "cc.Color",
  2642. "r": 0,
  2643. "g": 0,
  2644. "b": 0,
  2645. "a": 255
  2646. },
  2647. "_outlineWidth": 2,
  2648. "_enableShadow": false,
  2649. "_shadowColor": {
  2650. "__type__": "cc.Color",
  2651. "r": 0,
  2652. "g": 0,
  2653. "b": 0,
  2654. "a": 255
  2655. },
  2656. "_shadowOffset": {
  2657. "__type__": "cc.Vec2",
  2658. "x": 2,
  2659. "y": 2
  2660. },
  2661. "_shadowBlur": 2,
  2662. "_id": "94Pifsa7VHmotHR8Oi+LK/"
  2663. },
  2664. {
  2665. "__type__": "cc.UITransform",
  2666. "_name": "",
  2667. "_objFlags": 0,
  2668. "__editorExtras__": {},
  2669. "node": {
  2670. "__id__": 64
  2671. },
  2672. "_enabled": true,
  2673. "__prefab": null,
  2674. "_contentSize": {
  2675. "__type__": "cc.Size",
  2676. "width": 90,
  2677. "height": 121
  2678. },
  2679. "_anchorPoint": {
  2680. "__type__": "cc.Vec2",
  2681. "x": 0.5,
  2682. "y": 0.5
  2683. },
  2684. "_id": "98t426JJRKSos9RtkG6ov0"
  2685. },
  2686. {
  2687. "__type__": "cc.Sprite",
  2688. "_name": "",
  2689. "_objFlags": 0,
  2690. "__editorExtras__": {},
  2691. "node": {
  2692. "__id__": 64
  2693. },
  2694. "_enabled": true,
  2695. "__prefab": null,
  2696. "_customMaterial": null,
  2697. "_srcBlendFactor": 2,
  2698. "_dstBlendFactor": 4,
  2699. "_color": {
  2700. "__type__": "cc.Color",
  2701. "r": 255,
  2702. "g": 255,
  2703. "b": 255,
  2704. "a": 255
  2705. },
  2706. "_spriteFrame": {
  2707. "__uuid__": "a5d20b10-d379-4fd4-a162-acac668da20a@f9941",
  2708. "__expectedType__": "cc.SpriteFrame"
  2709. },
  2710. "_type": 0,
  2711. "_fillType": 0,
  2712. "_sizeMode": 1,
  2713. "_fillCenter": {
  2714. "__type__": "cc.Vec2",
  2715. "x": 0,
  2716. "y": 0
  2717. },
  2718. "_fillStart": 0,
  2719. "_fillRange": 0,
  2720. "_isTrimmedMode": true,
  2721. "_useGrayscale": false,
  2722. "_atlas": null,
  2723. "_id": "d3f7tKNdxHgrzMuAscM3b+"
  2724. },
  2725. {
  2726. "__type__": "cc.Node",
  2727. "_name": "个人质料",
  2728. "_objFlags": 0,
  2729. "__editorExtras__": {},
  2730. "_parent": {
  2731. "__id__": 57
  2732. },
  2733. "_children": [
  2734. {
  2735. "__id__": 71
  2736. }
  2737. ],
  2738. "_active": true,
  2739. "_components": [
  2740. {
  2741. "__id__": 74
  2742. },
  2743. {
  2744. "__id__": 75
  2745. }
  2746. ],
  2747. "_prefab": null,
  2748. "_lpos": {
  2749. "__type__": "cc.Vec3",
  2750. "x": 315.921,
  2751. "y": 163.868,
  2752. "z": 0
  2753. },
  2754. "_lrot": {
  2755. "__type__": "cc.Quat",
  2756. "x": 0,
  2757. "y": 0,
  2758. "z": 0,
  2759. "w": 1
  2760. },
  2761. "_lscale": {
  2762. "__type__": "cc.Vec3",
  2763. "x": 1,
  2764. "y": 1,
  2765. "z": 1
  2766. },
  2767. "_mobility": 0,
  2768. "_layer": 33554432,
  2769. "_euler": {
  2770. "__type__": "cc.Vec3",
  2771. "x": 0,
  2772. "y": 0,
  2773. "z": 0
  2774. },
  2775. "_id": "faA3bBuzNDbaYBibd3vhEM"
  2776. },
  2777. {
  2778. "__type__": "cc.Node",
  2779. "_name": "个人质料",
  2780. "_objFlags": 0,
  2781. "__editorExtras__": {},
  2782. "_parent": {
  2783. "__id__": 70
  2784. },
  2785. "_children": [],
  2786. "_active": true,
  2787. "_components": [
  2788. {
  2789. "__id__": 72
  2790. },
  2791. {
  2792. "__id__": 73
  2793. }
  2794. ],
  2795. "_prefab": null,
  2796. "_lpos": {
  2797. "__type__": "cc.Vec3",
  2798. "x": 0,
  2799. "y": -84.313,
  2800. "z": 0
  2801. },
  2802. "_lrot": {
  2803. "__type__": "cc.Quat",
  2804. "x": 0,
  2805. "y": 0,
  2806. "z": 0,
  2807. "w": 1
  2808. },
  2809. "_lscale": {
  2810. "__type__": "cc.Vec3",
  2811. "x": 1,
  2812. "y": 1,
  2813. "z": 1
  2814. },
  2815. "_mobility": 0,
  2816. "_layer": 33554432,
  2817. "_euler": {
  2818. "__type__": "cc.Vec3",
  2819. "x": 0,
  2820. "y": 0,
  2821. "z": 0
  2822. },
  2823. "_id": "6cUg+FmH5JCJyLMov1++Ie"
  2824. },
  2825. {
  2826. "__type__": "cc.UITransform",
  2827. "_name": "",
  2828. "_objFlags": 0,
  2829. "__editorExtras__": {},
  2830. "node": {
  2831. "__id__": 71
  2832. },
  2833. "_enabled": true,
  2834. "__prefab": null,
  2835. "_contentSize": {
  2836. "__type__": "cc.Size",
  2837. "width": 80,
  2838. "height": 50.4
  2839. },
  2840. "_anchorPoint": {
  2841. "__type__": "cc.Vec2",
  2842. "x": 0.5,
  2843. "y": 0.5
  2844. },
  2845. "_id": "77LebuspxPsIuEnH8oyBH+"
  2846. },
  2847. {
  2848. "__type__": "cc.Label",
  2849. "_name": "",
  2850. "_objFlags": 0,
  2851. "__editorExtras__": {},
  2852. "node": {
  2853. "__id__": 71
  2854. },
  2855. "_enabled": true,
  2856. "__prefab": null,
  2857. "_customMaterial": null,
  2858. "_srcBlendFactor": 2,
  2859. "_dstBlendFactor": 4,
  2860. "_color": {
  2861. "__type__": "cc.Color",
  2862. "r": 255,
  2863. "g": 255,
  2864. "b": 255,
  2865. "a": 255
  2866. },
  2867. "_string": "个人资料",
  2868. "_horizontalAlign": 1,
  2869. "_verticalAlign": 1,
  2870. "_actualFontSize": 20,
  2871. "_fontSize": 20,
  2872. "_fontFamily": "Arial",
  2873. "_lineHeight": 40,
  2874. "_overflow": 0,
  2875. "_enableWrapText": true,
  2876. "_font": null,
  2877. "_isSystemFontUsed": true,
  2878. "_spacingX": 0,
  2879. "_isItalic": false,
  2880. "_isBold": false,
  2881. "_isUnderline": false,
  2882. "_underlineHeight": 2,
  2883. "_cacheMode": 0,
  2884. "_enableOutline": false,
  2885. "_outlineColor": {
  2886. "__type__": "cc.Color",
  2887. "r": 0,
  2888. "g": 0,
  2889. "b": 0,
  2890. "a": 255
  2891. },
  2892. "_outlineWidth": 2,
  2893. "_enableShadow": false,
  2894. "_shadowColor": {
  2895. "__type__": "cc.Color",
  2896. "r": 0,
  2897. "g": 0,
  2898. "b": 0,
  2899. "a": 255
  2900. },
  2901. "_shadowOffset": {
  2902. "__type__": "cc.Vec2",
  2903. "x": 2,
  2904. "y": 2
  2905. },
  2906. "_shadowBlur": 2,
  2907. "_id": "6elzP2hDxH+Y3YdcsUxrF9"
  2908. },
  2909. {
  2910. "__type__": "cc.UITransform",
  2911. "_name": "",
  2912. "_objFlags": 0,
  2913. "__editorExtras__": {},
  2914. "node": {
  2915. "__id__": 70
  2916. },
  2917. "_enabled": true,
  2918. "__prefab": null,
  2919. "_contentSize": {
  2920. "__type__": "cc.Size",
  2921. "width": 93,
  2922. "height": 118
  2923. },
  2924. "_anchorPoint": {
  2925. "__type__": "cc.Vec2",
  2926. "x": 0.5,
  2927. "y": 0.5
  2928. },
  2929. "_id": "4ezWcPeb5J3Kqc8jpXDuR4"
  2930. },
  2931. {
  2932. "__type__": "cc.Sprite",
  2933. "_name": "",
  2934. "_objFlags": 0,
  2935. "__editorExtras__": {},
  2936. "node": {
  2937. "__id__": 70
  2938. },
  2939. "_enabled": true,
  2940. "__prefab": null,
  2941. "_customMaterial": null,
  2942. "_srcBlendFactor": 2,
  2943. "_dstBlendFactor": 4,
  2944. "_color": {
  2945. "__type__": "cc.Color",
  2946. "r": 255,
  2947. "g": 255,
  2948. "b": 255,
  2949. "a": 255
  2950. },
  2951. "_spriteFrame": {
  2952. "__uuid__": "af8d5971-3103-47b0-a295-97d4157b2be9@f9941",
  2953. "__expectedType__": "cc.SpriteFrame"
  2954. },
  2955. "_type": 0,
  2956. "_fillType": 0,
  2957. "_sizeMode": 1,
  2958. "_fillCenter": {
  2959. "__type__": "cc.Vec2",
  2960. "x": 0,
  2961. "y": 0
  2962. },
  2963. "_fillStart": 0,
  2964. "_fillRange": 0,
  2965. "_isTrimmedMode": true,
  2966. "_useGrayscale": false,
  2967. "_atlas": null,
  2968. "_id": "8bn/ip1UJNSrEQt70+SZ2T"
  2969. },
  2970. {
  2971. "__type__": "cc.Node",
  2972. "_name": "电话",
  2973. "_objFlags": 0,
  2974. "__editorExtras__": {},
  2975. "_parent": {
  2976. "__id__": 57
  2977. },
  2978. "_children": [
  2979. {
  2980. "__id__": 77
  2981. }
  2982. ],
  2983. "_active": true,
  2984. "_components": [
  2985. {
  2986. "__id__": 80
  2987. },
  2988. {
  2989. "__id__": 81
  2990. }
  2991. ],
  2992. "_prefab": null,
  2993. "_lpos": {
  2994. "__type__": "cc.Vec3",
  2995. "x": 315.028,
  2996. "y": -6.12,
  2997. "z": 0
  2998. },
  2999. "_lrot": {
  3000. "__type__": "cc.Quat",
  3001. "x": 0,
  3002. "y": 0,
  3003. "z": 0,
  3004. "w": 1
  3005. },
  3006. "_lscale": {
  3007. "__type__": "cc.Vec3",
  3008. "x": 1,
  3009. "y": 1,
  3010. "z": 1
  3011. },
  3012. "_mobility": 0,
  3013. "_layer": 33554432,
  3014. "_euler": {
  3015. "__type__": "cc.Vec3",
  3016. "x": 0,
  3017. "y": 0,
  3018. "z": 0
  3019. },
  3020. "_id": "e36JgIdO9M5LAr0JWvlCfk"
  3021. },
  3022. {
  3023. "__type__": "cc.Node",
  3024. "_name": "电话",
  3025. "_objFlags": 0,
  3026. "__editorExtras__": {},
  3027. "_parent": {
  3028. "__id__": 76
  3029. },
  3030. "_children": [],
  3031. "_active": true,
  3032. "_components": [
  3033. {
  3034. "__id__": 78
  3035. },
  3036. {
  3037. "__id__": 79
  3038. }
  3039. ],
  3040. "_prefab": null,
  3041. "_lpos": {
  3042. "__type__": "cc.Vec3",
  3043. "x": 0,
  3044. "y": -80.234,
  3045. "z": 0
  3046. },
  3047. "_lrot": {
  3048. "__type__": "cc.Quat",
  3049. "x": 0,
  3050. "y": 0,
  3051. "z": 0,
  3052. "w": 1
  3053. },
  3054. "_lscale": {
  3055. "__type__": "cc.Vec3",
  3056. "x": 1,
  3057. "y": 1,
  3058. "z": 1
  3059. },
  3060. "_mobility": 0,
  3061. "_layer": 33554432,
  3062. "_euler": {
  3063. "__type__": "cc.Vec3",
  3064. "x": 0,
  3065. "y": 0,
  3066. "z": 0
  3067. },
  3068. "_id": "584l5FH9hACrQMDUUlLcSh"
  3069. },
  3070. {
  3071. "__type__": "cc.UITransform",
  3072. "_name": "",
  3073. "_objFlags": 0,
  3074. "__editorExtras__": {},
  3075. "node": {
  3076. "__id__": 77
  3077. },
  3078. "_enabled": true,
  3079. "__prefab": null,
  3080. "_contentSize": {
  3081. "__type__": "cc.Size",
  3082. "width": 40,
  3083. "height": 50.4
  3084. },
  3085. "_anchorPoint": {
  3086. "__type__": "cc.Vec2",
  3087. "x": 0.5,
  3088. "y": 0.5
  3089. },
  3090. "_id": "73RFeyHjBN56/uZbHkUmaz"
  3091. },
  3092. {
  3093. "__type__": "cc.Label",
  3094. "_name": "",
  3095. "_objFlags": 0,
  3096. "__editorExtras__": {},
  3097. "node": {
  3098. "__id__": 77
  3099. },
  3100. "_enabled": true,
  3101. "__prefab": null,
  3102. "_customMaterial": null,
  3103. "_srcBlendFactor": 2,
  3104. "_dstBlendFactor": 4,
  3105. "_color": {
  3106. "__type__": "cc.Color",
  3107. "r": 255,
  3108. "g": 255,
  3109. "b": 255,
  3110. "a": 255
  3111. },
  3112. "_string": "电话",
  3113. "_horizontalAlign": 1,
  3114. "_verticalAlign": 1,
  3115. "_actualFontSize": 20,
  3116. "_fontSize": 20,
  3117. "_fontFamily": "Arial",
  3118. "_lineHeight": 40,
  3119. "_overflow": 0,
  3120. "_enableWrapText": true,
  3121. "_font": null,
  3122. "_isSystemFontUsed": true,
  3123. "_spacingX": 0,
  3124. "_isItalic": false,
  3125. "_isBold": false,
  3126. "_isUnderline": false,
  3127. "_underlineHeight": 2,
  3128. "_cacheMode": 0,
  3129. "_enableOutline": false,
  3130. "_outlineColor": {
  3131. "__type__": "cc.Color",
  3132. "r": 0,
  3133. "g": 0,
  3134. "b": 0,
  3135. "a": 255
  3136. },
  3137. "_outlineWidth": 2,
  3138. "_enableShadow": false,
  3139. "_shadowColor": {
  3140. "__type__": "cc.Color",
  3141. "r": 0,
  3142. "g": 0,
  3143. "b": 0,
  3144. "a": 255
  3145. },
  3146. "_shadowOffset": {
  3147. "__type__": "cc.Vec2",
  3148. "x": 2,
  3149. "y": 2
  3150. },
  3151. "_shadowBlur": 2,
  3152. "_id": "fcLXcxNSBNS7W+Sd7tYsCY"
  3153. },
  3154. {
  3155. "__type__": "cc.UITransform",
  3156. "_name": "",
  3157. "_objFlags": 0,
  3158. "__editorExtras__": {},
  3159. "node": {
  3160. "__id__": 76
  3161. },
  3162. "_enabled": true,
  3163. "__prefab": null,
  3164. "_contentSize": {
  3165. "__type__": "cc.Size",
  3166. "width": 94,
  3167. "height": 118
  3168. },
  3169. "_anchorPoint": {
  3170. "__type__": "cc.Vec2",
  3171. "x": 0.5,
  3172. "y": 0.5
  3173. },
  3174. "_id": "e2Ovn7v01KfLKe/QQFOIbL"
  3175. },
  3176. {
  3177. "__type__": "cc.Sprite",
  3178. "_name": "",
  3179. "_objFlags": 0,
  3180. "__editorExtras__": {},
  3181. "node": {
  3182. "__id__": 76
  3183. },
  3184. "_enabled": true,
  3185. "__prefab": null,
  3186. "_customMaterial": null,
  3187. "_srcBlendFactor": 2,
  3188. "_dstBlendFactor": 4,
  3189. "_color": {
  3190. "__type__": "cc.Color",
  3191. "r": 255,
  3192. "g": 255,
  3193. "b": 255,
  3194. "a": 255
  3195. },
  3196. "_spriteFrame": {
  3197. "__uuid__": "0f52df85-3a25-4e2b-9e5a-6d889e2e04a7@f9941",
  3198. "__expectedType__": "cc.SpriteFrame"
  3199. },
  3200. "_type": 0,
  3201. "_fillType": 0,
  3202. "_sizeMode": 1,
  3203. "_fillCenter": {
  3204. "__type__": "cc.Vec2",
  3205. "x": 0,
  3206. "y": 0
  3207. },
  3208. "_fillStart": 0,
  3209. "_fillRange": 0,
  3210. "_isTrimmedMode": true,
  3211. "_useGrayscale": false,
  3212. "_atlas": null,
  3213. "_id": "1dGWuP8JVL7K62JTQ8aogs"
  3214. },
  3215. {
  3216. "__type__": "cc.UITransform",
  3217. "_name": "",
  3218. "_objFlags": 0,
  3219. "__editorExtras__": {},
  3220. "node": {
  3221. "__id__": 57
  3222. },
  3223. "_enabled": true,
  3224. "__prefab": null,
  3225. "_contentSize": {
  3226. "__type__": "cc.Size",
  3227. "width": 100,
  3228. "height": 100
  3229. },
  3230. "_anchorPoint": {
  3231. "__type__": "cc.Vec2",
  3232. "x": 0.5,
  3233. "y": 0.5
  3234. },
  3235. "_id": "1cRwJlGQNDOrW7eSDECqxw"
  3236. },
  3237. {
  3238. "__type__": "cc.Node",
  3239. "_name": "底部操作区",
  3240. "_objFlags": 0,
  3241. "__editorExtras__": {},
  3242. "_parent": {
  3243. "__id__": 2
  3244. },
  3245. "_children": [
  3246. {
  3247. "__id__": 84
  3248. },
  3249. {
  3250. "__id__": 90
  3251. },
  3252. {
  3253. "__id__": 96
  3254. },
  3255. {
  3256. "__id__": 102
  3257. },
  3258. {
  3259. "__id__": 111
  3260. },
  3261. {
  3262. "__id__": 114
  3263. },
  3264. {
  3265. "__id__": 117
  3266. }
  3267. ],
  3268. "_active": true,
  3269. "_components": [
  3270. {
  3271. "__id__": 126
  3272. }
  3273. ],
  3274. "_prefab": null,
  3275. "_lpos": {
  3276. "__type__": "cc.Vec3",
  3277. "x": 0,
  3278. "y": 0,
  3279. "z": 0
  3280. },
  3281. "_lrot": {
  3282. "__type__": "cc.Quat",
  3283. "x": 0,
  3284. "y": 0,
  3285. "z": 0,
  3286. "w": 1
  3287. },
  3288. "_lscale": {
  3289. "__type__": "cc.Vec3",
  3290. "x": 1,
  3291. "y": 1,
  3292. "z": 1
  3293. },
  3294. "_mobility": 0,
  3295. "_layer": 33554432,
  3296. "_euler": {
  3297. "__type__": "cc.Vec3",
  3298. "x": 0,
  3299. "y": 0,
  3300. "z": 0
  3301. },
  3302. "_id": "d3SvAvjxlH86tMSCaiNMKY"
  3303. },
  3304. {
  3305. "__type__": "cc.Node",
  3306. "_name": "身份证1",
  3307. "_objFlags": 0,
  3308. "__editorExtras__": {},
  3309. "_parent": {
  3310. "__id__": 83
  3311. },
  3312. "_children": [
  3313. {
  3314. "__id__": 85
  3315. }
  3316. ],
  3317. "_active": true,
  3318. "_components": [
  3319. {
  3320. "__id__": 88
  3321. },
  3322. {
  3323. "__id__": 89
  3324. }
  3325. ],
  3326. "_prefab": null,
  3327. "_lpos": {
  3328. "__type__": "cc.Vec3",
  3329. "x": 0,
  3330. "y": -247.51,
  3331. "z": 0
  3332. },
  3333. "_lrot": {
  3334. "__type__": "cc.Quat",
  3335. "x": 0,
  3336. "y": 0,
  3337. "z": 0,
  3338. "w": 1
  3339. },
  3340. "_lscale": {
  3341. "__type__": "cc.Vec3",
  3342. "x": 1,
  3343. "y": 1,
  3344. "z": 1
  3345. },
  3346. "_mobility": 0,
  3347. "_layer": 33554432,
  3348. "_euler": {
  3349. "__type__": "cc.Vec3",
  3350. "x": 0,
  3351. "y": 0,
  3352. "z": 0
  3353. },
  3354. "_id": "e1ADnY3mBC+q4lox6G12Mb"
  3355. },
  3356. {
  3357. "__type__": "cc.Node",
  3358. "_name": "询问1",
  3359. "_objFlags": 0,
  3360. "__editorExtras__": {},
  3361. "_parent": {
  3362. "__id__": 84
  3363. },
  3364. "_children": [],
  3365. "_active": true,
  3366. "_components": [
  3367. {
  3368. "__id__": 86
  3369. },
  3370. {
  3371. "__id__": 87
  3372. }
  3373. ],
  3374. "_prefab": null,
  3375. "_lpos": {
  3376. "__type__": "cc.Vec3",
  3377. "x": 0,
  3378. "y": 0,
  3379. "z": 0
  3380. },
  3381. "_lrot": {
  3382. "__type__": "cc.Quat",
  3383. "x": 0,
  3384. "y": 0,
  3385. "z": 0,
  3386. "w": 1
  3387. },
  3388. "_lscale": {
  3389. "__type__": "cc.Vec3",
  3390. "x": 1,
  3391. "y": 1,
  3392. "z": 1
  3393. },
  3394. "_mobility": 0,
  3395. "_layer": 33554432,
  3396. "_euler": {
  3397. "__type__": "cc.Vec3",
  3398. "x": 0,
  3399. "y": 0,
  3400. "z": 0
  3401. },
  3402. "_id": "d2msW1KZhEE414RtE36qbT"
  3403. },
  3404. {
  3405. "__type__": "cc.UITransform",
  3406. "_name": "",
  3407. "_objFlags": 0,
  3408. "__editorExtras__": {},
  3409. "node": {
  3410. "__id__": 85
  3411. },
  3412. "_enabled": true,
  3413. "__prefab": null,
  3414. "_contentSize": {
  3415. "__type__": "cc.Size",
  3416. "width": 300,
  3417. "height": 50.4
  3418. },
  3419. "_anchorPoint": {
  3420. "__type__": "cc.Vec2",
  3421. "x": 0.5,
  3422. "y": 0.5
  3423. },
  3424. "_id": "b2BqXF2OFNdawrs2eLrxya"
  3425. },
  3426. {
  3427. "__type__": "cc.Label",
  3428. "_name": "",
  3429. "_objFlags": 0,
  3430. "__editorExtras__": {},
  3431. "node": {
  3432. "__id__": 85
  3433. },
  3434. "_enabled": true,
  3435. "__prefab": null,
  3436. "_customMaterial": null,
  3437. "_srcBlendFactor": 2,
  3438. "_dstBlendFactor": 4,
  3439. "_color": {
  3440. "__type__": "cc.Color",
  3441. "r": 5,
  3442. "g": 5,
  3443. "b": 5,
  3444. "a": 255
  3445. },
  3446. "_string": "询问为何不在名单内?",
  3447. "_horizontalAlign": 1,
  3448. "_verticalAlign": 1,
  3449. "_actualFontSize": 30,
  3450. "_fontSize": 30,
  3451. "_fontFamily": "Arial",
  3452. "_lineHeight": 40,
  3453. "_overflow": 0,
  3454. "_enableWrapText": true,
  3455. "_font": null,
  3456. "_isSystemFontUsed": true,
  3457. "_spacingX": 0,
  3458. "_isItalic": false,
  3459. "_isBold": false,
  3460. "_isUnderline": false,
  3461. "_underlineHeight": 2,
  3462. "_cacheMode": 0,
  3463. "_enableOutline": false,
  3464. "_outlineColor": {
  3465. "__type__": "cc.Color",
  3466. "r": 0,
  3467. "g": 0,
  3468. "b": 0,
  3469. "a": 255
  3470. },
  3471. "_outlineWidth": 2,
  3472. "_enableShadow": false,
  3473. "_shadowColor": {
  3474. "__type__": "cc.Color",
  3475. "r": 0,
  3476. "g": 0,
  3477. "b": 0,
  3478. "a": 255
  3479. },
  3480. "_shadowOffset": {
  3481. "__type__": "cc.Vec2",
  3482. "x": 2,
  3483. "y": 2
  3484. },
  3485. "_shadowBlur": 2,
  3486. "_id": "b20GeHpKVBMYimsZ5nq8eb"
  3487. },
  3488. {
  3489. "__type__": "cc.UITransform",
  3490. "_name": "",
  3491. "_objFlags": 0,
  3492. "__editorExtras__": {},
  3493. "node": {
  3494. "__id__": 84
  3495. },
  3496. "_enabled": true,
  3497. "__prefab": null,
  3498. "_contentSize": {
  3499. "__type__": "cc.Size",
  3500. "width": 446,
  3501. "height": 82
  3502. },
  3503. "_anchorPoint": {
  3504. "__type__": "cc.Vec2",
  3505. "x": 0.5,
  3506. "y": 0.5
  3507. },
  3508. "_id": "0aVnXFnulBLJumJAAN7XK3"
  3509. },
  3510. {
  3511. "__type__": "cc.Sprite",
  3512. "_name": "",
  3513. "_objFlags": 0,
  3514. "__editorExtras__": {},
  3515. "node": {
  3516. "__id__": 84
  3517. },
  3518. "_enabled": true,
  3519. "__prefab": null,
  3520. "_customMaterial": null,
  3521. "_srcBlendFactor": 2,
  3522. "_dstBlendFactor": 4,
  3523. "_color": {
  3524. "__type__": "cc.Color",
  3525. "r": 255,
  3526. "g": 255,
  3527. "b": 255,
  3528. "a": 255
  3529. },
  3530. "_spriteFrame": {
  3531. "__uuid__": "0c458838-d515-4739-9acb-f17d80236269@f9941",
  3532. "__expectedType__": "cc.SpriteFrame"
  3533. },
  3534. "_type": 0,
  3535. "_fillType": 0,
  3536. "_sizeMode": 1,
  3537. "_fillCenter": {
  3538. "__type__": "cc.Vec2",
  3539. "x": 0,
  3540. "y": 0
  3541. },
  3542. "_fillStart": 0,
  3543. "_fillRange": 0,
  3544. "_isTrimmedMode": true,
  3545. "_useGrayscale": false,
  3546. "_atlas": null,
  3547. "_id": "14ozIaDnRB/Z9JWf+2QmD9"
  3548. },
  3549. {
  3550. "__type__": "cc.Node",
  3551. "_name": "身份证2",
  3552. "_objFlags": 0,
  3553. "__editorExtras__": {},
  3554. "_parent": {
  3555. "__id__": 83
  3556. },
  3557. "_children": [
  3558. {
  3559. "__id__": 91
  3560. }
  3561. ],
  3562. "_active": true,
  3563. "_components": [
  3564. {
  3565. "__id__": 94
  3566. },
  3567. {
  3568. "__id__": 95
  3569. }
  3570. ],
  3571. "_prefab": null,
  3572. "_lpos": {
  3573. "__type__": "cc.Vec3",
  3574. "x": 0,
  3575. "y": -348.65,
  3576. "z": 0
  3577. },
  3578. "_lrot": {
  3579. "__type__": "cc.Quat",
  3580. "x": 0,
  3581. "y": 0,
  3582. "z": 0,
  3583. "w": 1
  3584. },
  3585. "_lscale": {
  3586. "__type__": "cc.Vec3",
  3587. "x": 1,
  3588. "y": 1,
  3589. "z": 1
  3590. },
  3591. "_mobility": 0,
  3592. "_layer": 33554432,
  3593. "_euler": {
  3594. "__type__": "cc.Vec3",
  3595. "x": 0,
  3596. "y": 0,
  3597. "z": 0
  3598. },
  3599. "_id": "a2z591Q7lCbJQdNYW3Jga8"
  3600. },
  3601. {
  3602. "__type__": "cc.Node",
  3603. "_name": "询问2",
  3604. "_objFlags": 0,
  3605. "__editorExtras__": {},
  3606. "_parent": {
  3607. "__id__": 90
  3608. },
  3609. "_children": [],
  3610. "_active": true,
  3611. "_components": [
  3612. {
  3613. "__id__": 92
  3614. },
  3615. {
  3616. "__id__": 93
  3617. }
  3618. ],
  3619. "_prefab": null,
  3620. "_lpos": {
  3621. "__type__": "cc.Vec3",
  3622. "x": 0,
  3623. "y": 0,
  3624. "z": 0
  3625. },
  3626. "_lrot": {
  3627. "__type__": "cc.Quat",
  3628. "x": 0,
  3629. "y": 0,
  3630. "z": 0,
  3631. "w": 1
  3632. },
  3633. "_lscale": {
  3634. "__type__": "cc.Vec3",
  3635. "x": 1,
  3636. "y": 1,
  3637. "z": 1
  3638. },
  3639. "_mobility": 0,
  3640. "_layer": 33554432,
  3641. "_euler": {
  3642. "__type__": "cc.Vec3",
  3643. "x": 0,
  3644. "y": 0,
  3645. "z": 0
  3646. },
  3647. "_id": "a7b67J+3RAaIr7Pn8DqpmN"
  3648. },
  3649. {
  3650. "__type__": "cc.UITransform",
  3651. "_name": "",
  3652. "_objFlags": 0,
  3653. "__editorExtras__": {},
  3654. "node": {
  3655. "__id__": 91
  3656. },
  3657. "_enabled": true,
  3658. "__prefab": null,
  3659. "_contentSize": {
  3660. "__type__": "cc.Size",
  3661. "width": 180,
  3662. "height": 50.4
  3663. },
  3664. "_anchorPoint": {
  3665. "__type__": "cc.Vec2",
  3666. "x": 0.5,
  3667. "y": 0.5
  3668. },
  3669. "_id": "b7oaDekSRAILOBwpOk/DC9"
  3670. },
  3671. {
  3672. "__type__": "cc.Label",
  3673. "_name": "",
  3674. "_objFlags": 0,
  3675. "__editorExtras__": {},
  3676. "node": {
  3677. "__id__": 91
  3678. },
  3679. "_enabled": true,
  3680. "__prefab": null,
  3681. "_customMaterial": null,
  3682. "_srcBlendFactor": 2,
  3683. "_dstBlendFactor": 4,
  3684. "_color": {
  3685. "__type__": "cc.Color",
  3686. "r": 5,
  3687. "g": 5,
  3688. "b": 5,
  3689. "a": 255
  3690. },
  3691. "_string": "询问通行证?",
  3692. "_horizontalAlign": 1,
  3693. "_verticalAlign": 1,
  3694. "_actualFontSize": 30,
  3695. "_fontSize": 30,
  3696. "_fontFamily": "Arial",
  3697. "_lineHeight": 40,
  3698. "_overflow": 0,
  3699. "_enableWrapText": true,
  3700. "_font": null,
  3701. "_isSystemFontUsed": true,
  3702. "_spacingX": 0,
  3703. "_isItalic": false,
  3704. "_isBold": false,
  3705. "_isUnderline": false,
  3706. "_underlineHeight": 2,
  3707. "_cacheMode": 0,
  3708. "_enableOutline": false,
  3709. "_outlineColor": {
  3710. "__type__": "cc.Color",
  3711. "r": 0,
  3712. "g": 0,
  3713. "b": 0,
  3714. "a": 255
  3715. },
  3716. "_outlineWidth": 2,
  3717. "_enableShadow": false,
  3718. "_shadowColor": {
  3719. "__type__": "cc.Color",
  3720. "r": 0,
  3721. "g": 0,
  3722. "b": 0,
  3723. "a": 255
  3724. },
  3725. "_shadowOffset": {
  3726. "__type__": "cc.Vec2",
  3727. "x": 2,
  3728. "y": 2
  3729. },
  3730. "_shadowBlur": 2,
  3731. "_id": "11C74tf65Gfa8D7+iIY1vf"
  3732. },
  3733. {
  3734. "__type__": "cc.UITransform",
  3735. "_name": "",
  3736. "_objFlags": 0,
  3737. "__editorExtras__": {},
  3738. "node": {
  3739. "__id__": 90
  3740. },
  3741. "_enabled": true,
  3742. "__prefab": null,
  3743. "_contentSize": {
  3744. "__type__": "cc.Size",
  3745. "width": 446,
  3746. "height": 82
  3747. },
  3748. "_anchorPoint": {
  3749. "__type__": "cc.Vec2",
  3750. "x": 0.5,
  3751. "y": 0.5
  3752. },
  3753. "_id": "36f1L9OmlDjai3HgJd2VyH"
  3754. },
  3755. {
  3756. "__type__": "cc.Sprite",
  3757. "_name": "",
  3758. "_objFlags": 0,
  3759. "__editorExtras__": {},
  3760. "node": {
  3761. "__id__": 90
  3762. },
  3763. "_enabled": true,
  3764. "__prefab": null,
  3765. "_customMaterial": null,
  3766. "_srcBlendFactor": 2,
  3767. "_dstBlendFactor": 4,
  3768. "_color": {
  3769. "__type__": "cc.Color",
  3770. "r": 255,
  3771. "g": 255,
  3772. "b": 255,
  3773. "a": 255
  3774. },
  3775. "_spriteFrame": {
  3776. "__uuid__": "0c458838-d515-4739-9acb-f17d80236269@f9941",
  3777. "__expectedType__": "cc.SpriteFrame"
  3778. },
  3779. "_type": 0,
  3780. "_fillType": 0,
  3781. "_sizeMode": 1,
  3782. "_fillCenter": {
  3783. "__type__": "cc.Vec2",
  3784. "x": 0,
  3785. "y": 0
  3786. },
  3787. "_fillStart": 0,
  3788. "_fillRange": 0,
  3789. "_isTrimmedMode": true,
  3790. "_useGrayscale": false,
  3791. "_atlas": null,
  3792. "_id": "1d17I31+tBRKgc3KZp1D+4"
  3793. },
  3794. {
  3795. "__type__": "cc.Node",
  3796. "_name": "身份证3",
  3797. "_objFlags": 0,
  3798. "__editorExtras__": {},
  3799. "_parent": {
  3800. "__id__": 83
  3801. },
  3802. "_children": [
  3803. {
  3804. "__id__": 97
  3805. }
  3806. ],
  3807. "_active": true,
  3808. "_components": [
  3809. {
  3810. "__id__": 100
  3811. },
  3812. {
  3813. "__id__": 101
  3814. }
  3815. ],
  3816. "_prefab": null,
  3817. "_lpos": {
  3818. "__type__": "cc.Vec3",
  3819. "x": 0,
  3820. "y": -451.03,
  3821. "z": 0
  3822. },
  3823. "_lrot": {
  3824. "__type__": "cc.Quat",
  3825. "x": 0,
  3826. "y": 0,
  3827. "z": 0,
  3828. "w": 1
  3829. },
  3830. "_lscale": {
  3831. "__type__": "cc.Vec3",
  3832. "x": 1,
  3833. "y": 1,
  3834. "z": 1
  3835. },
  3836. "_mobility": 0,
  3837. "_layer": 33554432,
  3838. "_euler": {
  3839. "__type__": "cc.Vec3",
  3840. "x": 0,
  3841. "y": 0,
  3842. "z": 0
  3843. },
  3844. "_id": "b58NNNOT9NKJ827QajgJYI"
  3845. },
  3846. {
  3847. "__type__": "cc.Node",
  3848. "_name": "询问3",
  3849. "_objFlags": 0,
  3850. "__editorExtras__": {},
  3851. "_parent": {
  3852. "__id__": 96
  3853. },
  3854. "_children": [],
  3855. "_active": true,
  3856. "_components": [
  3857. {
  3858. "__id__": 98
  3859. },
  3860. {
  3861. "__id__": 99
  3862. }
  3863. ],
  3864. "_prefab": null,
  3865. "_lpos": {
  3866. "__type__": "cc.Vec3",
  3867. "x": 0,
  3868. "y": -0.926,
  3869. "z": 0
  3870. },
  3871. "_lrot": {
  3872. "__type__": "cc.Quat",
  3873. "x": 0,
  3874. "y": 0,
  3875. "z": 0,
  3876. "w": 1
  3877. },
  3878. "_lscale": {
  3879. "__type__": "cc.Vec3",
  3880. "x": 1,
  3881. "y": 1,
  3882. "z": 1
  3883. },
  3884. "_mobility": 0,
  3885. "_layer": 33554432,
  3886. "_euler": {
  3887. "__type__": "cc.Vec3",
  3888. "x": 0,
  3889. "y": 0,
  3890. "z": 0
  3891. },
  3892. "_id": "74dpxz2oFIRauj3EcMfgDq"
  3893. },
  3894. {
  3895. "__type__": "cc.UITransform",
  3896. "_name": "",
  3897. "_objFlags": 0,
  3898. "__editorExtras__": {},
  3899. "node": {
  3900. "__id__": 97
  3901. },
  3902. "_enabled": true,
  3903. "__prefab": null,
  3904. "_contentSize": {
  3905. "__type__": "cc.Size",
  3906. "width": 150,
  3907. "height": 50.4
  3908. },
  3909. "_anchorPoint": {
  3910. "__type__": "cc.Vec2",
  3911. "x": 0.5,
  3912. "y": 0.5
  3913. },
  3914. "_id": "bcmduVYeNHoadjviUgCGBI"
  3915. },
  3916. {
  3917. "__type__": "cc.Label",
  3918. "_name": "",
  3919. "_objFlags": 0,
  3920. "__editorExtras__": {},
  3921. "node": {
  3922. "__id__": 97
  3923. },
  3924. "_enabled": true,
  3925. "__prefab": null,
  3926. "_customMaterial": null,
  3927. "_srcBlendFactor": 2,
  3928. "_dstBlendFactor": 4,
  3929. "_color": {
  3930. "__type__": "cc.Color",
  3931. "r": 5,
  3932. "g": 5,
  3933. "b": 5,
  3934. "a": 255
  3935. },
  3936. "_string": "询问外貌?",
  3937. "_horizontalAlign": 1,
  3938. "_verticalAlign": 1,
  3939. "_actualFontSize": 30,
  3940. "_fontSize": 30,
  3941. "_fontFamily": "Arial",
  3942. "_lineHeight": 40,
  3943. "_overflow": 0,
  3944. "_enableWrapText": true,
  3945. "_font": null,
  3946. "_isSystemFontUsed": true,
  3947. "_spacingX": 0,
  3948. "_isItalic": false,
  3949. "_isBold": false,
  3950. "_isUnderline": false,
  3951. "_underlineHeight": 2,
  3952. "_cacheMode": 0,
  3953. "_enableOutline": false,
  3954. "_outlineColor": {
  3955. "__type__": "cc.Color",
  3956. "r": 0,
  3957. "g": 0,
  3958. "b": 0,
  3959. "a": 255
  3960. },
  3961. "_outlineWidth": 2,
  3962. "_enableShadow": false,
  3963. "_shadowColor": {
  3964. "__type__": "cc.Color",
  3965. "r": 0,
  3966. "g": 0,
  3967. "b": 0,
  3968. "a": 255
  3969. },
  3970. "_shadowOffset": {
  3971. "__type__": "cc.Vec2",
  3972. "x": 2,
  3973. "y": 2
  3974. },
  3975. "_shadowBlur": 2,
  3976. "_id": "baPxz0DhZBu6r0BKj6fTu8"
  3977. },
  3978. {
  3979. "__type__": "cc.UITransform",
  3980. "_name": "",
  3981. "_objFlags": 0,
  3982. "__editorExtras__": {},
  3983. "node": {
  3984. "__id__": 96
  3985. },
  3986. "_enabled": true,
  3987. "__prefab": null,
  3988. "_contentSize": {
  3989. "__type__": "cc.Size",
  3990. "width": 446,
  3991. "height": 82
  3992. },
  3993. "_anchorPoint": {
  3994. "__type__": "cc.Vec2",
  3995. "x": 0.5,
  3996. "y": 0.5
  3997. },
  3998. "_id": "d2HknYh4FBubMvBwsuprdf"
  3999. },
  4000. {
  4001. "__type__": "cc.Sprite",
  4002. "_name": "",
  4003. "_objFlags": 0,
  4004. "__editorExtras__": {},
  4005. "node": {
  4006. "__id__": 96
  4007. },
  4008. "_enabled": true,
  4009. "__prefab": null,
  4010. "_customMaterial": null,
  4011. "_srcBlendFactor": 2,
  4012. "_dstBlendFactor": 4,
  4013. "_color": {
  4014. "__type__": "cc.Color",
  4015. "r": 255,
  4016. "g": 255,
  4017. "b": 255,
  4018. "a": 255
  4019. },
  4020. "_spriteFrame": {
  4021. "__uuid__": "0c458838-d515-4739-9acb-f17d80236269@f9941",
  4022. "__expectedType__": "cc.SpriteFrame"
  4023. },
  4024. "_type": 0,
  4025. "_fillType": 0,
  4026. "_sizeMode": 1,
  4027. "_fillCenter": {
  4028. "__type__": "cc.Vec2",
  4029. "x": 0,
  4030. "y": 0
  4031. },
  4032. "_fillStart": 0,
  4033. "_fillRange": 0,
  4034. "_isTrimmedMode": true,
  4035. "_useGrayscale": false,
  4036. "_atlas": null,
  4037. "_id": "4acYy4sVtCuJsprWj/WewA"
  4038. },
  4039. {
  4040. "__type__": "cc.Node",
  4041. "_name": "加时长",
  4042. "_objFlags": 0,
  4043. "__editorExtras__": {},
  4044. "_parent": {
  4045. "__id__": 83
  4046. },
  4047. "_children": [
  4048. {
  4049. "__id__": 103
  4050. },
  4051. {
  4052. "__id__": 106
  4053. }
  4054. ],
  4055. "_active": true,
  4056. "_components": [
  4057. {
  4058. "__id__": 109
  4059. },
  4060. {
  4061. "__id__": 110
  4062. }
  4063. ],
  4064. "_prefab": null,
  4065. "_lpos": {
  4066. "__type__": "cc.Vec3",
  4067. "x": -298.54,
  4068. "y": -510.987,
  4069. "z": 0
  4070. },
  4071. "_lrot": {
  4072. "__type__": "cc.Quat",
  4073. "x": 0,
  4074. "y": 0,
  4075. "z": 0,
  4076. "w": 1
  4077. },
  4078. "_lscale": {
  4079. "__type__": "cc.Vec3",
  4080. "x": 1,
  4081. "y": 1,
  4082. "z": 1
  4083. },
  4084. "_mobility": 0,
  4085. "_layer": 33554432,
  4086. "_euler": {
  4087. "__type__": "cc.Vec3",
  4088. "x": 0,
  4089. "y": 0,
  4090. "z": 0
  4091. },
  4092. "_id": "44GKD5iVxHlqEiTjPD1dVm"
  4093. },
  4094. {
  4095. "__type__": "cc.Node",
  4096. "_name": "摄像头",
  4097. "_objFlags": 0,
  4098. "__editorExtras__": {},
  4099. "_parent": {
  4100. "__id__": 102
  4101. },
  4102. "_children": [],
  4103. "_active": true,
  4104. "_components": [
  4105. {
  4106. "__id__": 104
  4107. },
  4108. {
  4109. "__id__": 105
  4110. }
  4111. ],
  4112. "_prefab": null,
  4113. "_lpos": {
  4114. "__type__": "cc.Vec3",
  4115. "x": 3.868,
  4116. "y": -49.797,
  4117. "z": 0
  4118. },
  4119. "_lrot": {
  4120. "__type__": "cc.Quat",
  4121. "x": 0,
  4122. "y": 0,
  4123. "z": 0,
  4124. "w": 1
  4125. },
  4126. "_lscale": {
  4127. "__type__": "cc.Vec3",
  4128. "x": 1,
  4129. "y": 1,
  4130. "z": 1
  4131. },
  4132. "_mobility": 0,
  4133. "_layer": 33554432,
  4134. "_euler": {
  4135. "__type__": "cc.Vec3",
  4136. "x": 0,
  4137. "y": 0,
  4138. "z": 0
  4139. },
  4140. "_id": "6cxJ6ofcpHoqthE22uZ8kp"
  4141. },
  4142. {
  4143. "__type__": "cc.UITransform",
  4144. "_name": "",
  4145. "_objFlags": 0,
  4146. "__editorExtras__": {},
  4147. "node": {
  4148. "__id__": 103
  4149. },
  4150. "_enabled": true,
  4151. "__prefab": null,
  4152. "_contentSize": {
  4153. "__type__": "cc.Size",
  4154. "width": 64,
  4155. "height": 40
  4156. },
  4157. "_anchorPoint": {
  4158. "__type__": "cc.Vec2",
  4159. "x": 0.5,
  4160. "y": 0.5
  4161. },
  4162. "_id": "42/G9t23FIRbwOq5x81Tlq"
  4163. },
  4164. {
  4165. "__type__": "cc.Sprite",
  4166. "_name": "",
  4167. "_objFlags": 0,
  4168. "__editorExtras__": {},
  4169. "node": {
  4170. "__id__": 103
  4171. },
  4172. "_enabled": true,
  4173. "__prefab": null,
  4174. "_customMaterial": null,
  4175. "_srcBlendFactor": 2,
  4176. "_dstBlendFactor": 4,
  4177. "_color": {
  4178. "__type__": "cc.Color",
  4179. "r": 255,
  4180. "g": 255,
  4181. "b": 255,
  4182. "a": 255
  4183. },
  4184. "_spriteFrame": {
  4185. "__uuid__": "42aaa707-9ff1-42b4-946c-eda525ecdda5@f9941",
  4186. "__expectedType__": "cc.SpriteFrame"
  4187. },
  4188. "_type": 0,
  4189. "_fillType": 0,
  4190. "_sizeMode": 1,
  4191. "_fillCenter": {
  4192. "__type__": "cc.Vec2",
  4193. "x": 0,
  4194. "y": 0
  4195. },
  4196. "_fillStart": 0,
  4197. "_fillRange": 0,
  4198. "_isTrimmedMode": true,
  4199. "_useGrayscale": false,
  4200. "_atlas": null,
  4201. "_id": "62MbcFuElLRZDp/cKxtf52"
  4202. },
  4203. {
  4204. "__type__": "cc.Node",
  4205. "_name": "延长时间",
  4206. "_objFlags": 0,
  4207. "__editorExtras__": {},
  4208. "_parent": {
  4209. "__id__": 102
  4210. },
  4211. "_children": [],
  4212. "_active": true,
  4213. "_components": [
  4214. {
  4215. "__id__": 107
  4216. },
  4217. {
  4218. "__id__": 108
  4219. }
  4220. ],
  4221. "_prefab": null,
  4222. "_lpos": {
  4223. "__type__": "cc.Vec3",
  4224. "x": 5.318,
  4225. "y": -84.123,
  4226. "z": 0
  4227. },
  4228. "_lrot": {
  4229. "__type__": "cc.Quat",
  4230. "x": 0,
  4231. "y": 0,
  4232. "z": 0,
  4233. "w": 1
  4234. },
  4235. "_lscale": {
  4236. "__type__": "cc.Vec3",
  4237. "x": 1,
  4238. "y": 1,
  4239. "z": 1
  4240. },
  4241. "_mobility": 0,
  4242. "_layer": 33554432,
  4243. "_euler": {
  4244. "__type__": "cc.Vec3",
  4245. "x": 0,
  4246. "y": 0,
  4247. "z": 0
  4248. },
  4249. "_id": "e3lPrf839PyolKiWYIFb5T"
  4250. },
  4251. {
  4252. "__type__": "cc.UITransform",
  4253. "_name": "",
  4254. "_objFlags": 0,
  4255. "__editorExtras__": {},
  4256. "node": {
  4257. "__id__": 106
  4258. },
  4259. "_enabled": true,
  4260. "__prefab": null,
  4261. "_contentSize": {
  4262. "__type__": "cc.Size",
  4263. "width": 80,
  4264. "height": 50.4
  4265. },
  4266. "_anchorPoint": {
  4267. "__type__": "cc.Vec2",
  4268. "x": 0.5,
  4269. "y": 0.5
  4270. },
  4271. "_id": "5aK3noszlAv5U587SmN2Tn"
  4272. },
  4273. {
  4274. "__type__": "cc.Label",
  4275. "_name": "",
  4276. "_objFlags": 0,
  4277. "__editorExtras__": {},
  4278. "node": {
  4279. "__id__": 106
  4280. },
  4281. "_enabled": true,
  4282. "__prefab": null,
  4283. "_customMaterial": null,
  4284. "_srcBlendFactor": 2,
  4285. "_dstBlendFactor": 4,
  4286. "_color": {
  4287. "__type__": "cc.Color",
  4288. "r": 255,
  4289. "g": 255,
  4290. "b": 255,
  4291. "a": 255
  4292. },
  4293. "_string": "延长时间",
  4294. "_horizontalAlign": 1,
  4295. "_verticalAlign": 1,
  4296. "_actualFontSize": 20,
  4297. "_fontSize": 20,
  4298. "_fontFamily": "Arial",
  4299. "_lineHeight": 40,
  4300. "_overflow": 0,
  4301. "_enableWrapText": true,
  4302. "_font": null,
  4303. "_isSystemFontUsed": true,
  4304. "_spacingX": 0,
  4305. "_isItalic": false,
  4306. "_isBold": false,
  4307. "_isUnderline": false,
  4308. "_underlineHeight": 2,
  4309. "_cacheMode": 0,
  4310. "_enableOutline": false,
  4311. "_outlineColor": {
  4312. "__type__": "cc.Color",
  4313. "r": 0,
  4314. "g": 0,
  4315. "b": 0,
  4316. "a": 255
  4317. },
  4318. "_outlineWidth": 2,
  4319. "_enableShadow": false,
  4320. "_shadowColor": {
  4321. "__type__": "cc.Color",
  4322. "r": 0,
  4323. "g": 0,
  4324. "b": 0,
  4325. "a": 255
  4326. },
  4327. "_shadowOffset": {
  4328. "__type__": "cc.Vec2",
  4329. "x": 2,
  4330. "y": 2
  4331. },
  4332. "_shadowBlur": 2,
  4333. "_id": "efCNBaaOBFYaC3j3XL0fDL"
  4334. },
  4335. {
  4336. "__type__": "cc.UITransform",
  4337. "_name": "",
  4338. "_objFlags": 0,
  4339. "__editorExtras__": {},
  4340. "node": {
  4341. "__id__": 102
  4342. },
  4343. "_enabled": true,
  4344. "__prefab": null,
  4345. "_contentSize": {
  4346. "__type__": "cc.Size",
  4347. "width": 123,
  4348. "height": 122
  4349. },
  4350. "_anchorPoint": {
  4351. "__type__": "cc.Vec2",
  4352. "x": 0.5,
  4353. "y": 0.5
  4354. },
  4355. "_id": "5aujkFYw1Go6i9pWdOH/Tl"
  4356. },
  4357. {
  4358. "__type__": "cc.Sprite",
  4359. "_name": "",
  4360. "_objFlags": 0,
  4361. "__editorExtras__": {},
  4362. "node": {
  4363. "__id__": 102
  4364. },
  4365. "_enabled": true,
  4366. "__prefab": null,
  4367. "_customMaterial": null,
  4368. "_srcBlendFactor": 2,
  4369. "_dstBlendFactor": 4,
  4370. "_color": {
  4371. "__type__": "cc.Color",
  4372. "r": 255,
  4373. "g": 255,
  4374. "b": 255,
  4375. "a": 255
  4376. },
  4377. "_spriteFrame": {
  4378. "__uuid__": "6dc23b74-8446-424c-b19a-d251385daae8@f9941",
  4379. "__expectedType__": "cc.SpriteFrame"
  4380. },
  4381. "_type": 0,
  4382. "_fillType": 0,
  4383. "_sizeMode": 1,
  4384. "_fillCenter": {
  4385. "__type__": "cc.Vec2",
  4386. "x": 0,
  4387. "y": 0
  4388. },
  4389. "_fillStart": 0,
  4390. "_fillRange": 0,
  4391. "_isTrimmedMode": true,
  4392. "_useGrayscale": false,
  4393. "_atlas": null,
  4394. "_id": "e9d1jd7utDB7nt6494EVHd"
  4395. },
  4396. {
  4397. "__type__": "cc.Node",
  4398. "_name": "放行UI",
  4399. "_objFlags": 0,
  4400. "__editorExtras__": {},
  4401. "_parent": {
  4402. "__id__": 83
  4403. },
  4404. "_children": [],
  4405. "_active": true,
  4406. "_components": [
  4407. {
  4408. "__id__": 112
  4409. },
  4410. {
  4411. "__id__": 113
  4412. }
  4413. ],
  4414. "_prefab": null,
  4415. "_lpos": {
  4416. "__type__": "cc.Vec3",
  4417. "x": -101.044,
  4418. "y": -568.784,
  4419. "z": 0
  4420. },
  4421. "_lrot": {
  4422. "__type__": "cc.Quat",
  4423. "x": 0,
  4424. "y": 0,
  4425. "z": 0,
  4426. "w": 1
  4427. },
  4428. "_lscale": {
  4429. "__type__": "cc.Vec3",
  4430. "x": 1,
  4431. "y": 1,
  4432. "z": 1
  4433. },
  4434. "_mobility": 0,
  4435. "_layer": 33554432,
  4436. "_euler": {
  4437. "__type__": "cc.Vec3",
  4438. "x": 0,
  4439. "y": 0,
  4440. "z": 0
  4441. },
  4442. "_id": "9aZoeji4dKmalL2o06w072"
  4443. },
  4444. {
  4445. "__type__": "cc.UITransform",
  4446. "_name": "",
  4447. "_objFlags": 0,
  4448. "__editorExtras__": {},
  4449. "node": {
  4450. "__id__": 111
  4451. },
  4452. "_enabled": true,
  4453. "__prefab": null,
  4454. "_contentSize": {
  4455. "__type__": "cc.Size",
  4456. "width": 190,
  4457. "height": 99
  4458. },
  4459. "_anchorPoint": {
  4460. "__type__": "cc.Vec2",
  4461. "x": 0.5,
  4462. "y": 0.5
  4463. },
  4464. "_id": "686QrkN1dHiaKLP2tUbqux"
  4465. },
  4466. {
  4467. "__type__": "cc.Sprite",
  4468. "_name": "",
  4469. "_objFlags": 0,
  4470. "__editorExtras__": {},
  4471. "node": {
  4472. "__id__": 111
  4473. },
  4474. "_enabled": true,
  4475. "__prefab": null,
  4476. "_customMaterial": null,
  4477. "_srcBlendFactor": 2,
  4478. "_dstBlendFactor": 4,
  4479. "_color": {
  4480. "__type__": "cc.Color",
  4481. "r": 255,
  4482. "g": 255,
  4483. "b": 255,
  4484. "a": 255
  4485. },
  4486. "_spriteFrame": {
  4487. "__uuid__": "facb7b8e-f7e8-46a9-9afc-a4918c824f59@f9941",
  4488. "__expectedType__": "cc.SpriteFrame"
  4489. },
  4490. "_type": 0,
  4491. "_fillType": 0,
  4492. "_sizeMode": 1,
  4493. "_fillCenter": {
  4494. "__type__": "cc.Vec2",
  4495. "x": 0,
  4496. "y": 0
  4497. },
  4498. "_fillStart": 0,
  4499. "_fillRange": 0,
  4500. "_isTrimmedMode": true,
  4501. "_useGrayscale": false,
  4502. "_atlas": null,
  4503. "_id": "df40Ln4mVNEq4aMuvlMTJJ"
  4504. },
  4505. {
  4506. "__type__": "cc.Node",
  4507. "_name": "赶走ui",
  4508. "_objFlags": 0,
  4509. "__editorExtras__": {},
  4510. "_parent": {
  4511. "__id__": 83
  4512. },
  4513. "_children": [],
  4514. "_active": true,
  4515. "_components": [
  4516. {
  4517. "__id__": 115
  4518. },
  4519. {
  4520. "__id__": 116
  4521. }
  4522. ],
  4523. "_prefab": null,
  4524. "_lpos": {
  4525. "__type__": "cc.Vec3",
  4526. "x": 116.514,
  4527. "y": -568.784,
  4528. "z": 0
  4529. },
  4530. "_lrot": {
  4531. "__type__": "cc.Quat",
  4532. "x": 0,
  4533. "y": 0,
  4534. "z": 0,
  4535. "w": 1
  4536. },
  4537. "_lscale": {
  4538. "__type__": "cc.Vec3",
  4539. "x": 1,
  4540. "y": 1,
  4541. "z": 1
  4542. },
  4543. "_mobility": 0,
  4544. "_layer": 33554432,
  4545. "_euler": {
  4546. "__type__": "cc.Vec3",
  4547. "x": 0,
  4548. "y": 0,
  4549. "z": 0
  4550. },
  4551. "_id": "89G0JsHvFMU4KKpD07Z5k7"
  4552. },
  4553. {
  4554. "__type__": "cc.UITransform",
  4555. "_name": "",
  4556. "_objFlags": 0,
  4557. "__editorExtras__": {},
  4558. "node": {
  4559. "__id__": 114
  4560. },
  4561. "_enabled": true,
  4562. "__prefab": null,
  4563. "_contentSize": {
  4564. "__type__": "cc.Size",
  4565. "width": 190,
  4566. "height": 99
  4567. },
  4568. "_anchorPoint": {
  4569. "__type__": "cc.Vec2",
  4570. "x": 0.5,
  4571. "y": 0.5
  4572. },
  4573. "_id": "b8KNm4OaJL9oDOPkl62p+R"
  4574. },
  4575. {
  4576. "__type__": "cc.Sprite",
  4577. "_name": "",
  4578. "_objFlags": 0,
  4579. "__editorExtras__": {},
  4580. "node": {
  4581. "__id__": 114
  4582. },
  4583. "_enabled": true,
  4584. "__prefab": null,
  4585. "_customMaterial": null,
  4586. "_srcBlendFactor": 2,
  4587. "_dstBlendFactor": 4,
  4588. "_color": {
  4589. "__type__": "cc.Color",
  4590. "r": 255,
  4591. "g": 255,
  4592. "b": 255,
  4593. "a": 255
  4594. },
  4595. "_spriteFrame": {
  4596. "__uuid__": "ea8f081c-4f92-4ed1-9d98-47338a500318@f9941",
  4597. "__expectedType__": "cc.SpriteFrame"
  4598. },
  4599. "_type": 0,
  4600. "_fillType": 0,
  4601. "_sizeMode": 1,
  4602. "_fillCenter": {
  4603. "__type__": "cc.Vec2",
  4604. "x": 0,
  4605. "y": 0
  4606. },
  4607. "_fillStart": 0,
  4608. "_fillRange": 0,
  4609. "_isTrimmedMode": true,
  4610. "_useGrayscale": false,
  4611. "_atlas": null,
  4612. "_id": "40rnKPZbZCYqdb3V7quyjU"
  4613. },
  4614. {
  4615. "__type__": "cc.Node",
  4616. "_name": "测谎仪",
  4617. "_objFlags": 0,
  4618. "__editorExtras__": {},
  4619. "_parent": {
  4620. "__id__": 83
  4621. },
  4622. "_children": [
  4623. {
  4624. "__id__": 118
  4625. },
  4626. {
  4627. "__id__": 121
  4628. }
  4629. ],
  4630. "_active": true,
  4631. "_components": [
  4632. {
  4633. "__id__": 124
  4634. },
  4635. {
  4636. "__id__": 125
  4637. }
  4638. ],
  4639. "_prefab": null,
  4640. "_lpos": {
  4641. "__type__": "cc.Vec3",
  4642. "x": 310.771,
  4643. "y": -442.065,
  4644. "z": 0
  4645. },
  4646. "_lrot": {
  4647. "__type__": "cc.Quat",
  4648. "x": 0,
  4649. "y": 0,
  4650. "z": 0,
  4651. "w": 1
  4652. },
  4653. "_lscale": {
  4654. "__type__": "cc.Vec3",
  4655. "x": 1,
  4656. "y": 1,
  4657. "z": 1
  4658. },
  4659. "_mobility": 0,
  4660. "_layer": 33554432,
  4661. "_euler": {
  4662. "__type__": "cc.Vec3",
  4663. "x": 0,
  4664. "y": 0,
  4665. "z": 0
  4666. },
  4667. "_id": "34MTKDrgNCo42AdUPqW3LH"
  4668. },
  4669. {
  4670. "__type__": "cc.Node",
  4671. "_name": "摄像头",
  4672. "_objFlags": 0,
  4673. "__editorExtras__": {},
  4674. "_parent": {
  4675. "__id__": 117
  4676. },
  4677. "_children": [],
  4678. "_active": true,
  4679. "_components": [
  4680. {
  4681. "__id__": 119
  4682. },
  4683. {
  4684. "__id__": 120
  4685. }
  4686. ],
  4687. "_prefab": null,
  4688. "_lpos": {
  4689. "__type__": "cc.Vec3",
  4690. "x": 4.897,
  4691. "y": -86.264,
  4692. "z": 0
  4693. },
  4694. "_lrot": {
  4695. "__type__": "cc.Quat",
  4696. "x": 0,
  4697. "y": 0,
  4698. "z": 0,
  4699. "w": 1
  4700. },
  4701. "_lscale": {
  4702. "__type__": "cc.Vec3",
  4703. "x": 1,
  4704. "y": 1,
  4705. "z": 1
  4706. },
  4707. "_mobility": 0,
  4708. "_layer": 33554432,
  4709. "_euler": {
  4710. "__type__": "cc.Vec3",
  4711. "x": 0,
  4712. "y": 0,
  4713. "z": 0
  4714. },
  4715. "_id": "134Fuc4cZGtppy2hk0lk4h"
  4716. },
  4717. {
  4718. "__type__": "cc.UITransform",
  4719. "_name": "",
  4720. "_objFlags": 0,
  4721. "__editorExtras__": {},
  4722. "node": {
  4723. "__id__": 118
  4724. },
  4725. "_enabled": true,
  4726. "__prefab": null,
  4727. "_contentSize": {
  4728. "__type__": "cc.Size",
  4729. "width": 64,
  4730. "height": 40
  4731. },
  4732. "_anchorPoint": {
  4733. "__type__": "cc.Vec2",
  4734. "x": 0.5,
  4735. "y": 0.5
  4736. },
  4737. "_id": "63xHmFoixIV4ICirn5cgje"
  4738. },
  4739. {
  4740. "__type__": "cc.Sprite",
  4741. "_name": "",
  4742. "_objFlags": 0,
  4743. "__editorExtras__": {},
  4744. "node": {
  4745. "__id__": 118
  4746. },
  4747. "_enabled": true,
  4748. "__prefab": null,
  4749. "_customMaterial": null,
  4750. "_srcBlendFactor": 2,
  4751. "_dstBlendFactor": 4,
  4752. "_color": {
  4753. "__type__": "cc.Color",
  4754. "r": 255,
  4755. "g": 255,
  4756. "b": 255,
  4757. "a": 255
  4758. },
  4759. "_spriteFrame": {
  4760. "__uuid__": "42aaa707-9ff1-42b4-946c-eda525ecdda5@f9941",
  4761. "__expectedType__": "cc.SpriteFrame"
  4762. },
  4763. "_type": 0,
  4764. "_fillType": 0,
  4765. "_sizeMode": 1,
  4766. "_fillCenter": {
  4767. "__type__": "cc.Vec2",
  4768. "x": 0,
  4769. "y": 0
  4770. },
  4771. "_fillStart": 0,
  4772. "_fillRange": 0,
  4773. "_isTrimmedMode": true,
  4774. "_useGrayscale": false,
  4775. "_atlas": null,
  4776. "_id": "bcYGthgGdMGZE8Adxs2c4G"
  4777. },
  4778. {
  4779. "__type__": "cc.Node",
  4780. "_name": "测谎仪",
  4781. "_objFlags": 0,
  4782. "__editorExtras__": {},
  4783. "_parent": {
  4784. "__id__": 117
  4785. },
  4786. "_children": [],
  4787. "_active": true,
  4788. "_components": [
  4789. {
  4790. "__id__": 122
  4791. },
  4792. {
  4793. "__id__": 123
  4794. }
  4795. ],
  4796. "_prefab": null,
  4797. "_lpos": {
  4798. "__type__": "cc.Vec3",
  4799. "x": 0,
  4800. "y": -123.617,
  4801. "z": 0
  4802. },
  4803. "_lrot": {
  4804. "__type__": "cc.Quat",
  4805. "x": 0,
  4806. "y": 0,
  4807. "z": 0,
  4808. "w": 1
  4809. },
  4810. "_lscale": {
  4811. "__type__": "cc.Vec3",
  4812. "x": 1,
  4813. "y": 1,
  4814. "z": 1
  4815. },
  4816. "_mobility": 0,
  4817. "_layer": 33554432,
  4818. "_euler": {
  4819. "__type__": "cc.Vec3",
  4820. "x": 0,
  4821. "y": 0,
  4822. "z": 0
  4823. },
  4824. "_id": "20Zd29DBBILIEIzFxIfzN7"
  4825. },
  4826. {
  4827. "__type__": "cc.UITransform",
  4828. "_name": "",
  4829. "_objFlags": 0,
  4830. "__editorExtras__": {},
  4831. "node": {
  4832. "__id__": 121
  4833. },
  4834. "_enabled": true,
  4835. "__prefab": null,
  4836. "_contentSize": {
  4837. "__type__": "cc.Size",
  4838. "width": 60,
  4839. "height": 50.4
  4840. },
  4841. "_anchorPoint": {
  4842. "__type__": "cc.Vec2",
  4843. "x": 0.5,
  4844. "y": 0.5
  4845. },
  4846. "_id": "13fsCg1XxHvILTJfMA3eQR"
  4847. },
  4848. {
  4849. "__type__": "cc.Label",
  4850. "_name": "",
  4851. "_objFlags": 0,
  4852. "__editorExtras__": {},
  4853. "node": {
  4854. "__id__": 121
  4855. },
  4856. "_enabled": true,
  4857. "__prefab": null,
  4858. "_customMaterial": null,
  4859. "_srcBlendFactor": 2,
  4860. "_dstBlendFactor": 4,
  4861. "_color": {
  4862. "__type__": "cc.Color",
  4863. "r": 255,
  4864. "g": 255,
  4865. "b": 255,
  4866. "a": 255
  4867. },
  4868. "_string": "测谎仪",
  4869. "_horizontalAlign": 1,
  4870. "_verticalAlign": 1,
  4871. "_actualFontSize": 20,
  4872. "_fontSize": 20,
  4873. "_fontFamily": "Arial",
  4874. "_lineHeight": 40,
  4875. "_overflow": 0,
  4876. "_enableWrapText": true,
  4877. "_font": null,
  4878. "_isSystemFontUsed": true,
  4879. "_spacingX": 0,
  4880. "_isItalic": false,
  4881. "_isBold": false,
  4882. "_isUnderline": false,
  4883. "_underlineHeight": 2,
  4884. "_cacheMode": 0,
  4885. "_enableOutline": false,
  4886. "_outlineColor": {
  4887. "__type__": "cc.Color",
  4888. "r": 0,
  4889. "g": 0,
  4890. "b": 0,
  4891. "a": 255
  4892. },
  4893. "_outlineWidth": 2,
  4894. "_enableShadow": false,
  4895. "_shadowColor": {
  4896. "__type__": "cc.Color",
  4897. "r": 0,
  4898. "g": 0,
  4899. "b": 0,
  4900. "a": 255
  4901. },
  4902. "_shadowOffset": {
  4903. "__type__": "cc.Vec2",
  4904. "x": 2,
  4905. "y": 2
  4906. },
  4907. "_shadowBlur": 2,
  4908. "_id": "d1ERIJZ/dPZZX6RsGDt/IM"
  4909. },
  4910. {
  4911. "__type__": "cc.UITransform",
  4912. "_name": "",
  4913. "_objFlags": 0,
  4914. "__editorExtras__": {},
  4915. "node": {
  4916. "__id__": 117
  4917. },
  4918. "_enabled": true,
  4919. "__prefab": null,
  4920. "_contentSize": {
  4921. "__type__": "cc.Size",
  4922. "width": 83,
  4923. "height": 173
  4924. },
  4925. "_anchorPoint": {
  4926. "__type__": "cc.Vec2",
  4927. "x": 0.5,
  4928. "y": 0.5
  4929. },
  4930. "_id": "cbjWsUzqBK15qpkfe7RauH"
  4931. },
  4932. {
  4933. "__type__": "cc.Sprite",
  4934. "_name": "",
  4935. "_objFlags": 0,
  4936. "__editorExtras__": {},
  4937. "node": {
  4938. "__id__": 117
  4939. },
  4940. "_enabled": true,
  4941. "__prefab": null,
  4942. "_customMaterial": null,
  4943. "_srcBlendFactor": 2,
  4944. "_dstBlendFactor": 4,
  4945. "_color": {
  4946. "__type__": "cc.Color",
  4947. "r": 255,
  4948. "g": 255,
  4949. "b": 255,
  4950. "a": 255
  4951. },
  4952. "_spriteFrame": {
  4953. "__uuid__": "becc7360-aa3a-4834-9d3b-6f7c06aa5526@f9941",
  4954. "__expectedType__": "cc.SpriteFrame"
  4955. },
  4956. "_type": 0,
  4957. "_fillType": 0,
  4958. "_sizeMode": 1,
  4959. "_fillCenter": {
  4960. "__type__": "cc.Vec2",
  4961. "x": 0,
  4962. "y": 0
  4963. },
  4964. "_fillStart": 0,
  4965. "_fillRange": 0,
  4966. "_isTrimmedMode": true,
  4967. "_useGrayscale": false,
  4968. "_atlas": null,
  4969. "_id": "f3GPMVHl5BoKmro0eczG+/"
  4970. },
  4971. {
  4972. "__type__": "cc.UITransform",
  4973. "_name": "",
  4974. "_objFlags": 0,
  4975. "__editorExtras__": {},
  4976. "node": {
  4977. "__id__": 83
  4978. },
  4979. "_enabled": true,
  4980. "__prefab": null,
  4981. "_contentSize": {
  4982. "__type__": "cc.Size",
  4983. "width": 100,
  4984. "height": 100
  4985. },
  4986. "_anchorPoint": {
  4987. "__type__": "cc.Vec2",
  4988. "x": 0.5,
  4989. "y": 0.5
  4990. },
  4991. "_id": "d6QKyShiNHsZPHim08zrr1"
  4992. },
  4993. {
  4994. "__type__": "cc.Node",
  4995. "_name": "其它",
  4996. "_objFlags": 0,
  4997. "__editorExtras__": {},
  4998. "_parent": {
  4999. "__id__": 2
  5000. },
  5001. "_children": [],
  5002. "_active": true,
  5003. "_components": [
  5004. {
  5005. "__id__": 128
  5006. }
  5007. ],
  5008. "_prefab": null,
  5009. "_lpos": {
  5010. "__type__": "cc.Vec3",
  5011. "x": 0,
  5012. "y": 0,
  5013. "z": 0
  5014. },
  5015. "_lrot": {
  5016. "__type__": "cc.Quat",
  5017. "x": 0,
  5018. "y": 0,
  5019. "z": 0,
  5020. "w": 1
  5021. },
  5022. "_lscale": {
  5023. "__type__": "cc.Vec3",
  5024. "x": 1,
  5025. "y": 1,
  5026. "z": 1
  5027. },
  5028. "_mobility": 0,
  5029. "_layer": 33554432,
  5030. "_euler": {
  5031. "__type__": "cc.Vec3",
  5032. "x": 0,
  5033. "y": 0,
  5034. "z": 0
  5035. },
  5036. "_id": "0b+7hiNGNEEJk47rsajFmZ"
  5037. },
  5038. {
  5039. "__type__": "cc.UITransform",
  5040. "_name": "",
  5041. "_objFlags": 0,
  5042. "__editorExtras__": {},
  5043. "node": {
  5044. "__id__": 127
  5045. },
  5046. "_enabled": true,
  5047. "__prefab": null,
  5048. "_contentSize": {
  5049. "__type__": "cc.Size",
  5050. "width": 100,
  5051. "height": 100
  5052. },
  5053. "_anchorPoint": {
  5054. "__type__": "cc.Vec2",
  5055. "x": 0.5,
  5056. "y": 0.5
  5057. },
  5058. "_id": "c82zuIGy5JiZbtE3ogpTWj"
  5059. },
  5060. {
  5061. "__type__": "cc.UITransform",
  5062. "_name": "",
  5063. "_objFlags": 0,
  5064. "__editorExtras__": {},
  5065. "node": {
  5066. "__id__": 2
  5067. },
  5068. "_enabled": true,
  5069. "__prefab": null,
  5070. "_contentSize": {
  5071. "__type__": "cc.Size",
  5072. "width": 750,
  5073. "height": 1334
  5074. },
  5075. "_anchorPoint": {
  5076. "__type__": "cc.Vec2",
  5077. "x": 0.5,
  5078. "y": 0.5
  5079. },
  5080. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  5081. },
  5082. {
  5083. "__type__": "cc.Canvas",
  5084. "_name": "",
  5085. "_objFlags": 0,
  5086. "__editorExtras__": {},
  5087. "node": {
  5088. "__id__": 2
  5089. },
  5090. "_enabled": true,
  5091. "__prefab": null,
  5092. "_cameraComponent": {
  5093. "__id__": 4
  5094. },
  5095. "_alignCanvasWithScreen": true,
  5096. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  5097. },
  5098. {
  5099. "__type__": "cc.Widget",
  5100. "_name": "",
  5101. "_objFlags": 0,
  5102. "__editorExtras__": {},
  5103. "node": {
  5104. "__id__": 2
  5105. },
  5106. "_enabled": true,
  5107. "__prefab": null,
  5108. "_alignFlags": 45,
  5109. "_target": null,
  5110. "_left": 0,
  5111. "_right": 0,
  5112. "_top": 5.684341886080802e-14,
  5113. "_bottom": 5.684341886080802e-14,
  5114. "_horizontalCenter": 0,
  5115. "_verticalCenter": 0,
  5116. "_isAbsLeft": true,
  5117. "_isAbsRight": true,
  5118. "_isAbsTop": true,
  5119. "_isAbsBottom": true,
  5120. "_isAbsHorizontalCenter": true,
  5121. "_isAbsVerticalCenter": true,
  5122. "_originalWidth": 0,
  5123. "_originalHeight": 0,
  5124. "_alignMode": 2,
  5125. "_lockFlags": 0,
  5126. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  5127. },
  5128. {
  5129. "__type__": "cc.SceneGlobals",
  5130. "ambient": {
  5131. "__id__": 133
  5132. },
  5133. "shadows": {
  5134. "__id__": 134
  5135. },
  5136. "_skybox": {
  5137. "__id__": 135
  5138. },
  5139. "fog": {
  5140. "__id__": 136
  5141. },
  5142. "octree": {
  5143. "__id__": 137
  5144. },
  5145. "skin": {
  5146. "__id__": 138
  5147. },
  5148. "lightProbeInfo": {
  5149. "__id__": 139
  5150. },
  5151. "postSettings": {
  5152. "__id__": 140
  5153. },
  5154. "bakedWithStationaryMainLight": false,
  5155. "bakedWithHighpLightmap": false
  5156. },
  5157. {
  5158. "__type__": "cc.AmbientInfo",
  5159. "_skyColorHDR": {
  5160. "__type__": "cc.Vec4",
  5161. "x": 0,
  5162. "y": 0,
  5163. "z": 0,
  5164. "w": 0.520833125
  5165. },
  5166. "_skyColor": {
  5167. "__type__": "cc.Vec4",
  5168. "x": 0,
  5169. "y": 0,
  5170. "z": 0,
  5171. "w": 0.520833125
  5172. },
  5173. "_skyIllumHDR": 20000,
  5174. "_skyIllum": 20000,
  5175. "_groundAlbedoHDR": {
  5176. "__type__": "cc.Vec4",
  5177. "x": 0,
  5178. "y": 0,
  5179. "z": 0,
  5180. "w": 0
  5181. },
  5182. "_groundAlbedo": {
  5183. "__type__": "cc.Vec4",
  5184. "x": 0,
  5185. "y": 0,
  5186. "z": 0,
  5187. "w": 0
  5188. },
  5189. "_skyColorLDR": {
  5190. "__type__": "cc.Vec4",
  5191. "x": 0.2,
  5192. "y": 0.5,
  5193. "z": 0.8,
  5194. "w": 1
  5195. },
  5196. "_skyIllumLDR": 20000,
  5197. "_groundAlbedoLDR": {
  5198. "__type__": "cc.Vec4",
  5199. "x": 0.2,
  5200. "y": 0.2,
  5201. "z": 0.2,
  5202. "w": 1
  5203. }
  5204. },
  5205. {
  5206. "__type__": "cc.ShadowsInfo",
  5207. "_enabled": false,
  5208. "_type": 0,
  5209. "_normal": {
  5210. "__type__": "cc.Vec3",
  5211. "x": 0,
  5212. "y": 1,
  5213. "z": 0
  5214. },
  5215. "_distance": 0,
  5216. "_planeBias": 1,
  5217. "_shadowColor": {
  5218. "__type__": "cc.Color",
  5219. "r": 76,
  5220. "g": 76,
  5221. "b": 76,
  5222. "a": 255
  5223. },
  5224. "_maxReceived": 4,
  5225. "_size": {
  5226. "__type__": "cc.Vec2",
  5227. "x": 512,
  5228. "y": 512
  5229. }
  5230. },
  5231. {
  5232. "__type__": "cc.SkyboxInfo",
  5233. "_envLightingType": 0,
  5234. "_envmapHDR": null,
  5235. "_envmap": null,
  5236. "_envmapLDR": null,
  5237. "_diffuseMapHDR": null,
  5238. "_diffuseMapLDR": null,
  5239. "_enabled": false,
  5240. "_useHDR": true,
  5241. "_editableMaterial": null,
  5242. "_reflectionHDR": null,
  5243. "_reflectionLDR": null,
  5244. "_rotationAngle": 0
  5245. },
  5246. {
  5247. "__type__": "cc.FogInfo",
  5248. "_type": 0,
  5249. "_fogColor": {
  5250. "__type__": "cc.Color",
  5251. "r": 200,
  5252. "g": 200,
  5253. "b": 200,
  5254. "a": 255
  5255. },
  5256. "_enabled": false,
  5257. "_fogDensity": 0.3,
  5258. "_fogStart": 0.5,
  5259. "_fogEnd": 300,
  5260. "_fogAtten": 5,
  5261. "_fogTop": 1.5,
  5262. "_fogRange": 1.2,
  5263. "_accurate": false
  5264. },
  5265. {
  5266. "__type__": "cc.OctreeInfo",
  5267. "_enabled": false,
  5268. "_minPos": {
  5269. "__type__": "cc.Vec3",
  5270. "x": -1024,
  5271. "y": -1024,
  5272. "z": -1024
  5273. },
  5274. "_maxPos": {
  5275. "__type__": "cc.Vec3",
  5276. "x": 1024,
  5277. "y": 1024,
  5278. "z": 1024
  5279. },
  5280. "_depth": 8
  5281. },
  5282. {
  5283. "__type__": "cc.SkinInfo",
  5284. "_enabled": false,
  5285. "_blurRadius": 0.01,
  5286. "_sssIntensity": 3
  5287. },
  5288. {
  5289. "__type__": "cc.LightProbeInfo",
  5290. "_giScale": 1,
  5291. "_giSamples": 1024,
  5292. "_bounces": 2,
  5293. "_reduceRinging": 0,
  5294. "_showProbe": true,
  5295. "_showWireframe": true,
  5296. "_showConvex": false,
  5297. "_data": null,
  5298. "_lightProbeSphereVolume": 1
  5299. },
  5300. {
  5301. "__type__": "cc.PostSettingsInfo",
  5302. "_toneMappingType": 0
  5303. }
  5304. ]