fd6f4597-e97f-49c9-944a-cd9952aa9a94.json 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "airplane1",
  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": "airplane1",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. }
  24. ],
  25. "_active": true,
  26. "_components": [
  27. {
  28. "__id__": 77
  29. },
  30. {
  31. "__id__": 79
  32. }
  33. ],
  34. "_prefab": {
  35. "__id__": 81
  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. "_id": ""
  65. },
  66. {
  67. "__type__": "cc.Node",
  68. "_name": "body",
  69. "_objFlags": 0,
  70. "__editorExtras__": {},
  71. "_parent": {
  72. "__id__": 1
  73. },
  74. "_children": [
  75. {
  76. "__id__": 3
  77. },
  78. {
  79. "__id__": 8
  80. },
  81. {
  82. "__id__": 13
  83. },
  84. {
  85. "__id__": 18
  86. },
  87. {
  88. "__id__": 23
  89. },
  90. {
  91. "__id__": 28
  92. },
  93. {
  94. "__id__": 33
  95. },
  96. {
  97. "__id__": 38
  98. },
  99. {
  100. "__id__": 43
  101. },
  102. {
  103. "__id__": 48
  104. },
  105. {
  106. "__id__": 53
  107. },
  108. {
  109. "__id__": 58
  110. },
  111. {
  112. "__id__": 63
  113. },
  114. {
  115. "__id__": 68
  116. }
  117. ],
  118. "_active": true,
  119. "_components": [
  120. {
  121. "__id__": 73
  122. }
  123. ],
  124. "_prefab": {
  125. "__id__": 76
  126. },
  127. "_lpos": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_lrot": {
  134. "__type__": "cc.Quat",
  135. "x": 0,
  136. "y": 0,
  137. "z": 0,
  138. "w": 1
  139. },
  140. "_lscale": {
  141. "__type__": "cc.Vec3",
  142. "x": 1,
  143. "y": 1,
  144. "z": 1
  145. },
  146. "_mobility": 0,
  147. "_layer": 1073741824,
  148. "_euler": {
  149. "__type__": "cc.Vec3",
  150. "x": 0,
  151. "y": 0,
  152. "z": 0
  153. },
  154. "_id": ""
  155. },
  156. {
  157. "__type__": "cc.Node",
  158. "_name": "001",
  159. "_objFlags": 0,
  160. "__editorExtras__": {},
  161. "_parent": {
  162. "__id__": 2
  163. },
  164. "_children": [],
  165. "_active": false,
  166. "_components": [
  167. {
  168. "__id__": 4
  169. }
  170. ],
  171. "_prefab": {
  172. "__id__": 7
  173. },
  174. "_lpos": {
  175. "__type__": "cc.Vec3",
  176. "x": 1.559836983680725,
  177. "y": 0.5159299373626709,
  178. "z": -0.8916698694229126
  179. },
  180. "_lrot": {
  181. "__type__": "cc.Quat",
  182. "x": 0,
  183. "y": 0,
  184. "z": 0,
  185. "w": 1
  186. },
  187. "_lscale": {
  188. "__type__": "cc.Vec3",
  189. "x": 1,
  190. "y": 1,
  191. "z": 1
  192. },
  193. "_mobility": 0,
  194. "_layer": 1073741824,
  195. "_euler": {
  196. "__type__": "cc.Vec3",
  197. "x": 0,
  198. "y": 0,
  199. "z": 0
  200. },
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.MeshRenderer",
  205. "_name": "",
  206. "_objFlags": 0,
  207. "__editorExtras__": {},
  208. "node": {
  209. "__id__": 3
  210. },
  211. "_enabled": true,
  212. "__prefab": {
  213. "__id__": 5
  214. },
  215. "_materials": [
  216. {
  217. "__uuid__": "9ef35943-83ad-4cb3-a68c-a8e9d2f228d3",
  218. "__expectedType__": "cc.Material"
  219. }
  220. ],
  221. "_visFlags": 0,
  222. "bakeSettings": {
  223. "__id__": 6
  224. },
  225. "_mesh": {
  226. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@44034",
  227. "__expectedType__": "cc.Mesh"
  228. },
  229. "_shadowCastingMode": 0,
  230. "_shadowReceivingMode": 1,
  231. "_shadowBias": 0,
  232. "_shadowNormalBias": 0,
  233. "_reflectionProbeId": -1,
  234. "_reflectionProbeBlendId": -1,
  235. "_reflectionProbeBlendWeight": 0,
  236. "_enabledGlobalStandardSkinObject": false,
  237. "_enableMorph": true,
  238. "_id": ""
  239. },
  240. {
  241. "__type__": "cc.CompPrefabInfo",
  242. "fileId": "52aVQUVbNVioVC0KVE8UIY"
  243. },
  244. {
  245. "__type__": "cc.ModelBakeSettings",
  246. "texture": null,
  247. "uvParam": {
  248. "__type__": "cc.Vec4",
  249. "x": 0,
  250. "y": 0,
  251. "z": 0,
  252. "w": 0
  253. },
  254. "_bakeable": false,
  255. "_castShadow": false,
  256. "_receiveShadow": false,
  257. "_recieveShadow": false,
  258. "_lightmapSize": 64,
  259. "_useLightProbe": false,
  260. "_bakeToLightProbe": true,
  261. "_reflectionProbeType": 0,
  262. "_bakeToReflectionProbe": true
  263. },
  264. {
  265. "__type__": "cc.PrefabInfo",
  266. "root": {
  267. "__id__": 1
  268. },
  269. "asset": {
  270. "__id__": 0
  271. },
  272. "fileId": "7dU82yYL1OP6CZ6a8Tvyts",
  273. "instance": null,
  274. "targetOverrides": null,
  275. "nestedPrefabInstanceRoots": null
  276. },
  277. {
  278. "__type__": "cc.Node",
  279. "_name": "head",
  280. "_objFlags": 0,
  281. "__editorExtras__": {},
  282. "_parent": {
  283. "__id__": 2
  284. },
  285. "_children": [],
  286. "_active": true,
  287. "_components": [
  288. {
  289. "__id__": 9
  290. }
  291. ],
  292. "_prefab": {
  293. "__id__": 12
  294. },
  295. "_lpos": {
  296. "__type__": "cc.Vec3",
  297. "x": -0.003308181883767247,
  298. "y": 1.1260621547698975,
  299. "z": 4.784051418304443
  300. },
  301. "_lrot": {
  302. "__type__": "cc.Quat",
  303. "x": 0,
  304. "y": -0.7071067811865476,
  305. "z": 0,
  306. "w": 0.7071067811865476
  307. },
  308. "_lscale": {
  309. "__type__": "cc.Vec3",
  310. "x": 1,
  311. "y": 1,
  312. "z": 1
  313. },
  314. "_mobility": 0,
  315. "_layer": 1073741824,
  316. "_euler": {
  317. "__type__": "cc.Vec3",
  318. "x": 0,
  319. "y": -90.00000000000003,
  320. "z": 0
  321. },
  322. "_id": ""
  323. },
  324. {
  325. "__type__": "cc.MeshRenderer",
  326. "_name": "",
  327. "_objFlags": 0,
  328. "__editorExtras__": {},
  329. "node": {
  330. "__id__": 8
  331. },
  332. "_enabled": true,
  333. "__prefab": {
  334. "__id__": 10
  335. },
  336. "_materials": [
  337. {
  338. "__uuid__": "a799ee8b-9e17-4e80-8aa3-83530e748833",
  339. "__expectedType__": "cc.Material"
  340. }
  341. ],
  342. "_visFlags": 0,
  343. "bakeSettings": {
  344. "__id__": 11
  345. },
  346. "_mesh": {
  347. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@e97a2",
  348. "__expectedType__": "cc.Mesh"
  349. },
  350. "_shadowCastingMode": 1,
  351. "_shadowReceivingMode": 0,
  352. "_shadowBias": 0,
  353. "_shadowNormalBias": 0,
  354. "_reflectionProbeId": -1,
  355. "_reflectionProbeBlendId": -1,
  356. "_reflectionProbeBlendWeight": 0,
  357. "_enabledGlobalStandardSkinObject": false,
  358. "_enableMorph": true,
  359. "_id": ""
  360. },
  361. {
  362. "__type__": "cc.CompPrefabInfo",
  363. "fileId": "3aq8kxvUJYS5hVVb9jRVPh"
  364. },
  365. {
  366. "__type__": "cc.ModelBakeSettings",
  367. "texture": null,
  368. "uvParam": {
  369. "__type__": "cc.Vec4",
  370. "x": 0,
  371. "y": 0,
  372. "z": 0,
  373. "w": 0
  374. },
  375. "_bakeable": false,
  376. "_castShadow": false,
  377. "_receiveShadow": false,
  378. "_recieveShadow": false,
  379. "_lightmapSize": 64,
  380. "_useLightProbe": false,
  381. "_bakeToLightProbe": true,
  382. "_reflectionProbeType": 0,
  383. "_bakeToReflectionProbe": true
  384. },
  385. {
  386. "__type__": "cc.PrefabInfo",
  387. "root": {
  388. "__id__": 1
  389. },
  390. "asset": {
  391. "__id__": 0
  392. },
  393. "fileId": "f36DGfDYVDz42K/dtYuXcm",
  394. "instance": null,
  395. "targetOverrides": null,
  396. "nestedPrefabInstanceRoots": null
  397. },
  398. {
  399. "__type__": "cc.Node",
  400. "_name": "wing",
  401. "_objFlags": 0,
  402. "__editorExtras__": {},
  403. "_parent": {
  404. "__id__": 2
  405. },
  406. "_children": [],
  407. "_active": true,
  408. "_components": [
  409. {
  410. "__id__": 14
  411. }
  412. ],
  413. "_prefab": {
  414. "__id__": 17
  415. },
  416. "_lpos": {
  417. "__type__": "cc.Vec3",
  418. "x": 0,
  419. "y": 0,
  420. "z": 0
  421. },
  422. "_lrot": {
  423. "__type__": "cc.Quat",
  424. "x": 0,
  425. "y": 0,
  426. "z": 0,
  427. "w": 1
  428. },
  429. "_lscale": {
  430. "__type__": "cc.Vec3",
  431. "x": 1,
  432. "y": 1,
  433. "z": 1
  434. },
  435. "_mobility": 0,
  436. "_layer": 1073741824,
  437. "_euler": {
  438. "__type__": "cc.Vec3",
  439. "x": 0,
  440. "y": 0,
  441. "z": 0
  442. },
  443. "_id": ""
  444. },
  445. {
  446. "__type__": "cc.MeshRenderer",
  447. "_name": "",
  448. "_objFlags": 0,
  449. "__editorExtras__": {},
  450. "node": {
  451. "__id__": 13
  452. },
  453. "_enabled": true,
  454. "__prefab": {
  455. "__id__": 15
  456. },
  457. "_materials": [
  458. {
  459. "__uuid__": "4ee0351b-f3c5-4f66-bf67-bc200d276e09",
  460. "__expectedType__": "cc.Material"
  461. }
  462. ],
  463. "_visFlags": 0,
  464. "bakeSettings": {
  465. "__id__": 16
  466. },
  467. "_mesh": {
  468. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@f406e",
  469. "__expectedType__": "cc.Mesh"
  470. },
  471. "_shadowCastingMode": 1,
  472. "_shadowReceivingMode": 0,
  473. "_shadowBias": 0,
  474. "_shadowNormalBias": 0,
  475. "_reflectionProbeId": -1,
  476. "_reflectionProbeBlendId": -1,
  477. "_reflectionProbeBlendWeight": 0,
  478. "_enabledGlobalStandardSkinObject": false,
  479. "_enableMorph": true,
  480. "_id": ""
  481. },
  482. {
  483. "__type__": "cc.CompPrefabInfo",
  484. "fileId": "eanrxhRkFZRZgmOqZ0XlGI"
  485. },
  486. {
  487. "__type__": "cc.ModelBakeSettings",
  488. "texture": null,
  489. "uvParam": {
  490. "__type__": "cc.Vec4",
  491. "x": 0,
  492. "y": 0,
  493. "z": 0,
  494. "w": 0
  495. },
  496. "_bakeable": false,
  497. "_castShadow": false,
  498. "_receiveShadow": false,
  499. "_recieveShadow": false,
  500. "_lightmapSize": 64,
  501. "_useLightProbe": false,
  502. "_bakeToLightProbe": true,
  503. "_reflectionProbeType": 0,
  504. "_bakeToReflectionProbe": true
  505. },
  506. {
  507. "__type__": "cc.PrefabInfo",
  508. "root": {
  509. "__id__": 1
  510. },
  511. "asset": {
  512. "__id__": 0
  513. },
  514. "fileId": "2asRF5Q5xN3JsWdZcz/Y/f",
  515. "instance": null,
  516. "targetOverrides": null,
  517. "nestedPrefabInstanceRoots": null
  518. },
  519. {
  520. "__type__": "cc.Node",
  521. "_name": "tail",
  522. "_objFlags": 0,
  523. "__editorExtras__": {},
  524. "_parent": {
  525. "__id__": 2
  526. },
  527. "_children": [],
  528. "_active": true,
  529. "_components": [
  530. {
  531. "__id__": 19
  532. }
  533. ],
  534. "_prefab": {
  535. "__id__": 22
  536. },
  537. "_lpos": {
  538. "__type__": "cc.Vec3",
  539. "x": -0.003308181883767247,
  540. "y": 2.0119872093200684,
  541. "z": -3.946857452392578
  542. },
  543. "_lrot": {
  544. "__type__": "cc.Quat",
  545. "x": 0,
  546. "y": -0.7071067811865476,
  547. "z": 0,
  548. "w": 0.7071067811865476
  549. },
  550. "_lscale": {
  551. "__type__": "cc.Vec3",
  552. "x": 1,
  553. "y": 1,
  554. "z": 1
  555. },
  556. "_mobility": 0,
  557. "_layer": 1073741824,
  558. "_euler": {
  559. "__type__": "cc.Vec3",
  560. "x": 0,
  561. "y": -90.00000000000003,
  562. "z": 0
  563. },
  564. "_id": ""
  565. },
  566. {
  567. "__type__": "cc.MeshRenderer",
  568. "_name": "",
  569. "_objFlags": 0,
  570. "__editorExtras__": {},
  571. "node": {
  572. "__id__": 18
  573. },
  574. "_enabled": true,
  575. "__prefab": {
  576. "__id__": 20
  577. },
  578. "_materials": [
  579. {
  580. "__uuid__": "97e3585c-998e-4664-9644-07980755a751",
  581. "__expectedType__": "cc.Material"
  582. }
  583. ],
  584. "_visFlags": 0,
  585. "bakeSettings": {
  586. "__id__": 21
  587. },
  588. "_mesh": {
  589. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@3dce6",
  590. "__expectedType__": "cc.Mesh"
  591. },
  592. "_shadowCastingMode": 1,
  593. "_shadowReceivingMode": 0,
  594. "_shadowBias": 0,
  595. "_shadowNormalBias": 0,
  596. "_reflectionProbeId": -1,
  597. "_reflectionProbeBlendId": -1,
  598. "_reflectionProbeBlendWeight": 0,
  599. "_enabledGlobalStandardSkinObject": false,
  600. "_enableMorph": true,
  601. "_id": ""
  602. },
  603. {
  604. "__type__": "cc.CompPrefabInfo",
  605. "fileId": "f5kptzFOtfi5J4j5wg95lD"
  606. },
  607. {
  608. "__type__": "cc.ModelBakeSettings",
  609. "texture": null,
  610. "uvParam": {
  611. "__type__": "cc.Vec4",
  612. "x": 0,
  613. "y": 0,
  614. "z": 0,
  615. "w": 0
  616. },
  617. "_bakeable": false,
  618. "_castShadow": false,
  619. "_receiveShadow": false,
  620. "_recieveShadow": false,
  621. "_lightmapSize": 64,
  622. "_useLightProbe": false,
  623. "_bakeToLightProbe": true,
  624. "_reflectionProbeType": 0,
  625. "_bakeToReflectionProbe": true
  626. },
  627. {
  628. "__type__": "cc.PrefabInfo",
  629. "root": {
  630. "__id__": 1
  631. },
  632. "asset": {
  633. "__id__": 0
  634. },
  635. "fileId": "51OGBdME9IQZUDNttIvmFj",
  636. "instance": null,
  637. "targetOverrides": null,
  638. "nestedPrefabInstanceRoots": null
  639. },
  640. {
  641. "__type__": "cc.Node",
  642. "_name": "front_wheel",
  643. "_objFlags": 0,
  644. "__editorExtras__": {},
  645. "_parent": {
  646. "__id__": 2
  647. },
  648. "_children": [],
  649. "_active": true,
  650. "_components": [
  651. {
  652. "__id__": 24
  653. }
  654. ],
  655. "_prefab": {
  656. "__id__": 27
  657. },
  658. "_lpos": {
  659. "__type__": "cc.Vec3",
  660. "x": -0.003308181883767247,
  661. "y": 0.30924192070961,
  662. "z": 4.418238639831543
  663. },
  664. "_lrot": {
  665. "__type__": "cc.Quat",
  666. "x": 0,
  667. "y": -0.7071067811865476,
  668. "z": 0,
  669. "w": 0.7071067811865476
  670. },
  671. "_lscale": {
  672. "__type__": "cc.Vec3",
  673. "x": 1,
  674. "y": 1,
  675. "z": 1
  676. },
  677. "_mobility": 0,
  678. "_layer": 1073741824,
  679. "_euler": {
  680. "__type__": "cc.Vec3",
  681. "x": 0,
  682. "y": -90.00000000000003,
  683. "z": 0
  684. },
  685. "_id": ""
  686. },
  687. {
  688. "__type__": "cc.MeshRenderer",
  689. "_name": "",
  690. "_objFlags": 0,
  691. "__editorExtras__": {},
  692. "node": {
  693. "__id__": 23
  694. },
  695. "_enabled": true,
  696. "__prefab": {
  697. "__id__": 25
  698. },
  699. "_materials": [
  700. {
  701. "__uuid__": "d596f744-06e7-45d5-bd2b-7b6e984a8b72",
  702. "__expectedType__": "cc.Material"
  703. }
  704. ],
  705. "_visFlags": 0,
  706. "bakeSettings": {
  707. "__id__": 26
  708. },
  709. "_mesh": {
  710. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@3c369",
  711. "__expectedType__": "cc.Mesh"
  712. },
  713. "_shadowCastingMode": 0,
  714. "_shadowReceivingMode": 1,
  715. "_shadowBias": 0,
  716. "_shadowNormalBias": 0,
  717. "_reflectionProbeId": -1,
  718. "_reflectionProbeBlendId": -1,
  719. "_reflectionProbeBlendWeight": 0,
  720. "_enabledGlobalStandardSkinObject": false,
  721. "_enableMorph": true,
  722. "_id": ""
  723. },
  724. {
  725. "__type__": "cc.CompPrefabInfo",
  726. "fileId": "56W/RIw7RTh7FBA93Gr+SK"
  727. },
  728. {
  729. "__type__": "cc.ModelBakeSettings",
  730. "texture": null,
  731. "uvParam": {
  732. "__type__": "cc.Vec4",
  733. "x": 0,
  734. "y": 0,
  735. "z": 0,
  736. "w": 0
  737. },
  738. "_bakeable": false,
  739. "_castShadow": false,
  740. "_receiveShadow": false,
  741. "_recieveShadow": false,
  742. "_lightmapSize": 64,
  743. "_useLightProbe": false,
  744. "_bakeToLightProbe": true,
  745. "_reflectionProbeType": 0,
  746. "_bakeToReflectionProbe": true
  747. },
  748. {
  749. "__type__": "cc.PrefabInfo",
  750. "root": {
  751. "__id__": 1
  752. },
  753. "asset": {
  754. "__id__": 0
  755. },
  756. "fileId": "4fq48d+zFAsr/9MYBbESf9",
  757. "instance": null,
  758. "targetOverrides": null,
  759. "nestedPrefabInstanceRoots": null
  760. },
  761. {
  762. "__type__": "cc.Node",
  763. "_name": "right_wheel",
  764. "_objFlags": 0,
  765. "__editorExtras__": {},
  766. "_parent": {
  767. "__id__": 2
  768. },
  769. "_children": [],
  770. "_active": true,
  771. "_components": [
  772. {
  773. "__id__": 29
  774. }
  775. ],
  776. "_prefab": {
  777. "__id__": 32
  778. },
  779. "_lpos": {
  780. "__type__": "cc.Vec3",
  781. "x": -1.0531671047210693,
  782. "y": 0.49662405252456665,
  783. "z": 0.4185579717159271
  784. },
  785. "_lrot": {
  786. "__type__": "cc.Quat",
  787. "x": 0,
  788. "y": -0.7071067811865476,
  789. "z": 0,
  790. "w": 0.7071067811865476
  791. },
  792. "_lscale": {
  793. "__type__": "cc.Vec3",
  794. "x": 1,
  795. "y": 1,
  796. "z": 1
  797. },
  798. "_mobility": 0,
  799. "_layer": 1073741824,
  800. "_euler": {
  801. "__type__": "cc.Vec3",
  802. "x": 0,
  803. "y": -90.00000000000003,
  804. "z": 0
  805. },
  806. "_id": ""
  807. },
  808. {
  809. "__type__": "cc.MeshRenderer",
  810. "_name": "",
  811. "_objFlags": 0,
  812. "__editorExtras__": {},
  813. "node": {
  814. "__id__": 28
  815. },
  816. "_enabled": true,
  817. "__prefab": {
  818. "__id__": 30
  819. },
  820. "_materials": [
  821. {
  822. "__uuid__": "d596f744-06e7-45d5-bd2b-7b6e984a8b72",
  823. "__expectedType__": "cc.Material"
  824. }
  825. ],
  826. "_visFlags": 0,
  827. "bakeSettings": {
  828. "__id__": 31
  829. },
  830. "_mesh": {
  831. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@54610",
  832. "__expectedType__": "cc.Mesh"
  833. },
  834. "_shadowCastingMode": 0,
  835. "_shadowReceivingMode": 1,
  836. "_shadowBias": 0,
  837. "_shadowNormalBias": 0,
  838. "_reflectionProbeId": -1,
  839. "_reflectionProbeBlendId": -1,
  840. "_reflectionProbeBlendWeight": 0,
  841. "_enabledGlobalStandardSkinObject": false,
  842. "_enableMorph": true,
  843. "_id": ""
  844. },
  845. {
  846. "__type__": "cc.CompPrefabInfo",
  847. "fileId": "4d54f+pQZYcpw2vjuXtwWR"
  848. },
  849. {
  850. "__type__": "cc.ModelBakeSettings",
  851. "texture": null,
  852. "uvParam": {
  853. "__type__": "cc.Vec4",
  854. "x": 0,
  855. "y": 0,
  856. "z": 0,
  857. "w": 0
  858. },
  859. "_bakeable": false,
  860. "_castShadow": false,
  861. "_receiveShadow": false,
  862. "_recieveShadow": false,
  863. "_lightmapSize": 64,
  864. "_useLightProbe": false,
  865. "_bakeToLightProbe": true,
  866. "_reflectionProbeType": 0,
  867. "_bakeToReflectionProbe": true
  868. },
  869. {
  870. "__type__": "cc.PrefabInfo",
  871. "root": {
  872. "__id__": 1
  873. },
  874. "asset": {
  875. "__id__": 0
  876. },
  877. "fileId": "d7IH+P64FAuIxU+Q64vlpM",
  878. "instance": null,
  879. "targetOverrides": null,
  880. "nestedPrefabInstanceRoots": null
  881. },
  882. {
  883. "__type__": "cc.Node",
  884. "_name": "left_wheel",
  885. "_objFlags": 0,
  886. "__editorExtras__": {},
  887. "_parent": {
  888. "__id__": 2
  889. },
  890. "_children": [],
  891. "_active": true,
  892. "_components": [
  893. {
  894. "__id__": 34
  895. }
  896. ],
  897. "_prefab": {
  898. "__id__": 37
  899. },
  900. "_lpos": {
  901. "__type__": "cc.Vec3",
  902. "x": 1.0531666278839111,
  903. "y": 0.49662405252456665,
  904. "z": 0.4185579717159271
  905. },
  906. "_lrot": {
  907. "__type__": "cc.Quat",
  908. "x": 0,
  909. "y": -0.7071067811865476,
  910. "z": 0,
  911. "w": 0.7071067811865476
  912. },
  913. "_lscale": {
  914. "__type__": "cc.Vec3",
  915. "x": 1,
  916. "y": 1,
  917. "z": 1
  918. },
  919. "_mobility": 0,
  920. "_layer": 1073741824,
  921. "_euler": {
  922. "__type__": "cc.Vec3",
  923. "x": 0,
  924. "y": -90.00000000000003,
  925. "z": 0
  926. },
  927. "_id": ""
  928. },
  929. {
  930. "__type__": "cc.MeshRenderer",
  931. "_name": "",
  932. "_objFlags": 0,
  933. "__editorExtras__": {},
  934. "node": {
  935. "__id__": 33
  936. },
  937. "_enabled": true,
  938. "__prefab": {
  939. "__id__": 35
  940. },
  941. "_materials": [
  942. {
  943. "__uuid__": "d596f744-06e7-45d5-bd2b-7b6e984a8b72",
  944. "__expectedType__": "cc.Material"
  945. }
  946. ],
  947. "_visFlags": 0,
  948. "bakeSettings": {
  949. "__id__": 36
  950. },
  951. "_mesh": {
  952. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@ce2bd",
  953. "__expectedType__": "cc.Mesh"
  954. },
  955. "_shadowCastingMode": 0,
  956. "_shadowReceivingMode": 1,
  957. "_shadowBias": 0,
  958. "_shadowNormalBias": 0,
  959. "_reflectionProbeId": -1,
  960. "_reflectionProbeBlendId": -1,
  961. "_reflectionProbeBlendWeight": 0,
  962. "_enabledGlobalStandardSkinObject": false,
  963. "_enableMorph": true,
  964. "_id": ""
  965. },
  966. {
  967. "__type__": "cc.CompPrefabInfo",
  968. "fileId": "9fo25oFy1dto9XdNjbOZuf"
  969. },
  970. {
  971. "__type__": "cc.ModelBakeSettings",
  972. "texture": null,
  973. "uvParam": {
  974. "__type__": "cc.Vec4",
  975. "x": 0,
  976. "y": 0,
  977. "z": 0,
  978. "w": 0
  979. },
  980. "_bakeable": false,
  981. "_castShadow": false,
  982. "_receiveShadow": false,
  983. "_recieveShadow": false,
  984. "_lightmapSize": 64,
  985. "_useLightProbe": false,
  986. "_bakeToLightProbe": true,
  987. "_reflectionProbeType": 0,
  988. "_bakeToReflectionProbe": true
  989. },
  990. {
  991. "__type__": "cc.PrefabInfo",
  992. "root": {
  993. "__id__": 1
  994. },
  995. "asset": {
  996. "__id__": 0
  997. },
  998. "fileId": "d3oBNVgTZJLqf/e2Rz+qOR",
  999. "instance": null,
  1000. "targetOverrides": null,
  1001. "nestedPrefabInstanceRoots": null
  1002. },
  1003. {
  1004. "__type__": "cc.Node",
  1005. "_name": "beg_door",
  1006. "_objFlags": 0,
  1007. "__editorExtras__": {},
  1008. "_parent": {
  1009. "__id__": 2
  1010. },
  1011. "_children": [],
  1012. "_active": true,
  1013. "_components": [
  1014. {
  1015. "__id__": 39
  1016. }
  1017. ],
  1018. "_prefab": {
  1019. "__id__": 42
  1020. },
  1021. "_lpos": {
  1022. "__type__": "cc.Vec3",
  1023. "x": -0.5594533085823059,
  1024. "y": 1.1672163009643555,
  1025. "z": -1.3142017126083374
  1026. },
  1027. "_lrot": {
  1028. "__type__": "cc.Quat",
  1029. "x": 0,
  1030. "y": -0.7071067811865476,
  1031. "z": 0,
  1032. "w": 0.7071067811865476
  1033. },
  1034. "_lscale": {
  1035. "__type__": "cc.Vec3",
  1036. "x": 1,
  1037. "y": 1,
  1038. "z": 1
  1039. },
  1040. "_mobility": 0,
  1041. "_layer": 1073741824,
  1042. "_euler": {
  1043. "__type__": "cc.Vec3",
  1044. "x": 0,
  1045. "y": -90.00000000000003,
  1046. "z": 0
  1047. },
  1048. "_id": ""
  1049. },
  1050. {
  1051. "__type__": "cc.MeshRenderer",
  1052. "_name": "",
  1053. "_objFlags": 0,
  1054. "__editorExtras__": {},
  1055. "node": {
  1056. "__id__": 38
  1057. },
  1058. "_enabled": true,
  1059. "__prefab": {
  1060. "__id__": 40
  1061. },
  1062. "_materials": [
  1063. {
  1064. "__uuid__": "d596f744-06e7-45d5-bd2b-7b6e984a8b72",
  1065. "__expectedType__": "cc.Material"
  1066. }
  1067. ],
  1068. "_visFlags": 0,
  1069. "bakeSettings": {
  1070. "__id__": 41
  1071. },
  1072. "_mesh": {
  1073. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@18db0",
  1074. "__expectedType__": "cc.Mesh"
  1075. },
  1076. "_shadowCastingMode": 0,
  1077. "_shadowReceivingMode": 1,
  1078. "_shadowBias": 0,
  1079. "_shadowNormalBias": 0,
  1080. "_reflectionProbeId": -1,
  1081. "_reflectionProbeBlendId": -1,
  1082. "_reflectionProbeBlendWeight": 0,
  1083. "_enabledGlobalStandardSkinObject": false,
  1084. "_enableMorph": true,
  1085. "_id": ""
  1086. },
  1087. {
  1088. "__type__": "cc.CompPrefabInfo",
  1089. "fileId": "4fQLYsdEhWHY8YadJyylxc"
  1090. },
  1091. {
  1092. "__type__": "cc.ModelBakeSettings",
  1093. "texture": null,
  1094. "uvParam": {
  1095. "__type__": "cc.Vec4",
  1096. "x": 0,
  1097. "y": 0,
  1098. "z": 0,
  1099. "w": 0
  1100. },
  1101. "_bakeable": false,
  1102. "_castShadow": false,
  1103. "_receiveShadow": false,
  1104. "_recieveShadow": false,
  1105. "_lightmapSize": 64,
  1106. "_useLightProbe": false,
  1107. "_bakeToLightProbe": true,
  1108. "_reflectionProbeType": 0,
  1109. "_bakeToReflectionProbe": true
  1110. },
  1111. {
  1112. "__type__": "cc.PrefabInfo",
  1113. "root": {
  1114. "__id__": 1
  1115. },
  1116. "asset": {
  1117. "__id__": 0
  1118. },
  1119. "fileId": "bf8IC+WAFCj4XoDJUhyEWc",
  1120. "instance": null,
  1121. "targetOverrides": null,
  1122. "nestedPrefabInstanceRoots": null
  1123. },
  1124. {
  1125. "__type__": "cc.Node",
  1126. "_name": "oil_door",
  1127. "_objFlags": 0,
  1128. "__editorExtras__": {},
  1129. "_parent": {
  1130. "__id__": 2
  1131. },
  1132. "_children": [],
  1133. "_active": true,
  1134. "_components": [
  1135. {
  1136. "__id__": 44
  1137. }
  1138. ],
  1139. "_prefab": {
  1140. "__id__": 47
  1141. },
  1142. "_lpos": {
  1143. "__type__": "cc.Vec3",
  1144. "x": -0.4532390236854553,
  1145. "y": 0.7700691223144531,
  1146. "z": 2.344407558441162
  1147. },
  1148. "_lrot": {
  1149. "__type__": "cc.Quat",
  1150. "x": 0.21263111152660683,
  1151. "y": -0.6743797227163342,
  1152. "z": 0.21263111152660683,
  1153. "w": 0.6743797227163342
  1154. },
  1155. "_lscale": {
  1156. "__type__": "cc.Vec3",
  1157. "x": 1,
  1158. "y": 1,
  1159. "z": 1
  1160. },
  1161. "_mobility": 0,
  1162. "_layer": 1073741824,
  1163. "_euler": {
  1164. "__type__": "cc.Vec3",
  1165. "x": 35.00000026423001,
  1166. "y": -90.00000000000003,
  1167. "z": 0
  1168. },
  1169. "_id": ""
  1170. },
  1171. {
  1172. "__type__": "cc.MeshRenderer",
  1173. "_name": "",
  1174. "_objFlags": 0,
  1175. "__editorExtras__": {},
  1176. "node": {
  1177. "__id__": 43
  1178. },
  1179. "_enabled": true,
  1180. "__prefab": {
  1181. "__id__": 45
  1182. },
  1183. "_materials": [
  1184. {
  1185. "__uuid__": "d596f744-06e7-45d5-bd2b-7b6e984a8b72",
  1186. "__expectedType__": "cc.Material"
  1187. }
  1188. ],
  1189. "_visFlags": 0,
  1190. "bakeSettings": {
  1191. "__id__": 46
  1192. },
  1193. "_mesh": {
  1194. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@6dd27",
  1195. "__expectedType__": "cc.Mesh"
  1196. },
  1197. "_shadowCastingMode": 0,
  1198. "_shadowReceivingMode": 1,
  1199. "_shadowBias": 0,
  1200. "_shadowNormalBias": 0,
  1201. "_reflectionProbeId": -1,
  1202. "_reflectionProbeBlendId": -1,
  1203. "_reflectionProbeBlendWeight": 0,
  1204. "_enabledGlobalStandardSkinObject": false,
  1205. "_enableMorph": true,
  1206. "_id": ""
  1207. },
  1208. {
  1209. "__type__": "cc.CompPrefabInfo",
  1210. "fileId": "90buwaXn1WGKSimoyGAVt9"
  1211. },
  1212. {
  1213. "__type__": "cc.ModelBakeSettings",
  1214. "texture": null,
  1215. "uvParam": {
  1216. "__type__": "cc.Vec4",
  1217. "x": 0,
  1218. "y": 0,
  1219. "z": 0,
  1220. "w": 0
  1221. },
  1222. "_bakeable": false,
  1223. "_castShadow": false,
  1224. "_receiveShadow": false,
  1225. "_recieveShadow": false,
  1226. "_lightmapSize": 64,
  1227. "_useLightProbe": false,
  1228. "_bakeToLightProbe": true,
  1229. "_reflectionProbeType": 0,
  1230. "_bakeToReflectionProbe": true
  1231. },
  1232. {
  1233. "__type__": "cc.PrefabInfo",
  1234. "root": {
  1235. "__id__": 1
  1236. },
  1237. "asset": {
  1238. "__id__": 0
  1239. },
  1240. "fileId": "afOSdmUZ5HhY3R4EOH6Woa",
  1241. "instance": null,
  1242. "targetOverrides": null,
  1243. "nestedPrefabInstanceRoots": null
  1244. },
  1245. {
  1246. "__type__": "cc.Node",
  1247. "_name": "right_wheel_1",
  1248. "_objFlags": 0,
  1249. "__editorExtras__": {},
  1250. "_parent": {
  1251. "__id__": 2
  1252. },
  1253. "_children": [],
  1254. "_active": true,
  1255. "_components": [
  1256. {
  1257. "__id__": 49
  1258. }
  1259. ],
  1260. "_prefab": {
  1261. "__id__": 52
  1262. },
  1263. "_lpos": {
  1264. "__type__": "cc.Vec3",
  1265. "x": 0.1807963103055954,
  1266. "y": 0.49662405252456665,
  1267. "z": 0.4185579717159271
  1268. },
  1269. "_lrot": {
  1270. "__type__": "cc.Quat",
  1271. "x": 0,
  1272. "y": -0.7071067811865476,
  1273. "z": 0,
  1274. "w": 0.7071067811865476
  1275. },
  1276. "_lscale": {
  1277. "__type__": "cc.Vec3",
  1278. "x": 1,
  1279. "y": 1,
  1280. "z": 1
  1281. },
  1282. "_mobility": 0,
  1283. "_layer": 1073741824,
  1284. "_euler": {
  1285. "__type__": "cc.Vec3",
  1286. "x": 0,
  1287. "y": -90.00000000000003,
  1288. "z": 0
  1289. },
  1290. "_id": ""
  1291. },
  1292. {
  1293. "__type__": "cc.MeshRenderer",
  1294. "_name": "",
  1295. "_objFlags": 0,
  1296. "__editorExtras__": {},
  1297. "node": {
  1298. "__id__": 48
  1299. },
  1300. "_enabled": true,
  1301. "__prefab": {
  1302. "__id__": 50
  1303. },
  1304. "_materials": [
  1305. {
  1306. "__uuid__": "d596f744-06e7-45d5-bd2b-7b6e984a8b72",
  1307. "__expectedType__": "cc.Material"
  1308. }
  1309. ],
  1310. "_visFlags": 0,
  1311. "bakeSettings": {
  1312. "__id__": 51
  1313. },
  1314. "_mesh": {
  1315. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@d1c6e",
  1316. "__expectedType__": "cc.Mesh"
  1317. },
  1318. "_shadowCastingMode": 0,
  1319. "_shadowReceivingMode": 1,
  1320. "_shadowBias": 0,
  1321. "_shadowNormalBias": 0,
  1322. "_reflectionProbeId": -1,
  1323. "_reflectionProbeBlendId": -1,
  1324. "_reflectionProbeBlendWeight": 0,
  1325. "_enabledGlobalStandardSkinObject": false,
  1326. "_enableMorph": true,
  1327. "_id": ""
  1328. },
  1329. {
  1330. "__type__": "cc.CompPrefabInfo",
  1331. "fileId": "9b+Z3BldZaypJ+9TjuReTZ"
  1332. },
  1333. {
  1334. "__type__": "cc.ModelBakeSettings",
  1335. "texture": null,
  1336. "uvParam": {
  1337. "__type__": "cc.Vec4",
  1338. "x": 0,
  1339. "y": 0,
  1340. "z": 0,
  1341. "w": 0
  1342. },
  1343. "_bakeable": false,
  1344. "_castShadow": false,
  1345. "_receiveShadow": false,
  1346. "_recieveShadow": false,
  1347. "_lightmapSize": 64,
  1348. "_useLightProbe": false,
  1349. "_bakeToLightProbe": true,
  1350. "_reflectionProbeType": 0,
  1351. "_bakeToReflectionProbe": true
  1352. },
  1353. {
  1354. "__type__": "cc.PrefabInfo",
  1355. "root": {
  1356. "__id__": 1
  1357. },
  1358. "asset": {
  1359. "__id__": 0
  1360. },
  1361. "fileId": "38eV48jiFNNYX3NsVrup68",
  1362. "instance": null,
  1363. "targetOverrides": null,
  1364. "nestedPrefabInstanceRoots": null
  1365. },
  1366. {
  1367. "__type__": "cc.Node",
  1368. "_name": "right_wheel_2",
  1369. "_objFlags": 0,
  1370. "__editorExtras__": {},
  1371. "_parent": {
  1372. "__id__": 2
  1373. },
  1374. "_children": [],
  1375. "_active": true,
  1376. "_components": [
  1377. {
  1378. "__id__": 54
  1379. }
  1380. ],
  1381. "_prefab": {
  1382. "__id__": 57
  1383. },
  1384. "_lpos": {
  1385. "__type__": "cc.Vec3",
  1386. "x": -0.2175033986568451,
  1387. "y": 0.49662405252456665,
  1388. "z": 0.4185579717159271
  1389. },
  1390. "_lrot": {
  1391. "__type__": "cc.Quat",
  1392. "x": 0,
  1393. "y": -0.7071067811865476,
  1394. "z": 0,
  1395. "w": 0.7071067811865476
  1396. },
  1397. "_lscale": {
  1398. "__type__": "cc.Vec3",
  1399. "x": 1,
  1400. "y": 1,
  1401. "z": 1
  1402. },
  1403. "_mobility": 0,
  1404. "_layer": 1073741824,
  1405. "_euler": {
  1406. "__type__": "cc.Vec3",
  1407. "x": 0,
  1408. "y": -90.00000000000003,
  1409. "z": 0
  1410. },
  1411. "_id": ""
  1412. },
  1413. {
  1414. "__type__": "cc.MeshRenderer",
  1415. "_name": "",
  1416. "_objFlags": 0,
  1417. "__editorExtras__": {},
  1418. "node": {
  1419. "__id__": 53
  1420. },
  1421. "_enabled": true,
  1422. "__prefab": {
  1423. "__id__": 55
  1424. },
  1425. "_materials": [
  1426. {
  1427. "__uuid__": "d596f744-06e7-45d5-bd2b-7b6e984a8b72",
  1428. "__expectedType__": "cc.Material"
  1429. }
  1430. ],
  1431. "_visFlags": 0,
  1432. "bakeSettings": {
  1433. "__id__": 56
  1434. },
  1435. "_mesh": {
  1436. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@14e70",
  1437. "__expectedType__": "cc.Mesh"
  1438. },
  1439. "_shadowCastingMode": 0,
  1440. "_shadowReceivingMode": 1,
  1441. "_shadowBias": 0,
  1442. "_shadowNormalBias": 0,
  1443. "_reflectionProbeId": -1,
  1444. "_reflectionProbeBlendId": -1,
  1445. "_reflectionProbeBlendWeight": 0,
  1446. "_enabledGlobalStandardSkinObject": false,
  1447. "_enableMorph": true,
  1448. "_id": ""
  1449. },
  1450. {
  1451. "__type__": "cc.CompPrefabInfo",
  1452. "fileId": "cbqA1SRj9Uc4/Jxax6CB0u"
  1453. },
  1454. {
  1455. "__type__": "cc.ModelBakeSettings",
  1456. "texture": null,
  1457. "uvParam": {
  1458. "__type__": "cc.Vec4",
  1459. "x": 0,
  1460. "y": 0,
  1461. "z": 0,
  1462. "w": 0
  1463. },
  1464. "_bakeable": false,
  1465. "_castShadow": false,
  1466. "_receiveShadow": false,
  1467. "_recieveShadow": false,
  1468. "_lightmapSize": 64,
  1469. "_useLightProbe": false,
  1470. "_bakeToLightProbe": true,
  1471. "_reflectionProbeType": 0,
  1472. "_bakeToReflectionProbe": true
  1473. },
  1474. {
  1475. "__type__": "cc.PrefabInfo",
  1476. "root": {
  1477. "__id__": 1
  1478. },
  1479. "asset": {
  1480. "__id__": 0
  1481. },
  1482. "fileId": "2dru/QxWdCWKwoFP84m1Nb",
  1483. "instance": null,
  1484. "targetOverrides": null,
  1485. "nestedPrefabInstanceRoots": null
  1486. },
  1487. {
  1488. "__type__": "cc.Node",
  1489. "_name": "right_wheel_3",
  1490. "_objFlags": 0,
  1491. "__editorExtras__": {},
  1492. "_parent": {
  1493. "__id__": 2
  1494. },
  1495. "_children": [],
  1496. "_active": true,
  1497. "_components": [
  1498. {
  1499. "__id__": 59
  1500. }
  1501. ],
  1502. "_prefab": {
  1503. "__id__": 62
  1504. },
  1505. "_lpos": {
  1506. "__type__": "cc.Vec3",
  1507. "x": 0.1807963103055954,
  1508. "y": 0.49662405252456665,
  1509. "z": 1.0094701051712036
  1510. },
  1511. "_lrot": {
  1512. "__type__": "cc.Quat",
  1513. "x": 0,
  1514. "y": -0.7071067811865476,
  1515. "z": 0,
  1516. "w": 0.7071067811865476
  1517. },
  1518. "_lscale": {
  1519. "__type__": "cc.Vec3",
  1520. "x": 1,
  1521. "y": 1,
  1522. "z": 1
  1523. },
  1524. "_mobility": 0,
  1525. "_layer": 1073741824,
  1526. "_euler": {
  1527. "__type__": "cc.Vec3",
  1528. "x": 0,
  1529. "y": -90.00000000000003,
  1530. "z": 0
  1531. },
  1532. "_id": ""
  1533. },
  1534. {
  1535. "__type__": "cc.MeshRenderer",
  1536. "_name": "",
  1537. "_objFlags": 0,
  1538. "__editorExtras__": {},
  1539. "node": {
  1540. "__id__": 58
  1541. },
  1542. "_enabled": true,
  1543. "__prefab": {
  1544. "__id__": 60
  1545. },
  1546. "_materials": [
  1547. {
  1548. "__uuid__": "d596f744-06e7-45d5-bd2b-7b6e984a8b72",
  1549. "__expectedType__": "cc.Material"
  1550. }
  1551. ],
  1552. "_visFlags": 0,
  1553. "bakeSettings": {
  1554. "__id__": 61
  1555. },
  1556. "_mesh": {
  1557. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@b2375",
  1558. "__expectedType__": "cc.Mesh"
  1559. },
  1560. "_shadowCastingMode": 0,
  1561. "_shadowReceivingMode": 1,
  1562. "_shadowBias": 0,
  1563. "_shadowNormalBias": 0,
  1564. "_reflectionProbeId": -1,
  1565. "_reflectionProbeBlendId": -1,
  1566. "_reflectionProbeBlendWeight": 0,
  1567. "_enabledGlobalStandardSkinObject": false,
  1568. "_enableMorph": true,
  1569. "_id": ""
  1570. },
  1571. {
  1572. "__type__": "cc.CompPrefabInfo",
  1573. "fileId": "edDctsv4RVSIDDDGnSikmQ"
  1574. },
  1575. {
  1576. "__type__": "cc.ModelBakeSettings",
  1577. "texture": null,
  1578. "uvParam": {
  1579. "__type__": "cc.Vec4",
  1580. "x": 0,
  1581. "y": 0,
  1582. "z": 0,
  1583. "w": 0
  1584. },
  1585. "_bakeable": false,
  1586. "_castShadow": false,
  1587. "_receiveShadow": false,
  1588. "_recieveShadow": false,
  1589. "_lightmapSize": 64,
  1590. "_useLightProbe": false,
  1591. "_bakeToLightProbe": true,
  1592. "_reflectionProbeType": 0,
  1593. "_bakeToReflectionProbe": true
  1594. },
  1595. {
  1596. "__type__": "cc.PrefabInfo",
  1597. "root": {
  1598. "__id__": 1
  1599. },
  1600. "asset": {
  1601. "__id__": 0
  1602. },
  1603. "fileId": "1elM3ooM5M84cks7QUCEBT",
  1604. "instance": null,
  1605. "targetOverrides": null,
  1606. "nestedPrefabInstanceRoots": null
  1607. },
  1608. {
  1609. "__type__": "cc.Node",
  1610. "_name": "right_wheel_4",
  1611. "_objFlags": 0,
  1612. "__editorExtras__": {},
  1613. "_parent": {
  1614. "__id__": 2
  1615. },
  1616. "_children": [],
  1617. "_active": true,
  1618. "_components": [
  1619. {
  1620. "__id__": 64
  1621. }
  1622. ],
  1623. "_prefab": {
  1624. "__id__": 67
  1625. },
  1626. "_lpos": {
  1627. "__type__": "cc.Vec3",
  1628. "x": -0.2175033986568451,
  1629. "y": 0.49662405252456665,
  1630. "z": 1.0094701051712036
  1631. },
  1632. "_lrot": {
  1633. "__type__": "cc.Quat",
  1634. "x": 0,
  1635. "y": -0.7071067811865476,
  1636. "z": 0,
  1637. "w": 0.7071067811865476
  1638. },
  1639. "_lscale": {
  1640. "__type__": "cc.Vec3",
  1641. "x": 1,
  1642. "y": 1,
  1643. "z": 1
  1644. },
  1645. "_mobility": 0,
  1646. "_layer": 1073741824,
  1647. "_euler": {
  1648. "__type__": "cc.Vec3",
  1649. "x": 0,
  1650. "y": -90.00000000000003,
  1651. "z": 0
  1652. },
  1653. "_id": ""
  1654. },
  1655. {
  1656. "__type__": "cc.MeshRenderer",
  1657. "_name": "",
  1658. "_objFlags": 0,
  1659. "__editorExtras__": {},
  1660. "node": {
  1661. "__id__": 63
  1662. },
  1663. "_enabled": true,
  1664. "__prefab": {
  1665. "__id__": 65
  1666. },
  1667. "_materials": [
  1668. {
  1669. "__uuid__": "d596f744-06e7-45d5-bd2b-7b6e984a8b72",
  1670. "__expectedType__": "cc.Material"
  1671. }
  1672. ],
  1673. "_visFlags": 0,
  1674. "bakeSettings": {
  1675. "__id__": 66
  1676. },
  1677. "_mesh": {
  1678. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@ce279",
  1679. "__expectedType__": "cc.Mesh"
  1680. },
  1681. "_shadowCastingMode": 0,
  1682. "_shadowReceivingMode": 1,
  1683. "_shadowBias": 0,
  1684. "_shadowNormalBias": 0,
  1685. "_reflectionProbeId": -1,
  1686. "_reflectionProbeBlendId": -1,
  1687. "_reflectionProbeBlendWeight": 0,
  1688. "_enabledGlobalStandardSkinObject": false,
  1689. "_enableMorph": true,
  1690. "_id": ""
  1691. },
  1692. {
  1693. "__type__": "cc.CompPrefabInfo",
  1694. "fileId": "00Gq1kp+ZWgK01KM/iwlOc"
  1695. },
  1696. {
  1697. "__type__": "cc.ModelBakeSettings",
  1698. "texture": null,
  1699. "uvParam": {
  1700. "__type__": "cc.Vec4",
  1701. "x": 0,
  1702. "y": 0,
  1703. "z": 0,
  1704. "w": 0
  1705. },
  1706. "_bakeable": false,
  1707. "_castShadow": false,
  1708. "_receiveShadow": false,
  1709. "_recieveShadow": false,
  1710. "_lightmapSize": 64,
  1711. "_useLightProbe": false,
  1712. "_bakeToLightProbe": true,
  1713. "_reflectionProbeType": 0,
  1714. "_bakeToReflectionProbe": true
  1715. },
  1716. {
  1717. "__type__": "cc.PrefabInfo",
  1718. "root": {
  1719. "__id__": 1
  1720. },
  1721. "asset": {
  1722. "__id__": 0
  1723. },
  1724. "fileId": "23/x3eZuBCgZh0rSeqN4Ny",
  1725. "instance": null,
  1726. "targetOverrides": null,
  1727. "nestedPrefabInstanceRoots": null
  1728. },
  1729. {
  1730. "__type__": "cc.Node",
  1731. "_name": "light",
  1732. "_objFlags": 0,
  1733. "__editorExtras__": {},
  1734. "_parent": {
  1735. "__id__": 2
  1736. },
  1737. "_children": [],
  1738. "_active": false,
  1739. "_components": [
  1740. {
  1741. "__id__": 69
  1742. }
  1743. ],
  1744. "_prefab": {
  1745. "__id__": 72
  1746. },
  1747. "_lpos": {
  1748. "__type__": "cc.Vec3",
  1749. "x": 0,
  1750. "y": 0.15,
  1751. "z": 10.41
  1752. },
  1753. "_lrot": {
  1754. "__type__": "cc.Quat",
  1755. "x": -4.329780281177466e-17,
  1756. "y": -0.7071067811865476,
  1757. "z": -0.7071067811865475,
  1758. "w": 4.329780281177467e-17
  1759. },
  1760. "_lscale": {
  1761. "__type__": "cc.Vec3",
  1762. "x": 12.463,
  1763. "y": 11.756,
  1764. "z": 9.174
  1765. },
  1766. "_mobility": 0,
  1767. "_layer": 1073741824,
  1768. "_euler": {
  1769. "__type__": "cc.Vec3",
  1770. "x": -90,
  1771. "y": -180,
  1772. "z": 0
  1773. },
  1774. "_id": ""
  1775. },
  1776. {
  1777. "__type__": "cc.MeshRenderer",
  1778. "_name": "",
  1779. "_objFlags": 0,
  1780. "__editorExtras__": {},
  1781. "node": {
  1782. "__id__": 68
  1783. },
  1784. "_enabled": true,
  1785. "__prefab": {
  1786. "__id__": 70
  1787. },
  1788. "_materials": [
  1789. null
  1790. ],
  1791. "_visFlags": 0,
  1792. "bakeSettings": {
  1793. "__id__": 71
  1794. },
  1795. "_mesh": {
  1796. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@fc873",
  1797. "__expectedType__": "cc.Mesh"
  1798. },
  1799. "_shadowCastingMode": 0,
  1800. "_shadowReceivingMode": 1,
  1801. "_shadowBias": 0,
  1802. "_shadowNormalBias": 0,
  1803. "_reflectionProbeId": -1,
  1804. "_reflectionProbeBlendId": -1,
  1805. "_reflectionProbeBlendWeight": 0,
  1806. "_enabledGlobalStandardSkinObject": false,
  1807. "_enableMorph": true,
  1808. "_id": ""
  1809. },
  1810. {
  1811. "__type__": "cc.CompPrefabInfo",
  1812. "fileId": "a4ZfO2SuZECokmd58jtubR"
  1813. },
  1814. {
  1815. "__type__": "cc.ModelBakeSettings",
  1816. "texture": null,
  1817. "uvParam": {
  1818. "__type__": "cc.Vec4",
  1819. "x": 0,
  1820. "y": 0,
  1821. "z": 0,
  1822. "w": 0
  1823. },
  1824. "_bakeable": false,
  1825. "_castShadow": false,
  1826. "_receiveShadow": false,
  1827. "_recieveShadow": false,
  1828. "_lightmapSize": 64,
  1829. "_useLightProbe": false,
  1830. "_bakeToLightProbe": true,
  1831. "_reflectionProbeType": 0,
  1832. "_bakeToReflectionProbe": true
  1833. },
  1834. {
  1835. "__type__": "cc.PrefabInfo",
  1836. "root": {
  1837. "__id__": 1
  1838. },
  1839. "asset": {
  1840. "__id__": 0
  1841. },
  1842. "fileId": "e7wu2fSSNF+aJPo0yBqgNm",
  1843. "instance": null,
  1844. "targetOverrides": null,
  1845. "nestedPrefabInstanceRoots": null
  1846. },
  1847. {
  1848. "__type__": "cc.MeshRenderer",
  1849. "_name": "",
  1850. "_objFlags": 0,
  1851. "__editorExtras__": {},
  1852. "node": {
  1853. "__id__": 2
  1854. },
  1855. "_enabled": true,
  1856. "__prefab": {
  1857. "__id__": 74
  1858. },
  1859. "_materials": [
  1860. {
  1861. "__uuid__": "43b80103-bb28-42b6-957d-565281c3d499",
  1862. "__expectedType__": "cc.Material"
  1863. }
  1864. ],
  1865. "_visFlags": 0,
  1866. "bakeSettings": {
  1867. "__id__": 75
  1868. },
  1869. "_mesh": {
  1870. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@5e001",
  1871. "__expectedType__": "cc.Mesh"
  1872. },
  1873. "_shadowCastingMode": 1,
  1874. "_shadowReceivingMode": 0,
  1875. "_shadowBias": 0,
  1876. "_shadowNormalBias": 0,
  1877. "_reflectionProbeId": -1,
  1878. "_reflectionProbeBlendId": -1,
  1879. "_reflectionProbeBlendWeight": 0,
  1880. "_enabledGlobalStandardSkinObject": false,
  1881. "_enableMorph": true,
  1882. "_id": ""
  1883. },
  1884. {
  1885. "__type__": "cc.CompPrefabInfo",
  1886. "fileId": "c40NUW7xlTGqY6vbLcvEHv"
  1887. },
  1888. {
  1889. "__type__": "cc.ModelBakeSettings",
  1890. "texture": null,
  1891. "uvParam": {
  1892. "__type__": "cc.Vec4",
  1893. "x": 0,
  1894. "y": 0,
  1895. "z": 0,
  1896. "w": 0
  1897. },
  1898. "_bakeable": false,
  1899. "_castShadow": false,
  1900. "_receiveShadow": false,
  1901. "_recieveShadow": false,
  1902. "_lightmapSize": 64,
  1903. "_useLightProbe": false,
  1904. "_bakeToLightProbe": true,
  1905. "_reflectionProbeType": 0,
  1906. "_bakeToReflectionProbe": true
  1907. },
  1908. {
  1909. "__type__": "cc.PrefabInfo",
  1910. "root": {
  1911. "__id__": 1
  1912. },
  1913. "asset": {
  1914. "__id__": 0
  1915. },
  1916. "fileId": "2aUFrJe3BPZL/VOP5ZwW9j",
  1917. "instance": null,
  1918. "targetOverrides": null,
  1919. "nestedPrefabInstanceRoots": null
  1920. },
  1921. {
  1922. "__type__": "cc.RigidBody",
  1923. "_name": "",
  1924. "_objFlags": 0,
  1925. "__editorExtras__": {},
  1926. "node": {
  1927. "__id__": 1
  1928. },
  1929. "_enabled": true,
  1930. "__prefab": {
  1931. "__id__": 78
  1932. },
  1933. "_group": 1,
  1934. "_type": 1,
  1935. "_mass": 1,
  1936. "_allowSleep": true,
  1937. "_linearDamping": 0.1,
  1938. "_angularDamping": 0.5,
  1939. "_useGravity": false,
  1940. "_linearFactor": {
  1941. "__type__": "cc.Vec3",
  1942. "x": 1,
  1943. "y": 0,
  1944. "z": 1
  1945. },
  1946. "_angularFactor": {
  1947. "__type__": "cc.Vec3",
  1948. "x": 0,
  1949. "y": 0.1,
  1950. "z": 0
  1951. },
  1952. "_id": ""
  1953. },
  1954. {
  1955. "__type__": "cc.CompPrefabInfo",
  1956. "fileId": "e2EzZKtGpAo7dpX0LrBOml"
  1957. },
  1958. {
  1959. "__type__": "cc.MeshCollider",
  1960. "_name": "",
  1961. "_objFlags": 0,
  1962. "__editorExtras__": {},
  1963. "node": {
  1964. "__id__": 1
  1965. },
  1966. "_enabled": true,
  1967. "__prefab": {
  1968. "__id__": 80
  1969. },
  1970. "_material": null,
  1971. "_isTrigger": false,
  1972. "_center": {
  1973. "__type__": "cc.Vec3",
  1974. "x": 0,
  1975. "y": 0,
  1976. "z": 0
  1977. },
  1978. "_mesh": {
  1979. "__uuid__": "a32165fa-9398-401a-ad18-6092d3dfd927@5e001",
  1980. "__expectedType__": "cc.Mesh"
  1981. },
  1982. "_convex": true,
  1983. "_id": ""
  1984. },
  1985. {
  1986. "__type__": "cc.CompPrefabInfo",
  1987. "fileId": "9dzi9wQEhF+pg2sVRodR2I"
  1988. },
  1989. {
  1990. "__type__": "cc.PrefabInfo",
  1991. "root": {
  1992. "__id__": 1
  1993. },
  1994. "asset": {
  1995. "__id__": 0
  1996. },
  1997. "fileId": "b0wG4guwZJCb2/3xP3Kho0",
  1998. "instance": null,
  1999. "targetOverrides": null
  2000. }
  2001. ]