GameNode.prefab 97 KB

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