scene.scene 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "scene",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "scene",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 5
  24. },
  25. {
  26. "__id__": 7
  27. },
  28. {
  29. "__id__": 15
  30. }
  31. ],
  32. "_active": true,
  33. "_components": [],
  34. "_prefab": {
  35. "__id__": 196
  36. },
  37. "_lpos": {
  38. "__type__": "cc.Vec3",
  39. "x": 0,
  40. "y": 0,
  41. "z": 0
  42. },
  43. "_lrot": {
  44. "__type__": "cc.Quat",
  45. "x": 0,
  46. "y": 0,
  47. "z": 0,
  48. "w": 1
  49. },
  50. "_lscale": {
  51. "__type__": "cc.Vec3",
  52. "x": 1,
  53. "y": 1,
  54. "z": 1
  55. },
  56. "_mobility": 0,
  57. "_layer": 1073741824,
  58. "_euler": {
  59. "__type__": "cc.Vec3",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0
  63. },
  64. "autoReleaseAssets": false,
  65. "_globals": {
  66. "__id__": 197
  67. },
  68. "_id": "ca2c3635-7e94-4602-b1eb-136ddb147d5f"
  69. },
  70. {
  71. "__type__": "cc.Node",
  72. "_name": "Main Light",
  73. "_objFlags": 0,
  74. "__editorExtras__": {},
  75. "_parent": {
  76. "__id__": 1
  77. },
  78. "_children": [],
  79. "_active": true,
  80. "_components": [
  81. {
  82. "__id__": 3
  83. }
  84. ],
  85. "_prefab": null,
  86. "_lpos": {
  87. "__type__": "cc.Vec3",
  88. "x": 0,
  89. "y": 0,
  90. "z": 0
  91. },
  92. "_lrot": {
  93. "__type__": "cc.Quat",
  94. "x": 0.06397656665577078,
  95. "y": 0.44608233363525834,
  96. "z": 0.8239028751062037,
  97. "w": 0.3436591377065261
  98. },
  99. "_lscale": {
  100. "__type__": "cc.Vec3",
  101. "x": 1,
  102. "y": 1,
  103. "z": 1
  104. },
  105. "_mobility": 0,
  106. "_layer": 1073741824,
  107. "_euler": {
  108. "__type__": "cc.Vec3",
  109. "x": -117.89400000000003,
  110. "y": 165.091,
  111. "z": 38.56200000000001
  112. },
  113. "_id": "c0y6F5f+pAvI805TdmxIjx"
  114. },
  115. {
  116. "__type__": "cc.DirectionalLight",
  117. "_name": "",
  118. "_objFlags": 0,
  119. "__editorExtras__": {},
  120. "node": {
  121. "__id__": 2
  122. },
  123. "_enabled": true,
  124. "__prefab": null,
  125. "_color": {
  126. "__type__": "cc.Color",
  127. "r": 255,
  128. "g": 255,
  129. "b": 255,
  130. "a": 255
  131. },
  132. "_useColorTemperature": false,
  133. "_colorTemperature": 6550,
  134. "_staticSettings": {
  135. "__id__": 4
  136. },
  137. "_visibility": -325058561,
  138. "_illuminanceHDR": 65000,
  139. "_illuminance": 65000,
  140. "_illuminanceLDR": 1.6927083333333335,
  141. "_shadowEnabled": false,
  142. "_shadowPcf": 0,
  143. "_shadowBias": 0.00001,
  144. "_shadowNormalBias": 0,
  145. "_shadowSaturation": 1,
  146. "_shadowDistance": 50,
  147. "_shadowInvisibleOcclusionRange": 200,
  148. "_csmLevel": 4,
  149. "_csmLayerLambda": 0.75,
  150. "_csmOptimizationMode": 2,
  151. "_csmAdvancedOptions": false,
  152. "_csmLayersTransition": false,
  153. "_csmTransitionRange": 0.05,
  154. "_shadowFixedArea": false,
  155. "_shadowNear": 0.1,
  156. "_shadowFar": 10,
  157. "_shadowOrthoSize": 5,
  158. "_id": "597uMYCbhEtJQc0ffJlcgA"
  159. },
  160. {
  161. "__type__": "cc.StaticLightSettings",
  162. "_baked": false,
  163. "_editorOnly": false,
  164. "_castShadow": false
  165. },
  166. {
  167. "__type__": "cc.Node",
  168. "_name": "Main Camera",
  169. "_objFlags": 0,
  170. "__editorExtras__": {},
  171. "_parent": {
  172. "__id__": 1
  173. },
  174. "_children": [],
  175. "_active": true,
  176. "_components": [
  177. {
  178. "__id__": 6
  179. }
  180. ],
  181. "_prefab": null,
  182. "_lpos": {
  183. "__type__": "cc.Vec3",
  184. "x": -0.567,
  185. "y": 26.925,
  186. "z": 40.188
  187. },
  188. "_lrot": {
  189. "__type__": "cc.Quat",
  190. "x": -0.27450470504282803,
  191. "y": 0,
  192. "z": 0,
  193. "w": 0.9615857563989547
  194. },
  195. "_lscale": {
  196. "__type__": "cc.Vec3",
  197. "x": 1,
  198. "y": 1,
  199. "z": 1
  200. },
  201. "_mobility": 0,
  202. "_layer": 1073741824,
  203. "_euler": {
  204. "__type__": "cc.Vec3",
  205. "x": -31.865,
  206. "y": 0,
  207. "z": 0
  208. },
  209. "_id": "c9DMICJLFO5IeO07EPon7U"
  210. },
  211. {
  212. "__type__": "cc.Camera",
  213. "_name": "",
  214. "_objFlags": 0,
  215. "__editorExtras__": {},
  216. "node": {
  217. "__id__": 5
  218. },
  219. "_enabled": true,
  220. "__prefab": null,
  221. "_projection": 1,
  222. "_priority": 0,
  223. "_fov": 45,
  224. "_fovAxis": 0,
  225. "_orthoHeight": 10,
  226. "_near": 1,
  227. "_far": 1000,
  228. "_color": {
  229. "__type__": "cc.Color",
  230. "r": 51,
  231. "g": 51,
  232. "b": 51,
  233. "a": 255
  234. },
  235. "_depth": 1,
  236. "_stencil": 0,
  237. "_clearFlags": 14,
  238. "_rect": {
  239. "__type__": "cc.Rect",
  240. "x": 0,
  241. "y": 0,
  242. "width": 1,
  243. "height": 1
  244. },
  245. "_aperture": 19,
  246. "_shutter": 7,
  247. "_iso": 0,
  248. "_screenScale": 1,
  249. "_visibility": 1822425087,
  250. "_targetTexture": null,
  251. "_postProcess": null,
  252. "_usePostProcess": false,
  253. "_cameraType": -1,
  254. "_trackingType": 0,
  255. "_id": "7dWQTpwS5LrIHnc1zAPUtf"
  256. },
  257. {
  258. "__type__": "cc.Node",
  259. "_objFlags": 0,
  260. "_parent": {
  261. "__id__": 1
  262. },
  263. "_prefab": {
  264. "__id__": 8
  265. },
  266. "__editorExtras__": {}
  267. },
  268. {
  269. "__type__": "cc.PrefabInfo",
  270. "root": {
  271. "__id__": 7
  272. },
  273. "asset": {
  274. "__uuid__": "03baf3d8-21ac-42ed-9525-98ea370b3db8",
  275. "__expectedType__": "cc.Prefab"
  276. },
  277. "fileId": "e9wYIbr6ZN9abR0f9q17JX",
  278. "instance": {
  279. "__id__": 9
  280. },
  281. "targetOverrides": null,
  282. "nestedPrefabInstanceRoots": null
  283. },
  284. {
  285. "__type__": "cc.PrefabInstance",
  286. "fileId": "3fLliwxIlGX4YeE/9PUUMJ",
  287. "prefabRootNode": null,
  288. "mountedChildren": [],
  289. "mountedComponents": [],
  290. "propertyOverrides": [
  291. {
  292. "__id__": 10
  293. },
  294. {
  295. "__id__": 12
  296. },
  297. {
  298. "__id__": 13
  299. },
  300. {
  301. "__id__": 14
  302. }
  303. ],
  304. "removedComponents": []
  305. },
  306. {
  307. "__type__": "CCPropertyOverrideInfo",
  308. "targetInfo": {
  309. "__id__": 11
  310. },
  311. "propertyPath": [
  312. "_name"
  313. ],
  314. "value": "Storm"
  315. },
  316. {
  317. "__type__": "cc.TargetInfo",
  318. "localID": [
  319. "e9wYIbr6ZN9abR0f9q17JX"
  320. ]
  321. },
  322. {
  323. "__type__": "CCPropertyOverrideInfo",
  324. "targetInfo": {
  325. "__id__": 11
  326. },
  327. "propertyPath": [
  328. "_lpos"
  329. ],
  330. "value": {
  331. "__type__": "cc.Vec3",
  332. "x": 0,
  333. "y": 0,
  334. "z": 9.747
  335. }
  336. },
  337. {
  338. "__type__": "CCPropertyOverrideInfo",
  339. "targetInfo": {
  340. "__id__": 11
  341. },
  342. "propertyPath": [
  343. "_lrot"
  344. ],
  345. "value": {
  346. "__type__": "cc.Quat",
  347. "x": 0,
  348. "y": 0,
  349. "z": 0,
  350. "w": 1
  351. }
  352. },
  353. {
  354. "__type__": "CCPropertyOverrideInfo",
  355. "targetInfo": {
  356. "__id__": 11
  357. },
  358. "propertyPath": [
  359. "_euler"
  360. ],
  361. "value": {
  362. "__type__": "cc.Vec3",
  363. "x": 0,
  364. "y": 0,
  365. "z": 0
  366. }
  367. },
  368. {
  369. "__type__": "cc.Node",
  370. "_name": "Scene",
  371. "_objFlags": 0,
  372. "__editorExtras__": {},
  373. "_parent": {
  374. "__id__": 1
  375. },
  376. "_children": [
  377. {
  378. "__id__": 16
  379. },
  380. {
  381. "__id__": 31
  382. },
  383. {
  384. "__id__": 43
  385. },
  386. {
  387. "__id__": 53
  388. },
  389. {
  390. "__id__": 63
  391. },
  392. {
  393. "__id__": 74
  394. },
  395. {
  396. "__id__": 84
  397. },
  398. {
  399. "__id__": 94
  400. },
  401. {
  402. "__id__": 104
  403. },
  404. {
  405. "__id__": 114
  406. },
  407. {
  408. "__id__": 124
  409. },
  410. {
  411. "__id__": 134
  412. },
  413. {
  414. "__id__": 144
  415. },
  416. {
  417. "__id__": 154
  418. },
  419. {
  420. "__id__": 164
  421. },
  422. {
  423. "__id__": 172
  424. },
  425. {
  426. "__id__": 180
  427. },
  428. {
  429. "__id__": 188
  430. }
  431. ],
  432. "_active": true,
  433. "_components": [],
  434. "_prefab": null,
  435. "_lpos": {
  436. "__type__": "cc.Vec3",
  437. "x": 0,
  438. "y": 0,
  439. "z": 0
  440. },
  441. "_lrot": {
  442. "__type__": "cc.Quat",
  443. "x": 0,
  444. "y": 0,
  445. "z": 0,
  446. "w": 1
  447. },
  448. "_lscale": {
  449. "__type__": "cc.Vec3",
  450. "x": 1,
  451. "y": 1,
  452. "z": 1
  453. },
  454. "_mobility": 0,
  455. "_layer": 1073741824,
  456. "_euler": {
  457. "__type__": "cc.Vec3",
  458. "x": 0,
  459. "y": 0,
  460. "z": 0
  461. },
  462. "_id": "aeSGqDopxDMJhFB9uCPk0c"
  463. },
  464. {
  465. "__type__": "cc.Node",
  466. "_objFlags": 0,
  467. "_parent": {
  468. "__id__": 15
  469. },
  470. "_prefab": {
  471. "__id__": 17
  472. },
  473. "__editorExtras__": {}
  474. },
  475. {
  476. "__type__": "cc.PrefabInfo",
  477. "root": {
  478. "__id__": 16
  479. },
  480. "asset": {
  481. "__uuid__": "530f3b65-1500-4cc4-8e49-9fc9ab9174a5",
  482. "__expectedType__": "cc.Prefab"
  483. },
  484. "fileId": "0dJio+PzVI7axHUr9BOnVS",
  485. "instance": {
  486. "__id__": 18
  487. },
  488. "targetOverrides": null
  489. },
  490. {
  491. "__type__": "cc.PrefabInstance",
  492. "fileId": "02nsxC1/tFl7Oo5A/KZpXx",
  493. "prefabRootNode": null,
  494. "mountedChildren": [],
  495. "mountedComponents": [],
  496. "propertyOverrides": [
  497. {
  498. "__id__": 19
  499. },
  500. {
  501. "__id__": 21
  502. },
  503. {
  504. "__id__": 22
  505. },
  506. {
  507. "__id__": 23
  508. },
  509. {
  510. "__id__": 24
  511. },
  512. {
  513. "__id__": 26
  514. },
  515. {
  516. "__id__": 28
  517. },
  518. {
  519. "__id__": 29
  520. }
  521. ],
  522. "removedComponents": []
  523. },
  524. {
  525. "__type__": "CCPropertyOverrideInfo",
  526. "targetInfo": {
  527. "__id__": 20
  528. },
  529. "propertyPath": [
  530. "_name"
  531. ],
  532. "value": "Ground"
  533. },
  534. {
  535. "__type__": "cc.TargetInfo",
  536. "localID": [
  537. "0dJio+PzVI7axHUr9BOnVS"
  538. ]
  539. },
  540. {
  541. "__type__": "CCPropertyOverrideInfo",
  542. "targetInfo": {
  543. "__id__": 20
  544. },
  545. "propertyPath": [
  546. "_lpos"
  547. ],
  548. "value": {
  549. "__type__": "cc.Vec3",
  550. "x": 0,
  551. "y": -0.05,
  552. "z": 0
  553. }
  554. },
  555. {
  556. "__type__": "CCPropertyOverrideInfo",
  557. "targetInfo": {
  558. "__id__": 20
  559. },
  560. "propertyPath": [
  561. "_lrot"
  562. ],
  563. "value": {
  564. "__type__": "cc.Quat",
  565. "x": 0,
  566. "y": 0,
  567. "z": 0,
  568. "w": 1
  569. }
  570. },
  571. {
  572. "__type__": "CCPropertyOverrideInfo",
  573. "targetInfo": {
  574. "__id__": 20
  575. },
  576. "propertyPath": [
  577. "_euler"
  578. ],
  579. "value": {
  580. "__type__": "cc.Vec3",
  581. "x": 0,
  582. "y": 0,
  583. "z": 0
  584. }
  585. },
  586. {
  587. "__type__": "CCPropertyOverrideInfo",
  588. "targetInfo": {
  589. "__id__": 25
  590. },
  591. "propertyPath": [
  592. "_materials",
  593. "0"
  594. ],
  595. "value": {
  596. "__uuid__": "d796dc4f-c142-40ed-be20-c76af3e317e1",
  597. "__expectedType__": "cc.Material"
  598. }
  599. },
  600. {
  601. "__type__": "cc.TargetInfo",
  602. "localID": [
  603. "40x3uBnXNDA6JuZOFNXDm1",
  604. "8bgtBT83FQOLIWyVvKziBx"
  605. ]
  606. },
  607. {
  608. "__type__": "CCPropertyOverrideInfo",
  609. "targetInfo": {
  610. "__id__": 27
  611. },
  612. "propertyPath": [
  613. "_lpos"
  614. ],
  615. "value": {
  616. "__type__": "cc.Vec3",
  617. "x": 0,
  618. "y": 0,
  619. "z": 0
  620. }
  621. },
  622. {
  623. "__type__": "cc.TargetInfo",
  624. "localID": [
  625. "40x3uBnXNDA6JuZOFNXDm1",
  626. "1b1RmlfetTsL97kPOigHJf"
  627. ]
  628. },
  629. {
  630. "__type__": "CCPropertyOverrideInfo",
  631. "targetInfo": {
  632. "__id__": 27
  633. },
  634. "propertyPath": [
  635. "_lrot"
  636. ],
  637. "value": {
  638. "__type__": "cc.Quat",
  639. "x": -6.123234262925839e-17,
  640. "y": -1,
  641. "z": -6.123234262925839e-17,
  642. "w": 6.123233995736766e-17
  643. }
  644. },
  645. {
  646. "__type__": "CCPropertyOverrideInfo",
  647. "targetInfo": {
  648. "__id__": 30
  649. },
  650. "propertyPath": [
  651. "_materials",
  652. "0"
  653. ],
  654. "value": {
  655. "__uuid__": "ac5871f1-474e-4dd6-81be-2a0371a5dc7d",
  656. "__expectedType__": "cc.Material"
  657. }
  658. },
  659. {
  660. "__type__": "cc.TargetInfo",
  661. "localID": [
  662. "0cYXtrgUZDM4B0w8Ilb2rX",
  663. "e25n18cwheQaqm52dJCyMJ"
  664. ]
  665. },
  666. {
  667. "__type__": "cc.Node",
  668. "_objFlags": 0,
  669. "_parent": {
  670. "__id__": 15
  671. },
  672. "_prefab": {
  673. "__id__": 32
  674. },
  675. "__editorExtras__": {}
  676. },
  677. {
  678. "__type__": "cc.PrefabInfo",
  679. "root": {
  680. "__id__": 31
  681. },
  682. "asset": {
  683. "__uuid__": "b9f1202b-5557-4042-9d7a-22e910b56c51",
  684. "__expectedType__": "cc.Prefab"
  685. },
  686. "fileId": "efEy10YkFUrIK1sJpvMrkw",
  687. "instance": {
  688. "__id__": 33
  689. },
  690. "targetOverrides": null,
  691. "nestedPrefabInstanceRoots": null
  692. },
  693. {
  694. "__type__": "cc.PrefabInstance",
  695. "fileId": "d6rntX0o1GeaBlgJkJik5r",
  696. "prefabRootNode": null,
  697. "mountedChildren": [],
  698. "mountedComponents": [],
  699. "propertyOverrides": [
  700. {
  701. "__id__": 34
  702. },
  703. {
  704. "__id__": 36
  705. },
  706. {
  707. "__id__": 37
  708. },
  709. {
  710. "__id__": 38
  711. },
  712. {
  713. "__id__": 39
  714. },
  715. {
  716. "__id__": 41
  717. }
  718. ],
  719. "removedComponents": []
  720. },
  721. {
  722. "__type__": "CCPropertyOverrideInfo",
  723. "targetInfo": {
  724. "__id__": 35
  725. },
  726. "propertyPath": [
  727. "_name"
  728. ],
  729. "value": "car1"
  730. },
  731. {
  732. "__type__": "cc.TargetInfo",
  733. "localID": [
  734. "efEy10YkFUrIK1sJpvMrkw"
  735. ]
  736. },
  737. {
  738. "__type__": "CCPropertyOverrideInfo",
  739. "targetInfo": {
  740. "__id__": 35
  741. },
  742. "propertyPath": [
  743. "_lpos"
  744. ],
  745. "value": {
  746. "__type__": "cc.Vec3",
  747. "x": 11.415,
  748. "y": 0,
  749. "z": -8.666
  750. }
  751. },
  752. {
  753. "__type__": "CCPropertyOverrideInfo",
  754. "targetInfo": {
  755. "__id__": 35
  756. },
  757. "propertyPath": [
  758. "_lrot"
  759. ],
  760. "value": {
  761. "__type__": "cc.Quat",
  762. "x": 0,
  763. "y": 0,
  764. "z": 0,
  765. "w": 1
  766. }
  767. },
  768. {
  769. "__type__": "CCPropertyOverrideInfo",
  770. "targetInfo": {
  771. "__id__": 35
  772. },
  773. "propertyPath": [
  774. "_euler"
  775. ],
  776. "value": {
  777. "__type__": "cc.Vec3",
  778. "x": 0,
  779. "y": 0,
  780. "z": 0
  781. }
  782. },
  783. {
  784. "__type__": "CCPropertyOverrideInfo",
  785. "targetInfo": {
  786. "__id__": 40
  787. },
  788. "propertyPath": [
  789. "_mesh"
  790. ],
  791. "value": {
  792. "__uuid__": "ec3b2584-4447-48a9-8bf9-e8c3196884a4@81124",
  793. "__expectedType__": "cc.Mesh"
  794. }
  795. },
  796. {
  797. "__type__": "cc.TargetInfo",
  798. "localID": [
  799. "17Bjkb82lUebV+Ebxlguv3"
  800. ]
  801. },
  802. {
  803. "__type__": "CCPropertyOverrideInfo",
  804. "targetInfo": {
  805. "__id__": 42
  806. },
  807. "propertyPath": [
  808. "_lrot"
  809. ],
  810. "value": {
  811. "__type__": "cc.Quat",
  812. "x": -6.123234262925839e-17,
  813. "y": -1,
  814. "z": -6.123234262925839e-17,
  815. "w": 6.123233995736766e-17
  816. }
  817. },
  818. {
  819. "__type__": "cc.TargetInfo",
  820. "localID": [
  821. "a19awCRIFULoCDRBZ0Yjd1"
  822. ]
  823. },
  824. {
  825. "__type__": "cc.Node",
  826. "_objFlags": 0,
  827. "_parent": {
  828. "__id__": 15
  829. },
  830. "_prefab": {
  831. "__id__": 44
  832. },
  833. "__editorExtras__": {}
  834. },
  835. {
  836. "__type__": "cc.PrefabInfo",
  837. "root": {
  838. "__id__": 43
  839. },
  840. "asset": {
  841. "__uuid__": "20199c16-060a-41a9-b345-a5dfd75577ab",
  842. "__expectedType__": "cc.Prefab"
  843. },
  844. "fileId": "b4BUKSJeZRuIXBdjR1xcMW",
  845. "instance": {
  846. "__id__": 45
  847. },
  848. "targetOverrides": null,
  849. "nestedPrefabInstanceRoots": null
  850. },
  851. {
  852. "__type__": "cc.PrefabInstance",
  853. "fileId": "279odjsjBDObKB3Hl++Kcl",
  854. "prefabRootNode": null,
  855. "mountedChildren": [],
  856. "mountedComponents": [],
  857. "propertyOverrides": [
  858. {
  859. "__id__": 46
  860. },
  861. {
  862. "__id__": 48
  863. },
  864. {
  865. "__id__": 49
  866. },
  867. {
  868. "__id__": 50
  869. },
  870. {
  871. "__id__": 51
  872. }
  873. ],
  874. "removedComponents": []
  875. },
  876. {
  877. "__type__": "CCPropertyOverrideInfo",
  878. "targetInfo": {
  879. "__id__": 47
  880. },
  881. "propertyPath": [
  882. "_name"
  883. ],
  884. "value": "car2"
  885. },
  886. {
  887. "__type__": "cc.TargetInfo",
  888. "localID": [
  889. "b4BUKSJeZRuIXBdjR1xcMW"
  890. ]
  891. },
  892. {
  893. "__type__": "CCPropertyOverrideInfo",
  894. "targetInfo": {
  895. "__id__": 47
  896. },
  897. "propertyPath": [
  898. "_lpos"
  899. ],
  900. "value": {
  901. "__type__": "cc.Vec3",
  902. "x": 13.307,
  903. "y": 0,
  904. "z": -8.855
  905. }
  906. },
  907. {
  908. "__type__": "CCPropertyOverrideInfo",
  909. "targetInfo": {
  910. "__id__": 47
  911. },
  912. "propertyPath": [
  913. "_lrot"
  914. ],
  915. "value": {
  916. "__type__": "cc.Quat",
  917. "x": 0,
  918. "y": 0,
  919. "z": 0,
  920. "w": 1
  921. }
  922. },
  923. {
  924. "__type__": "CCPropertyOverrideInfo",
  925. "targetInfo": {
  926. "__id__": 47
  927. },
  928. "propertyPath": [
  929. "_euler"
  930. ],
  931. "value": {
  932. "__type__": "cc.Vec3",
  933. "x": 0,
  934. "y": 0,
  935. "z": 0
  936. }
  937. },
  938. {
  939. "__type__": "CCPropertyOverrideInfo",
  940. "targetInfo": {
  941. "__id__": 52
  942. },
  943. "propertyPath": [
  944. "_mesh"
  945. ],
  946. "value": {
  947. "__uuid__": "8e46ee99-b4db-42a3-90a4-2cf01639ded2@a49be",
  948. "__expectedType__": "cc.Mesh"
  949. }
  950. },
  951. {
  952. "__type__": "cc.TargetInfo",
  953. "localID": [
  954. "8829nZ9stcB7Dn2FbHttzJ"
  955. ]
  956. },
  957. {
  958. "__type__": "cc.Node",
  959. "_objFlags": 0,
  960. "_parent": {
  961. "__id__": 15
  962. },
  963. "_prefab": {
  964. "__id__": 54
  965. },
  966. "__editorExtras__": {}
  967. },
  968. {
  969. "__type__": "cc.PrefabInfo",
  970. "root": {
  971. "__id__": 53
  972. },
  973. "asset": {
  974. "__uuid__": "9a8cea56-6377-4403-8400-aa6415416ea0",
  975. "__expectedType__": "cc.Prefab"
  976. },
  977. "fileId": "06t5EVzAlQ/KU3fChoJwnN",
  978. "instance": {
  979. "__id__": 55
  980. },
  981. "targetOverrides": null,
  982. "nestedPrefabInstanceRoots": null
  983. },
  984. {
  985. "__type__": "cc.PrefabInstance",
  986. "fileId": "c834ByBnxMFbLasWasgEvw",
  987. "prefabRootNode": null,
  988. "mountedChildren": [],
  989. "mountedComponents": [],
  990. "propertyOverrides": [
  991. {
  992. "__id__": 56
  993. },
  994. {
  995. "__id__": 58
  996. },
  997. {
  998. "__id__": 59
  999. },
  1000. {
  1001. "__id__": 60
  1002. },
  1003. {
  1004. "__id__": 61
  1005. }
  1006. ],
  1007. "removedComponents": []
  1008. },
  1009. {
  1010. "__type__": "CCPropertyOverrideInfo",
  1011. "targetInfo": {
  1012. "__id__": 57
  1013. },
  1014. "propertyPath": [
  1015. "_name"
  1016. ],
  1017. "value": "Build01"
  1018. },
  1019. {
  1020. "__type__": "cc.TargetInfo",
  1021. "localID": [
  1022. "06t5EVzAlQ/KU3fChoJwnN"
  1023. ]
  1024. },
  1025. {
  1026. "__type__": "CCPropertyOverrideInfo",
  1027. "targetInfo": {
  1028. "__id__": 57
  1029. },
  1030. "propertyPath": [
  1031. "_lpos"
  1032. ],
  1033. "value": {
  1034. "__type__": "cc.Vec3",
  1035. "x": 18.267,
  1036. "y": 0.17,
  1037. "z": 0
  1038. }
  1039. },
  1040. {
  1041. "__type__": "CCPropertyOverrideInfo",
  1042. "targetInfo": {
  1043. "__id__": 57
  1044. },
  1045. "propertyPath": [
  1046. "_lrot"
  1047. ],
  1048. "value": {
  1049. "__type__": "cc.Quat",
  1050. "x": 0,
  1051. "y": 0,
  1052. "z": 0,
  1053. "w": 1
  1054. }
  1055. },
  1056. {
  1057. "__type__": "CCPropertyOverrideInfo",
  1058. "targetInfo": {
  1059. "__id__": 57
  1060. },
  1061. "propertyPath": [
  1062. "_euler"
  1063. ],
  1064. "value": {
  1065. "__type__": "cc.Vec3",
  1066. "x": 0,
  1067. "y": 0,
  1068. "z": 0
  1069. }
  1070. },
  1071. {
  1072. "__type__": "CCPropertyOverrideInfo",
  1073. "targetInfo": {
  1074. "__id__": 62
  1075. },
  1076. "propertyPath": [
  1077. "_mesh"
  1078. ],
  1079. "value": {
  1080. "__uuid__": "4e95dc91-457a-4efd-933b-9b69a8dbeaa4@75825",
  1081. "__expectedType__": "cc.Mesh"
  1082. }
  1083. },
  1084. {
  1085. "__type__": "cc.TargetInfo",
  1086. "localID": [
  1087. "e6NR6uW5BW9ZqDEYPCuUd6"
  1088. ]
  1089. },
  1090. {
  1091. "__type__": "cc.Node",
  1092. "_objFlags": 0,
  1093. "_parent": {
  1094. "__id__": 15
  1095. },
  1096. "_prefab": {
  1097. "__id__": 64
  1098. },
  1099. "__editorExtras__": {}
  1100. },
  1101. {
  1102. "__type__": "cc.PrefabInfo",
  1103. "root": {
  1104. "__id__": 63
  1105. },
  1106. "asset": {
  1107. "__uuid__": "128545d7-fa50-4b4c-b503-6f16a0c9fbe7",
  1108. "__expectedType__": "cc.Prefab"
  1109. },
  1110. "fileId": "53e7cAetFXfa7ySwGGrSsO",
  1111. "instance": {
  1112. "__id__": 65
  1113. },
  1114. "targetOverrides": null,
  1115. "nestedPrefabInstanceRoots": null
  1116. },
  1117. {
  1118. "__type__": "cc.PrefabInstance",
  1119. "fileId": "0cfWlv8KpHCL6THn7ROKoc",
  1120. "prefabRootNode": null,
  1121. "mountedChildren": [],
  1122. "mountedComponents": [],
  1123. "propertyOverrides": [
  1124. {
  1125. "__id__": 66
  1126. },
  1127. {
  1128. "__id__": 68
  1129. },
  1130. {
  1131. "__id__": 69
  1132. },
  1133. {
  1134. "__id__": 70
  1135. },
  1136. {
  1137. "__id__": 71
  1138. },
  1139. {
  1140. "__id__": 73
  1141. }
  1142. ],
  1143. "removedComponents": []
  1144. },
  1145. {
  1146. "__type__": "CCPropertyOverrideInfo",
  1147. "targetInfo": {
  1148. "__id__": 67
  1149. },
  1150. "propertyPath": [
  1151. "_name"
  1152. ],
  1153. "value": "Build02"
  1154. },
  1155. {
  1156. "__type__": "cc.TargetInfo",
  1157. "localID": [
  1158. "53e7cAetFXfa7ySwGGrSsO"
  1159. ]
  1160. },
  1161. {
  1162. "__type__": "CCPropertyOverrideInfo",
  1163. "targetInfo": {
  1164. "__id__": 67
  1165. },
  1166. "propertyPath": [
  1167. "_lpos"
  1168. ],
  1169. "value": {
  1170. "__type__": "cc.Vec3",
  1171. "x": 12.916,
  1172. "y": 0.17,
  1173. "z": 0
  1174. }
  1175. },
  1176. {
  1177. "__type__": "CCPropertyOverrideInfo",
  1178. "targetInfo": {
  1179. "__id__": 67
  1180. },
  1181. "propertyPath": [
  1182. "_lrot"
  1183. ],
  1184. "value": {
  1185. "__type__": "cc.Quat",
  1186. "x": 0,
  1187. "y": 0,
  1188. "z": 0,
  1189. "w": 1
  1190. }
  1191. },
  1192. {
  1193. "__type__": "CCPropertyOverrideInfo",
  1194. "targetInfo": {
  1195. "__id__": 67
  1196. },
  1197. "propertyPath": [
  1198. "_euler"
  1199. ],
  1200. "value": {
  1201. "__type__": "cc.Vec3",
  1202. "x": 0,
  1203. "y": 0,
  1204. "z": 0
  1205. }
  1206. },
  1207. {
  1208. "__type__": "CCPropertyOverrideInfo",
  1209. "targetInfo": {
  1210. "__id__": 72
  1211. },
  1212. "propertyPath": [
  1213. "_mesh"
  1214. ],
  1215. "value": {
  1216. "__uuid__": "41690100-e05b-41e0-af03-c593bb1eeb4f@f8c45",
  1217. "__expectedType__": "cc.Mesh"
  1218. }
  1219. },
  1220. {
  1221. "__type__": "cc.TargetInfo",
  1222. "localID": [
  1223. "e5KoYd4O9WKaR7WmtR1kki"
  1224. ]
  1225. },
  1226. {
  1227. "__type__": "CCPropertyOverrideInfo",
  1228. "targetInfo": {
  1229. "__id__": 72
  1230. },
  1231. "propertyPath": [
  1232. "_materials",
  1233. "0"
  1234. ],
  1235. "value": {
  1236. "__uuid__": "5f43d61f-9d59-4517-8603-fe418dc149d7",
  1237. "__expectedType__": "cc.Material"
  1238. }
  1239. },
  1240. {
  1241. "__type__": "cc.Node",
  1242. "_objFlags": 0,
  1243. "_parent": {
  1244. "__id__": 15
  1245. },
  1246. "_prefab": {
  1247. "__id__": 75
  1248. },
  1249. "__editorExtras__": {}
  1250. },
  1251. {
  1252. "__type__": "cc.PrefabInfo",
  1253. "root": {
  1254. "__id__": 74
  1255. },
  1256. "asset": {
  1257. "__uuid__": "a57591c7-576a-48a7-9a95-de0cdeb04bfc",
  1258. "__expectedType__": "cc.Prefab"
  1259. },
  1260. "fileId": "3a7CMpXaFefLeCZQkPOQ4a",
  1261. "instance": {
  1262. "__id__": 76
  1263. },
  1264. "targetOverrides": null,
  1265. "nestedPrefabInstanceRoots": null
  1266. },
  1267. {
  1268. "__type__": "cc.PrefabInstance",
  1269. "fileId": "13C3zU5nFFi5smuDfBQbbO",
  1270. "prefabRootNode": null,
  1271. "mountedChildren": [],
  1272. "mountedComponents": [],
  1273. "propertyOverrides": [
  1274. {
  1275. "__id__": 77
  1276. },
  1277. {
  1278. "__id__": 79
  1279. },
  1280. {
  1281. "__id__": 80
  1282. },
  1283. {
  1284. "__id__": 81
  1285. },
  1286. {
  1287. "__id__": 82
  1288. }
  1289. ],
  1290. "removedComponents": []
  1291. },
  1292. {
  1293. "__type__": "CCPropertyOverrideInfo",
  1294. "targetInfo": {
  1295. "__id__": 78
  1296. },
  1297. "propertyPath": [
  1298. "_name"
  1299. ],
  1300. "value": "Build03"
  1301. },
  1302. {
  1303. "__type__": "cc.TargetInfo",
  1304. "localID": [
  1305. "3a7CMpXaFefLeCZQkPOQ4a"
  1306. ]
  1307. },
  1308. {
  1309. "__type__": "CCPropertyOverrideInfo",
  1310. "targetInfo": {
  1311. "__id__": 78
  1312. },
  1313. "propertyPath": [
  1314. "_lpos"
  1315. ],
  1316. "value": {
  1317. "__type__": "cc.Vec3",
  1318. "x": 7.002,
  1319. "y": 0.17,
  1320. "z": 0
  1321. }
  1322. },
  1323. {
  1324. "__type__": "CCPropertyOverrideInfo",
  1325. "targetInfo": {
  1326. "__id__": 78
  1327. },
  1328. "propertyPath": [
  1329. "_lrot"
  1330. ],
  1331. "value": {
  1332. "__type__": "cc.Quat",
  1333. "x": 0,
  1334. "y": 0,
  1335. "z": 0,
  1336. "w": 1
  1337. }
  1338. },
  1339. {
  1340. "__type__": "CCPropertyOverrideInfo",
  1341. "targetInfo": {
  1342. "__id__": 78
  1343. },
  1344. "propertyPath": [
  1345. "_euler"
  1346. ],
  1347. "value": {
  1348. "__type__": "cc.Vec3",
  1349. "x": 0,
  1350. "y": 0,
  1351. "z": 0
  1352. }
  1353. },
  1354. {
  1355. "__type__": "CCPropertyOverrideInfo",
  1356. "targetInfo": {
  1357. "__id__": 83
  1358. },
  1359. "propertyPath": [
  1360. "_mesh"
  1361. ],
  1362. "value": {
  1363. "__uuid__": "2e7fff83-9b06-4767-991d-1ee5a2318939@54021",
  1364. "__expectedType__": "cc.Mesh"
  1365. }
  1366. },
  1367. {
  1368. "__type__": "cc.TargetInfo",
  1369. "localID": [
  1370. "23TSmWuopUQoeXdWtU2kWT"
  1371. ]
  1372. },
  1373. {
  1374. "__type__": "cc.Node",
  1375. "_objFlags": 0,
  1376. "_parent": {
  1377. "__id__": 15
  1378. },
  1379. "_prefab": {
  1380. "__id__": 85
  1381. },
  1382. "__editorExtras__": {}
  1383. },
  1384. {
  1385. "__type__": "cc.PrefabInfo",
  1386. "root": {
  1387. "__id__": 84
  1388. },
  1389. "asset": {
  1390. "__uuid__": "3b2e505d-6fba-4302-9b87-b141aa651abd",
  1391. "__expectedType__": "cc.Prefab"
  1392. },
  1393. "fileId": "60n8ubHsVVCY3YKAkF6Ahi",
  1394. "instance": {
  1395. "__id__": 86
  1396. },
  1397. "targetOverrides": null,
  1398. "nestedPrefabInstanceRoots": null
  1399. },
  1400. {
  1401. "__type__": "cc.PrefabInstance",
  1402. "fileId": "07rTXHJbdJb4i97582apYB",
  1403. "prefabRootNode": null,
  1404. "mountedChildren": [],
  1405. "mountedComponents": [],
  1406. "propertyOverrides": [
  1407. {
  1408. "__id__": 87
  1409. },
  1410. {
  1411. "__id__": 89
  1412. },
  1413. {
  1414. "__id__": 90
  1415. },
  1416. {
  1417. "__id__": 91
  1418. },
  1419. {
  1420. "__id__": 92
  1421. }
  1422. ],
  1423. "removedComponents": []
  1424. },
  1425. {
  1426. "__type__": "CCPropertyOverrideInfo",
  1427. "targetInfo": {
  1428. "__id__": 88
  1429. },
  1430. "propertyPath": [
  1431. "_name"
  1432. ],
  1433. "value": "Build04"
  1434. },
  1435. {
  1436. "__type__": "cc.TargetInfo",
  1437. "localID": [
  1438. "60n8ubHsVVCY3YKAkF6Ahi"
  1439. ]
  1440. },
  1441. {
  1442. "__type__": "CCPropertyOverrideInfo",
  1443. "targetInfo": {
  1444. "__id__": 88
  1445. },
  1446. "propertyPath": [
  1447. "_lpos"
  1448. ],
  1449. "value": {
  1450. "__type__": "cc.Vec3",
  1451. "x": 1.929,
  1452. "y": 0.17,
  1453. "z": 0
  1454. }
  1455. },
  1456. {
  1457. "__type__": "CCPropertyOverrideInfo",
  1458. "targetInfo": {
  1459. "__id__": 88
  1460. },
  1461. "propertyPath": [
  1462. "_lrot"
  1463. ],
  1464. "value": {
  1465. "__type__": "cc.Quat",
  1466. "x": 0,
  1467. "y": 0,
  1468. "z": 0,
  1469. "w": 1
  1470. }
  1471. },
  1472. {
  1473. "__type__": "CCPropertyOverrideInfo",
  1474. "targetInfo": {
  1475. "__id__": 88
  1476. },
  1477. "propertyPath": [
  1478. "_euler"
  1479. ],
  1480. "value": {
  1481. "__type__": "cc.Vec3",
  1482. "x": 0,
  1483. "y": 0,
  1484. "z": 0
  1485. }
  1486. },
  1487. {
  1488. "__type__": "CCPropertyOverrideInfo",
  1489. "targetInfo": {
  1490. "__id__": 93
  1491. },
  1492. "propertyPath": [
  1493. "_mesh"
  1494. ],
  1495. "value": {
  1496. "__uuid__": "4dc778a0-06b6-4880-89c6-965e6db04153@8a4f7",
  1497. "__expectedType__": "cc.Mesh"
  1498. }
  1499. },
  1500. {
  1501. "__type__": "cc.TargetInfo",
  1502. "localID": [
  1503. "ed/o6hmi1f37J3x0dDjy+U"
  1504. ]
  1505. },
  1506. {
  1507. "__type__": "cc.Node",
  1508. "_objFlags": 0,
  1509. "_parent": {
  1510. "__id__": 15
  1511. },
  1512. "_prefab": {
  1513. "__id__": 95
  1514. },
  1515. "__editorExtras__": {}
  1516. },
  1517. {
  1518. "__type__": "cc.PrefabInfo",
  1519. "root": {
  1520. "__id__": 94
  1521. },
  1522. "asset": {
  1523. "__uuid__": "0a871ceb-8b1a-42a2-9bf6-a85f1b14ff13",
  1524. "__expectedType__": "cc.Prefab"
  1525. },
  1526. "fileId": "c7zjxJOP9fGbpd/1IQgzIt",
  1527. "instance": {
  1528. "__id__": 96
  1529. },
  1530. "targetOverrides": null,
  1531. "nestedPrefabInstanceRoots": null
  1532. },
  1533. {
  1534. "__type__": "cc.PrefabInstance",
  1535. "fileId": "ee5ogX4P9IbqE3xEZQZFBU",
  1536. "prefabRootNode": null,
  1537. "mountedChildren": [],
  1538. "mountedComponents": [],
  1539. "propertyOverrides": [
  1540. {
  1541. "__id__": 97
  1542. },
  1543. {
  1544. "__id__": 99
  1545. },
  1546. {
  1547. "__id__": 100
  1548. },
  1549. {
  1550. "__id__": 101
  1551. },
  1552. {
  1553. "__id__": 102
  1554. }
  1555. ],
  1556. "removedComponents": []
  1557. },
  1558. {
  1559. "__type__": "CCPropertyOverrideInfo",
  1560. "targetInfo": {
  1561. "__id__": 98
  1562. },
  1563. "propertyPath": [
  1564. "_name"
  1565. ],
  1566. "value": "Build05"
  1567. },
  1568. {
  1569. "__type__": "cc.TargetInfo",
  1570. "localID": [
  1571. "c7zjxJOP9fGbpd/1IQgzIt"
  1572. ]
  1573. },
  1574. {
  1575. "__type__": "CCPropertyOverrideInfo",
  1576. "targetInfo": {
  1577. "__id__": 98
  1578. },
  1579. "propertyPath": [
  1580. "_lpos"
  1581. ],
  1582. "value": {
  1583. "__type__": "cc.Vec3",
  1584. "x": -4.306,
  1585. "y": 0.17,
  1586. "z": 0
  1587. }
  1588. },
  1589. {
  1590. "__type__": "CCPropertyOverrideInfo",
  1591. "targetInfo": {
  1592. "__id__": 98
  1593. },
  1594. "propertyPath": [
  1595. "_lrot"
  1596. ],
  1597. "value": {
  1598. "__type__": "cc.Quat",
  1599. "x": 0,
  1600. "y": 0,
  1601. "z": 0,
  1602. "w": 1
  1603. }
  1604. },
  1605. {
  1606. "__type__": "CCPropertyOverrideInfo",
  1607. "targetInfo": {
  1608. "__id__": 98
  1609. },
  1610. "propertyPath": [
  1611. "_euler"
  1612. ],
  1613. "value": {
  1614. "__type__": "cc.Vec3",
  1615. "x": 0,
  1616. "y": 0,
  1617. "z": 0
  1618. }
  1619. },
  1620. {
  1621. "__type__": "CCPropertyOverrideInfo",
  1622. "targetInfo": {
  1623. "__id__": 103
  1624. },
  1625. "propertyPath": [
  1626. "_mesh"
  1627. ],
  1628. "value": {
  1629. "__uuid__": "035f8fac-8e13-4aca-83c9-c259b07e0aee@bfcbd",
  1630. "__expectedType__": "cc.Mesh"
  1631. }
  1632. },
  1633. {
  1634. "__type__": "cc.TargetInfo",
  1635. "localID": [
  1636. "93H/QVzZdWXJI6HBNuS+s1"
  1637. ]
  1638. },
  1639. {
  1640. "__type__": "cc.Node",
  1641. "_objFlags": 0,
  1642. "_parent": {
  1643. "__id__": 15
  1644. },
  1645. "_prefab": {
  1646. "__id__": 105
  1647. },
  1648. "__editorExtras__": {}
  1649. },
  1650. {
  1651. "__type__": "cc.PrefabInfo",
  1652. "root": {
  1653. "__id__": 104
  1654. },
  1655. "asset": {
  1656. "__uuid__": "e0dcea1b-ab79-4841-9949-e5dc8087ab05",
  1657. "__expectedType__": "cc.Prefab"
  1658. },
  1659. "fileId": "3aNkEJkTVWTqBtAjuhfQ9G",
  1660. "instance": {
  1661. "__id__": 106
  1662. },
  1663. "targetOverrides": null,
  1664. "nestedPrefabInstanceRoots": null
  1665. },
  1666. {
  1667. "__type__": "cc.PrefabInstance",
  1668. "fileId": "b2S8ClJDZGNaJYL0yQT5sL",
  1669. "prefabRootNode": null,
  1670. "mountedChildren": [],
  1671. "mountedComponents": [],
  1672. "propertyOverrides": [
  1673. {
  1674. "__id__": 107
  1675. },
  1676. {
  1677. "__id__": 109
  1678. },
  1679. {
  1680. "__id__": 110
  1681. },
  1682. {
  1683. "__id__": 111
  1684. },
  1685. {
  1686. "__id__": 112
  1687. }
  1688. ],
  1689. "removedComponents": []
  1690. },
  1691. {
  1692. "__type__": "CCPropertyOverrideInfo",
  1693. "targetInfo": {
  1694. "__id__": 108
  1695. },
  1696. "propertyPath": [
  1697. "_name"
  1698. ],
  1699. "value": "Build06"
  1700. },
  1701. {
  1702. "__type__": "cc.TargetInfo",
  1703. "localID": [
  1704. "3aNkEJkTVWTqBtAjuhfQ9G"
  1705. ]
  1706. },
  1707. {
  1708. "__type__": "CCPropertyOverrideInfo",
  1709. "targetInfo": {
  1710. "__id__": 108
  1711. },
  1712. "propertyPath": [
  1713. "_lpos"
  1714. ],
  1715. "value": {
  1716. "__type__": "cc.Vec3",
  1717. "x": -8.467,
  1718. "y": 0.17,
  1719. "z": 0
  1720. }
  1721. },
  1722. {
  1723. "__type__": "CCPropertyOverrideInfo",
  1724. "targetInfo": {
  1725. "__id__": 108
  1726. },
  1727. "propertyPath": [
  1728. "_lrot"
  1729. ],
  1730. "value": {
  1731. "__type__": "cc.Quat",
  1732. "x": 0,
  1733. "y": 0,
  1734. "z": 0,
  1735. "w": 1
  1736. }
  1737. },
  1738. {
  1739. "__type__": "CCPropertyOverrideInfo",
  1740. "targetInfo": {
  1741. "__id__": 108
  1742. },
  1743. "propertyPath": [
  1744. "_euler"
  1745. ],
  1746. "value": {
  1747. "__type__": "cc.Vec3",
  1748. "x": 0,
  1749. "y": 0,
  1750. "z": 0
  1751. }
  1752. },
  1753. {
  1754. "__type__": "CCPropertyOverrideInfo",
  1755. "targetInfo": {
  1756. "__id__": 113
  1757. },
  1758. "propertyPath": [
  1759. "_mesh"
  1760. ],
  1761. "value": {
  1762. "__uuid__": "f940793a-15ae-434b-986c-0d9beb984d6a@b2f9b",
  1763. "__expectedType__": "cc.Mesh"
  1764. }
  1765. },
  1766. {
  1767. "__type__": "cc.TargetInfo",
  1768. "localID": [
  1769. "b596tL3cdX84PkYF4eYSl1"
  1770. ]
  1771. },
  1772. {
  1773. "__type__": "cc.Node",
  1774. "_objFlags": 0,
  1775. "_parent": {
  1776. "__id__": 15
  1777. },
  1778. "_prefab": {
  1779. "__id__": 115
  1780. },
  1781. "__editorExtras__": {}
  1782. },
  1783. {
  1784. "__type__": "cc.PrefabInfo",
  1785. "root": {
  1786. "__id__": 114
  1787. },
  1788. "asset": {
  1789. "__uuid__": "9d9bb606-f631-4af6-a3ee-bfbf0e34fdaf",
  1790. "__expectedType__": "cc.Prefab"
  1791. },
  1792. "fileId": "82bFZwUQleFYfKuJSLTJx3",
  1793. "instance": {
  1794. "__id__": 116
  1795. },
  1796. "targetOverrides": null,
  1797. "nestedPrefabInstanceRoots": null
  1798. },
  1799. {
  1800. "__type__": "cc.PrefabInstance",
  1801. "fileId": "52X7SDruxPCbUMMelR64sh",
  1802. "prefabRootNode": null,
  1803. "mountedChildren": [],
  1804. "mountedComponents": [],
  1805. "propertyOverrides": [
  1806. {
  1807. "__id__": 117
  1808. },
  1809. {
  1810. "__id__": 119
  1811. },
  1812. {
  1813. "__id__": 120
  1814. },
  1815. {
  1816. "__id__": 121
  1817. },
  1818. {
  1819. "__id__": 122
  1820. }
  1821. ],
  1822. "removedComponents": []
  1823. },
  1824. {
  1825. "__type__": "CCPropertyOverrideInfo",
  1826. "targetInfo": {
  1827. "__id__": 118
  1828. },
  1829. "propertyPath": [
  1830. "_name"
  1831. ],
  1832. "value": "Build07"
  1833. },
  1834. {
  1835. "__type__": "cc.TargetInfo",
  1836. "localID": [
  1837. "82bFZwUQleFYfKuJSLTJx3"
  1838. ]
  1839. },
  1840. {
  1841. "__type__": "CCPropertyOverrideInfo",
  1842. "targetInfo": {
  1843. "__id__": 118
  1844. },
  1845. "propertyPath": [
  1846. "_lpos"
  1847. ],
  1848. "value": {
  1849. "__type__": "cc.Vec3",
  1850. "x": -13.837,
  1851. "y": 0.17,
  1852. "z": 0
  1853. }
  1854. },
  1855. {
  1856. "__type__": "CCPropertyOverrideInfo",
  1857. "targetInfo": {
  1858. "__id__": 118
  1859. },
  1860. "propertyPath": [
  1861. "_lrot"
  1862. ],
  1863. "value": {
  1864. "__type__": "cc.Quat",
  1865. "x": 0,
  1866. "y": 0,
  1867. "z": 0,
  1868. "w": 1
  1869. }
  1870. },
  1871. {
  1872. "__type__": "CCPropertyOverrideInfo",
  1873. "targetInfo": {
  1874. "__id__": 118
  1875. },
  1876. "propertyPath": [
  1877. "_euler"
  1878. ],
  1879. "value": {
  1880. "__type__": "cc.Vec3",
  1881. "x": 0,
  1882. "y": 0,
  1883. "z": 0
  1884. }
  1885. },
  1886. {
  1887. "__type__": "CCPropertyOverrideInfo",
  1888. "targetInfo": {
  1889. "__id__": 123
  1890. },
  1891. "propertyPath": [
  1892. "_mesh"
  1893. ],
  1894. "value": {
  1895. "__uuid__": "5a7b42ec-1aa2-4349-a3ac-e9f5e5fd8e29@e826d",
  1896. "__expectedType__": "cc.Mesh"
  1897. }
  1898. },
  1899. {
  1900. "__type__": "cc.TargetInfo",
  1901. "localID": [
  1902. "c9EcWqDvldQoBXkusBNfLr"
  1903. ]
  1904. },
  1905. {
  1906. "__type__": "cc.Node",
  1907. "_objFlags": 0,
  1908. "_parent": {
  1909. "__id__": 15
  1910. },
  1911. "_prefab": {
  1912. "__id__": 125
  1913. },
  1914. "__editorExtras__": {}
  1915. },
  1916. {
  1917. "__type__": "cc.PrefabInfo",
  1918. "root": {
  1919. "__id__": 124
  1920. },
  1921. "asset": {
  1922. "__uuid__": "426e88e6-ca5f-4695-8e6a-67d9c93856a8",
  1923. "__expectedType__": "cc.Prefab"
  1924. },
  1925. "fileId": "9c0BVO1K1UQo38BkN2Ybf/",
  1926. "instance": {
  1927. "__id__": 126
  1928. },
  1929. "targetOverrides": null,
  1930. "nestedPrefabInstanceRoots": null
  1931. },
  1932. {
  1933. "__type__": "cc.PrefabInstance",
  1934. "fileId": "11Xb1rYdBAjYG9Ry9+pXxw",
  1935. "prefabRootNode": null,
  1936. "mountedChildren": [],
  1937. "mountedComponents": [],
  1938. "propertyOverrides": [
  1939. {
  1940. "__id__": 127
  1941. },
  1942. {
  1943. "__id__": 129
  1944. },
  1945. {
  1946. "__id__": 130
  1947. },
  1948. {
  1949. "__id__": 131
  1950. },
  1951. {
  1952. "__id__": 132
  1953. }
  1954. ],
  1955. "removedComponents": []
  1956. },
  1957. {
  1958. "__type__": "CCPropertyOverrideInfo",
  1959. "targetInfo": {
  1960. "__id__": 128
  1961. },
  1962. "propertyPath": [
  1963. "_name"
  1964. ],
  1965. "value": "Build08"
  1966. },
  1967. {
  1968. "__type__": "cc.TargetInfo",
  1969. "localID": [
  1970. "9c0BVO1K1UQo38BkN2Ybf/"
  1971. ]
  1972. },
  1973. {
  1974. "__type__": "CCPropertyOverrideInfo",
  1975. "targetInfo": {
  1976. "__id__": 128
  1977. },
  1978. "propertyPath": [
  1979. "_lpos"
  1980. ],
  1981. "value": {
  1982. "__type__": "cc.Vec3",
  1983. "x": -6.098,
  1984. "y": 0,
  1985. "z": -6.677
  1986. }
  1987. },
  1988. {
  1989. "__type__": "CCPropertyOverrideInfo",
  1990. "targetInfo": {
  1991. "__id__": 128
  1992. },
  1993. "propertyPath": [
  1994. "_lrot"
  1995. ],
  1996. "value": {
  1997. "__type__": "cc.Quat",
  1998. "x": 0,
  1999. "y": 0,
  2000. "z": 0,
  2001. "w": 1
  2002. }
  2003. },
  2004. {
  2005. "__type__": "CCPropertyOverrideInfo",
  2006. "targetInfo": {
  2007. "__id__": 128
  2008. },
  2009. "propertyPath": [
  2010. "_euler"
  2011. ],
  2012. "value": {
  2013. "__type__": "cc.Vec3",
  2014. "x": 0,
  2015. "y": 0,
  2016. "z": 0
  2017. }
  2018. },
  2019. {
  2020. "__type__": "CCPropertyOverrideInfo",
  2021. "targetInfo": {
  2022. "__id__": 133
  2023. },
  2024. "propertyPath": [
  2025. "_mesh"
  2026. ],
  2027. "value": {
  2028. "__uuid__": "0b8310aa-0552-4430-bb37-0d82d96c1ca6@e182f",
  2029. "__expectedType__": "cc.Mesh"
  2030. }
  2031. },
  2032. {
  2033. "__type__": "cc.TargetInfo",
  2034. "localID": [
  2035. "eb93vSKsxXi4xHLZDxlwsL"
  2036. ]
  2037. },
  2038. {
  2039. "__type__": "cc.Node",
  2040. "_objFlags": 0,
  2041. "_parent": {
  2042. "__id__": 15
  2043. },
  2044. "_prefab": {
  2045. "__id__": 135
  2046. },
  2047. "__editorExtras__": {}
  2048. },
  2049. {
  2050. "__type__": "cc.PrefabInfo",
  2051. "root": {
  2052. "__id__": 134
  2053. },
  2054. "asset": {
  2055. "__uuid__": "e1827f07-aefa-43d6-977b-6bcc68113894",
  2056. "__expectedType__": "cc.Prefab"
  2057. },
  2058. "fileId": "ddvHPsg0tWvavD9d9s5w6S",
  2059. "instance": {
  2060. "__id__": 136
  2061. },
  2062. "targetOverrides": null,
  2063. "nestedPrefabInstanceRoots": null
  2064. },
  2065. {
  2066. "__type__": "cc.PrefabInstance",
  2067. "fileId": "d2QZpt5lVMlYQeFs5CWVmF",
  2068. "prefabRootNode": null,
  2069. "mountedChildren": [],
  2070. "mountedComponents": [],
  2071. "propertyOverrides": [
  2072. {
  2073. "__id__": 137
  2074. },
  2075. {
  2076. "__id__": 139
  2077. },
  2078. {
  2079. "__id__": 140
  2080. },
  2081. {
  2082. "__id__": 141
  2083. },
  2084. {
  2085. "__id__": 142
  2086. }
  2087. ],
  2088. "removedComponents": []
  2089. },
  2090. {
  2091. "__type__": "CCPropertyOverrideInfo",
  2092. "targetInfo": {
  2093. "__id__": 138
  2094. },
  2095. "propertyPath": [
  2096. "_name"
  2097. ],
  2098. "value": "Build09"
  2099. },
  2100. {
  2101. "__type__": "cc.TargetInfo",
  2102. "localID": [
  2103. "ddvHPsg0tWvavD9d9s5w6S"
  2104. ]
  2105. },
  2106. {
  2107. "__type__": "CCPropertyOverrideInfo",
  2108. "targetInfo": {
  2109. "__id__": 138
  2110. },
  2111. "propertyPath": [
  2112. "_lpos"
  2113. ],
  2114. "value": {
  2115. "__type__": "cc.Vec3",
  2116. "x": 2.673,
  2117. "y": 0,
  2118. "z": -6.643
  2119. }
  2120. },
  2121. {
  2122. "__type__": "CCPropertyOverrideInfo",
  2123. "targetInfo": {
  2124. "__id__": 138
  2125. },
  2126. "propertyPath": [
  2127. "_lrot"
  2128. ],
  2129. "value": {
  2130. "__type__": "cc.Quat",
  2131. "x": 0,
  2132. "y": 0,
  2133. "z": 0,
  2134. "w": 1
  2135. }
  2136. },
  2137. {
  2138. "__type__": "CCPropertyOverrideInfo",
  2139. "targetInfo": {
  2140. "__id__": 138
  2141. },
  2142. "propertyPath": [
  2143. "_euler"
  2144. ],
  2145. "value": {
  2146. "__type__": "cc.Vec3",
  2147. "x": 0,
  2148. "y": 0,
  2149. "z": 0
  2150. }
  2151. },
  2152. {
  2153. "__type__": "CCPropertyOverrideInfo",
  2154. "targetInfo": {
  2155. "__id__": 143
  2156. },
  2157. "propertyPath": [
  2158. "_mesh"
  2159. ],
  2160. "value": {
  2161. "__uuid__": "dce7638b-0210-4328-90aa-0b4397db3754@4b0c8",
  2162. "__expectedType__": "cc.Mesh"
  2163. }
  2164. },
  2165. {
  2166. "__type__": "cc.TargetInfo",
  2167. "localID": [
  2168. "e6Njmyuplbr46/ayzbBYhj"
  2169. ]
  2170. },
  2171. {
  2172. "__type__": "cc.Node",
  2173. "_objFlags": 0,
  2174. "_parent": {
  2175. "__id__": 15
  2176. },
  2177. "_prefab": {
  2178. "__id__": 145
  2179. },
  2180. "__editorExtras__": {}
  2181. },
  2182. {
  2183. "__type__": "cc.PrefabInfo",
  2184. "root": {
  2185. "__id__": 144
  2186. },
  2187. "asset": {
  2188. "__uuid__": "c7ec8f50-cba6-4003-a24a-051f7bc42482",
  2189. "__expectedType__": "cc.Prefab"
  2190. },
  2191. "fileId": "c6qDwixeVSdo1j655vmhpK",
  2192. "instance": {
  2193. "__id__": 146
  2194. },
  2195. "targetOverrides": null,
  2196. "nestedPrefabInstanceRoots": null
  2197. },
  2198. {
  2199. "__type__": "cc.PrefabInstance",
  2200. "fileId": "85iTMZVoxA4qZYP9YJ8Qa3",
  2201. "prefabRootNode": null,
  2202. "mountedChildren": [],
  2203. "mountedComponents": [],
  2204. "propertyOverrides": [
  2205. {
  2206. "__id__": 147
  2207. },
  2208. {
  2209. "__id__": 149
  2210. },
  2211. {
  2212. "__id__": 150
  2213. },
  2214. {
  2215. "__id__": 151
  2216. },
  2217. {
  2218. "__id__": 152
  2219. }
  2220. ],
  2221. "removedComponents": []
  2222. },
  2223. {
  2224. "__type__": "CCPropertyOverrideInfo",
  2225. "targetInfo": {
  2226. "__id__": 148
  2227. },
  2228. "propertyPath": [
  2229. "_name"
  2230. ],
  2231. "value": "Build10"
  2232. },
  2233. {
  2234. "__type__": "cc.TargetInfo",
  2235. "localID": [
  2236. "c6qDwixeVSdo1j655vmhpK"
  2237. ]
  2238. },
  2239. {
  2240. "__type__": "CCPropertyOverrideInfo",
  2241. "targetInfo": {
  2242. "__id__": 148
  2243. },
  2244. "propertyPath": [
  2245. "_lpos"
  2246. ],
  2247. "value": {
  2248. "__type__": "cc.Vec3",
  2249. "x": 0,
  2250. "y": 0,
  2251. "z": 0
  2252. }
  2253. },
  2254. {
  2255. "__type__": "CCPropertyOverrideInfo",
  2256. "targetInfo": {
  2257. "__id__": 148
  2258. },
  2259. "propertyPath": [
  2260. "_lrot"
  2261. ],
  2262. "value": {
  2263. "__type__": "cc.Quat",
  2264. "x": 0,
  2265. "y": 0,
  2266. "z": 0,
  2267. "w": 1
  2268. }
  2269. },
  2270. {
  2271. "__type__": "CCPropertyOverrideInfo",
  2272. "targetInfo": {
  2273. "__id__": 148
  2274. },
  2275. "propertyPath": [
  2276. "_euler"
  2277. ],
  2278. "value": {
  2279. "__type__": "cc.Vec3",
  2280. "x": 0,
  2281. "y": 0,
  2282. "z": 0
  2283. }
  2284. },
  2285. {
  2286. "__type__": "CCPropertyOverrideInfo",
  2287. "targetInfo": {
  2288. "__id__": 153
  2289. },
  2290. "propertyPath": [
  2291. "_mesh"
  2292. ],
  2293. "value": {
  2294. "__uuid__": "1fec9258-f451-4822-b067-424425b23ba1@e3a88",
  2295. "__expectedType__": "cc.Mesh"
  2296. }
  2297. },
  2298. {
  2299. "__type__": "cc.TargetInfo",
  2300. "localID": [
  2301. "9cwC1DxS9ZVbtX8ur+dbX1"
  2302. ]
  2303. },
  2304. {
  2305. "__type__": "cc.Node",
  2306. "_objFlags": 0,
  2307. "_parent": {
  2308. "__id__": 15
  2309. },
  2310. "_prefab": {
  2311. "__id__": 155
  2312. },
  2313. "__editorExtras__": {}
  2314. },
  2315. {
  2316. "__type__": "cc.PrefabInfo",
  2317. "root": {
  2318. "__id__": 154
  2319. },
  2320. "asset": {
  2321. "__uuid__": "2c6ee303-39bc-4c5a-ba9e-311e68a16334",
  2322. "__expectedType__": "cc.Prefab"
  2323. },
  2324. "fileId": "62PqJipd1SYo0znGIObdxJ",
  2325. "instance": {
  2326. "__id__": 156
  2327. },
  2328. "targetOverrides": null,
  2329. "nestedPrefabInstanceRoots": null
  2330. },
  2331. {
  2332. "__type__": "cc.PrefabInstance",
  2333. "fileId": "65qyJF3ZFIO5Dh7wBRP3d3",
  2334. "prefabRootNode": null,
  2335. "mountedChildren": [],
  2336. "mountedComponents": [],
  2337. "propertyOverrides": [
  2338. {
  2339. "__id__": 157
  2340. },
  2341. {
  2342. "__id__": 159
  2343. },
  2344. {
  2345. "__id__": 160
  2346. },
  2347. {
  2348. "__id__": 161
  2349. },
  2350. {
  2351. "__id__": 162
  2352. }
  2353. ],
  2354. "removedComponents": []
  2355. },
  2356. {
  2357. "__type__": "CCPropertyOverrideInfo",
  2358. "targetInfo": {
  2359. "__id__": 158
  2360. },
  2361. "propertyPath": [
  2362. "_name"
  2363. ],
  2364. "value": "Build11"
  2365. },
  2366. {
  2367. "__type__": "cc.TargetInfo",
  2368. "localID": [
  2369. "62PqJipd1SYo0znGIObdxJ"
  2370. ]
  2371. },
  2372. {
  2373. "__type__": "CCPropertyOverrideInfo",
  2374. "targetInfo": {
  2375. "__id__": 158
  2376. },
  2377. "propertyPath": [
  2378. "_lpos"
  2379. ],
  2380. "value": {
  2381. "__type__": "cc.Vec3",
  2382. "x": 8.754,
  2383. "y": 0,
  2384. "z": -8.2
  2385. }
  2386. },
  2387. {
  2388. "__type__": "CCPropertyOverrideInfo",
  2389. "targetInfo": {
  2390. "__id__": 158
  2391. },
  2392. "propertyPath": [
  2393. "_lrot"
  2394. ],
  2395. "value": {
  2396. "__type__": "cc.Quat",
  2397. "x": 0,
  2398. "y": 0,
  2399. "z": 0,
  2400. "w": 1
  2401. }
  2402. },
  2403. {
  2404. "__type__": "CCPropertyOverrideInfo",
  2405. "targetInfo": {
  2406. "__id__": 158
  2407. },
  2408. "propertyPath": [
  2409. "_euler"
  2410. ],
  2411. "value": {
  2412. "__type__": "cc.Vec3",
  2413. "x": 0,
  2414. "y": 0,
  2415. "z": 0
  2416. }
  2417. },
  2418. {
  2419. "__type__": "CCPropertyOverrideInfo",
  2420. "targetInfo": {
  2421. "__id__": 163
  2422. },
  2423. "propertyPath": [
  2424. "_mesh"
  2425. ],
  2426. "value": {
  2427. "__uuid__": "7ce9fa5e-7e61-4f38-993c-cab7b3cb240e@d3fbd",
  2428. "__expectedType__": "cc.Mesh"
  2429. }
  2430. },
  2431. {
  2432. "__type__": "cc.TargetInfo",
  2433. "localID": [
  2434. "7fACE72eRdJIJ5tIJY3r8g"
  2435. ]
  2436. },
  2437. {
  2438. "__type__": "cc.Node",
  2439. "_objFlags": 0,
  2440. "_parent": {
  2441. "__id__": 15
  2442. },
  2443. "_prefab": {
  2444. "__id__": 165
  2445. },
  2446. "__editorExtras__": {}
  2447. },
  2448. {
  2449. "__type__": "cc.PrefabInfo",
  2450. "root": {
  2451. "__id__": 164
  2452. },
  2453. "asset": {
  2454. "__uuid__": "f22b4686-9e9f-4b8b-8c0c-d217bc7cfe23",
  2455. "__expectedType__": "cc.Prefab"
  2456. },
  2457. "fileId": "4aIn0GW/pEWotYsJwbj7V9",
  2458. "instance": {
  2459. "__id__": 166
  2460. },
  2461. "targetOverrides": null
  2462. },
  2463. {
  2464. "__type__": "cc.PrefabInstance",
  2465. "fileId": "bamwndhRpKvKRfhR43Mgc5",
  2466. "prefabRootNode": null,
  2467. "mountedChildren": [],
  2468. "mountedComponents": [],
  2469. "propertyOverrides": [
  2470. {
  2471. "__id__": 167
  2472. },
  2473. {
  2474. "__id__": 169
  2475. },
  2476. {
  2477. "__id__": 170
  2478. },
  2479. {
  2480. "__id__": 171
  2481. }
  2482. ],
  2483. "removedComponents": []
  2484. },
  2485. {
  2486. "__type__": "CCPropertyOverrideInfo",
  2487. "targetInfo": {
  2488. "__id__": 168
  2489. },
  2490. "propertyPath": [
  2491. "_name"
  2492. ],
  2493. "value": "whitehouse"
  2494. },
  2495. {
  2496. "__type__": "cc.TargetInfo",
  2497. "localID": [
  2498. "4aIn0GW/pEWotYsJwbj7V9"
  2499. ]
  2500. },
  2501. {
  2502. "__type__": "CCPropertyOverrideInfo",
  2503. "targetInfo": {
  2504. "__id__": 168
  2505. },
  2506. "propertyPath": [
  2507. "_lpos"
  2508. ],
  2509. "value": {
  2510. "__type__": "cc.Vec3",
  2511. "x": 22.401,
  2512. "y": 0,
  2513. "z": -31.372
  2514. }
  2515. },
  2516. {
  2517. "__type__": "CCPropertyOverrideInfo",
  2518. "targetInfo": {
  2519. "__id__": 168
  2520. },
  2521. "propertyPath": [
  2522. "_lrot"
  2523. ],
  2524. "value": {
  2525. "__type__": "cc.Quat",
  2526. "x": 0,
  2527. "y": 0,
  2528. "z": 0,
  2529. "w": 1
  2530. }
  2531. },
  2532. {
  2533. "__type__": "CCPropertyOverrideInfo",
  2534. "targetInfo": {
  2535. "__id__": 168
  2536. },
  2537. "propertyPath": [
  2538. "_euler"
  2539. ],
  2540. "value": {
  2541. "__type__": "cc.Vec3",
  2542. "x": 0,
  2543. "y": 0,
  2544. "z": 0
  2545. }
  2546. },
  2547. {
  2548. "__type__": "cc.Node",
  2549. "_objFlags": 0,
  2550. "_parent": {
  2551. "__id__": 15
  2552. },
  2553. "_prefab": {
  2554. "__id__": 173
  2555. },
  2556. "__editorExtras__": {}
  2557. },
  2558. {
  2559. "__type__": "cc.PrefabInfo",
  2560. "root": {
  2561. "__id__": 172
  2562. },
  2563. "asset": {
  2564. "__uuid__": "7d73f4a9-9eed-410d-86dd-846d594cb91e",
  2565. "__expectedType__": "cc.Prefab"
  2566. },
  2567. "fileId": "a4iPd9cBZXvJFXwtNxAO5S",
  2568. "instance": {
  2569. "__id__": 174
  2570. },
  2571. "targetOverrides": null,
  2572. "nestedPrefabInstanceRoots": null
  2573. },
  2574. {
  2575. "__type__": "cc.PrefabInstance",
  2576. "fileId": "d2gXgW2h1C5ptrslgzx1zp",
  2577. "prefabRootNode": null,
  2578. "mountedChildren": [],
  2579. "mountedComponents": [],
  2580. "propertyOverrides": [
  2581. {
  2582. "__id__": 175
  2583. },
  2584. {
  2585. "__id__": 177
  2586. },
  2587. {
  2588. "__id__": 178
  2589. },
  2590. {
  2591. "__id__": 179
  2592. }
  2593. ],
  2594. "removedComponents": []
  2595. },
  2596. {
  2597. "__type__": "CCPropertyOverrideInfo",
  2598. "targetInfo": {
  2599. "__id__": 176
  2600. },
  2601. "propertyPath": [
  2602. "_name"
  2603. ],
  2604. "value": "ta"
  2605. },
  2606. {
  2607. "__type__": "cc.TargetInfo",
  2608. "localID": [
  2609. "a4iPd9cBZXvJFXwtNxAO5S"
  2610. ]
  2611. },
  2612. {
  2613. "__type__": "CCPropertyOverrideInfo",
  2614. "targetInfo": {
  2615. "__id__": 176
  2616. },
  2617. "propertyPath": [
  2618. "_lpos"
  2619. ],
  2620. "value": {
  2621. "__type__": "cc.Vec3",
  2622. "x": -13.991,
  2623. "y": 0,
  2624. "z": -22.939
  2625. }
  2626. },
  2627. {
  2628. "__type__": "CCPropertyOverrideInfo",
  2629. "targetInfo": {
  2630. "__id__": 176
  2631. },
  2632. "propertyPath": [
  2633. "_lrot"
  2634. ],
  2635. "value": {
  2636. "__type__": "cc.Quat",
  2637. "x": 0,
  2638. "y": 0,
  2639. "z": 0,
  2640. "w": 1
  2641. }
  2642. },
  2643. {
  2644. "__type__": "CCPropertyOverrideInfo",
  2645. "targetInfo": {
  2646. "__id__": 176
  2647. },
  2648. "propertyPath": [
  2649. "_euler"
  2650. ],
  2651. "value": {
  2652. "__type__": "cc.Vec3",
  2653. "x": 0,
  2654. "y": 0,
  2655. "z": 0
  2656. }
  2657. },
  2658. {
  2659. "__type__": "cc.Node",
  2660. "_objFlags": 0,
  2661. "_parent": {
  2662. "__id__": 15
  2663. },
  2664. "_prefab": {
  2665. "__id__": 181
  2666. },
  2667. "__editorExtras__": {}
  2668. },
  2669. {
  2670. "__type__": "cc.PrefabInfo",
  2671. "root": {
  2672. "__id__": 180
  2673. },
  2674. "asset": {
  2675. "__uuid__": "8fbb2db1-1869-4464-8b0a-2eca2a8a84a7",
  2676. "__expectedType__": "cc.Prefab"
  2677. },
  2678. "fileId": "bdaQ4BCqZXFLSla+tH53Xv",
  2679. "instance": {
  2680. "__id__": 182
  2681. },
  2682. "targetOverrides": null,
  2683. "nestedPrefabInstanceRoots": null
  2684. },
  2685. {
  2686. "__type__": "cc.PrefabInstance",
  2687. "fileId": "acDRb6VaZJzKzXeCzrKTGk",
  2688. "prefabRootNode": null,
  2689. "mountedChildren": [],
  2690. "mountedComponents": [],
  2691. "propertyOverrides": [
  2692. {
  2693. "__id__": 183
  2694. },
  2695. {
  2696. "__id__": 185
  2697. },
  2698. {
  2699. "__id__": 186
  2700. },
  2701. {
  2702. "__id__": 187
  2703. }
  2704. ],
  2705. "removedComponents": []
  2706. },
  2707. {
  2708. "__type__": "CCPropertyOverrideInfo",
  2709. "targetInfo": {
  2710. "__id__": 184
  2711. },
  2712. "propertyPath": [
  2713. "_name"
  2714. ],
  2715. "value": "cow"
  2716. },
  2717. {
  2718. "__type__": "cc.TargetInfo",
  2719. "localID": [
  2720. "bdaQ4BCqZXFLSla+tH53Xv"
  2721. ]
  2722. },
  2723. {
  2724. "__type__": "CCPropertyOverrideInfo",
  2725. "targetInfo": {
  2726. "__id__": 184
  2727. },
  2728. "propertyPath": [
  2729. "_lpos"
  2730. ],
  2731. "value": {
  2732. "__type__": "cc.Vec3",
  2733. "x": 0,
  2734. "y": 1.011,
  2735. "z": 7.109
  2736. }
  2737. },
  2738. {
  2739. "__type__": "CCPropertyOverrideInfo",
  2740. "targetInfo": {
  2741. "__id__": 184
  2742. },
  2743. "propertyPath": [
  2744. "_lrot"
  2745. ],
  2746. "value": {
  2747. "__type__": "cc.Quat",
  2748. "x": 0,
  2749. "y": 0,
  2750. "z": 0,
  2751. "w": 1
  2752. }
  2753. },
  2754. {
  2755. "__type__": "CCPropertyOverrideInfo",
  2756. "targetInfo": {
  2757. "__id__": 184
  2758. },
  2759. "propertyPath": [
  2760. "_euler"
  2761. ],
  2762. "value": {
  2763. "__type__": "cc.Vec3",
  2764. "x": 0,
  2765. "y": 0,
  2766. "z": 0
  2767. }
  2768. },
  2769. {
  2770. "__type__": "cc.Node",
  2771. "_objFlags": 0,
  2772. "_parent": {
  2773. "__id__": 15
  2774. },
  2775. "_prefab": {
  2776. "__id__": 189
  2777. },
  2778. "__editorExtras__": {}
  2779. },
  2780. {
  2781. "__type__": "cc.PrefabInfo",
  2782. "root": {
  2783. "__id__": 188
  2784. },
  2785. "asset": {
  2786. "__uuid__": "43db299d-12c8-48fd-98d8-9840f96d4a86",
  2787. "__expectedType__": "cc.Prefab"
  2788. },
  2789. "fileId": "bbTTyDvJ5ZiKtJxZQRuYHP",
  2790. "instance": {
  2791. "__id__": 190
  2792. },
  2793. "targetOverrides": null,
  2794. "nestedPrefabInstanceRoots": null
  2795. },
  2796. {
  2797. "__type__": "cc.PrefabInstance",
  2798. "fileId": "1558VmEqVMiKdPITNyS/p1",
  2799. "prefabRootNode": null,
  2800. "mountedChildren": [],
  2801. "mountedComponents": [],
  2802. "propertyOverrides": [
  2803. {
  2804. "__id__": 191
  2805. },
  2806. {
  2807. "__id__": 193
  2808. },
  2809. {
  2810. "__id__": 194
  2811. },
  2812. {
  2813. "__id__": 195
  2814. }
  2815. ],
  2816. "removedComponents": []
  2817. },
  2818. {
  2819. "__type__": "CCPropertyOverrideInfo",
  2820. "targetInfo": {
  2821. "__id__": 192
  2822. },
  2823. "propertyPath": [
  2824. "_name"
  2825. ],
  2826. "value": "sheep"
  2827. },
  2828. {
  2829. "__type__": "cc.TargetInfo",
  2830. "localID": [
  2831. "bbTTyDvJ5ZiKtJxZQRuYHP"
  2832. ]
  2833. },
  2834. {
  2835. "__type__": "CCPropertyOverrideInfo",
  2836. "targetInfo": {
  2837. "__id__": 192
  2838. },
  2839. "propertyPath": [
  2840. "_lpos"
  2841. ],
  2842. "value": {
  2843. "__type__": "cc.Vec3",
  2844. "x": 0,
  2845. "y": 1.068,
  2846. "z": 4.85
  2847. }
  2848. },
  2849. {
  2850. "__type__": "CCPropertyOverrideInfo",
  2851. "targetInfo": {
  2852. "__id__": 192
  2853. },
  2854. "propertyPath": [
  2855. "_lrot"
  2856. ],
  2857. "value": {
  2858. "__type__": "cc.Quat",
  2859. "x": 0,
  2860. "y": 0,
  2861. "z": 0,
  2862. "w": 1
  2863. }
  2864. },
  2865. {
  2866. "__type__": "CCPropertyOverrideInfo",
  2867. "targetInfo": {
  2868. "__id__": 192
  2869. },
  2870. "propertyPath": [
  2871. "_euler"
  2872. ],
  2873. "value": {
  2874. "__type__": "cc.Vec3",
  2875. "x": 0,
  2876. "y": 0,
  2877. "z": 0
  2878. }
  2879. },
  2880. {
  2881. "__type__": "cc.PrefabInfo",
  2882. "root": null,
  2883. "asset": null,
  2884. "fileId": "ca2c3635-7e94-4602-b1eb-136ddb147d5f",
  2885. "instance": null,
  2886. "targetOverrides": null,
  2887. "nestedPrefabInstanceRoots": [
  2888. {
  2889. "__id__": 7
  2890. },
  2891. {
  2892. "__id__": 16
  2893. },
  2894. {
  2895. "__id__": 31
  2896. },
  2897. {
  2898. "__id__": 43
  2899. },
  2900. {
  2901. "__id__": 53
  2902. },
  2903. {
  2904. "__id__": 63
  2905. },
  2906. {
  2907. "__id__": 74
  2908. },
  2909. {
  2910. "__id__": 84
  2911. },
  2912. {
  2913. "__id__": 94
  2914. },
  2915. {
  2916. "__id__": 104
  2917. },
  2918. {
  2919. "__id__": 114
  2920. },
  2921. {
  2922. "__id__": 124
  2923. },
  2924. {
  2925. "__id__": 134
  2926. },
  2927. {
  2928. "__id__": 144
  2929. },
  2930. {
  2931. "__id__": 154
  2932. },
  2933. {
  2934. "__id__": 164
  2935. },
  2936. {
  2937. "__id__": 172
  2938. },
  2939. {
  2940. "__id__": 180
  2941. },
  2942. {
  2943. "__id__": 188
  2944. }
  2945. ]
  2946. },
  2947. {
  2948. "__type__": "cc.SceneGlobals",
  2949. "ambient": {
  2950. "__id__": 198
  2951. },
  2952. "shadows": {
  2953. "__id__": 199
  2954. },
  2955. "_skybox": {
  2956. "__id__": 200
  2957. },
  2958. "fog": {
  2959. "__id__": 201
  2960. },
  2961. "octree": {
  2962. "__id__": 202
  2963. },
  2964. "skin": {
  2965. "__id__": 203
  2966. },
  2967. "lightProbeInfo": {
  2968. "__id__": 204
  2969. },
  2970. "postSettings": {
  2971. "__id__": 205
  2972. },
  2973. "bakedWithStationaryMainLight": false,
  2974. "bakedWithHighpLightmap": false
  2975. },
  2976. {
  2977. "__type__": "cc.AmbientInfo",
  2978. "_skyColorHDR": {
  2979. "__type__": "cc.Vec4",
  2980. "x": 0.2,
  2981. "y": 0.5,
  2982. "z": 0.8,
  2983. "w": 0.520833125
  2984. },
  2985. "_skyColor": {
  2986. "__type__": "cc.Vec4",
  2987. "x": 0.2,
  2988. "y": 0.5,
  2989. "z": 0.8,
  2990. "w": 0.520833125
  2991. },
  2992. "_skyIllumHDR": 20000,
  2993. "_skyIllum": 20000,
  2994. "_groundAlbedoHDR": {
  2995. "__type__": "cc.Vec4",
  2996. "x": 0.2,
  2997. "y": 0.2,
  2998. "z": 0.2,
  2999. "w": 1
  3000. },
  3001. "_groundAlbedo": {
  3002. "__type__": "cc.Vec4",
  3003. "x": 0.2,
  3004. "y": 0.2,
  3005. "z": 0.2,
  3006. "w": 1
  3007. },
  3008. "_skyColorLDR": {
  3009. "__type__": "cc.Vec4",
  3010. "x": 0.452588,
  3011. "y": 0.607642,
  3012. "z": 0.755699,
  3013. "w": 0
  3014. },
  3015. "_skyIllumLDR": 0.8,
  3016. "_groundAlbedoLDR": {
  3017. "__type__": "cc.Vec4",
  3018. "x": 0.618555,
  3019. "y": 0.577848,
  3020. "z": 0.544564,
  3021. "w": 0
  3022. }
  3023. },
  3024. {
  3025. "__type__": "cc.ShadowsInfo",
  3026. "_enabled": false,
  3027. "_type": 0,
  3028. "_normal": {
  3029. "__type__": "cc.Vec3",
  3030. "x": 0,
  3031. "y": 1,
  3032. "z": 0
  3033. },
  3034. "_distance": 0,
  3035. "_planeBias": 1,
  3036. "_shadowColor": {
  3037. "__type__": "cc.Color",
  3038. "r": 76,
  3039. "g": 76,
  3040. "b": 76,
  3041. "a": 255
  3042. },
  3043. "_maxReceived": 4,
  3044. "_size": {
  3045. "__type__": "cc.Vec2",
  3046. "x": 1024,
  3047. "y": 1024
  3048. }
  3049. },
  3050. {
  3051. "__type__": "cc.SkyboxInfo",
  3052. "_envLightingType": 0,
  3053. "_envmapHDR": {
  3054. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  3055. "__expectedType__": "cc.TextureCube"
  3056. },
  3057. "_envmap": {
  3058. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  3059. "__expectedType__": "cc.TextureCube"
  3060. },
  3061. "_envmapLDR": {
  3062. "__uuid__": "6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0",
  3063. "__expectedType__": "cc.TextureCube"
  3064. },
  3065. "_diffuseMapHDR": null,
  3066. "_diffuseMapLDR": null,
  3067. "_enabled": true,
  3068. "_useHDR": true,
  3069. "_editableMaterial": null,
  3070. "_reflectionHDR": null,
  3071. "_reflectionLDR": null,
  3072. "_rotationAngle": 0
  3073. },
  3074. {
  3075. "__type__": "cc.FogInfo",
  3076. "_type": 0,
  3077. "_fogColor": {
  3078. "__type__": "cc.Color",
  3079. "r": 200,
  3080. "g": 200,
  3081. "b": 200,
  3082. "a": 255
  3083. },
  3084. "_enabled": false,
  3085. "_fogDensity": 0.3,
  3086. "_fogStart": 0.5,
  3087. "_fogEnd": 300,
  3088. "_fogAtten": 5,
  3089. "_fogTop": 1.5,
  3090. "_fogRange": 1.2,
  3091. "_accurate": false
  3092. },
  3093. {
  3094. "__type__": "cc.OctreeInfo",
  3095. "_enabled": false,
  3096. "_minPos": {
  3097. "__type__": "cc.Vec3",
  3098. "x": -1024,
  3099. "y": -1024,
  3100. "z": -1024
  3101. },
  3102. "_maxPos": {
  3103. "__type__": "cc.Vec3",
  3104. "x": 1024,
  3105. "y": 1024,
  3106. "z": 1024
  3107. },
  3108. "_depth": 8
  3109. },
  3110. {
  3111. "__type__": "cc.SkinInfo",
  3112. "_enabled": true,
  3113. "_blurRadius": 0.01,
  3114. "_sssIntensity": 3
  3115. },
  3116. {
  3117. "__type__": "cc.LightProbeInfo",
  3118. "_giScale": 1,
  3119. "_giSamples": 1024,
  3120. "_bounces": 2,
  3121. "_reduceRinging": 0,
  3122. "_showProbe": true,
  3123. "_showWireframe": true,
  3124. "_showConvex": false,
  3125. "_data": null,
  3126. "_lightProbeSphereVolume": 1
  3127. },
  3128. {
  3129. "__type__": "cc.PostSettingsInfo",
  3130. "_toneMappingType": 0
  3131. }
  3132. ]