421760e1-1a4b-4f19-aa7f-4adb5f818580@d6409.json 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "yuansu",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 7
  26. },
  27. {
  28. "__id__": 12
  29. },
  30. {
  31. "__id__": 17
  32. },
  33. {
  34. "__id__": 22
  35. },
  36. {
  37. "__id__": 27
  38. },
  39. {
  40. "__id__": 32
  41. },
  42. {
  43. "__id__": 37
  44. },
  45. {
  46. "__id__": 42
  47. },
  48. {
  49. "__id__": 44
  50. },
  51. {
  52. "__id__": 49
  53. },
  54. {
  55. "__id__": 51
  56. },
  57. {
  58. "__id__": 56
  59. },
  60. {
  61. "__id__": 61
  62. },
  63. {
  64. "__id__": 66
  65. },
  66. {
  67. "__id__": 71
  68. },
  69. {
  70. "__id__": 76
  71. },
  72. {
  73. "__id__": 81
  74. },
  75. {
  76. "__id__": 86
  77. },
  78. {
  79. "__id__": 91
  80. },
  81. {
  82. "__id__": 96
  83. },
  84. {
  85. "__id__": 101
  86. },
  87. {
  88. "__id__": 106
  89. },
  90. {
  91. "__id__": 111
  92. },
  93. {
  94. "__id__": 116
  95. },
  96. {
  97. "__id__": 121
  98. },
  99. {
  100. "__id__": 126
  101. },
  102. {
  103. "__id__": 131
  104. },
  105. {
  106. "__id__": 133
  107. },
  108. {
  109. "__id__": 138
  110. }
  111. ],
  112. "_active": true,
  113. "_components": [],
  114. "_prefab": {
  115. "__id__": 143
  116. },
  117. "_lpos": {
  118. "__type__": "cc.Vec3",
  119. "x": 0,
  120. "y": 0,
  121. "z": 0
  122. },
  123. "_lrot": {
  124. "__type__": "cc.Quat",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0,
  128. "w": 1
  129. },
  130. "_lscale": {
  131. "__type__": "cc.Vec3",
  132. "x": 1,
  133. "y": 1,
  134. "z": 1
  135. },
  136. "_mobility": 0,
  137. "_layer": 1073741824,
  138. "_euler": {
  139. "__type__": "cc.Vec3",
  140. "x": 0,
  141. "y": 0,
  142. "z": 0
  143. },
  144. "_id": ""
  145. },
  146. {
  147. "__type__": "cc.Node",
  148. "_name": "Pallet_3",
  149. "_objFlags": 0,
  150. "__editorExtras__": {},
  151. "_parent": {
  152. "__id__": 1
  153. },
  154. "_children": [],
  155. "_active": true,
  156. "_components": [
  157. {
  158. "__id__": 3
  159. }
  160. ],
  161. "_prefab": {
  162. "__id__": 6
  163. },
  164. "_lpos": {
  165. "__type__": "cc.Vec3",
  166. "x": 3.1528854370117188,
  167. "y": 0.3827451467514038,
  168. "z": 14.631365776062012
  169. },
  170. "_lrot": {
  171. "__type__": "cc.Quat",
  172. "x": -0.7071068407911908,
  173. "y": 0,
  174. "z": 0,
  175. "w": 0.7071067215818992
  176. },
  177. "_lscale": {
  178. "__type__": "cc.Vec3",
  179. "x": 100,
  180. "y": 100,
  181. "z": 100
  182. },
  183. "_mobility": 0,
  184. "_layer": 1073741824,
  185. "_euler": {
  186. "__type__": "cc.Vec3",
  187. "x": -90.00000965934633,
  188. "y": 0,
  189. "z": 0
  190. },
  191. "_id": ""
  192. },
  193. {
  194. "__type__": "cc.MeshRenderer",
  195. "_name": "",
  196. "_objFlags": 0,
  197. "__editorExtras__": {},
  198. "node": {
  199. "__id__": 2
  200. },
  201. "_enabled": true,
  202. "__prefab": {
  203. "__id__": 4
  204. },
  205. "_materials": [
  206. {
  207. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@3192d",
  208. "__expectedType__": "cc.Material"
  209. }
  210. ],
  211. "_visFlags": 0,
  212. "bakeSettings": {
  213. "__id__": 5
  214. },
  215. "_mesh": {
  216. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@0b4a2",
  217. "__expectedType__": "cc.Mesh"
  218. },
  219. "_shadowCastingMode": 1,
  220. "_shadowReceivingMode": 1,
  221. "_shadowBias": 0,
  222. "_shadowNormalBias": 0,
  223. "_reflectionProbeId": -1,
  224. "_reflectionProbeBlendId": -1,
  225. "_reflectionProbeBlendWeight": 0,
  226. "_enabledGlobalStandardSkinObject": false,
  227. "_enableMorph": true,
  228. "_id": ""
  229. },
  230. {
  231. "__type__": "cc.CompPrefabInfo",
  232. "fileId": "42eJwJWwZS56Qjxk7q/Ufe"
  233. },
  234. {
  235. "__type__": "cc.ModelBakeSettings",
  236. "texture": null,
  237. "uvParam": {
  238. "__type__": "cc.Vec4",
  239. "x": 0,
  240. "y": 0,
  241. "z": 0,
  242. "w": 0
  243. },
  244. "_bakeable": false,
  245. "_castShadow": true,
  246. "_receiveShadow": true,
  247. "_recieveShadow": true,
  248. "_lightmapSize": 64,
  249. "_useLightProbe": false,
  250. "_bakeToLightProbe": true,
  251. "_reflectionProbeType": 0,
  252. "_bakeToReflectionProbe": true
  253. },
  254. {
  255. "__type__": "cc.PrefabInfo",
  256. "root": {
  257. "__id__": 1
  258. },
  259. "asset": {
  260. "__id__": 0
  261. },
  262. "fileId": "2cwP/RsjNTebjCfQjgiGuw",
  263. "instance": null,
  264. "targetOverrides": null,
  265. "nestedPrefabInstanceRoots": null
  266. },
  267. {
  268. "__type__": "cc.Node",
  269. "_name": "pCube90_1",
  270. "_objFlags": 0,
  271. "__editorExtras__": {},
  272. "_parent": {
  273. "__id__": 1
  274. },
  275. "_children": [],
  276. "_active": true,
  277. "_components": [
  278. {
  279. "__id__": 8
  280. }
  281. ],
  282. "_prefab": {
  283. "__id__": 11
  284. },
  285. "_lpos": {
  286. "__type__": "cc.Vec3",
  287. "x": -6.606637477874756,
  288. "y": -0.0007643699645996094,
  289. "z": 14.612527847290039
  290. },
  291. "_lrot": {
  292. "__type__": "cc.Quat",
  293. "x": -0.7071068407911908,
  294. "y": 0,
  295. "z": 0,
  296. "w": 0.7071067215818992
  297. },
  298. "_lscale": {
  299. "__type__": "cc.Vec3",
  300. "x": 100,
  301. "y": 100,
  302. "z": 100
  303. },
  304. "_mobility": 0,
  305. "_layer": 1073741824,
  306. "_euler": {
  307. "__type__": "cc.Vec3",
  308. "x": -90.00000965934633,
  309. "y": 0,
  310. "z": 0
  311. },
  312. "_id": ""
  313. },
  314. {
  315. "__type__": "cc.MeshRenderer",
  316. "_name": "",
  317. "_objFlags": 0,
  318. "__editorExtras__": {},
  319. "node": {
  320. "__id__": 7
  321. },
  322. "_enabled": true,
  323. "__prefab": {
  324. "__id__": 9
  325. },
  326. "_materials": [
  327. {
  328. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@3192d",
  329. "__expectedType__": "cc.Material"
  330. }
  331. ],
  332. "_visFlags": 0,
  333. "bakeSettings": {
  334. "__id__": 10
  335. },
  336. "_mesh": {
  337. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@0bd78",
  338. "__expectedType__": "cc.Mesh"
  339. },
  340. "_shadowCastingMode": 1,
  341. "_shadowReceivingMode": 1,
  342. "_shadowBias": 0,
  343. "_shadowNormalBias": 0,
  344. "_reflectionProbeId": -1,
  345. "_reflectionProbeBlendId": -1,
  346. "_reflectionProbeBlendWeight": 0,
  347. "_enabledGlobalStandardSkinObject": false,
  348. "_enableMorph": true,
  349. "_id": ""
  350. },
  351. {
  352. "__type__": "cc.CompPrefabInfo",
  353. "fileId": "9esOYtWPVb9aCZahsRn5SG"
  354. },
  355. {
  356. "__type__": "cc.ModelBakeSettings",
  357. "texture": null,
  358. "uvParam": {
  359. "__type__": "cc.Vec4",
  360. "x": 0,
  361. "y": 0,
  362. "z": 0,
  363. "w": 0
  364. },
  365. "_bakeable": false,
  366. "_castShadow": true,
  367. "_receiveShadow": true,
  368. "_recieveShadow": true,
  369. "_lightmapSize": 64,
  370. "_useLightProbe": false,
  371. "_bakeToLightProbe": true,
  372. "_reflectionProbeType": 0,
  373. "_bakeToReflectionProbe": true
  374. },
  375. {
  376. "__type__": "cc.PrefabInfo",
  377. "root": {
  378. "__id__": 1
  379. },
  380. "asset": {
  381. "__id__": 0
  382. },
  383. "fileId": "8dMRmzlA1WdYfukRIcD+da",
  384. "instance": null,
  385. "targetOverrides": null,
  386. "nestedPrefabInstanceRoots": null
  387. },
  388. {
  389. "__type__": "cc.Node",
  390. "_name": "pCube27_1",
  391. "_objFlags": 0,
  392. "__editorExtras__": {},
  393. "_parent": {
  394. "__id__": 1
  395. },
  396. "_children": [],
  397. "_active": true,
  398. "_components": [
  399. {
  400. "__id__": 13
  401. }
  402. ],
  403. "_prefab": {
  404. "__id__": 16
  405. },
  406. "_lpos": {
  407. "__type__": "cc.Vec3",
  408. "x": -2.781853675842285,
  409. "y": -0.025305747985839844,
  410. "z": 14.485280990600586
  411. },
  412. "_lrot": {
  413. "__type__": "cc.Quat",
  414. "x": -0.7071068407911908,
  415. "y": 0,
  416. "z": 0,
  417. "w": 0.7071067215818992
  418. },
  419. "_lscale": {
  420. "__type__": "cc.Vec3",
  421. "x": 100,
  422. "y": 100,
  423. "z": 100
  424. },
  425. "_mobility": 0,
  426. "_layer": 1073741824,
  427. "_euler": {
  428. "__type__": "cc.Vec3",
  429. "x": -90.00000965934633,
  430. "y": 0,
  431. "z": 0
  432. },
  433. "_id": ""
  434. },
  435. {
  436. "__type__": "cc.MeshRenderer",
  437. "_name": "",
  438. "_objFlags": 0,
  439. "__editorExtras__": {},
  440. "node": {
  441. "__id__": 12
  442. },
  443. "_enabled": true,
  444. "__prefab": {
  445. "__id__": 14
  446. },
  447. "_materials": [
  448. {
  449. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@3192d",
  450. "__expectedType__": "cc.Material"
  451. }
  452. ],
  453. "_visFlags": 0,
  454. "bakeSettings": {
  455. "__id__": 15
  456. },
  457. "_mesh": {
  458. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@e0cd7",
  459. "__expectedType__": "cc.Mesh"
  460. },
  461. "_shadowCastingMode": 1,
  462. "_shadowReceivingMode": 1,
  463. "_shadowBias": 0,
  464. "_shadowNormalBias": 0,
  465. "_reflectionProbeId": -1,
  466. "_reflectionProbeBlendId": -1,
  467. "_reflectionProbeBlendWeight": 0,
  468. "_enabledGlobalStandardSkinObject": false,
  469. "_enableMorph": true,
  470. "_id": ""
  471. },
  472. {
  473. "__type__": "cc.CompPrefabInfo",
  474. "fileId": "1e5q1SOVhe2bwMq8L3g7s4"
  475. },
  476. {
  477. "__type__": "cc.ModelBakeSettings",
  478. "texture": null,
  479. "uvParam": {
  480. "__type__": "cc.Vec4",
  481. "x": 0,
  482. "y": 0,
  483. "z": 0,
  484. "w": 0
  485. },
  486. "_bakeable": false,
  487. "_castShadow": true,
  488. "_receiveShadow": true,
  489. "_recieveShadow": true,
  490. "_lightmapSize": 64,
  491. "_useLightProbe": false,
  492. "_bakeToLightProbe": true,
  493. "_reflectionProbeType": 0,
  494. "_bakeToReflectionProbe": true
  495. },
  496. {
  497. "__type__": "cc.PrefabInfo",
  498. "root": {
  499. "__id__": 1
  500. },
  501. "asset": {
  502. "__id__": 0
  503. },
  504. "fileId": "988rHvX5lWB51anHogBdsK",
  505. "instance": null,
  506. "targetOverrides": null,
  507. "nestedPrefabInstanceRoots": null
  508. },
  509. {
  510. "__type__": "cc.Node",
  511. "_name": "pCube136",
  512. "_objFlags": 0,
  513. "__editorExtras__": {},
  514. "_parent": {
  515. "__id__": 1
  516. },
  517. "_children": [],
  518. "_active": true,
  519. "_components": [
  520. {
  521. "__id__": 18
  522. }
  523. ],
  524. "_prefab": {
  525. "__id__": 21
  526. },
  527. "_lpos": {
  528. "__type__": "cc.Vec3",
  529. "x": 10.324614524841309,
  530. "y": -0.0071239471435546875,
  531. "z": 4.761931419372559
  532. },
  533. "_lrot": {
  534. "__type__": "cc.Quat",
  535. "x": -0.7071068407911908,
  536. "y": 0,
  537. "z": 0,
  538. "w": 0.7071067215818992
  539. },
  540. "_lscale": {
  541. "__type__": "cc.Vec3",
  542. "x": 100,
  543. "y": 100,
  544. "z": 100
  545. },
  546. "_mobility": 0,
  547. "_layer": 1073741824,
  548. "_euler": {
  549. "__type__": "cc.Vec3",
  550. "x": -90.00000965934633,
  551. "y": 0,
  552. "z": 0
  553. },
  554. "_id": ""
  555. },
  556. {
  557. "__type__": "cc.MeshRenderer",
  558. "_name": "",
  559. "_objFlags": 0,
  560. "__editorExtras__": {},
  561. "node": {
  562. "__id__": 17
  563. },
  564. "_enabled": true,
  565. "__prefab": {
  566. "__id__": 19
  567. },
  568. "_materials": [
  569. {
  570. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  571. "__expectedType__": "cc.Material"
  572. }
  573. ],
  574. "_visFlags": 0,
  575. "bakeSettings": {
  576. "__id__": 20
  577. },
  578. "_mesh": {
  579. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@c4f17",
  580. "__expectedType__": "cc.Mesh"
  581. },
  582. "_shadowCastingMode": 1,
  583. "_shadowReceivingMode": 1,
  584. "_shadowBias": 0,
  585. "_shadowNormalBias": 0,
  586. "_reflectionProbeId": -1,
  587. "_reflectionProbeBlendId": -1,
  588. "_reflectionProbeBlendWeight": 0,
  589. "_enabledGlobalStandardSkinObject": false,
  590. "_enableMorph": true,
  591. "_id": ""
  592. },
  593. {
  594. "__type__": "cc.CompPrefabInfo",
  595. "fileId": "fd4hjrBL9Zp4y+1u+azzXG"
  596. },
  597. {
  598. "__type__": "cc.ModelBakeSettings",
  599. "texture": null,
  600. "uvParam": {
  601. "__type__": "cc.Vec4",
  602. "x": 0,
  603. "y": 0,
  604. "z": 0,
  605. "w": 0
  606. },
  607. "_bakeable": false,
  608. "_castShadow": true,
  609. "_receiveShadow": true,
  610. "_recieveShadow": true,
  611. "_lightmapSize": 64,
  612. "_useLightProbe": false,
  613. "_bakeToLightProbe": true,
  614. "_reflectionProbeType": 0,
  615. "_bakeToReflectionProbe": true
  616. },
  617. {
  618. "__type__": "cc.PrefabInfo",
  619. "root": {
  620. "__id__": 1
  621. },
  622. "asset": {
  623. "__id__": 0
  624. },
  625. "fileId": "74Ko3LFY9V2Zf3HGZN5Ozq",
  626. "instance": null,
  627. "targetOverrides": null,
  628. "nestedPrefabInstanceRoots": null
  629. },
  630. {
  631. "__type__": "cc.Node",
  632. "_name": "pCube1",
  633. "_objFlags": 0,
  634. "__editorExtras__": {},
  635. "_parent": {
  636. "__id__": 1
  637. },
  638. "_children": [],
  639. "_active": true,
  640. "_components": [
  641. {
  642. "__id__": 23
  643. }
  644. ],
  645. "_prefab": {
  646. "__id__": 26
  647. },
  648. "_lpos": {
  649. "__type__": "cc.Vec3",
  650. "x": -5.034150123596191,
  651. "y": 0.0026283860206604004,
  652. "z": 14.604511260986328
  653. },
  654. "_lrot": {
  655. "__type__": "cc.Quat",
  656. "x": -0.7071068407911908,
  657. "y": 0,
  658. "z": 0,
  659. "w": 0.7071067215818992
  660. },
  661. "_lscale": {
  662. "__type__": "cc.Vec3",
  663. "x": 100,
  664. "y": 100,
  665. "z": 100
  666. },
  667. "_mobility": 0,
  668. "_layer": 1073741824,
  669. "_euler": {
  670. "__type__": "cc.Vec3",
  671. "x": -90.00000965934633,
  672. "y": 0,
  673. "z": 0
  674. },
  675. "_id": ""
  676. },
  677. {
  678. "__type__": "cc.MeshRenderer",
  679. "_name": "",
  680. "_objFlags": 0,
  681. "__editorExtras__": {},
  682. "node": {
  683. "__id__": 22
  684. },
  685. "_enabled": true,
  686. "__prefab": {
  687. "__id__": 24
  688. },
  689. "_materials": [
  690. {
  691. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  692. "__expectedType__": "cc.Material"
  693. }
  694. ],
  695. "_visFlags": 0,
  696. "bakeSettings": {
  697. "__id__": 25
  698. },
  699. "_mesh": {
  700. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@d8ac4",
  701. "__expectedType__": "cc.Mesh"
  702. },
  703. "_shadowCastingMode": 1,
  704. "_shadowReceivingMode": 1,
  705. "_shadowBias": 0,
  706. "_shadowNormalBias": 0,
  707. "_reflectionProbeId": -1,
  708. "_reflectionProbeBlendId": -1,
  709. "_reflectionProbeBlendWeight": 0,
  710. "_enabledGlobalStandardSkinObject": false,
  711. "_enableMorph": true,
  712. "_id": ""
  713. },
  714. {
  715. "__type__": "cc.CompPrefabInfo",
  716. "fileId": "42yiMWrehd/JS5fF7MkqWm"
  717. },
  718. {
  719. "__type__": "cc.ModelBakeSettings",
  720. "texture": null,
  721. "uvParam": {
  722. "__type__": "cc.Vec4",
  723. "x": 0,
  724. "y": 0,
  725. "z": 0,
  726. "w": 0
  727. },
  728. "_bakeable": false,
  729. "_castShadow": true,
  730. "_receiveShadow": true,
  731. "_recieveShadow": true,
  732. "_lightmapSize": 64,
  733. "_useLightProbe": false,
  734. "_bakeToLightProbe": true,
  735. "_reflectionProbeType": 0,
  736. "_bakeToReflectionProbe": true
  737. },
  738. {
  739. "__type__": "cc.PrefabInfo",
  740. "root": {
  741. "__id__": 1
  742. },
  743. "asset": {
  744. "__id__": 0
  745. },
  746. "fileId": "d3HO9ja0JZ0K5IbCG2gWlP",
  747. "instance": null,
  748. "targetOverrides": null,
  749. "nestedPrefabInstanceRoots": null
  750. },
  751. {
  752. "__type__": "cc.Node",
  753. "_name": "pCube23",
  754. "_objFlags": 0,
  755. "__editorExtras__": {},
  756. "_parent": {
  757. "__id__": 1
  758. },
  759. "_children": [],
  760. "_active": true,
  761. "_components": [
  762. {
  763. "__id__": 28
  764. }
  765. ],
  766. "_prefab": {
  767. "__id__": 31
  768. },
  769. "_lpos": {
  770. "__type__": "cc.Vec3",
  771. "x": -14.675115585327148,
  772. "y": 1.0609040260314941,
  773. "z": 12.824899673461914
  774. },
  775. "_lrot": {
  776. "__type__": "cc.Quat",
  777. "x": -0.7071068407911908,
  778. "y": 0,
  779. "z": 0,
  780. "w": 0.7071067215818992
  781. },
  782. "_lscale": {
  783. "__type__": "cc.Vec3",
  784. "x": 100,
  785. "y": 100,
  786. "z": 100
  787. },
  788. "_mobility": 0,
  789. "_layer": 1073741824,
  790. "_euler": {
  791. "__type__": "cc.Vec3",
  792. "x": -90.00000965934633,
  793. "y": 0,
  794. "z": 0
  795. },
  796. "_id": ""
  797. },
  798. {
  799. "__type__": "cc.MeshRenderer",
  800. "_name": "",
  801. "_objFlags": 0,
  802. "__editorExtras__": {},
  803. "node": {
  804. "__id__": 27
  805. },
  806. "_enabled": true,
  807. "__prefab": {
  808. "__id__": 29
  809. },
  810. "_materials": [
  811. {
  812. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  813. "__expectedType__": "cc.Material"
  814. }
  815. ],
  816. "_visFlags": 0,
  817. "bakeSettings": {
  818. "__id__": 30
  819. },
  820. "_mesh": {
  821. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@1c5ac",
  822. "__expectedType__": "cc.Mesh"
  823. },
  824. "_shadowCastingMode": 1,
  825. "_shadowReceivingMode": 1,
  826. "_shadowBias": 0,
  827. "_shadowNormalBias": 0,
  828. "_reflectionProbeId": -1,
  829. "_reflectionProbeBlendId": -1,
  830. "_reflectionProbeBlendWeight": 0,
  831. "_enabledGlobalStandardSkinObject": false,
  832. "_enableMorph": true,
  833. "_id": ""
  834. },
  835. {
  836. "__type__": "cc.CompPrefabInfo",
  837. "fileId": "36FXKeWnVY66lh58juegrk"
  838. },
  839. {
  840. "__type__": "cc.ModelBakeSettings",
  841. "texture": null,
  842. "uvParam": {
  843. "__type__": "cc.Vec4",
  844. "x": 0,
  845. "y": 0,
  846. "z": 0,
  847. "w": 0
  848. },
  849. "_bakeable": false,
  850. "_castShadow": true,
  851. "_receiveShadow": true,
  852. "_recieveShadow": true,
  853. "_lightmapSize": 64,
  854. "_useLightProbe": false,
  855. "_bakeToLightProbe": true,
  856. "_reflectionProbeType": 0,
  857. "_bakeToReflectionProbe": true
  858. },
  859. {
  860. "__type__": "cc.PrefabInfo",
  861. "root": {
  862. "__id__": 1
  863. },
  864. "asset": {
  865. "__id__": 0
  866. },
  867. "fileId": "f6pyC8WeFVb7HFgcU8vE5W",
  868. "instance": null,
  869. "targetOverrides": null,
  870. "nestedPrefabInstanceRoots": null
  871. },
  872. {
  873. "__type__": "cc.Node",
  874. "_name": "building8",
  875. "_objFlags": 0,
  876. "__editorExtras__": {},
  877. "_parent": {
  878. "__id__": 1
  879. },
  880. "_children": [],
  881. "_active": true,
  882. "_components": [
  883. {
  884. "__id__": 33
  885. }
  886. ],
  887. "_prefab": {
  888. "__id__": 36
  889. },
  890. "_lpos": {
  891. "__type__": "cc.Vec3",
  892. "x": 7.83480978012085,
  893. "y": 0.4859006404876709,
  894. "z": 15.996567726135254
  895. },
  896. "_lrot": {
  897. "__type__": "cc.Quat",
  898. "x": -0.7071068407911908,
  899. "y": 0,
  900. "z": 0,
  901. "w": 0.7071067215818992
  902. },
  903. "_lscale": {
  904. "__type__": "cc.Vec3",
  905. "x": 100,
  906. "y": 100,
  907. "z": 100
  908. },
  909. "_mobility": 0,
  910. "_layer": 1073741824,
  911. "_euler": {
  912. "__type__": "cc.Vec3",
  913. "x": -90.00000965934633,
  914. "y": 0,
  915. "z": 0
  916. },
  917. "_id": ""
  918. },
  919. {
  920. "__type__": "cc.MeshRenderer",
  921. "_name": "",
  922. "_objFlags": 0,
  923. "__editorExtras__": {},
  924. "node": {
  925. "__id__": 32
  926. },
  927. "_enabled": true,
  928. "__prefab": {
  929. "__id__": 34
  930. },
  931. "_materials": [
  932. {
  933. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  934. "__expectedType__": "cc.Material"
  935. }
  936. ],
  937. "_visFlags": 0,
  938. "bakeSettings": {
  939. "__id__": 35
  940. },
  941. "_mesh": {
  942. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@e78f9",
  943. "__expectedType__": "cc.Mesh"
  944. },
  945. "_shadowCastingMode": 1,
  946. "_shadowReceivingMode": 1,
  947. "_shadowBias": 0,
  948. "_shadowNormalBias": 0,
  949. "_reflectionProbeId": -1,
  950. "_reflectionProbeBlendId": -1,
  951. "_reflectionProbeBlendWeight": 0,
  952. "_enabledGlobalStandardSkinObject": false,
  953. "_enableMorph": true,
  954. "_id": ""
  955. },
  956. {
  957. "__type__": "cc.CompPrefabInfo",
  958. "fileId": "d1ZVz81zFbkYMWSK5w4mg2"
  959. },
  960. {
  961. "__type__": "cc.ModelBakeSettings",
  962. "texture": null,
  963. "uvParam": {
  964. "__type__": "cc.Vec4",
  965. "x": 0,
  966. "y": 0,
  967. "z": 0,
  968. "w": 0
  969. },
  970. "_bakeable": false,
  971. "_castShadow": true,
  972. "_receiveShadow": true,
  973. "_recieveShadow": true,
  974. "_lightmapSize": 64,
  975. "_useLightProbe": false,
  976. "_bakeToLightProbe": true,
  977. "_reflectionProbeType": 0,
  978. "_bakeToReflectionProbe": true
  979. },
  980. {
  981. "__type__": "cc.PrefabInfo",
  982. "root": {
  983. "__id__": 1
  984. },
  985. "asset": {
  986. "__id__": 0
  987. },
  988. "fileId": "dcdl/hlnpSH6ehf1hHK617",
  989. "instance": null,
  990. "targetOverrides": null,
  991. "nestedPrefabInstanceRoots": null
  992. },
  993. {
  994. "__type__": "cc.Node",
  995. "_name": "building7",
  996. "_objFlags": 0,
  997. "__editorExtras__": {},
  998. "_parent": {
  999. "__id__": 1
  1000. },
  1001. "_children": [],
  1002. "_active": true,
  1003. "_components": [
  1004. {
  1005. "__id__": 38
  1006. }
  1007. ],
  1008. "_prefab": {
  1009. "__id__": 41
  1010. },
  1011. "_lpos": {
  1012. "__type__": "cc.Vec3",
  1013. "x": 12.226306915283203,
  1014. "y": 0.4300544261932373,
  1015. "z": 15.745292663574219
  1016. },
  1017. "_lrot": {
  1018. "__type__": "cc.Quat",
  1019. "x": -0.7071068407911908,
  1020. "y": 0,
  1021. "z": 0,
  1022. "w": 0.7071067215818992
  1023. },
  1024. "_lscale": {
  1025. "__type__": "cc.Vec3",
  1026. "x": 100,
  1027. "y": 100,
  1028. "z": 100
  1029. },
  1030. "_mobility": 0,
  1031. "_layer": 1073741824,
  1032. "_euler": {
  1033. "__type__": "cc.Vec3",
  1034. "x": -90.00000965934633,
  1035. "y": 0,
  1036. "z": 0
  1037. },
  1038. "_id": ""
  1039. },
  1040. {
  1041. "__type__": "cc.MeshRenderer",
  1042. "_name": "",
  1043. "_objFlags": 0,
  1044. "__editorExtras__": {},
  1045. "node": {
  1046. "__id__": 37
  1047. },
  1048. "_enabled": true,
  1049. "__prefab": {
  1050. "__id__": 39
  1051. },
  1052. "_materials": [
  1053. {
  1054. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  1055. "__expectedType__": "cc.Material"
  1056. }
  1057. ],
  1058. "_visFlags": 0,
  1059. "bakeSettings": {
  1060. "__id__": 40
  1061. },
  1062. "_mesh": {
  1063. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@585d5",
  1064. "__expectedType__": "cc.Mesh"
  1065. },
  1066. "_shadowCastingMode": 1,
  1067. "_shadowReceivingMode": 1,
  1068. "_shadowBias": 0,
  1069. "_shadowNormalBias": 0,
  1070. "_reflectionProbeId": -1,
  1071. "_reflectionProbeBlendId": -1,
  1072. "_reflectionProbeBlendWeight": 0,
  1073. "_enabledGlobalStandardSkinObject": false,
  1074. "_enableMorph": true,
  1075. "_id": ""
  1076. },
  1077. {
  1078. "__type__": "cc.CompPrefabInfo",
  1079. "fileId": "8e+37n4rJV0ZzGZ1qV4nni"
  1080. },
  1081. {
  1082. "__type__": "cc.ModelBakeSettings",
  1083. "texture": null,
  1084. "uvParam": {
  1085. "__type__": "cc.Vec4",
  1086. "x": 0,
  1087. "y": 0,
  1088. "z": 0,
  1089. "w": 0
  1090. },
  1091. "_bakeable": false,
  1092. "_castShadow": true,
  1093. "_receiveShadow": true,
  1094. "_recieveShadow": true,
  1095. "_lightmapSize": 64,
  1096. "_useLightProbe": false,
  1097. "_bakeToLightProbe": true,
  1098. "_reflectionProbeType": 0,
  1099. "_bakeToReflectionProbe": true
  1100. },
  1101. {
  1102. "__type__": "cc.PrefabInfo",
  1103. "root": {
  1104. "__id__": 1
  1105. },
  1106. "asset": {
  1107. "__id__": 0
  1108. },
  1109. "fileId": "fbzbxROk1aGb39xeVTeI/7",
  1110. "instance": null,
  1111. "targetOverrides": null,
  1112. "nestedPrefabInstanceRoots": null
  1113. },
  1114. {
  1115. "__type__": "cc.Node",
  1116. "_name": "Walls",
  1117. "_objFlags": 0,
  1118. "__editorExtras__": {},
  1119. "_parent": {
  1120. "__id__": 1
  1121. },
  1122. "_children": [],
  1123. "_active": true,
  1124. "_components": [],
  1125. "_prefab": {
  1126. "__id__": 43
  1127. },
  1128. "_lpos": {
  1129. "__type__": "cc.Vec3",
  1130. "x": 59.29939270019531,
  1131. "y": -10.652399063110352,
  1132. "z": 13.308950424194336
  1133. },
  1134. "_lrot": {
  1135. "__type__": "cc.Quat",
  1136. "x": -0.7071068407911908,
  1137. "y": 0,
  1138. "z": 0,
  1139. "w": 0.7071067215818992
  1140. },
  1141. "_lscale": {
  1142. "__type__": "cc.Vec3",
  1143. "x": 41.62834930419922,
  1144. "y": 41.62834930419922,
  1145. "z": 41.62834930419922
  1146. },
  1147. "_mobility": 0,
  1148. "_layer": 1073741824,
  1149. "_euler": {
  1150. "__type__": "cc.Vec3",
  1151. "x": -90.00000965934633,
  1152. "y": 0,
  1153. "z": 0
  1154. },
  1155. "_id": ""
  1156. },
  1157. {
  1158. "__type__": "cc.PrefabInfo",
  1159. "root": {
  1160. "__id__": 1
  1161. },
  1162. "asset": {
  1163. "__id__": 0
  1164. },
  1165. "fileId": "67iMEuM0NUuKz5F8KJAdOl",
  1166. "instance": null,
  1167. "targetOverrides": null,
  1168. "nestedPrefabInstanceRoots": null
  1169. },
  1170. {
  1171. "__type__": "cc.Node",
  1172. "_name": "pCube65.003",
  1173. "_objFlags": 0,
  1174. "__editorExtras__": {},
  1175. "_parent": {
  1176. "__id__": 1
  1177. },
  1178. "_children": [],
  1179. "_active": true,
  1180. "_components": [
  1181. {
  1182. "__id__": 45
  1183. }
  1184. ],
  1185. "_prefab": {
  1186. "__id__": 48
  1187. },
  1188. "_lpos": {
  1189. "__type__": "cc.Vec3",
  1190. "x": -2.141753911972046,
  1191. "y": 0.06241273880004883,
  1192. "z": 4.75396728515625
  1193. },
  1194. "_lrot": {
  1195. "__type__": "cc.Quat",
  1196. "x": -0.7071068407911908,
  1197. "y": 0,
  1198. "z": 0,
  1199. "w": 0.7071067215818992
  1200. },
  1201. "_lscale": {
  1202. "__type__": "cc.Vec3",
  1203. "x": 100,
  1204. "y": 100,
  1205. "z": 100
  1206. },
  1207. "_mobility": 0,
  1208. "_layer": 1073741824,
  1209. "_euler": {
  1210. "__type__": "cc.Vec3",
  1211. "x": -90.00000965934633,
  1212. "y": 0,
  1213. "z": 0
  1214. },
  1215. "_id": ""
  1216. },
  1217. {
  1218. "__type__": "cc.MeshRenderer",
  1219. "_name": "",
  1220. "_objFlags": 0,
  1221. "__editorExtras__": {},
  1222. "node": {
  1223. "__id__": 44
  1224. },
  1225. "_enabled": true,
  1226. "__prefab": {
  1227. "__id__": 46
  1228. },
  1229. "_materials": [
  1230. {
  1231. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  1232. "__expectedType__": "cc.Material"
  1233. }
  1234. ],
  1235. "_visFlags": 0,
  1236. "bakeSettings": {
  1237. "__id__": 47
  1238. },
  1239. "_mesh": {
  1240. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@4af7f",
  1241. "__expectedType__": "cc.Mesh"
  1242. },
  1243. "_shadowCastingMode": 1,
  1244. "_shadowReceivingMode": 1,
  1245. "_shadowBias": 0,
  1246. "_shadowNormalBias": 0,
  1247. "_reflectionProbeId": -1,
  1248. "_reflectionProbeBlendId": -1,
  1249. "_reflectionProbeBlendWeight": 0,
  1250. "_enabledGlobalStandardSkinObject": false,
  1251. "_enableMorph": true,
  1252. "_id": ""
  1253. },
  1254. {
  1255. "__type__": "cc.CompPrefabInfo",
  1256. "fileId": "09D8PMIf5faJ4C4c/OgkFX"
  1257. },
  1258. {
  1259. "__type__": "cc.ModelBakeSettings",
  1260. "texture": null,
  1261. "uvParam": {
  1262. "__type__": "cc.Vec4",
  1263. "x": 0,
  1264. "y": 0,
  1265. "z": 0,
  1266. "w": 0
  1267. },
  1268. "_bakeable": false,
  1269. "_castShadow": true,
  1270. "_receiveShadow": true,
  1271. "_recieveShadow": true,
  1272. "_lightmapSize": 64,
  1273. "_useLightProbe": false,
  1274. "_bakeToLightProbe": true,
  1275. "_reflectionProbeType": 0,
  1276. "_bakeToReflectionProbe": true
  1277. },
  1278. {
  1279. "__type__": "cc.PrefabInfo",
  1280. "root": {
  1281. "__id__": 1
  1282. },
  1283. "asset": {
  1284. "__id__": 0
  1285. },
  1286. "fileId": "2dp5Vn+5xYXLOGXBtom5cZ",
  1287. "instance": null,
  1288. "targetOverrides": null,
  1289. "nestedPrefabInstanceRoots": null
  1290. },
  1291. {
  1292. "__type__": "cc.Node",
  1293. "_name": "group5",
  1294. "_objFlags": 0,
  1295. "__editorExtras__": {},
  1296. "_parent": {
  1297. "__id__": 1
  1298. },
  1299. "_children": [],
  1300. "_active": true,
  1301. "_components": [],
  1302. "_prefab": {
  1303. "__id__": 50
  1304. },
  1305. "_lpos": {
  1306. "__type__": "cc.Vec3",
  1307. "x": -283.28326416015625,
  1308. "y": -3096.514892578125,
  1309. "z": -1387.466064453125
  1310. },
  1311. "_lrot": {
  1312. "__type__": "cc.Quat",
  1313. "x": 0.5000000521540606,
  1314. "y": -0.5000000521540606,
  1315. "z": 0.4999999627470948,
  1316. "w": -0.49999993294477285
  1317. },
  1318. "_lscale": {
  1319. "__type__": "cc.Vec3",
  1320. "x": 1336.160400390625,
  1321. "y": 1336.160400390625,
  1322. "z": 1336.160400390625
  1323. },
  1324. "_mobility": 0,
  1325. "_layer": 1073741824,
  1326. "_euler": {
  1327. "__type__": "cc.Vec3",
  1328. "x": 0,
  1329. "y": -269.99998633962167,
  1330. "z": -90
  1331. },
  1332. "_id": ""
  1333. },
  1334. {
  1335. "__type__": "cc.PrefabInfo",
  1336. "root": {
  1337. "__id__": 1
  1338. },
  1339. "asset": {
  1340. "__id__": 0
  1341. },
  1342. "fileId": "8eRL7TxLxbmp1D7us4hAak",
  1343. "instance": null,
  1344. "targetOverrides": null,
  1345. "nestedPrefabInstanceRoots": null
  1346. },
  1347. {
  1348. "__type__": "cc.Node",
  1349. "_name": "平面",
  1350. "_objFlags": 0,
  1351. "__editorExtras__": {},
  1352. "_parent": {
  1353. "__id__": 1
  1354. },
  1355. "_children": [],
  1356. "_active": true,
  1357. "_components": [
  1358. {
  1359. "__id__": 52
  1360. }
  1361. ],
  1362. "_prefab": {
  1363. "__id__": 55
  1364. },
  1365. "_lpos": {
  1366. "__type__": "cc.Vec3",
  1367. "x": -5.54420280456543,
  1368. "y": 0,
  1369. "z": -36.86333465576172
  1370. },
  1371. "_lrot": {
  1372. "__type__": "cc.Quat",
  1373. "x": -0.7071068407911908,
  1374. "y": 0,
  1375. "z": 0,
  1376. "w": 0.7071067215818992
  1377. },
  1378. "_lscale": {
  1379. "__type__": "cc.Vec3",
  1380. "x": 277.4178161621094,
  1381. "y": 277.4178161621094,
  1382. "z": 277.4178161621094
  1383. },
  1384. "_mobility": 0,
  1385. "_layer": 1073741824,
  1386. "_euler": {
  1387. "__type__": "cc.Vec3",
  1388. "x": -90.00000965934633,
  1389. "y": 0,
  1390. "z": 0
  1391. },
  1392. "_id": ""
  1393. },
  1394. {
  1395. "__type__": "cc.MeshRenderer",
  1396. "_name": "",
  1397. "_objFlags": 0,
  1398. "__editorExtras__": {},
  1399. "node": {
  1400. "__id__": 51
  1401. },
  1402. "_enabled": true,
  1403. "__prefab": {
  1404. "__id__": 53
  1405. },
  1406. "_materials": [
  1407. {
  1408. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@1d5ae",
  1409. "__expectedType__": "cc.Material"
  1410. }
  1411. ],
  1412. "_visFlags": 0,
  1413. "bakeSettings": {
  1414. "__id__": 54
  1415. },
  1416. "_mesh": {
  1417. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@9a84c",
  1418. "__expectedType__": "cc.Mesh"
  1419. },
  1420. "_shadowCastingMode": 1,
  1421. "_shadowReceivingMode": 1,
  1422. "_shadowBias": 0,
  1423. "_shadowNormalBias": 0,
  1424. "_reflectionProbeId": -1,
  1425. "_reflectionProbeBlendId": -1,
  1426. "_reflectionProbeBlendWeight": 0,
  1427. "_enabledGlobalStandardSkinObject": false,
  1428. "_enableMorph": true,
  1429. "_id": ""
  1430. },
  1431. {
  1432. "__type__": "cc.CompPrefabInfo",
  1433. "fileId": "93f757SrlRe6sx56Jz7P54"
  1434. },
  1435. {
  1436. "__type__": "cc.ModelBakeSettings",
  1437. "texture": null,
  1438. "uvParam": {
  1439. "__type__": "cc.Vec4",
  1440. "x": 0,
  1441. "y": 0,
  1442. "z": 0,
  1443. "w": 0
  1444. },
  1445. "_bakeable": false,
  1446. "_castShadow": true,
  1447. "_receiveShadow": true,
  1448. "_recieveShadow": true,
  1449. "_lightmapSize": 64,
  1450. "_useLightProbe": false,
  1451. "_bakeToLightProbe": true,
  1452. "_reflectionProbeType": 0,
  1453. "_bakeToReflectionProbe": true
  1454. },
  1455. {
  1456. "__type__": "cc.PrefabInfo",
  1457. "root": {
  1458. "__id__": 1
  1459. },
  1460. "asset": {
  1461. "__id__": 0
  1462. },
  1463. "fileId": "63N24jbepY9Zk/IVwdNYMg",
  1464. "instance": null,
  1465. "targetOverrides": null,
  1466. "nestedPrefabInstanceRoots": null
  1467. },
  1468. {
  1469. "__type__": "cc.Node",
  1470. "_name": "柱体.002",
  1471. "_objFlags": 0,
  1472. "__editorExtras__": {},
  1473. "_parent": {
  1474. "__id__": 1
  1475. },
  1476. "_children": [],
  1477. "_active": true,
  1478. "_components": [
  1479. {
  1480. "__id__": 57
  1481. }
  1482. ],
  1483. "_prefab": {
  1484. "__id__": 60
  1485. },
  1486. "_lpos": {
  1487. "__type__": "cc.Vec3",
  1488. "x": -8.18275260925293,
  1489. "y": 0.10170239210128784,
  1490. "z": 14.652997970581055
  1491. },
  1492. "_lrot": {
  1493. "__type__": "cc.Quat",
  1494. "x": -0.7071068407911908,
  1495. "y": 0,
  1496. "z": 0,
  1497. "w": 0.7071067215818992
  1498. },
  1499. "_lscale": {
  1500. "__type__": "cc.Vec3",
  1501. "x": 100,
  1502. "y": 100,
  1503. "z": 100
  1504. },
  1505. "_mobility": 0,
  1506. "_layer": 1073741824,
  1507. "_euler": {
  1508. "__type__": "cc.Vec3",
  1509. "x": -90.00000965934633,
  1510. "y": 0,
  1511. "z": 0
  1512. },
  1513. "_id": ""
  1514. },
  1515. {
  1516. "__type__": "cc.MeshRenderer",
  1517. "_name": "",
  1518. "_objFlags": 0,
  1519. "__editorExtras__": {},
  1520. "node": {
  1521. "__id__": 56
  1522. },
  1523. "_enabled": true,
  1524. "__prefab": {
  1525. "__id__": 58
  1526. },
  1527. "_materials": [
  1528. {
  1529. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  1530. "__expectedType__": "cc.Material"
  1531. }
  1532. ],
  1533. "_visFlags": 0,
  1534. "bakeSettings": {
  1535. "__id__": 59
  1536. },
  1537. "_mesh": {
  1538. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@9d07e",
  1539. "__expectedType__": "cc.Mesh"
  1540. },
  1541. "_shadowCastingMode": 1,
  1542. "_shadowReceivingMode": 1,
  1543. "_shadowBias": 0,
  1544. "_shadowNormalBias": 0,
  1545. "_reflectionProbeId": -1,
  1546. "_reflectionProbeBlendId": -1,
  1547. "_reflectionProbeBlendWeight": 0,
  1548. "_enabledGlobalStandardSkinObject": false,
  1549. "_enableMorph": true,
  1550. "_id": ""
  1551. },
  1552. {
  1553. "__type__": "cc.CompPrefabInfo",
  1554. "fileId": "eb9Fp63lNU546eYgaWPLfU"
  1555. },
  1556. {
  1557. "__type__": "cc.ModelBakeSettings",
  1558. "texture": null,
  1559. "uvParam": {
  1560. "__type__": "cc.Vec4",
  1561. "x": 0,
  1562. "y": 0,
  1563. "z": 0,
  1564. "w": 0
  1565. },
  1566. "_bakeable": false,
  1567. "_castShadow": true,
  1568. "_receiveShadow": true,
  1569. "_recieveShadow": true,
  1570. "_lightmapSize": 64,
  1571. "_useLightProbe": false,
  1572. "_bakeToLightProbe": true,
  1573. "_reflectionProbeType": 0,
  1574. "_bakeToReflectionProbe": true
  1575. },
  1576. {
  1577. "__type__": "cc.PrefabInfo",
  1578. "root": {
  1579. "__id__": 1
  1580. },
  1581. "asset": {
  1582. "__id__": 0
  1583. },
  1584. "fileId": "59fGe48dlTu4Ko4TEvXlSX",
  1585. "instance": null,
  1586. "targetOverrides": null,
  1587. "nestedPrefabInstanceRoots": null
  1588. },
  1589. {
  1590. "__type__": "cc.Node",
  1591. "_name": "building10",
  1592. "_objFlags": 0,
  1593. "__editorExtras__": {},
  1594. "_parent": {
  1595. "__id__": 1
  1596. },
  1597. "_children": [],
  1598. "_active": true,
  1599. "_components": [
  1600. {
  1601. "__id__": 62
  1602. }
  1603. ],
  1604. "_prefab": {
  1605. "__id__": 65
  1606. },
  1607. "_lpos": {
  1608. "__type__": "cc.Vec3",
  1609. "x": 12.024023056030273,
  1610. "y": 0.22116267681121826,
  1611. "z": 7.364471435546875
  1612. },
  1613. "_lrot": {
  1614. "__type__": "cc.Quat",
  1615. "x": -0.7071068407911908,
  1616. "y": 0,
  1617. "z": 0,
  1618. "w": 0.7071067215818992
  1619. },
  1620. "_lscale": {
  1621. "__type__": "cc.Vec3",
  1622. "x": 100,
  1623. "y": 100,
  1624. "z": 100
  1625. },
  1626. "_mobility": 0,
  1627. "_layer": 1073741824,
  1628. "_euler": {
  1629. "__type__": "cc.Vec3",
  1630. "x": -90.00000965934633,
  1631. "y": 0,
  1632. "z": 0
  1633. },
  1634. "_id": ""
  1635. },
  1636. {
  1637. "__type__": "cc.MeshRenderer",
  1638. "_name": "",
  1639. "_objFlags": 0,
  1640. "__editorExtras__": {},
  1641. "node": {
  1642. "__id__": 61
  1643. },
  1644. "_enabled": true,
  1645. "__prefab": {
  1646. "__id__": 63
  1647. },
  1648. "_materials": [
  1649. {
  1650. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  1651. "__expectedType__": "cc.Material"
  1652. }
  1653. ],
  1654. "_visFlags": 0,
  1655. "bakeSettings": {
  1656. "__id__": 64
  1657. },
  1658. "_mesh": {
  1659. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@24899",
  1660. "__expectedType__": "cc.Mesh"
  1661. },
  1662. "_shadowCastingMode": 1,
  1663. "_shadowReceivingMode": 1,
  1664. "_shadowBias": 0,
  1665. "_shadowNormalBias": 0,
  1666. "_reflectionProbeId": -1,
  1667. "_reflectionProbeBlendId": -1,
  1668. "_reflectionProbeBlendWeight": 0,
  1669. "_enabledGlobalStandardSkinObject": false,
  1670. "_enableMorph": true,
  1671. "_id": ""
  1672. },
  1673. {
  1674. "__type__": "cc.CompPrefabInfo",
  1675. "fileId": "cbr0QU1nBUW78+1tLrkwBZ"
  1676. },
  1677. {
  1678. "__type__": "cc.ModelBakeSettings",
  1679. "texture": null,
  1680. "uvParam": {
  1681. "__type__": "cc.Vec4",
  1682. "x": 0,
  1683. "y": 0,
  1684. "z": 0,
  1685. "w": 0
  1686. },
  1687. "_bakeable": false,
  1688. "_castShadow": true,
  1689. "_receiveShadow": true,
  1690. "_recieveShadow": true,
  1691. "_lightmapSize": 64,
  1692. "_useLightProbe": false,
  1693. "_bakeToLightProbe": true,
  1694. "_reflectionProbeType": 0,
  1695. "_bakeToReflectionProbe": true
  1696. },
  1697. {
  1698. "__type__": "cc.PrefabInfo",
  1699. "root": {
  1700. "__id__": 1
  1701. },
  1702. "asset": {
  1703. "__id__": 0
  1704. },
  1705. "fileId": "d2I0mEun5bEJ3xRWIdqzrh",
  1706. "instance": null,
  1707. "targetOverrides": null,
  1708. "nestedPrefabInstanceRoots": null
  1709. },
  1710. {
  1711. "__type__": "cc.Node",
  1712. "_name": "stone_6.001",
  1713. "_objFlags": 0,
  1714. "__editorExtras__": {},
  1715. "_parent": {
  1716. "__id__": 1
  1717. },
  1718. "_children": [],
  1719. "_active": true,
  1720. "_components": [
  1721. {
  1722. "__id__": 67
  1723. }
  1724. ],
  1725. "_prefab": {
  1726. "__id__": 70
  1727. },
  1728. "_lpos": {
  1729. "__type__": "cc.Vec3",
  1730. "x": 3.384274959564209,
  1731. "y": 0.13051801919937134,
  1732. "z": 6.823182582855225
  1733. },
  1734. "_lrot": {
  1735. "__type__": "cc.Quat",
  1736. "x": -0.7071068407911908,
  1737. "y": 0,
  1738. "z": 0,
  1739. "w": 0.7071067215818992
  1740. },
  1741. "_lscale": {
  1742. "__type__": "cc.Vec3",
  1743. "x": 100,
  1744. "y": 100,
  1745. "z": 100
  1746. },
  1747. "_mobility": 0,
  1748. "_layer": 1073741824,
  1749. "_euler": {
  1750. "__type__": "cc.Vec3",
  1751. "x": -90.00000965934633,
  1752. "y": 0,
  1753. "z": 0
  1754. },
  1755. "_id": ""
  1756. },
  1757. {
  1758. "__type__": "cc.MeshRenderer",
  1759. "_name": "",
  1760. "_objFlags": 0,
  1761. "__editorExtras__": {},
  1762. "node": {
  1763. "__id__": 66
  1764. },
  1765. "_enabled": true,
  1766. "__prefab": {
  1767. "__id__": 68
  1768. },
  1769. "_materials": [
  1770. {
  1771. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  1772. "__expectedType__": "cc.Material"
  1773. }
  1774. ],
  1775. "_visFlags": 0,
  1776. "bakeSettings": {
  1777. "__id__": 69
  1778. },
  1779. "_mesh": {
  1780. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@17dd0",
  1781. "__expectedType__": "cc.Mesh"
  1782. },
  1783. "_shadowCastingMode": 1,
  1784. "_shadowReceivingMode": 1,
  1785. "_shadowBias": 0,
  1786. "_shadowNormalBias": 0,
  1787. "_reflectionProbeId": -1,
  1788. "_reflectionProbeBlendId": -1,
  1789. "_reflectionProbeBlendWeight": 0,
  1790. "_enabledGlobalStandardSkinObject": false,
  1791. "_enableMorph": true,
  1792. "_id": ""
  1793. },
  1794. {
  1795. "__type__": "cc.CompPrefabInfo",
  1796. "fileId": "253qFb6EJW17ZHRCfFAyH4"
  1797. },
  1798. {
  1799. "__type__": "cc.ModelBakeSettings",
  1800. "texture": null,
  1801. "uvParam": {
  1802. "__type__": "cc.Vec4",
  1803. "x": 0,
  1804. "y": 0,
  1805. "z": 0,
  1806. "w": 0
  1807. },
  1808. "_bakeable": false,
  1809. "_castShadow": true,
  1810. "_receiveShadow": true,
  1811. "_recieveShadow": true,
  1812. "_lightmapSize": 64,
  1813. "_useLightProbe": false,
  1814. "_bakeToLightProbe": true,
  1815. "_reflectionProbeType": 0,
  1816. "_bakeToReflectionProbe": true
  1817. },
  1818. {
  1819. "__type__": "cc.PrefabInfo",
  1820. "root": {
  1821. "__id__": 1
  1822. },
  1823. "asset": {
  1824. "__id__": 0
  1825. },
  1826. "fileId": "eau4AvrLBdGqwBzg+4pqbT",
  1827. "instance": null,
  1828. "targetOverrides": null,
  1829. "nestedPrefabInstanceRoots": null
  1830. },
  1831. {
  1832. "__type__": "cc.Node",
  1833. "_name": "stone_5.001",
  1834. "_objFlags": 0,
  1835. "__editorExtras__": {},
  1836. "_parent": {
  1837. "__id__": 1
  1838. },
  1839. "_children": [],
  1840. "_active": true,
  1841. "_components": [
  1842. {
  1843. "__id__": 72
  1844. }
  1845. ],
  1846. "_prefab": {
  1847. "__id__": 75
  1848. },
  1849. "_lpos": {
  1850. "__type__": "cc.Vec3",
  1851. "x": 5.379996299743652,
  1852. "y": 0.11068034172058105,
  1853. "z": 6.796064853668213
  1854. },
  1855. "_lrot": {
  1856. "__type__": "cc.Quat",
  1857. "x": -0.7071068407911908,
  1858. "y": 0,
  1859. "z": 0,
  1860. "w": 0.7071067215818992
  1861. },
  1862. "_lscale": {
  1863. "__type__": "cc.Vec3",
  1864. "x": 100,
  1865. "y": 100,
  1866. "z": 100
  1867. },
  1868. "_mobility": 0,
  1869. "_layer": 1073741824,
  1870. "_euler": {
  1871. "__type__": "cc.Vec3",
  1872. "x": -90.00000965934633,
  1873. "y": 0,
  1874. "z": 0
  1875. },
  1876. "_id": ""
  1877. },
  1878. {
  1879. "__type__": "cc.MeshRenderer",
  1880. "_name": "",
  1881. "_objFlags": 0,
  1882. "__editorExtras__": {},
  1883. "node": {
  1884. "__id__": 71
  1885. },
  1886. "_enabled": true,
  1887. "__prefab": {
  1888. "__id__": 73
  1889. },
  1890. "_materials": [
  1891. {
  1892. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  1893. "__expectedType__": "cc.Material"
  1894. }
  1895. ],
  1896. "_visFlags": 0,
  1897. "bakeSettings": {
  1898. "__id__": 74
  1899. },
  1900. "_mesh": {
  1901. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@181b3",
  1902. "__expectedType__": "cc.Mesh"
  1903. },
  1904. "_shadowCastingMode": 1,
  1905. "_shadowReceivingMode": 1,
  1906. "_shadowBias": 0,
  1907. "_shadowNormalBias": 0,
  1908. "_reflectionProbeId": -1,
  1909. "_reflectionProbeBlendId": -1,
  1910. "_reflectionProbeBlendWeight": 0,
  1911. "_enabledGlobalStandardSkinObject": false,
  1912. "_enableMorph": true,
  1913. "_id": ""
  1914. },
  1915. {
  1916. "__type__": "cc.CompPrefabInfo",
  1917. "fileId": "c5fouxo91cK67kQ0wuJURg"
  1918. },
  1919. {
  1920. "__type__": "cc.ModelBakeSettings",
  1921. "texture": null,
  1922. "uvParam": {
  1923. "__type__": "cc.Vec4",
  1924. "x": 0,
  1925. "y": 0,
  1926. "z": 0,
  1927. "w": 0
  1928. },
  1929. "_bakeable": false,
  1930. "_castShadow": true,
  1931. "_receiveShadow": true,
  1932. "_recieveShadow": true,
  1933. "_lightmapSize": 64,
  1934. "_useLightProbe": false,
  1935. "_bakeToLightProbe": true,
  1936. "_reflectionProbeType": 0,
  1937. "_bakeToReflectionProbe": true
  1938. },
  1939. {
  1940. "__type__": "cc.PrefabInfo",
  1941. "root": {
  1942. "__id__": 1
  1943. },
  1944. "asset": {
  1945. "__id__": 0
  1946. },
  1947. "fileId": "afpqjQ649WTboRnap44qvA",
  1948. "instance": null,
  1949. "targetOverrides": null,
  1950. "nestedPrefabInstanceRoots": null
  1951. },
  1952. {
  1953. "__type__": "cc.Node",
  1954. "_name": "stone_4.001",
  1955. "_objFlags": 0,
  1956. "__editorExtras__": {},
  1957. "_parent": {
  1958. "__id__": 1
  1959. },
  1960. "_children": [],
  1961. "_active": true,
  1962. "_components": [
  1963. {
  1964. "__id__": 77
  1965. }
  1966. ],
  1967. "_prefab": {
  1968. "__id__": 80
  1969. },
  1970. "_lpos": {
  1971. "__type__": "cc.Vec3",
  1972. "x": 6.885799407958984,
  1973. "y": 0.08196669816970825,
  1974. "z": 6.7620344161987305
  1975. },
  1976. "_lrot": {
  1977. "__type__": "cc.Quat",
  1978. "x": -0.7071068407911908,
  1979. "y": 0,
  1980. "z": 0,
  1981. "w": 0.7071067215818992
  1982. },
  1983. "_lscale": {
  1984. "__type__": "cc.Vec3",
  1985. "x": 100,
  1986. "y": 100,
  1987. "z": 100
  1988. },
  1989. "_mobility": 0,
  1990. "_layer": 1073741824,
  1991. "_euler": {
  1992. "__type__": "cc.Vec3",
  1993. "x": -90.00000965934633,
  1994. "y": 0,
  1995. "z": 0
  1996. },
  1997. "_id": ""
  1998. },
  1999. {
  2000. "__type__": "cc.MeshRenderer",
  2001. "_name": "",
  2002. "_objFlags": 0,
  2003. "__editorExtras__": {},
  2004. "node": {
  2005. "__id__": 76
  2006. },
  2007. "_enabled": true,
  2008. "__prefab": {
  2009. "__id__": 78
  2010. },
  2011. "_materials": [
  2012. {
  2013. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  2014. "__expectedType__": "cc.Material"
  2015. }
  2016. ],
  2017. "_visFlags": 0,
  2018. "bakeSettings": {
  2019. "__id__": 79
  2020. },
  2021. "_mesh": {
  2022. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@ce9cf",
  2023. "__expectedType__": "cc.Mesh"
  2024. },
  2025. "_shadowCastingMode": 1,
  2026. "_shadowReceivingMode": 1,
  2027. "_shadowBias": 0,
  2028. "_shadowNormalBias": 0,
  2029. "_reflectionProbeId": -1,
  2030. "_reflectionProbeBlendId": -1,
  2031. "_reflectionProbeBlendWeight": 0,
  2032. "_enabledGlobalStandardSkinObject": false,
  2033. "_enableMorph": true,
  2034. "_id": ""
  2035. },
  2036. {
  2037. "__type__": "cc.CompPrefabInfo",
  2038. "fileId": "313PzwAFFc772Ust+9uoLU"
  2039. },
  2040. {
  2041. "__type__": "cc.ModelBakeSettings",
  2042. "texture": null,
  2043. "uvParam": {
  2044. "__type__": "cc.Vec4",
  2045. "x": 0,
  2046. "y": 0,
  2047. "z": 0,
  2048. "w": 0
  2049. },
  2050. "_bakeable": false,
  2051. "_castShadow": true,
  2052. "_receiveShadow": true,
  2053. "_recieveShadow": true,
  2054. "_lightmapSize": 64,
  2055. "_useLightProbe": false,
  2056. "_bakeToLightProbe": true,
  2057. "_reflectionProbeType": 0,
  2058. "_bakeToReflectionProbe": true
  2059. },
  2060. {
  2061. "__type__": "cc.PrefabInfo",
  2062. "root": {
  2063. "__id__": 1
  2064. },
  2065. "asset": {
  2066. "__id__": 0
  2067. },
  2068. "fileId": "053yVTSEdeXZmCo5y18p35",
  2069. "instance": null,
  2070. "targetOverrides": null,
  2071. "nestedPrefabInstanceRoots": null
  2072. },
  2073. {
  2074. "__type__": "cc.Node",
  2075. "_name": "conifer5_Cylinder.004",
  2076. "_objFlags": 0,
  2077. "__editorExtras__": {},
  2078. "_parent": {
  2079. "__id__": 1
  2080. },
  2081. "_children": [],
  2082. "_active": true,
  2083. "_components": [
  2084. {
  2085. "__id__": 82
  2086. }
  2087. ],
  2088. "_prefab": {
  2089. "__id__": 85
  2090. },
  2091. "_lpos": {
  2092. "__type__": "cc.Vec3",
  2093. "x": 31.459007263183594,
  2094. "y": 5.440830230712891,
  2095. "z": -40.63509750366211
  2096. },
  2097. "_lrot": {
  2098. "__type__": "cc.Quat",
  2099. "x": -0.7071068407911908,
  2100. "y": 0,
  2101. "z": 0,
  2102. "w": 0.7071067215818992
  2103. },
  2104. "_lscale": {
  2105. "__type__": "cc.Vec3",
  2106. "x": 100,
  2107. "y": 100,
  2108. "z": 100
  2109. },
  2110. "_mobility": 0,
  2111. "_layer": 1073741824,
  2112. "_euler": {
  2113. "__type__": "cc.Vec3",
  2114. "x": -90.00000965934633,
  2115. "y": 0,
  2116. "z": 0
  2117. },
  2118. "_id": ""
  2119. },
  2120. {
  2121. "__type__": "cc.MeshRenderer",
  2122. "_name": "",
  2123. "_objFlags": 0,
  2124. "__editorExtras__": {},
  2125. "node": {
  2126. "__id__": 81
  2127. },
  2128. "_enabled": true,
  2129. "__prefab": {
  2130. "__id__": 83
  2131. },
  2132. "_materials": [
  2133. {
  2134. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  2135. "__expectedType__": "cc.Material"
  2136. }
  2137. ],
  2138. "_visFlags": 0,
  2139. "bakeSettings": {
  2140. "__id__": 84
  2141. },
  2142. "_mesh": {
  2143. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@1e35a",
  2144. "__expectedType__": "cc.Mesh"
  2145. },
  2146. "_shadowCastingMode": 1,
  2147. "_shadowReceivingMode": 1,
  2148. "_shadowBias": 0,
  2149. "_shadowNormalBias": 0,
  2150. "_reflectionProbeId": -1,
  2151. "_reflectionProbeBlendId": -1,
  2152. "_reflectionProbeBlendWeight": 0,
  2153. "_enabledGlobalStandardSkinObject": false,
  2154. "_enableMorph": true,
  2155. "_id": ""
  2156. },
  2157. {
  2158. "__type__": "cc.CompPrefabInfo",
  2159. "fileId": "25smidMaNecLyTOx1QMz8s"
  2160. },
  2161. {
  2162. "__type__": "cc.ModelBakeSettings",
  2163. "texture": null,
  2164. "uvParam": {
  2165. "__type__": "cc.Vec4",
  2166. "x": 0,
  2167. "y": 0,
  2168. "z": 0,
  2169. "w": 0
  2170. },
  2171. "_bakeable": false,
  2172. "_castShadow": true,
  2173. "_receiveShadow": true,
  2174. "_recieveShadow": true,
  2175. "_lightmapSize": 64,
  2176. "_useLightProbe": false,
  2177. "_bakeToLightProbe": true,
  2178. "_reflectionProbeType": 0,
  2179. "_bakeToReflectionProbe": true
  2180. },
  2181. {
  2182. "__type__": "cc.PrefabInfo",
  2183. "root": {
  2184. "__id__": 1
  2185. },
  2186. "asset": {
  2187. "__id__": 0
  2188. },
  2189. "fileId": "03aIhI0HJfB47aUDdf74+H",
  2190. "instance": null,
  2191. "targetOverrides": null,
  2192. "nestedPrefabInstanceRoots": null
  2193. },
  2194. {
  2195. "__type__": "cc.Node",
  2196. "_name": "tent",
  2197. "_objFlags": 0,
  2198. "__editorExtras__": {},
  2199. "_parent": {
  2200. "__id__": 1
  2201. },
  2202. "_children": [],
  2203. "_active": true,
  2204. "_components": [
  2205. {
  2206. "__id__": 87
  2207. }
  2208. ],
  2209. "_prefab": {
  2210. "__id__": 90
  2211. },
  2212. "_lpos": {
  2213. "__type__": "cc.Vec3",
  2214. "x": -2.255401849746704,
  2215. "y": 0.11923789978027344,
  2216. "z": 6.487483024597168
  2217. },
  2218. "_lrot": {
  2219. "__type__": "cc.Quat",
  2220. "x": -0.7071068407911908,
  2221. "y": 0,
  2222. "z": 0,
  2223. "w": 0.7071067215818992
  2224. },
  2225. "_lscale": {
  2226. "__type__": "cc.Vec3",
  2227. "x": 100,
  2228. "y": 100,
  2229. "z": 100
  2230. },
  2231. "_mobility": 0,
  2232. "_layer": 1073741824,
  2233. "_euler": {
  2234. "__type__": "cc.Vec3",
  2235. "x": -90.00000965934633,
  2236. "y": 0,
  2237. "z": 0
  2238. },
  2239. "_id": ""
  2240. },
  2241. {
  2242. "__type__": "cc.MeshRenderer",
  2243. "_name": "",
  2244. "_objFlags": 0,
  2245. "__editorExtras__": {},
  2246. "node": {
  2247. "__id__": 86
  2248. },
  2249. "_enabled": true,
  2250. "__prefab": {
  2251. "__id__": 88
  2252. },
  2253. "_materials": [
  2254. {
  2255. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@3192d",
  2256. "__expectedType__": "cc.Material"
  2257. }
  2258. ],
  2259. "_visFlags": 0,
  2260. "bakeSettings": {
  2261. "__id__": 89
  2262. },
  2263. "_mesh": {
  2264. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@2f5fe",
  2265. "__expectedType__": "cc.Mesh"
  2266. },
  2267. "_shadowCastingMode": 1,
  2268. "_shadowReceivingMode": 1,
  2269. "_shadowBias": 0,
  2270. "_shadowNormalBias": 0,
  2271. "_reflectionProbeId": -1,
  2272. "_reflectionProbeBlendId": -1,
  2273. "_reflectionProbeBlendWeight": 0,
  2274. "_enabledGlobalStandardSkinObject": false,
  2275. "_enableMorph": true,
  2276. "_id": ""
  2277. },
  2278. {
  2279. "__type__": "cc.CompPrefabInfo",
  2280. "fileId": "c43eRf4uxaiZEpKBXJEJ6C"
  2281. },
  2282. {
  2283. "__type__": "cc.ModelBakeSettings",
  2284. "texture": null,
  2285. "uvParam": {
  2286. "__type__": "cc.Vec4",
  2287. "x": 0,
  2288. "y": 0,
  2289. "z": 0,
  2290. "w": 0
  2291. },
  2292. "_bakeable": false,
  2293. "_castShadow": true,
  2294. "_receiveShadow": true,
  2295. "_recieveShadow": true,
  2296. "_lightmapSize": 64,
  2297. "_useLightProbe": false,
  2298. "_bakeToLightProbe": true,
  2299. "_reflectionProbeType": 0,
  2300. "_bakeToReflectionProbe": true
  2301. },
  2302. {
  2303. "__type__": "cc.PrefabInfo",
  2304. "root": {
  2305. "__id__": 1
  2306. },
  2307. "asset": {
  2308. "__id__": 0
  2309. },
  2310. "fileId": "0fy0T1BaRbALJ7Dy+x73vJ",
  2311. "instance": null,
  2312. "targetOverrides": null,
  2313. "nestedPrefabInstanceRoots": null
  2314. },
  2315. {
  2316. "__type__": "cc.Node",
  2317. "_name": "pCube65.001",
  2318. "_objFlags": 0,
  2319. "__editorExtras__": {},
  2320. "_parent": {
  2321. "__id__": 1
  2322. },
  2323. "_children": [],
  2324. "_active": true,
  2325. "_components": [
  2326. {
  2327. "__id__": 92
  2328. }
  2329. ],
  2330. "_prefab": {
  2331. "__id__": 95
  2332. },
  2333. "_lpos": {
  2334. "__type__": "cc.Vec3",
  2335. "x": -6.444464206695557,
  2336. "y": 0.0002760887145996094,
  2337. "z": 7.766974925994873
  2338. },
  2339. "_lrot": {
  2340. "__type__": "cc.Quat",
  2341. "x": -0.7071068407911908,
  2342. "y": 0,
  2343. "z": 0,
  2344. "w": 0.7071067215818992
  2345. },
  2346. "_lscale": {
  2347. "__type__": "cc.Vec3",
  2348. "x": 100,
  2349. "y": 100,
  2350. "z": 100
  2351. },
  2352. "_mobility": 0,
  2353. "_layer": 1073741824,
  2354. "_euler": {
  2355. "__type__": "cc.Vec3",
  2356. "x": -90.00000965934633,
  2357. "y": 0,
  2358. "z": 0
  2359. },
  2360. "_id": ""
  2361. },
  2362. {
  2363. "__type__": "cc.MeshRenderer",
  2364. "_name": "",
  2365. "_objFlags": 0,
  2366. "__editorExtras__": {},
  2367. "node": {
  2368. "__id__": 91
  2369. },
  2370. "_enabled": true,
  2371. "__prefab": {
  2372. "__id__": 93
  2373. },
  2374. "_materials": [
  2375. {
  2376. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  2377. "__expectedType__": "cc.Material"
  2378. }
  2379. ],
  2380. "_visFlags": 0,
  2381. "bakeSettings": {
  2382. "__id__": 94
  2383. },
  2384. "_mesh": {
  2385. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@930f6",
  2386. "__expectedType__": "cc.Mesh"
  2387. },
  2388. "_shadowCastingMode": 1,
  2389. "_shadowReceivingMode": 1,
  2390. "_shadowBias": 0,
  2391. "_shadowNormalBias": 0,
  2392. "_reflectionProbeId": -1,
  2393. "_reflectionProbeBlendId": -1,
  2394. "_reflectionProbeBlendWeight": 0,
  2395. "_enabledGlobalStandardSkinObject": false,
  2396. "_enableMorph": true,
  2397. "_id": ""
  2398. },
  2399. {
  2400. "__type__": "cc.CompPrefabInfo",
  2401. "fileId": "a0k/S9SfFV6pNEevqfxzAm"
  2402. },
  2403. {
  2404. "__type__": "cc.ModelBakeSettings",
  2405. "texture": null,
  2406. "uvParam": {
  2407. "__type__": "cc.Vec4",
  2408. "x": 0,
  2409. "y": 0,
  2410. "z": 0,
  2411. "w": 0
  2412. },
  2413. "_bakeable": false,
  2414. "_castShadow": true,
  2415. "_receiveShadow": true,
  2416. "_recieveShadow": true,
  2417. "_lightmapSize": 64,
  2418. "_useLightProbe": false,
  2419. "_bakeToLightProbe": true,
  2420. "_reflectionProbeType": 0,
  2421. "_bakeToReflectionProbe": true
  2422. },
  2423. {
  2424. "__type__": "cc.PrefabInfo",
  2425. "root": {
  2426. "__id__": 1
  2427. },
  2428. "asset": {
  2429. "__id__": 0
  2430. },
  2431. "fileId": "e8B8HbscpaZKBajNOf7Bu+",
  2432. "instance": null,
  2433. "targetOverrides": null,
  2434. "nestedPrefabInstanceRoots": null
  2435. },
  2436. {
  2437. "__type__": "cc.Node",
  2438. "_name": "pCube65.002",
  2439. "_objFlags": 0,
  2440. "__editorExtras__": {},
  2441. "_parent": {
  2442. "__id__": 1
  2443. },
  2444. "_children": [],
  2445. "_active": true,
  2446. "_components": [
  2447. {
  2448. "__id__": 97
  2449. }
  2450. ],
  2451. "_prefab": {
  2452. "__id__": 100
  2453. },
  2454. "_lpos": {
  2455. "__type__": "cc.Vec3",
  2456. "x": -3.6928648948669434,
  2457. "y": 1.1922175884246826,
  2458. "z": -14.49074935913086
  2459. },
  2460. "_lrot": {
  2461. "__type__": "cc.Quat",
  2462. "x": -0.7071068407911908,
  2463. "y": 0,
  2464. "z": 0,
  2465. "w": 0.7071067215818992
  2466. },
  2467. "_lscale": {
  2468. "__type__": "cc.Vec3",
  2469. "x": 100,
  2470. "y": 100,
  2471. "z": 100
  2472. },
  2473. "_mobility": 0,
  2474. "_layer": 1073741824,
  2475. "_euler": {
  2476. "__type__": "cc.Vec3",
  2477. "x": -90.00000965934633,
  2478. "y": 0,
  2479. "z": 0
  2480. },
  2481. "_id": ""
  2482. },
  2483. {
  2484. "__type__": "cc.MeshRenderer",
  2485. "_name": "",
  2486. "_objFlags": 0,
  2487. "__editorExtras__": {},
  2488. "node": {
  2489. "__id__": 96
  2490. },
  2491. "_enabled": true,
  2492. "__prefab": {
  2493. "__id__": 98
  2494. },
  2495. "_materials": [
  2496. {
  2497. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  2498. "__expectedType__": "cc.Material"
  2499. }
  2500. ],
  2501. "_visFlags": 0,
  2502. "bakeSettings": {
  2503. "__id__": 99
  2504. },
  2505. "_mesh": {
  2506. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@750ed",
  2507. "__expectedType__": "cc.Mesh"
  2508. },
  2509. "_shadowCastingMode": 1,
  2510. "_shadowReceivingMode": 1,
  2511. "_shadowBias": 0,
  2512. "_shadowNormalBias": 0,
  2513. "_reflectionProbeId": -1,
  2514. "_reflectionProbeBlendId": -1,
  2515. "_reflectionProbeBlendWeight": 0,
  2516. "_enabledGlobalStandardSkinObject": false,
  2517. "_enableMorph": true,
  2518. "_id": ""
  2519. },
  2520. {
  2521. "__type__": "cc.CompPrefabInfo",
  2522. "fileId": "0c06RKUSFVD4adw0xz+tSF"
  2523. },
  2524. {
  2525. "__type__": "cc.ModelBakeSettings",
  2526. "texture": null,
  2527. "uvParam": {
  2528. "__type__": "cc.Vec4",
  2529. "x": 0,
  2530. "y": 0,
  2531. "z": 0,
  2532. "w": 0
  2533. },
  2534. "_bakeable": false,
  2535. "_castShadow": true,
  2536. "_receiveShadow": true,
  2537. "_recieveShadow": true,
  2538. "_lightmapSize": 64,
  2539. "_useLightProbe": false,
  2540. "_bakeToLightProbe": true,
  2541. "_reflectionProbeType": 0,
  2542. "_bakeToReflectionProbe": true
  2543. },
  2544. {
  2545. "__type__": "cc.PrefabInfo",
  2546. "root": {
  2547. "__id__": 1
  2548. },
  2549. "asset": {
  2550. "__id__": 0
  2551. },
  2552. "fileId": "decBvFDDRcDYW8WhlKUZah",
  2553. "instance": null,
  2554. "targetOverrides": null,
  2555. "nestedPrefabInstanceRoots": null
  2556. },
  2557. {
  2558. "__type__": "cc.Node",
  2559. "_name": "pCube65.004",
  2560. "_objFlags": 0,
  2561. "__editorExtras__": {},
  2562. "_parent": {
  2563. "__id__": 1
  2564. },
  2565. "_children": [],
  2566. "_active": true,
  2567. "_components": [
  2568. {
  2569. "__id__": 102
  2570. }
  2571. ],
  2572. "_prefab": {
  2573. "__id__": 105
  2574. },
  2575. "_lpos": {
  2576. "__type__": "cc.Vec3",
  2577. "x": 1.2475428581237793,
  2578. "y": 1.1922175884246826,
  2579. "z": -14.49074935913086
  2580. },
  2581. "_lrot": {
  2582. "__type__": "cc.Quat",
  2583. "x": -0.7071068407911908,
  2584. "y": 0,
  2585. "z": 0,
  2586. "w": 0.7071067215818992
  2587. },
  2588. "_lscale": {
  2589. "__type__": "cc.Vec3",
  2590. "x": 100,
  2591. "y": 100,
  2592. "z": 100
  2593. },
  2594. "_mobility": 0,
  2595. "_layer": 1073741824,
  2596. "_euler": {
  2597. "__type__": "cc.Vec3",
  2598. "x": -90.00000965934633,
  2599. "y": 0,
  2600. "z": 0
  2601. },
  2602. "_id": ""
  2603. },
  2604. {
  2605. "__type__": "cc.MeshRenderer",
  2606. "_name": "",
  2607. "_objFlags": 0,
  2608. "__editorExtras__": {},
  2609. "node": {
  2610. "__id__": 101
  2611. },
  2612. "_enabled": true,
  2613. "__prefab": {
  2614. "__id__": 103
  2615. },
  2616. "_materials": [
  2617. {
  2618. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  2619. "__expectedType__": "cc.Material"
  2620. }
  2621. ],
  2622. "_visFlags": 0,
  2623. "bakeSettings": {
  2624. "__id__": 104
  2625. },
  2626. "_mesh": {
  2627. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@305a7",
  2628. "__expectedType__": "cc.Mesh"
  2629. },
  2630. "_shadowCastingMode": 1,
  2631. "_shadowReceivingMode": 1,
  2632. "_shadowBias": 0,
  2633. "_shadowNormalBias": 0,
  2634. "_reflectionProbeId": -1,
  2635. "_reflectionProbeBlendId": -1,
  2636. "_reflectionProbeBlendWeight": 0,
  2637. "_enabledGlobalStandardSkinObject": false,
  2638. "_enableMorph": true,
  2639. "_id": ""
  2640. },
  2641. {
  2642. "__type__": "cc.CompPrefabInfo",
  2643. "fileId": "bcBMjvBRJdO4zVnut+ldR6"
  2644. },
  2645. {
  2646. "__type__": "cc.ModelBakeSettings",
  2647. "texture": null,
  2648. "uvParam": {
  2649. "__type__": "cc.Vec4",
  2650. "x": 0,
  2651. "y": 0,
  2652. "z": 0,
  2653. "w": 0
  2654. },
  2655. "_bakeable": false,
  2656. "_castShadow": true,
  2657. "_receiveShadow": true,
  2658. "_recieveShadow": true,
  2659. "_lightmapSize": 64,
  2660. "_useLightProbe": false,
  2661. "_bakeToLightProbe": true,
  2662. "_reflectionProbeType": 0,
  2663. "_bakeToReflectionProbe": true
  2664. },
  2665. {
  2666. "__type__": "cc.PrefabInfo",
  2667. "root": {
  2668. "__id__": 1
  2669. },
  2670. "asset": {
  2671. "__id__": 0
  2672. },
  2673. "fileId": "0aw+Ns5ARX67LvaLvIpnYy",
  2674. "instance": null,
  2675. "targetOverrides": null,
  2676. "nestedPrefabInstanceRoots": null
  2677. },
  2678. {
  2679. "__type__": "cc.Node",
  2680. "_name": "立方体",
  2681. "_objFlags": 0,
  2682. "__editorExtras__": {},
  2683. "_parent": {
  2684. "__id__": 1
  2685. },
  2686. "_children": [],
  2687. "_active": true,
  2688. "_components": [
  2689. {
  2690. "__id__": 107
  2691. }
  2692. ],
  2693. "_prefab": {
  2694. "__id__": 110
  2695. },
  2696. "_lpos": {
  2697. "__type__": "cc.Vec3",
  2698. "x": -11.250216484069824,
  2699. "y": -0.08315271139144897,
  2700. "z": 7.254961967468262
  2701. },
  2702. "_lrot": {
  2703. "__type__": "cc.Quat",
  2704. "x": -0.7071068407911908,
  2705. "y": 0,
  2706. "z": 0,
  2707. "w": 0.7071067215818992
  2708. },
  2709. "_lscale": {
  2710. "__type__": "cc.Vec3",
  2711. "x": 100,
  2712. "y": 100,
  2713. "z": 100
  2714. },
  2715. "_mobility": 0,
  2716. "_layer": 1073741824,
  2717. "_euler": {
  2718. "__type__": "cc.Vec3",
  2719. "x": -90.00000965934633,
  2720. "y": 0,
  2721. "z": 0
  2722. },
  2723. "_id": ""
  2724. },
  2725. {
  2726. "__type__": "cc.MeshRenderer",
  2727. "_name": "",
  2728. "_objFlags": 0,
  2729. "__editorExtras__": {},
  2730. "node": {
  2731. "__id__": 106
  2732. },
  2733. "_enabled": true,
  2734. "__prefab": {
  2735. "__id__": 108
  2736. },
  2737. "_materials": [
  2738. {
  2739. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  2740. "__expectedType__": "cc.Material"
  2741. }
  2742. ],
  2743. "_visFlags": 0,
  2744. "bakeSettings": {
  2745. "__id__": 109
  2746. },
  2747. "_mesh": {
  2748. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@fa0d6",
  2749. "__expectedType__": "cc.Mesh"
  2750. },
  2751. "_shadowCastingMode": 1,
  2752. "_shadowReceivingMode": 1,
  2753. "_shadowBias": 0,
  2754. "_shadowNormalBias": 0,
  2755. "_reflectionProbeId": -1,
  2756. "_reflectionProbeBlendId": -1,
  2757. "_reflectionProbeBlendWeight": 0,
  2758. "_enabledGlobalStandardSkinObject": false,
  2759. "_enableMorph": true,
  2760. "_id": ""
  2761. },
  2762. {
  2763. "__type__": "cc.CompPrefabInfo",
  2764. "fileId": "57QmIZpCZeC4usNVqD1onR"
  2765. },
  2766. {
  2767. "__type__": "cc.ModelBakeSettings",
  2768. "texture": null,
  2769. "uvParam": {
  2770. "__type__": "cc.Vec4",
  2771. "x": 0,
  2772. "y": 0,
  2773. "z": 0,
  2774. "w": 0
  2775. },
  2776. "_bakeable": false,
  2777. "_castShadow": true,
  2778. "_receiveShadow": true,
  2779. "_recieveShadow": true,
  2780. "_lightmapSize": 64,
  2781. "_useLightProbe": false,
  2782. "_bakeToLightProbe": true,
  2783. "_reflectionProbeType": 0,
  2784. "_bakeToReflectionProbe": true
  2785. },
  2786. {
  2787. "__type__": "cc.PrefabInfo",
  2788. "root": {
  2789. "__id__": 1
  2790. },
  2791. "asset": {
  2792. "__id__": 0
  2793. },
  2794. "fileId": "cf2Ly0jXVWuq2qiSU3f5sl",
  2795. "instance": null,
  2796. "targetOverrides": null,
  2797. "nestedPrefabInstanceRoots": null
  2798. },
  2799. {
  2800. "__type__": "cc.Node",
  2801. "_name": "Cube.004",
  2802. "_objFlags": 0,
  2803. "__editorExtras__": {},
  2804. "_parent": {
  2805. "__id__": 1
  2806. },
  2807. "_children": [],
  2808. "_active": true,
  2809. "_components": [
  2810. {
  2811. "__id__": 112
  2812. }
  2813. ],
  2814. "_prefab": {
  2815. "__id__": 115
  2816. },
  2817. "_lpos": {
  2818. "__type__": "cc.Vec3",
  2819. "x": 12.272281646728516,
  2820. "y": 0.18279370665550232,
  2821. "z": 0.5831922888755798
  2822. },
  2823. "_lrot": {
  2824. "__type__": "cc.Quat",
  2825. "x": -0.7071068407911908,
  2826. "y": 0,
  2827. "z": 0,
  2828. "w": 0.7071067215818992
  2829. },
  2830. "_lscale": {
  2831. "__type__": "cc.Vec3",
  2832. "x": 100,
  2833. "y": 100,
  2834. "z": 100
  2835. },
  2836. "_mobility": 0,
  2837. "_layer": 1073741824,
  2838. "_euler": {
  2839. "__type__": "cc.Vec3",
  2840. "x": -90.00000965934633,
  2841. "y": 0,
  2842. "z": 0
  2843. },
  2844. "_id": ""
  2845. },
  2846. {
  2847. "__type__": "cc.MeshRenderer",
  2848. "_name": "",
  2849. "_objFlags": 0,
  2850. "__editorExtras__": {},
  2851. "node": {
  2852. "__id__": 111
  2853. },
  2854. "_enabled": true,
  2855. "__prefab": {
  2856. "__id__": 113
  2857. },
  2858. "_materials": [
  2859. {
  2860. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  2861. "__expectedType__": "cc.Material"
  2862. }
  2863. ],
  2864. "_visFlags": 0,
  2865. "bakeSettings": {
  2866. "__id__": 114
  2867. },
  2868. "_mesh": {
  2869. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@f051b",
  2870. "__expectedType__": "cc.Mesh"
  2871. },
  2872. "_shadowCastingMode": 1,
  2873. "_shadowReceivingMode": 1,
  2874. "_shadowBias": 0,
  2875. "_shadowNormalBias": 0,
  2876. "_reflectionProbeId": -1,
  2877. "_reflectionProbeBlendId": -1,
  2878. "_reflectionProbeBlendWeight": 0,
  2879. "_enabledGlobalStandardSkinObject": false,
  2880. "_enableMorph": true,
  2881. "_id": ""
  2882. },
  2883. {
  2884. "__type__": "cc.CompPrefabInfo",
  2885. "fileId": "75nMMcyc1VupBOshn8pYbW"
  2886. },
  2887. {
  2888. "__type__": "cc.ModelBakeSettings",
  2889. "texture": null,
  2890. "uvParam": {
  2891. "__type__": "cc.Vec4",
  2892. "x": 0,
  2893. "y": 0,
  2894. "z": 0,
  2895. "w": 0
  2896. },
  2897. "_bakeable": false,
  2898. "_castShadow": true,
  2899. "_receiveShadow": true,
  2900. "_recieveShadow": true,
  2901. "_lightmapSize": 64,
  2902. "_useLightProbe": false,
  2903. "_bakeToLightProbe": true,
  2904. "_reflectionProbeType": 0,
  2905. "_bakeToReflectionProbe": true
  2906. },
  2907. {
  2908. "__type__": "cc.PrefabInfo",
  2909. "root": {
  2910. "__id__": 1
  2911. },
  2912. "asset": {
  2913. "__id__": 0
  2914. },
  2915. "fileId": "15GlL3iQpc65+NXpP5Q87K",
  2916. "instance": null,
  2917. "targetOverrides": null,
  2918. "nestedPrefabInstanceRoots": null
  2919. },
  2920. {
  2921. "__type__": "cc.Node",
  2922. "_name": "Mountain2",
  2923. "_objFlags": 0,
  2924. "__editorExtras__": {},
  2925. "_parent": {
  2926. "__id__": 1
  2927. },
  2928. "_children": [],
  2929. "_active": true,
  2930. "_components": [
  2931. {
  2932. "__id__": 117
  2933. }
  2934. ],
  2935. "_prefab": {
  2936. "__id__": 120
  2937. },
  2938. "_lpos": {
  2939. "__type__": "cc.Vec3",
  2940. "x": 60.526676177978516,
  2941. "y": 0.6470410227775574,
  2942. "z": -94.75501251220703
  2943. },
  2944. "_lrot": {
  2945. "__type__": "cc.Quat",
  2946. "x": -0.6974753679670734,
  2947. "y": -0.05046977806005358,
  2948. "z": -0.07101678789436242,
  2949. "w": 0.7112928569997956
  2950. },
  2951. "_lscale": {
  2952. "__type__": "cc.Vec3",
  2953. "x": 378.5840759277344,
  2954. "y": 378.5841369628906,
  2955. "z": 378.58404541015625
  2956. },
  2957. "_mobility": 0,
  2958. "_layer": 1073741824,
  2959. "_euler": {
  2960. "__type__": "cc.Vec3",
  2961. "x": -89.0272189250008,
  2962. "y": -9.8426332866895,
  2963. "z": -1.7549355126414146
  2964. },
  2965. "_id": ""
  2966. },
  2967. {
  2968. "__type__": "cc.MeshRenderer",
  2969. "_name": "",
  2970. "_objFlags": 0,
  2971. "__editorExtras__": {},
  2972. "node": {
  2973. "__id__": 116
  2974. },
  2975. "_enabled": true,
  2976. "__prefab": {
  2977. "__id__": 118
  2978. },
  2979. "_materials": [
  2980. {
  2981. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  2982. "__expectedType__": "cc.Material"
  2983. }
  2984. ],
  2985. "_visFlags": 0,
  2986. "bakeSettings": {
  2987. "__id__": 119
  2988. },
  2989. "_mesh": {
  2990. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@a5f8b",
  2991. "__expectedType__": "cc.Mesh"
  2992. },
  2993. "_shadowCastingMode": 1,
  2994. "_shadowReceivingMode": 1,
  2995. "_shadowBias": 0,
  2996. "_shadowNormalBias": 0,
  2997. "_reflectionProbeId": -1,
  2998. "_reflectionProbeBlendId": -1,
  2999. "_reflectionProbeBlendWeight": 0,
  3000. "_enabledGlobalStandardSkinObject": false,
  3001. "_enableMorph": true,
  3002. "_id": ""
  3003. },
  3004. {
  3005. "__type__": "cc.CompPrefabInfo",
  3006. "fileId": "2eiot8erZUTIY0x9jJD/dN"
  3007. },
  3008. {
  3009. "__type__": "cc.ModelBakeSettings",
  3010. "texture": null,
  3011. "uvParam": {
  3012. "__type__": "cc.Vec4",
  3013. "x": 0,
  3014. "y": 0,
  3015. "z": 0,
  3016. "w": 0
  3017. },
  3018. "_bakeable": false,
  3019. "_castShadow": true,
  3020. "_receiveShadow": true,
  3021. "_recieveShadow": true,
  3022. "_lightmapSize": 64,
  3023. "_useLightProbe": false,
  3024. "_bakeToLightProbe": true,
  3025. "_reflectionProbeType": 0,
  3026. "_bakeToReflectionProbe": true
  3027. },
  3028. {
  3029. "__type__": "cc.PrefabInfo",
  3030. "root": {
  3031. "__id__": 1
  3032. },
  3033. "asset": {
  3034. "__id__": 0
  3035. },
  3036. "fileId": "f06glUPHNeQJhrUZDMPubS",
  3037. "instance": null,
  3038. "targetOverrides": null,
  3039. "nestedPrefabInstanceRoots": null
  3040. },
  3041. {
  3042. "__type__": "cc.Node",
  3043. "_name": "Mountain",
  3044. "_objFlags": 0,
  3045. "__editorExtras__": {},
  3046. "_parent": {
  3047. "__id__": 1
  3048. },
  3049. "_children": [],
  3050. "_active": true,
  3051. "_components": [
  3052. {
  3053. "__id__": 122
  3054. }
  3055. ],
  3056. "_prefab": {
  3057. "__id__": 125
  3058. },
  3059. "_lpos": {
  3060. "__type__": "cc.Vec3",
  3061. "x": -70.140625,
  3062. "y": 0,
  3063. "z": -85.63082122802734
  3064. },
  3065. "_lrot": {
  3066. "__type__": "cc.Quat",
  3067. "x": -0.633485983213111,
  3068. "y": 0.3141584745622978,
  3069. "z": 0.3141585937715893,
  3070. "w": 0.6334858640038196
  3071. },
  3072. "_lscale": {
  3073. "__type__": "cc.Vec3",
  3074. "x": 659.9534912109375,
  3075. "y": 659.9534912109375,
  3076. "z": 659.9534912109375
  3077. },
  3078. "_mobility": 0,
  3079. "_layer": 1073741824,
  3080. "_euler": {
  3081. "__type__": "cc.Vec3",
  3082. "x": -90.00001294518205,
  3083. "y": 52.755493731554566,
  3084. "z": 0.000004362133026084925
  3085. },
  3086. "_id": ""
  3087. },
  3088. {
  3089. "__type__": "cc.MeshRenderer",
  3090. "_name": "",
  3091. "_objFlags": 0,
  3092. "__editorExtras__": {},
  3093. "node": {
  3094. "__id__": 121
  3095. },
  3096. "_enabled": true,
  3097. "__prefab": {
  3098. "__id__": 123
  3099. },
  3100. "_materials": [
  3101. {
  3102. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  3103. "__expectedType__": "cc.Material"
  3104. }
  3105. ],
  3106. "_visFlags": 0,
  3107. "bakeSettings": {
  3108. "__id__": 124
  3109. },
  3110. "_mesh": {
  3111. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@08c68",
  3112. "__expectedType__": "cc.Mesh"
  3113. },
  3114. "_shadowCastingMode": 1,
  3115. "_shadowReceivingMode": 1,
  3116. "_shadowBias": 0,
  3117. "_shadowNormalBias": 0,
  3118. "_reflectionProbeId": -1,
  3119. "_reflectionProbeBlendId": -1,
  3120. "_reflectionProbeBlendWeight": 0,
  3121. "_enabledGlobalStandardSkinObject": false,
  3122. "_enableMorph": true,
  3123. "_id": ""
  3124. },
  3125. {
  3126. "__type__": "cc.CompPrefabInfo",
  3127. "fileId": "fcfXsX7UlX45Tx4XMd41ZS"
  3128. },
  3129. {
  3130. "__type__": "cc.ModelBakeSettings",
  3131. "texture": null,
  3132. "uvParam": {
  3133. "__type__": "cc.Vec4",
  3134. "x": 0,
  3135. "y": 0,
  3136. "z": 0,
  3137. "w": 0
  3138. },
  3139. "_bakeable": false,
  3140. "_castShadow": true,
  3141. "_receiveShadow": true,
  3142. "_recieveShadow": true,
  3143. "_lightmapSize": 64,
  3144. "_useLightProbe": false,
  3145. "_bakeToLightProbe": true,
  3146. "_reflectionProbeType": 0,
  3147. "_bakeToReflectionProbe": true
  3148. },
  3149. {
  3150. "__type__": "cc.PrefabInfo",
  3151. "root": {
  3152. "__id__": 1
  3153. },
  3154. "asset": {
  3155. "__id__": 0
  3156. },
  3157. "fileId": "e9XDt5LQJWP730m/7J53Cb",
  3158. "instance": null,
  3159. "targetOverrides": null,
  3160. "nestedPrefabInstanceRoots": null
  3161. },
  3162. {
  3163. "__type__": "cc.Node",
  3164. "_name": "fence ",
  3165. "_objFlags": 0,
  3166. "__editorExtras__": {},
  3167. "_parent": {
  3168. "__id__": 1
  3169. },
  3170. "_children": [],
  3171. "_active": true,
  3172. "_components": [
  3173. {
  3174. "__id__": 127
  3175. }
  3176. ],
  3177. "_prefab": {
  3178. "__id__": 130
  3179. },
  3180. "_lpos": {
  3181. "__type__": "cc.Vec3",
  3182. "x": -2.2541120052337646,
  3183. "y": 0,
  3184. "z": -14.137346267700195
  3185. },
  3186. "_lrot": {
  3187. "__type__": "cc.Quat",
  3188. "x": -0.7071068705935067,
  3189. "y": 0,
  3190. "z": 0,
  3191. "w": 0.7071066917795769
  3192. },
  3193. "_lscale": {
  3194. "__type__": "cc.Vec3",
  3195. "x": 100,
  3196. "y": 100,
  3197. "z": 100
  3198. },
  3199. "_mobility": 0,
  3200. "_layer": 1073741824,
  3201. "_euler": {
  3202. "__type__": "cc.Vec3",
  3203. "x": -90.00001448901888,
  3204. "y": 0,
  3205. "z": 0
  3206. },
  3207. "_id": ""
  3208. },
  3209. {
  3210. "__type__": "cc.MeshRenderer",
  3211. "_name": "",
  3212. "_objFlags": 0,
  3213. "__editorExtras__": {},
  3214. "node": {
  3215. "__id__": 126
  3216. },
  3217. "_enabled": true,
  3218. "__prefab": {
  3219. "__id__": 128
  3220. },
  3221. "_materials": [
  3222. {
  3223. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  3224. "__expectedType__": "cc.Material"
  3225. }
  3226. ],
  3227. "_visFlags": 0,
  3228. "bakeSettings": {
  3229. "__id__": 129
  3230. },
  3231. "_mesh": {
  3232. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@33532",
  3233. "__expectedType__": "cc.Mesh"
  3234. },
  3235. "_shadowCastingMode": 1,
  3236. "_shadowReceivingMode": 1,
  3237. "_shadowBias": 0,
  3238. "_shadowNormalBias": 0,
  3239. "_reflectionProbeId": -1,
  3240. "_reflectionProbeBlendId": -1,
  3241. "_reflectionProbeBlendWeight": 0,
  3242. "_enabledGlobalStandardSkinObject": false,
  3243. "_enableMorph": true,
  3244. "_id": ""
  3245. },
  3246. {
  3247. "__type__": "cc.CompPrefabInfo",
  3248. "fileId": "4fGgi1TWhTSbnuS/T06AKK"
  3249. },
  3250. {
  3251. "__type__": "cc.ModelBakeSettings",
  3252. "texture": null,
  3253. "uvParam": {
  3254. "__type__": "cc.Vec4",
  3255. "x": 0,
  3256. "y": 0,
  3257. "z": 0,
  3258. "w": 0
  3259. },
  3260. "_bakeable": false,
  3261. "_castShadow": true,
  3262. "_receiveShadow": true,
  3263. "_recieveShadow": true,
  3264. "_lightmapSize": 64,
  3265. "_useLightProbe": false,
  3266. "_bakeToLightProbe": true,
  3267. "_reflectionProbeType": 0,
  3268. "_bakeToReflectionProbe": true
  3269. },
  3270. {
  3271. "__type__": "cc.PrefabInfo",
  3272. "root": {
  3273. "__id__": 1
  3274. },
  3275. "asset": {
  3276. "__id__": 0
  3277. },
  3278. "fileId": "ecAtjQKxdXc5akDLBpw6Vl",
  3279. "instance": null,
  3280. "targetOverrides": null,
  3281. "nestedPrefabInstanceRoots": null
  3282. },
  3283. {
  3284. "__type__": "cc.Node",
  3285. "_name": "摄像机",
  3286. "_objFlags": 0,
  3287. "__editorExtras__": {},
  3288. "_parent": {
  3289. "__id__": 1
  3290. },
  3291. "_children": [],
  3292. "_active": true,
  3293. "_components": [],
  3294. "_prefab": {
  3295. "__id__": 132
  3296. },
  3297. "_lpos": {
  3298. "__type__": "cc.Vec3",
  3299. "x": -1.7036869525909424,
  3300. "y": 6.665814399719238,
  3301. "z": 23.737049102783203
  3302. },
  3303. "_lrot": {
  3304. "__type__": "cc.Quat",
  3305. "x": -0.11466436893854959,
  3306. "y": 0.7017387784919784,
  3307. "z": -0.1133902451439235,
  3308. "w": 0.6939433849837544
  3309. },
  3310. "_lscale": {
  3311. "__type__": "cc.Vec3",
  3312. "x": 99.99999237060547,
  3313. "y": 100,
  3314. "z": 100
  3315. },
  3316. "_mobility": 0,
  3317. "_layer": 1073741824,
  3318. "_euler": {
  3319. "__type__": "cc.Vec3",
  3320. "x": -0.00003000181046016392,
  3321. "y": 90.64002405974243,
  3322. "z": -18.560249312859085
  3323. },
  3324. "_id": ""
  3325. },
  3326. {
  3327. "__type__": "cc.PrefabInfo",
  3328. "root": {
  3329. "__id__": 1
  3330. },
  3331. "asset": {
  3332. "__id__": 0
  3333. },
  3334. "fileId": "baVli8oF1eBbZ6+3jQh014",
  3335. "instance": null,
  3336. "targetOverrides": null,
  3337. "nestedPrefabInstanceRoots": null
  3338. },
  3339. {
  3340. "__type__": "cc.Node",
  3341. "_name": "fence .001",
  3342. "_objFlags": 0,
  3343. "__editorExtras__": {},
  3344. "_parent": {
  3345. "__id__": 1
  3346. },
  3347. "_children": [],
  3348. "_active": true,
  3349. "_components": [
  3350. {
  3351. "__id__": 134
  3352. }
  3353. ],
  3354. "_prefab": {
  3355. "__id__": 137
  3356. },
  3357. "_lpos": {
  3358. "__type__": "cc.Vec3",
  3359. "x": -0.0508270263671875,
  3360. "y": 0,
  3361. "z": -14.137346267700195
  3362. },
  3363. "_lrot": {
  3364. "__type__": "cc.Quat",
  3365. "x": -0.7071068705935067,
  3366. "y": 0,
  3367. "z": 0,
  3368. "w": 0.7071066917795769
  3369. },
  3370. "_lscale": {
  3371. "__type__": "cc.Vec3",
  3372. "x": 100,
  3373. "y": 100,
  3374. "z": 100
  3375. },
  3376. "_mobility": 0,
  3377. "_layer": 1073741824,
  3378. "_euler": {
  3379. "__type__": "cc.Vec3",
  3380. "x": -90.00001448901888,
  3381. "y": 0,
  3382. "z": 0
  3383. },
  3384. "_id": ""
  3385. },
  3386. {
  3387. "__type__": "cc.MeshRenderer",
  3388. "_name": "",
  3389. "_objFlags": 0,
  3390. "__editorExtras__": {},
  3391. "node": {
  3392. "__id__": 133
  3393. },
  3394. "_enabled": true,
  3395. "__prefab": {
  3396. "__id__": 135
  3397. },
  3398. "_materials": [
  3399. {
  3400. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  3401. "__expectedType__": "cc.Material"
  3402. }
  3403. ],
  3404. "_visFlags": 0,
  3405. "bakeSettings": {
  3406. "__id__": 136
  3407. },
  3408. "_mesh": {
  3409. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@faad7",
  3410. "__expectedType__": "cc.Mesh"
  3411. },
  3412. "_shadowCastingMode": 1,
  3413. "_shadowReceivingMode": 1,
  3414. "_shadowBias": 0,
  3415. "_shadowNormalBias": 0,
  3416. "_reflectionProbeId": -1,
  3417. "_reflectionProbeBlendId": -1,
  3418. "_reflectionProbeBlendWeight": 0,
  3419. "_enabledGlobalStandardSkinObject": false,
  3420. "_enableMorph": true,
  3421. "_id": ""
  3422. },
  3423. {
  3424. "__type__": "cc.CompPrefabInfo",
  3425. "fileId": "a3bIuG+/VZeI531dfZxsfJ"
  3426. },
  3427. {
  3428. "__type__": "cc.ModelBakeSettings",
  3429. "texture": null,
  3430. "uvParam": {
  3431. "__type__": "cc.Vec4",
  3432. "x": 0,
  3433. "y": 0,
  3434. "z": 0,
  3435. "w": 0
  3436. },
  3437. "_bakeable": false,
  3438. "_castShadow": true,
  3439. "_receiveShadow": true,
  3440. "_recieveShadow": true,
  3441. "_lightmapSize": 64,
  3442. "_useLightProbe": false,
  3443. "_bakeToLightProbe": true,
  3444. "_reflectionProbeType": 0,
  3445. "_bakeToReflectionProbe": true
  3446. },
  3447. {
  3448. "__type__": "cc.PrefabInfo",
  3449. "root": {
  3450. "__id__": 1
  3451. },
  3452. "asset": {
  3453. "__id__": 0
  3454. },
  3455. "fileId": "67lA0ayWNbw4JJByAe+wMh",
  3456. "instance": null,
  3457. "targetOverrides": null,
  3458. "nestedPrefabInstanceRoots": null
  3459. },
  3460. {
  3461. "__type__": "cc.Node",
  3462. "_name": "Cube.001",
  3463. "_objFlags": 0,
  3464. "__editorExtras__": {},
  3465. "_parent": {
  3466. "__id__": 1
  3467. },
  3468. "_children": [],
  3469. "_active": true,
  3470. "_components": [
  3471. {
  3472. "__id__": 139
  3473. }
  3474. ],
  3475. "_prefab": {
  3476. "__id__": 142
  3477. },
  3478. "_lpos": {
  3479. "__type__": "cc.Vec3",
  3480. "x": 12.057088851928711,
  3481. "y": 0.18279370665550232,
  3482. "z": -3.9989173412323
  3483. },
  3484. "_lrot": {
  3485. "__type__": "cc.Quat",
  3486. "x": -0.7071068407911908,
  3487. "y": 0,
  3488. "z": 0,
  3489. "w": 0.7071067215818992
  3490. },
  3491. "_lscale": {
  3492. "__type__": "cc.Vec3",
  3493. "x": 100,
  3494. "y": 100,
  3495. "z": 100
  3496. },
  3497. "_mobility": 0,
  3498. "_layer": 1073741824,
  3499. "_euler": {
  3500. "__type__": "cc.Vec3",
  3501. "x": -90.00000965934633,
  3502. "y": 0,
  3503. "z": 0
  3504. },
  3505. "_id": ""
  3506. },
  3507. {
  3508. "__type__": "cc.MeshRenderer",
  3509. "_name": "",
  3510. "_objFlags": 0,
  3511. "__editorExtras__": {},
  3512. "node": {
  3513. "__id__": 138
  3514. },
  3515. "_enabled": true,
  3516. "__prefab": {
  3517. "__id__": 140
  3518. },
  3519. "_materials": [
  3520. {
  3521. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@6b844",
  3522. "__expectedType__": "cc.Material"
  3523. }
  3524. ],
  3525. "_visFlags": 0,
  3526. "bakeSettings": {
  3527. "__id__": 141
  3528. },
  3529. "_mesh": {
  3530. "__uuid__": "421760e1-1a4b-4f19-aa7f-4adb5f818580@41ac8",
  3531. "__expectedType__": "cc.Mesh"
  3532. },
  3533. "_shadowCastingMode": 1,
  3534. "_shadowReceivingMode": 1,
  3535. "_shadowBias": 0,
  3536. "_shadowNormalBias": 0,
  3537. "_reflectionProbeId": -1,
  3538. "_reflectionProbeBlendId": -1,
  3539. "_reflectionProbeBlendWeight": 0,
  3540. "_enabledGlobalStandardSkinObject": false,
  3541. "_enableMorph": true,
  3542. "_id": ""
  3543. },
  3544. {
  3545. "__type__": "cc.CompPrefabInfo",
  3546. "fileId": "a3weaPUZFabK8J+L6zSb1J"
  3547. },
  3548. {
  3549. "__type__": "cc.ModelBakeSettings",
  3550. "texture": null,
  3551. "uvParam": {
  3552. "__type__": "cc.Vec4",
  3553. "x": 0,
  3554. "y": 0,
  3555. "z": 0,
  3556. "w": 0
  3557. },
  3558. "_bakeable": false,
  3559. "_castShadow": true,
  3560. "_receiveShadow": true,
  3561. "_recieveShadow": true,
  3562. "_lightmapSize": 64,
  3563. "_useLightProbe": false,
  3564. "_bakeToLightProbe": true,
  3565. "_reflectionProbeType": 0,
  3566. "_bakeToReflectionProbe": true
  3567. },
  3568. {
  3569. "__type__": "cc.PrefabInfo",
  3570. "root": {
  3571. "__id__": 1
  3572. },
  3573. "asset": {
  3574. "__id__": 0
  3575. },
  3576. "fileId": "1dXOOW935QLLH+0kPX9aWj",
  3577. "instance": null,
  3578. "targetOverrides": null,
  3579. "nestedPrefabInstanceRoots": null
  3580. },
  3581. {
  3582. "__type__": "cc.PrefabInfo",
  3583. "root": {
  3584. "__id__": 1
  3585. },
  3586. "asset": {
  3587. "__id__": 0
  3588. },
  3589. "fileId": "8fazmZwxVbapeuG82ZOxGm",
  3590. "instance": null,
  3591. "targetOverrides": null,
  3592. "nestedPrefabInstanceRoots": null
  3593. }
  3594. ]