scene.scene 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_name": "scene",
  14. "_objFlags": 0,
  15. "_parent": null,
  16. "_children": [
  17. {
  18. "__id__": 2
  19. },
  20. {
  21. "__id__": 191
  22. },
  23. {
  24. "__id__": 3
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [],
  29. "_prefab": null,
  30. "autoReleaseAssets": false,
  31. "_globals": {
  32. "__id__": 193
  33. },
  34. "_id": "6fd6f5f4-ecf7-4958-b3a7-42206211cdc6"
  35. },
  36. {
  37. "__type__": "cc.Node",
  38. "_name": "Main Light",
  39. "_objFlags": 0,
  40. "__editorExtras__": {
  41. "mountedRoot": {
  42. "__id__": 3
  43. }
  44. },
  45. "_parent": {
  46. "__id__": 1
  47. },
  48. "_children": [],
  49. "_active": true,
  50. "_components": [
  51. {
  52. "__id__": 189
  53. }
  54. ],
  55. "_prefab": null,
  56. "_lpos": {
  57. "__type__": "cc.Vec3",
  58. "x": 59.046,
  59. "y": 88.683,
  60. "z": 22.288
  61. },
  62. "_lrot": {
  63. "__type__": "cc.Quat",
  64. "x": -0.09229595564125728,
  65. "y": 0.6532814824381882,
  66. "z": 0.27059805007309845,
  67. "w": 0.7010573846499779
  68. },
  69. "_lscale": {
  70. "__type__": "cc.Vec3",
  71. "x": 0.9999999999999997,
  72. "y": 1,
  73. "z": 1.0000000000000004
  74. },
  75. "_layer": 1073741824,
  76. "_euler": {
  77. "__type__": "cc.Vec3",
  78. "x": -30,
  79. "y": 90,
  80. "z": 15
  81. },
  82. "_id": "c0y6F5f+pAvI805TdmxIjx"
  83. },
  84. {
  85. "__type__": "cc.Node",
  86. "_name": "Hip",
  87. "_objFlags": 512,
  88. "_parent": {
  89. "__id__": 1
  90. },
  91. "_children": [
  92. {
  93. "__id__": 4
  94. },
  95. {
  96. "__id__": 8
  97. },
  98. {
  99. "__id__": 18
  100. },
  101. {
  102. "__id__": 125
  103. },
  104. {
  105. "__id__": 172
  106. }
  107. ],
  108. "_active": true,
  109. "_components": [
  110. {
  111. "__id__": 187
  112. },
  113. {
  114. "__id__": 188
  115. }
  116. ],
  117. "_prefab": null,
  118. "_lpos": {
  119. "__type__": "cc.Vec3",
  120. "x": 10.447,
  121. "y": 28.875,
  122. "z": 1
  123. },
  124. "_lrot": {
  125. "__type__": "cc.Quat",
  126. "x": 0,
  127. "y": 0,
  128. "z": 0,
  129. "w": 1
  130. },
  131. "_lscale": {
  132. "__type__": "cc.Vec3",
  133. "x": 1,
  134. "y": 1,
  135. "z": 1
  136. },
  137. "_layer": 1073741824,
  138. "_euler": {
  139. "__type__": "cc.Vec3",
  140. "x": 0,
  141. "y": 0,
  142. "z": 0
  143. },
  144. "_id": "d5lcyXR6xASIgmyyJK/3Hg"
  145. },
  146. {
  147. "__type__": "cc.Node",
  148. "_name": "Node-0",
  149. "_objFlags": 0,
  150. "_parent": {
  151. "__id__": 3
  152. },
  153. "_children": [],
  154. "_active": true,
  155. "_components": [
  156. {
  157. "__id__": 5
  158. }
  159. ],
  160. "_prefab": null,
  161. "_lpos": {
  162. "__type__": "cc.Vec3",
  163. "x": 1.14175,
  164. "y": 0,
  165. "z": 0
  166. },
  167. "_lrot": {
  168. "__type__": "cc.Quat",
  169. "x": 0,
  170. "y": 0.3826834323650898,
  171. "z": 0,
  172. "w": 0.9238795325112867
  173. },
  174. "_lscale": {
  175. "__type__": "cc.Vec3",
  176. "x": 1,
  177. "y": 1,
  178. "z": 1
  179. },
  180. "_layer": 1073741824,
  181. "_euler": {
  182. "__type__": "cc.Vec3",
  183. "x": 0,
  184. "y": 45,
  185. "z": 0
  186. },
  187. "_id": "ccpx5raO1Bw67ysOdqO+IT"
  188. },
  189. {
  190. "__type__": "cc.MeshRenderer",
  191. "_name": "",
  192. "_objFlags": 0,
  193. "node": {
  194. "__id__": 4
  195. },
  196. "_enabled": true,
  197. "__prefab": {
  198. "__id__": 6
  199. },
  200. "_materials": [
  201. {
  202. "__uuid__": "85148354-7860-43eb-a2e8-6b9a106093ed@689b7",
  203. "__expectedType__": "cc.Material"
  204. }
  205. ],
  206. "_visFlags": 0,
  207. "lightmapSettings": {
  208. "__id__": 7
  209. },
  210. "_mesh": {
  211. "__uuid__": "85148354-7860-43eb-a2e8-6b9a106093ed@090d4",
  212. "__expectedType__": "cc.Mesh"
  213. },
  214. "_shadowCastingMode": 0,
  215. "_shadowReceivingMode": 1,
  216. "_enableMorph": true,
  217. "_id": "dbXabfQIdN7bCBufSDkKsq"
  218. },
  219. {
  220. "__type__": "cc.CompPrefabInfo",
  221. "fileId": "b6cJCAHRhRr7bU/9zdsNV+"
  222. },
  223. {
  224. "__type__": "cc.ModelLightmapSettings",
  225. "texture": null,
  226. "uvParam": {
  227. "__type__": "cc.Vec4",
  228. "x": 0,
  229. "y": 0,
  230. "z": 0,
  231. "w": 0
  232. },
  233. "_bakeable": false,
  234. "_castShadow": false,
  235. "_receiveShadow": false,
  236. "_recieveShadow": false,
  237. "_lightmapSize": 64
  238. },
  239. {
  240. "__type__": "cc.Node",
  241. "_objFlags": 512,
  242. "_parent": {
  243. "__id__": 3
  244. },
  245. "_prefab": {
  246. "__id__": 9
  247. },
  248. "_id": "4cqgsxUW9PUZOEpJKyAEG3"
  249. },
  250. {
  251. "__type__": "cc.PrefabInfo",
  252. "root": {
  253. "__id__": 8
  254. },
  255. "asset": {
  256. "__uuid__": "8a6893f7-595d-43ed-8df9-e726b1fd928c@a4cbc",
  257. "__expectedType__": "cc.Prefab"
  258. },
  259. "fileId": "32S/6MIv1U3pev1+x9tOov",
  260. "instance": {
  261. "__id__": 10
  262. }
  263. },
  264. {
  265. "__type__": "cc.PrefabInstance",
  266. "fileId": "d5HTEw7ylGgqhWEPomHcxy",
  267. "mountedChildren": [],
  268. "mountedComponents": [],
  269. "propertyOverrides": [
  270. {
  271. "__id__": 11
  272. },
  273. {
  274. "__id__": 13
  275. },
  276. {
  277. "__id__": 14
  278. },
  279. {
  280. "__id__": 15
  281. },
  282. {
  283. "__id__": 17
  284. }
  285. ],
  286. "removedComponents": []
  287. },
  288. {
  289. "__type__": "CCPropertyOverrideInfo",
  290. "targetInfo": {
  291. "__id__": 12
  292. },
  293. "propertyPath": [
  294. "_name"
  295. ],
  296. "value": "Belly"
  297. },
  298. {
  299. "__type__": "cc.TargetInfo",
  300. "localID": [
  301. "32S/6MIv1U3pev1+x9tOov"
  302. ]
  303. },
  304. {
  305. "__type__": "CCPropertyOverrideInfo",
  306. "targetInfo": {
  307. "__id__": 12
  308. },
  309. "propertyPath": [
  310. "_lpos"
  311. ],
  312. "value": {
  313. "__type__": "cc.Vec3",
  314. "x": 1.14175,
  315. "y": 0,
  316. "z": 0
  317. }
  318. },
  319. {
  320. "__type__": "CCPropertyOverrideInfo",
  321. "targetInfo": {
  322. "__id__": 12
  323. },
  324. "propertyPath": [
  325. "_lrot"
  326. ],
  327. "value": {
  328. "__type__": "cc.Quat",
  329. "x": 0,
  330. "y": 0.42261826174069944,
  331. "z": 0,
  332. "w": 0.9063077870366499
  333. }
  334. },
  335. {
  336. "__type__": "CCPropertyOverrideInfo",
  337. "targetInfo": {
  338. "__id__": 16
  339. },
  340. "propertyPath": [
  341. "_lscale"
  342. ],
  343. "value": {
  344. "__type__": "cc.Vec3",
  345. "x": 1,
  346. "y": 1,
  347. "z": 1
  348. }
  349. },
  350. {
  351. "__type__": "cc.TargetInfo",
  352. "localID": [
  353. "3cdWDbSiZSE5hWTVTVJCGO"
  354. ]
  355. },
  356. {
  357. "__type__": "CCPropertyOverrideInfo",
  358. "targetInfo": {
  359. "__id__": 12
  360. },
  361. "propertyPath": [
  362. "_euler"
  363. ],
  364. "value": {
  365. "__type__": "cc.Vec3",
  366. "x": 0,
  367. "y": 50,
  368. "z": 0
  369. }
  370. },
  371. {
  372. "__type__": "cc.Node",
  373. "_objFlags": 512,
  374. "_parent": {
  375. "__id__": 3
  376. },
  377. "_prefab": {
  378. "__id__": 19
  379. },
  380. "_id": "974EXvfJRI7qRugE1jESPU"
  381. },
  382. {
  383. "__type__": "cc.PrefabInfo",
  384. "root": {
  385. "__id__": 18
  386. },
  387. "asset": {
  388. "__uuid__": "e69a0821-8fe6-4798-82a4-3a4b8da89f2e@a406e",
  389. "__expectedType__": "cc.Prefab"
  390. },
  391. "fileId": "c2/9+t1Ipc65H9e4nRVsQF",
  392. "instance": {
  393. "__id__": 20
  394. }
  395. },
  396. {
  397. "__type__": "cc.PrefabInstance",
  398. "fileId": "5aN6yB7dxNg6DIjCnpF5UY",
  399. "mountedChildren": [
  400. {
  401. "__id__": 21
  402. }
  403. ],
  404. "mountedComponents": [],
  405. "propertyOverrides": [
  406. {
  407. "__id__": 118
  408. },
  409. {
  410. "__id__": 120
  411. },
  412. {
  413. "__id__": 121
  414. },
  415. {
  416. "__id__": 122
  417. },
  418. {
  419. "__id__": 124
  420. }
  421. ],
  422. "removedComponents": []
  423. },
  424. {
  425. "__type__": "cc.MountedChildrenInfo",
  426. "targetInfo": {
  427. "__id__": 22
  428. },
  429. "nodes": [
  430. {
  431. "__id__": 23
  432. },
  433. {
  434. "__id__": 34
  435. },
  436. {
  437. "__id__": 69
  438. }
  439. ]
  440. },
  441. {
  442. "__type__": "cc.TargetInfo",
  443. "localID": [
  444. "c2/9+t1Ipc65H9e4nRVsQF"
  445. ]
  446. },
  447. {
  448. "__type__": "cc.Node",
  449. "_objFlags": 0,
  450. "_parent": {
  451. "__id__": 18
  452. },
  453. "_prefab": {
  454. "__id__": 24
  455. },
  456. "_id": "2clWJTn5tOb5IYSLaskYD+"
  457. },
  458. {
  459. "__type__": "cc.PrefabInfo",
  460. "root": {
  461. "__id__": 23
  462. },
  463. "asset": {
  464. "__uuid__": "ab54bf4f-e3ca-4042-8f8a-0fef358fb801@abc6f",
  465. "__expectedType__": "cc.Prefab"
  466. },
  467. "fileId": "1cSdQbf3hWoLoO8B9N3+FW",
  468. "instance": {
  469. "__id__": 25
  470. }
  471. },
  472. {
  473. "__type__": "cc.PrefabInstance",
  474. "fileId": "3ffGQxBqROlaYXL5aEc4u5",
  475. "mountedChildren": [],
  476. "mountedComponents": [],
  477. "propertyOverrides": [
  478. {
  479. "__id__": 26
  480. },
  481. {
  482. "__id__": 28
  483. },
  484. {
  485. "__id__": 29
  486. },
  487. {
  488. "__id__": 30
  489. },
  490. {
  491. "__id__": 32
  492. },
  493. {
  494. "__id__": 33
  495. }
  496. ],
  497. "removedComponents": []
  498. },
  499. {
  500. "__type__": "CCPropertyOverrideInfo",
  501. "targetInfo": {
  502. "__id__": 27
  503. },
  504. "propertyPath": [
  505. "_name"
  506. ],
  507. "value": "head_B"
  508. },
  509. {
  510. "__type__": "cc.TargetInfo",
  511. "localID": [
  512. "1cSdQbf3hWoLoO8B9N3+FW"
  513. ]
  514. },
  515. {
  516. "__type__": "CCPropertyOverrideInfo",
  517. "targetInfo": {
  518. "__id__": 27
  519. },
  520. "propertyPath": [
  521. "_lpos"
  522. ],
  523. "value": {
  524. "__type__": "cc.Vec3",
  525. "x": 0,
  526. "y": 15.999999999999996,
  527. "z": 0
  528. }
  529. },
  530. {
  531. "__type__": "CCPropertyOverrideInfo",
  532. "targetInfo": {
  533. "__id__": 27
  534. },
  535. "propertyPath": [
  536. "_lrot"
  537. ],
  538. "value": {
  539. "__type__": "cc.Quat",
  540. "x": 0,
  541. "y": 0.3102450673012452,
  542. "z": 0,
  543. "w": 0.9506566142489337
  544. }
  545. },
  546. {
  547. "__type__": "CCPropertyOverrideInfo",
  548. "targetInfo": {
  549. "__id__": 31
  550. },
  551. "propertyPath": [
  552. "_lscale"
  553. ],
  554. "value": {
  555. "__type__": "cc.Vec3",
  556. "x": 1,
  557. "y": 1,
  558. "z": 1
  559. }
  560. },
  561. {
  562. "__type__": "cc.TargetInfo",
  563. "localID": [
  564. "2eqVV6JPJS4bKcu0GheMBs"
  565. ]
  566. },
  567. {
  568. "__type__": "CCPropertyOverrideInfo",
  569. "targetInfo": {
  570. "__id__": 31
  571. },
  572. "propertyPath": [
  573. "_lpos"
  574. ],
  575. "value": {
  576. "__type__": "cc.Vec3",
  577. "x": 0,
  578. "y": 0,
  579. "z": 0
  580. }
  581. },
  582. {
  583. "__type__": "CCPropertyOverrideInfo",
  584. "targetInfo": {
  585. "__id__": 27
  586. },
  587. "propertyPath": [
  588. "_euler"
  589. ],
  590. "value": {
  591. "__type__": "cc.Vec3",
  592. "x": 0,
  593. "y": 36.148,
  594. "z": 0
  595. }
  596. },
  597. {
  598. "__type__": "cc.Node",
  599. "_objFlags": 512,
  600. "_parent": {
  601. "__id__": 18
  602. },
  603. "_prefab": {
  604. "__id__": 35
  605. },
  606. "_id": "5aeoAwLWdFBJRbhCpBX6bt"
  607. },
  608. {
  609. "__type__": "cc.PrefabInfo",
  610. "root": {
  611. "__id__": 34
  612. },
  613. "asset": {
  614. "__uuid__": "0aa8d96b-95e7-483a-aeb9-34559d5e15e4@02a34",
  615. "__expectedType__": "cc.Prefab"
  616. },
  617. "fileId": "97sq4bnPFZfZdPxqsh1wf8",
  618. "instance": {
  619. "__id__": 36
  620. }
  621. },
  622. {
  623. "__type__": "cc.PrefabInstance",
  624. "fileId": "62QbQHkCFM1rCRzZqe99aW",
  625. "mountedChildren": [
  626. {
  627. "__id__": 37
  628. }
  629. ],
  630. "mountedComponents": [],
  631. "propertyOverrides": [
  632. {
  633. "__id__": 59
  634. },
  635. {
  636. "__id__": 61
  637. },
  638. {
  639. "__id__": 62
  640. },
  641. {
  642. "__id__": 63
  643. },
  644. {
  645. "__id__": 65
  646. },
  647. {
  648. "__id__": 66
  649. },
  650. {
  651. "__id__": 67
  652. },
  653. {
  654. "__id__": 68
  655. }
  656. ],
  657. "removedComponents": []
  658. },
  659. {
  660. "__type__": "cc.MountedChildrenInfo",
  661. "targetInfo": {
  662. "__id__": 38
  663. },
  664. "nodes": [
  665. {
  666. "__id__": 39
  667. },
  668. {
  669. "__id__": 49
  670. }
  671. ]
  672. },
  673. {
  674. "__type__": "cc.TargetInfo",
  675. "localID": [
  676. "97sq4bnPFZfZdPxqsh1wf8"
  677. ]
  678. },
  679. {
  680. "__type__": "cc.Node",
  681. "_objFlags": 0,
  682. "_parent": {
  683. "__id__": 34
  684. },
  685. "_prefab": {
  686. "__id__": 40
  687. },
  688. "_id": "c9FUEGai9I1rKhxAjbs/Tl"
  689. },
  690. {
  691. "__type__": "cc.PrefabInfo",
  692. "root": {
  693. "__id__": 39
  694. },
  695. "asset": {
  696. "__uuid__": "fabb40a2-50d7-4f1a-bcd0-5d5d90068090@1d818",
  697. "__expectedType__": "cc.Prefab"
  698. },
  699. "fileId": "55AEtmPs5bxZB2FrcEUMC1",
  700. "instance": {
  701. "__id__": 41
  702. }
  703. },
  704. {
  705. "__type__": "cc.PrefabInstance",
  706. "fileId": "bfqojyPTdIn67BZMlNC7Ar",
  707. "mountedChildren": [],
  708. "mountedComponents": [],
  709. "propertyOverrides": [
  710. {
  711. "__id__": 42
  712. },
  713. {
  714. "__id__": 44
  715. },
  716. {
  717. "__id__": 45
  718. },
  719. {
  720. "__id__": 46
  721. },
  722. {
  723. "__id__": 48
  724. }
  725. ],
  726. "removedComponents": []
  727. },
  728. {
  729. "__type__": "CCPropertyOverrideInfo",
  730. "targetInfo": {
  731. "__id__": 43
  732. },
  733. "propertyPath": [
  734. "_name"
  735. ],
  736. "value": "LeftForeArm"
  737. },
  738. {
  739. "__type__": "cc.TargetInfo",
  740. "localID": [
  741. "55AEtmPs5bxZB2FrcEUMC1"
  742. ]
  743. },
  744. {
  745. "__type__": "CCPropertyOverrideInfo",
  746. "targetInfo": {
  747. "__id__": 43
  748. },
  749. "propertyPath": [
  750. "_lpos"
  751. ],
  752. "value": {
  753. "__type__": "cc.Vec3",
  754. "x": -11.409,
  755. "y": -0.967,
  756. "z": 1.19
  757. }
  758. },
  759. {
  760. "__type__": "CCPropertyOverrideInfo",
  761. "targetInfo": {
  762. "__id__": 43
  763. },
  764. "propertyPath": [
  765. "_lrot"
  766. ],
  767. "value": {
  768. "__type__": "cc.Quat",
  769. "x": 0,
  770. "y": 0.13052619222005157,
  771. "z": 0,
  772. "w": 0.9914448613738104
  773. }
  774. },
  775. {
  776. "__type__": "CCPropertyOverrideInfo",
  777. "targetInfo": {
  778. "__id__": 47
  779. },
  780. "propertyPath": [
  781. "_lscale"
  782. ],
  783. "value": {
  784. "__type__": "cc.Vec3",
  785. "x": 1,
  786. "y": 1,
  787. "z": 1
  788. }
  789. },
  790. {
  791. "__type__": "cc.TargetInfo",
  792. "localID": [
  793. "b9jo7A1+pfDKHi7LNtNHC0"
  794. ]
  795. },
  796. {
  797. "__type__": "CCPropertyOverrideInfo",
  798. "targetInfo": {
  799. "__id__": 43
  800. },
  801. "propertyPath": [
  802. "_euler"
  803. ],
  804. "value": {
  805. "__type__": "cc.Vec3",
  806. "x": 0,
  807. "y": 15,
  808. "z": 0
  809. }
  810. },
  811. {
  812. "__type__": "cc.Node",
  813. "_objFlags": 512,
  814. "_parent": {
  815. "__id__": 34
  816. },
  817. "_prefab": {
  818. "__id__": 50
  819. },
  820. "_id": "064yvqQVNFdaxGlvwO4ufq"
  821. },
  822. {
  823. "__type__": "cc.PrefabInfo",
  824. "root": {
  825. "__id__": 49
  826. },
  827. "asset": {
  828. "__uuid__": "12e973f6-2f58-4df6-8fd8-63138f1e3a6b@758a5",
  829. "__expectedType__": "cc.Prefab"
  830. },
  831. "fileId": "1eHmAs27dZIb+BSQbBFRZA",
  832. "instance": {
  833. "__id__": 51
  834. }
  835. },
  836. {
  837. "__type__": "cc.PrefabInstance",
  838. "fileId": "62GJ/c5o5Ds6/tq9PfX6iJ",
  839. "mountedChildren": [],
  840. "mountedComponents": [],
  841. "propertyOverrides": [
  842. {
  843. "__id__": 52
  844. },
  845. {
  846. "__id__": 54
  847. },
  848. {
  849. "__id__": 55
  850. },
  851. {
  852. "__id__": 56
  853. },
  854. {
  855. "__id__": 58
  856. }
  857. ],
  858. "removedComponents": []
  859. },
  860. {
  861. "__type__": "CCPropertyOverrideInfo",
  862. "targetInfo": {
  863. "__id__": 53
  864. },
  865. "propertyPath": [
  866. "_name"
  867. ],
  868. "value": "leftHand"
  869. },
  870. {
  871. "__type__": "cc.TargetInfo",
  872. "localID": [
  873. "1eHmAs27dZIb+BSQbBFRZA"
  874. ]
  875. },
  876. {
  877. "__type__": "CCPropertyOverrideInfo",
  878. "targetInfo": {
  879. "__id__": 53
  880. },
  881. "propertyPath": [
  882. "_lpos"
  883. ],
  884. "value": {
  885. "__type__": "cc.Vec3",
  886. "x": -18.542,
  887. "y": -2.285,
  888. "z": 4.158
  889. }
  890. },
  891. {
  892. "__type__": "CCPropertyOverrideInfo",
  893. "targetInfo": {
  894. "__id__": 53
  895. },
  896. "propertyPath": [
  897. "_lrot"
  898. ],
  899. "value": {
  900. "__type__": "cc.Quat",
  901. "x": 0.6273516391479335,
  902. "y": -0.09553734051528447,
  903. "z": -0.1163550972001226,
  904. "w": -0.764044520156527
  905. }
  906. },
  907. {
  908. "__type__": "CCPropertyOverrideInfo",
  909. "targetInfo": {
  910. "__id__": 57
  911. },
  912. "propertyPath": [
  913. "_lscale"
  914. ],
  915. "value": {
  916. "__type__": "cc.Vec3",
  917. "x": 1,
  918. "y": 1,
  919. "z": 1
  920. }
  921. },
  922. {
  923. "__type__": "cc.TargetInfo",
  924. "localID": [
  925. "06b3YpCKxTrroBOT192nE6"
  926. ]
  927. },
  928. {
  929. "__type__": "CCPropertyOverrideInfo",
  930. "targetInfo": {
  931. "__id__": 53
  932. },
  933. "propertyPath": [
  934. "_euler"
  935. ],
  936. "value": {
  937. "__type__": "cc.Vec3",
  938. "x": 280.725,
  939. "y": 17.006,
  940. "z": 3.321
  941. }
  942. },
  943. {
  944. "__type__": "CCPropertyOverrideInfo",
  945. "targetInfo": {
  946. "__id__": 60
  947. },
  948. "propertyPath": [
  949. "_name"
  950. ],
  951. "value": "LeftArm"
  952. },
  953. {
  954. "__type__": "cc.TargetInfo",
  955. "localID": [
  956. "97sq4bnPFZfZdPxqsh1wf8"
  957. ]
  958. },
  959. {
  960. "__type__": "CCPropertyOverrideInfo",
  961. "targetInfo": {
  962. "__id__": 60
  963. },
  964. "propertyPath": [
  965. "_lpos"
  966. ],
  967. "value": {
  968. "__type__": "cc.Vec3",
  969. "x": 7,
  970. "y": -2,
  971. "z": 0
  972. }
  973. },
  974. {
  975. "__type__": "CCPropertyOverrideInfo",
  976. "targetInfo": {
  977. "__id__": 60
  978. },
  979. "propertyPath": [
  980. "_lrot"
  981. ],
  982. "value": {
  983. "__type__": "cc.Quat",
  984. "x": -8.626608320022358e-17,
  985. "y": -8.626608320022355e-17,
  986. "z": 0.7660444431189781,
  987. "w": 0.6427876096865394
  988. }
  989. },
  990. {
  991. "__type__": "CCPropertyOverrideInfo",
  992. "targetInfo": {
  993. "__id__": 64
  994. },
  995. "propertyPath": [
  996. "_lscale"
  997. ],
  998. "value": {
  999. "__type__": "cc.Vec3",
  1000. "x": 1,
  1001. "y": 1,
  1002. "z": 1
  1003. }
  1004. },
  1005. {
  1006. "__type__": "cc.TargetInfo",
  1007. "localID": [
  1008. "36to74kQ5bNaF1pAwtaRRk"
  1009. ]
  1010. },
  1011. {
  1012. "__type__": "CCPropertyOverrideInfo",
  1013. "targetInfo": {
  1014. "__id__": 60
  1015. },
  1016. "propertyPath": [
  1017. "_euler"
  1018. ],
  1019. "value": {
  1020. "__type__": "cc.Vec3",
  1021. "x": 180,
  1022. "y": 180,
  1023. "z": 80.00000000000006
  1024. }
  1025. },
  1026. {
  1027. "__type__": "CCPropertyOverrideInfo",
  1028. "targetInfo": {
  1029. "__id__": 64
  1030. },
  1031. "propertyPath": [
  1032. "_lrot"
  1033. ],
  1034. "value": {
  1035. "__type__": "cc.Quat",
  1036. "x": 0,
  1037. "y": 0,
  1038. "z": 0,
  1039. "w": 1
  1040. }
  1041. },
  1042. {
  1043. "__type__": "CCPropertyOverrideInfo",
  1044. "targetInfo": {
  1045. "__id__": 64
  1046. },
  1047. "propertyPath": [
  1048. "_euler"
  1049. ],
  1050. "value": {
  1051. "__type__": "cc.Vec3",
  1052. "x": 0,
  1053. "y": 0,
  1054. "z": 0
  1055. }
  1056. },
  1057. {
  1058. "__type__": "CCPropertyOverrideInfo",
  1059. "targetInfo": {
  1060. "__id__": 64
  1061. },
  1062. "propertyPath": [
  1063. "_lpos"
  1064. ],
  1065. "value": {
  1066. "__type__": "cc.Vec3",
  1067. "x": 0,
  1068. "y": 0,
  1069. "z": 0
  1070. }
  1071. },
  1072. {
  1073. "__type__": "cc.Node",
  1074. "_objFlags": 0,
  1075. "_parent": {
  1076. "__id__": 18
  1077. },
  1078. "_prefab": {
  1079. "__id__": 70
  1080. },
  1081. "_id": "0db8nQbmZHI7V/fNpO4I3W"
  1082. },
  1083. {
  1084. "__type__": "cc.PrefabInfo",
  1085. "root": {
  1086. "__id__": 69
  1087. },
  1088. "asset": {
  1089. "__uuid__": "ece41c8d-6b35-497f-b37f-089a3b4dde23@8f8fe",
  1090. "__expectedType__": "cc.Prefab"
  1091. },
  1092. "fileId": "bfq+zYWK1S76C3493rZRok",
  1093. "instance": {
  1094. "__id__": 71
  1095. }
  1096. },
  1097. {
  1098. "__type__": "cc.PrefabInstance",
  1099. "fileId": "81MP9pVMtIuruN2o3cS8d/",
  1100. "prefabRootNode": null,
  1101. "mountedChildren": [
  1102. {
  1103. "__id__": 72
  1104. }
  1105. ],
  1106. "mountedComponents": [],
  1107. "propertyOverrides": [
  1108. {
  1109. "__id__": 102
  1110. },
  1111. {
  1112. "__id__": 104
  1113. },
  1114. {
  1115. "__id__": 106
  1116. },
  1117. {
  1118. "__id__": 108
  1119. },
  1120. {
  1121. "__id__": 110
  1122. },
  1123. {
  1124. "__id__": 112
  1125. },
  1126. {
  1127. "__id__": 114
  1128. },
  1129. {
  1130. "__id__": 116
  1131. }
  1132. ],
  1133. "removedComponents": []
  1134. },
  1135. {
  1136. "__type__": "cc.MountedChildrenInfo",
  1137. "targetInfo": {
  1138. "__id__": 73
  1139. },
  1140. "nodes": [
  1141. {
  1142. "__id__": 74
  1143. }
  1144. ]
  1145. },
  1146. {
  1147. "__type__": "cc.TargetInfo",
  1148. "localID": [
  1149. "bfq+zYWK1S76C3493rZRok"
  1150. ]
  1151. },
  1152. {
  1153. "__type__": "cc.Node",
  1154. "_objFlags": 512,
  1155. "_parent": {
  1156. "__id__": 69
  1157. },
  1158. "_prefab": {
  1159. "__id__": 75
  1160. },
  1161. "_id": "a1BoTTo9tAj7Hbqvhu0XEG"
  1162. },
  1163. {
  1164. "__type__": "cc.PrefabInfo",
  1165. "root": {
  1166. "__id__": 74
  1167. },
  1168. "asset": {
  1169. "__uuid__": "6747ed75-d02a-4261-8483-a64989fea527@babd9",
  1170. "__expectedType__": "cc.Prefab"
  1171. },
  1172. "fileId": "33rpPb7iJXsJEratFKiQez",
  1173. "instance": {
  1174. "__id__": 76
  1175. }
  1176. },
  1177. {
  1178. "__type__": "cc.PrefabInstance",
  1179. "fileId": "dbRuBGDDxLNK1HMWyOlouM",
  1180. "mountedChildren": [
  1181. {
  1182. "__id__": 77
  1183. }
  1184. ],
  1185. "mountedComponents": [],
  1186. "propertyOverrides": [
  1187. {
  1188. "__id__": 92
  1189. },
  1190. {
  1191. "__id__": 94
  1192. },
  1193. {
  1194. "__id__": 95
  1195. },
  1196. {
  1197. "__id__": 96
  1198. },
  1199. {
  1200. "__id__": 98
  1201. },
  1202. {
  1203. "__id__": 99
  1204. },
  1205. {
  1206. "__id__": 100
  1207. },
  1208. {
  1209. "__id__": 101
  1210. }
  1211. ],
  1212. "removedComponents": []
  1213. },
  1214. {
  1215. "__type__": "cc.MountedChildrenInfo",
  1216. "targetInfo": {
  1217. "__id__": 78
  1218. },
  1219. "nodes": [
  1220. {
  1221. "__id__": 79
  1222. }
  1223. ]
  1224. },
  1225. {
  1226. "__type__": "cc.TargetInfo",
  1227. "localID": [
  1228. "33rpPb7iJXsJEratFKiQez"
  1229. ]
  1230. },
  1231. {
  1232. "__type__": "cc.Node",
  1233. "_objFlags": 0,
  1234. "_parent": {
  1235. "__id__": 74
  1236. },
  1237. "_prefab": {
  1238. "__id__": 80
  1239. },
  1240. "_id": "95WFUJvX1GZJwMn0tlgIwG"
  1241. },
  1242. {
  1243. "__type__": "cc.PrefabInfo",
  1244. "root": {
  1245. "__id__": 79
  1246. },
  1247. "asset": {
  1248. "__uuid__": "2d466a53-81b2-478e-8338-e3ef4670452a@cf540",
  1249. "__expectedType__": "cc.Prefab"
  1250. },
  1251. "fileId": "3ePdvOBmlel7NxP7ScXHCa",
  1252. "instance": {
  1253. "__id__": 81
  1254. }
  1255. },
  1256. {
  1257. "__type__": "cc.PrefabInstance",
  1258. "fileId": "37v5fWpiBFf5v2qcvoDQ9X",
  1259. "prefabRootNode": null,
  1260. "mountedChildren": [],
  1261. "mountedComponents": [],
  1262. "propertyOverrides": [
  1263. {
  1264. "__id__": 82
  1265. },
  1266. {
  1267. "__id__": 84
  1268. },
  1269. {
  1270. "__id__": 86
  1271. },
  1272. {
  1273. "__id__": 88
  1274. },
  1275. {
  1276. "__id__": 90
  1277. }
  1278. ],
  1279. "removedComponents": []
  1280. },
  1281. {
  1282. "__type__": "CCPropertyOverrideInfo",
  1283. "targetInfo": {
  1284. "__id__": 83
  1285. },
  1286. "propertyPath": [
  1287. "_name"
  1288. ],
  1289. "value": "rightHand"
  1290. },
  1291. {
  1292. "__type__": "cc.TargetInfo",
  1293. "localID": [
  1294. "3ePdvOBmlel7NxP7ScXHCa"
  1295. ]
  1296. },
  1297. {
  1298. "__type__": "CCPropertyOverrideInfo",
  1299. "targetInfo": {
  1300. "__id__": 85
  1301. },
  1302. "propertyPath": [
  1303. "_lpos"
  1304. ],
  1305. "value": {
  1306. "__type__": "cc.Vec3",
  1307. "x": -7.642,
  1308. "y": 0.443,
  1309. "z": -2.184
  1310. }
  1311. },
  1312. {
  1313. "__type__": "cc.TargetInfo",
  1314. "localID": [
  1315. "3ePdvOBmlel7NxP7ScXHCa"
  1316. ]
  1317. },
  1318. {
  1319. "__type__": "CCPropertyOverrideInfo",
  1320. "targetInfo": {
  1321. "__id__": 87
  1322. },
  1323. "propertyPath": [
  1324. "_lrot"
  1325. ],
  1326. "value": {
  1327. "__type__": "cc.Quat",
  1328. "x": 0.17440277787721314,
  1329. "y": 0.7311326753316791,
  1330. "z": -0.6470132580359933,
  1331. "w": 0.1280723469633559
  1332. }
  1333. },
  1334. {
  1335. "__type__": "cc.TargetInfo",
  1336. "localID": [
  1337. "3ePdvOBmlel7NxP7ScXHCa"
  1338. ]
  1339. },
  1340. {
  1341. "__type__": "CCPropertyOverrideInfo",
  1342. "targetInfo": {
  1343. "__id__": 89
  1344. },
  1345. "propertyPath": [
  1346. "_lscale"
  1347. ],
  1348. "value": {
  1349. "__type__": "cc.Vec3",
  1350. "x": 1,
  1351. "y": 1,
  1352. "z": 1
  1353. }
  1354. },
  1355. {
  1356. "__type__": "cc.TargetInfo",
  1357. "localID": [
  1358. "c8vSibxGRdHpEStcfIImY9"
  1359. ]
  1360. },
  1361. {
  1362. "__type__": "CCPropertyOverrideInfo",
  1363. "targetInfo": {
  1364. "__id__": 91
  1365. },
  1366. "propertyPath": [
  1367. "_euler"
  1368. ],
  1369. "value": {
  1370. "__type__": "cc.Vec3",
  1371. "x": 84.127,
  1372. "y": 155.505,
  1373. "z": 5.123
  1374. }
  1375. },
  1376. {
  1377. "__type__": "cc.TargetInfo",
  1378. "localID": [
  1379. "3ePdvOBmlel7NxP7ScXHCa"
  1380. ]
  1381. },
  1382. {
  1383. "__type__": "CCPropertyOverrideInfo",
  1384. "targetInfo": {
  1385. "__id__": 93
  1386. },
  1387. "propertyPath": [
  1388. "_name"
  1389. ],
  1390. "value": "rightForeArm"
  1391. },
  1392. {
  1393. "__type__": "cc.TargetInfo",
  1394. "localID": [
  1395. "33rpPb7iJXsJEratFKiQez"
  1396. ]
  1397. },
  1398. {
  1399. "__type__": "CCPropertyOverrideInfo",
  1400. "targetInfo": {
  1401. "__id__": 93
  1402. },
  1403. "propertyPath": [
  1404. "_lpos"
  1405. ],
  1406. "value": {
  1407. "__type__": "cc.Vec3",
  1408. "x": 11.485,
  1409. "y": -2.066,
  1410. "z": 1.726
  1411. }
  1412. },
  1413. {
  1414. "__type__": "CCPropertyOverrideInfo",
  1415. "targetInfo": {
  1416. "__id__": 93
  1417. },
  1418. "propertyPath": [
  1419. "_lrot"
  1420. ],
  1421. "value": {
  1422. "__type__": "cc.Quat",
  1423. "x": -0.19572778739154714,
  1424. "y": 0.1381980856927353,
  1425. "z": 0.9707966803616305,
  1426. "w": -0.012071775035619098
  1427. }
  1428. },
  1429. {
  1430. "__type__": "CCPropertyOverrideInfo",
  1431. "targetInfo": {
  1432. "__id__": 97
  1433. },
  1434. "propertyPath": [
  1435. "_lscale"
  1436. ],
  1437. "value": {
  1438. "__type__": "cc.Vec3",
  1439. "x": 1,
  1440. "y": 1,
  1441. "z": 1
  1442. }
  1443. },
  1444. {
  1445. "__type__": "cc.TargetInfo",
  1446. "localID": [
  1447. "d3L/w01elfPYUSVUzTrgXj"
  1448. ]
  1449. },
  1450. {
  1451. "__type__": "CCPropertyOverrideInfo",
  1452. "targetInfo": {
  1453. "__id__": 93
  1454. },
  1455. "propertyPath": [
  1456. "_euler"
  1457. ],
  1458. "value": {
  1459. "__type__": "cc.Vec3",
  1460. "x": -164.669,
  1461. "y": 157.801,
  1462. "z": -4.447
  1463. }
  1464. },
  1465. {
  1466. "__type__": "CCPropertyOverrideInfo",
  1467. "targetInfo": {
  1468. "__id__": 97
  1469. },
  1470. "propertyPath": [
  1471. "_lpos"
  1472. ],
  1473. "value": {
  1474. "__type__": "cc.Vec3",
  1475. "x": 0,
  1476. "y": 0,
  1477. "z": 0
  1478. }
  1479. },
  1480. {
  1481. "__type__": "CCPropertyOverrideInfo",
  1482. "targetInfo": {
  1483. "__id__": 97
  1484. },
  1485. "propertyPath": [
  1486. "_lrot"
  1487. ],
  1488. "value": {
  1489. "__type__": "cc.Quat",
  1490. "x": 0,
  1491. "y": 0,
  1492. "z": 0,
  1493. "w": 1
  1494. }
  1495. },
  1496. {
  1497. "__type__": "CCPropertyOverrideInfo",
  1498. "targetInfo": {
  1499. "__id__": 97
  1500. },
  1501. "propertyPath": [
  1502. "_euler"
  1503. ],
  1504. "value": {
  1505. "__type__": "cc.Vec3",
  1506. "x": 0,
  1507. "y": 0,
  1508. "z": 0
  1509. }
  1510. },
  1511. {
  1512. "__type__": "CCPropertyOverrideInfo",
  1513. "targetInfo": {
  1514. "__id__": 103
  1515. },
  1516. "propertyPath": [
  1517. "_name"
  1518. ],
  1519. "value": "rightArm"
  1520. },
  1521. {
  1522. "__type__": "cc.TargetInfo",
  1523. "localID": [
  1524. "bfq+zYWK1S76C3493rZRok"
  1525. ]
  1526. },
  1527. {
  1528. "__type__": "CCPropertyOverrideInfo",
  1529. "targetInfo": {
  1530. "__id__": 105
  1531. },
  1532. "propertyPath": [
  1533. "_lpos"
  1534. ],
  1535. "value": {
  1536. "__type__": "cc.Vec3",
  1537. "x": -6.869295437482159,
  1538. "y": -1.8440000000000047,
  1539. "z": 1.9626630359251238
  1540. }
  1541. },
  1542. {
  1543. "__type__": "cc.TargetInfo",
  1544. "localID": [
  1545. "bfq+zYWK1S76C3493rZRok"
  1546. ]
  1547. },
  1548. {
  1549. "__type__": "CCPropertyOverrideInfo",
  1550. "targetInfo": {
  1551. "__id__": 107
  1552. },
  1553. "propertyPath": [
  1554. "_lrot"
  1555. ],
  1556. "value": {
  1557. "__type__": "cc.Quat",
  1558. "x": 7.547304326803729e-18,
  1559. "y": 7.547304326803729e-18,
  1560. "z": -0.766044443118978,
  1561. "w": 0.6427876096865393
  1562. }
  1563. },
  1564. {
  1565. "__type__": "cc.TargetInfo",
  1566. "localID": [
  1567. "bfq+zYWK1S76C3493rZRok"
  1568. ]
  1569. },
  1570. {
  1571. "__type__": "CCPropertyOverrideInfo",
  1572. "targetInfo": {
  1573. "__id__": 109
  1574. },
  1575. "propertyPath": [
  1576. "_lscale"
  1577. ],
  1578. "value": {
  1579. "__type__": "cc.Vec3",
  1580. "x": 1,
  1581. "y": 1,
  1582. "z": 1
  1583. }
  1584. },
  1585. {
  1586. "__type__": "cc.TargetInfo",
  1587. "localID": [
  1588. "a1pMp6VKNQ7qp6rJvYEwfP"
  1589. ]
  1590. },
  1591. {
  1592. "__type__": "CCPropertyOverrideInfo",
  1593. "targetInfo": {
  1594. "__id__": 111
  1595. },
  1596. "propertyPath": [
  1597. "_euler"
  1598. ],
  1599. "value": {
  1600. "__type__": "cc.Vec3",
  1601. "x": 180,
  1602. "y": 180,
  1603. "z": -80
  1604. }
  1605. },
  1606. {
  1607. "__type__": "cc.TargetInfo",
  1608. "localID": [
  1609. "bfq+zYWK1S76C3493rZRok"
  1610. ]
  1611. },
  1612. {
  1613. "__type__": "CCPropertyOverrideInfo",
  1614. "targetInfo": {
  1615. "__id__": 113
  1616. },
  1617. "propertyPath": [
  1618. "_lpos"
  1619. ],
  1620. "value": {
  1621. "__type__": "cc.Vec3",
  1622. "x": 0.363,
  1623. "y": 0.104,
  1624. "z": -0.008
  1625. }
  1626. },
  1627. {
  1628. "__type__": "cc.TargetInfo",
  1629. "localID": [
  1630. "a1pMp6VKNQ7qp6rJvYEwfP"
  1631. ]
  1632. },
  1633. {
  1634. "__type__": "CCPropertyOverrideInfo",
  1635. "targetInfo": {
  1636. "__id__": 115
  1637. },
  1638. "propertyPath": [
  1639. "_lrot"
  1640. ],
  1641. "value": {
  1642. "__type__": "cc.Quat",
  1643. "x": 0.0009884834033488299,
  1644. "y": -0.005623842670263953,
  1645. "z": -0.028518437262813164,
  1646. "w": 0.9995769575326696
  1647. }
  1648. },
  1649. {
  1650. "__type__": "cc.TargetInfo",
  1651. "localID": [
  1652. "a1pMp6VKNQ7qp6rJvYEwfP"
  1653. ]
  1654. },
  1655. {
  1656. "__type__": "CCPropertyOverrideInfo",
  1657. "targetInfo": {
  1658. "__id__": 117
  1659. },
  1660. "propertyPath": [
  1661. "_euler"
  1662. ],
  1663. "value": {
  1664. "__type__": "cc.Vec3",
  1665. "x": 0.095,
  1666. "y": -0.642,
  1667. "z": -3.269
  1668. }
  1669. },
  1670. {
  1671. "__type__": "cc.TargetInfo",
  1672. "localID": [
  1673. "a1pMp6VKNQ7qp6rJvYEwfP"
  1674. ]
  1675. },
  1676. {
  1677. "__type__": "CCPropertyOverrideInfo",
  1678. "targetInfo": {
  1679. "__id__": 119
  1680. },
  1681. "propertyPath": [
  1682. "_name"
  1683. ],
  1684. "value": "ChestB"
  1685. },
  1686. {
  1687. "__type__": "cc.TargetInfo",
  1688. "localID": [
  1689. "c2/9+t1Ipc65H9e4nRVsQF"
  1690. ]
  1691. },
  1692. {
  1693. "__type__": "CCPropertyOverrideInfo",
  1694. "targetInfo": {
  1695. "__id__": 119
  1696. },
  1697. "propertyPath": [
  1698. "_lpos"
  1699. ],
  1700. "value": {
  1701. "__type__": "cc.Vec3",
  1702. "x": 1.14175,
  1703. "y": 14,
  1704. "z": 0
  1705. }
  1706. },
  1707. {
  1708. "__type__": "CCPropertyOverrideInfo",
  1709. "targetInfo": {
  1710. "__id__": 119
  1711. },
  1712. "propertyPath": [
  1713. "_lrot"
  1714. ],
  1715. "value": {
  1716. "__type__": "cc.Quat",
  1717. "x": 0,
  1718. "y": 0.42261826174069944,
  1719. "z": 0,
  1720. "w": 0.9063077870366499
  1721. }
  1722. },
  1723. {
  1724. "__type__": "CCPropertyOverrideInfo",
  1725. "targetInfo": {
  1726. "__id__": 123
  1727. },
  1728. "propertyPath": [
  1729. "_lscale"
  1730. ],
  1731. "value": {
  1732. "__type__": "cc.Vec3",
  1733. "x": 1,
  1734. "y": 1,
  1735. "z": 1
  1736. }
  1737. },
  1738. {
  1739. "__type__": "cc.TargetInfo",
  1740. "localID": [
  1741. "f8233vFx5dNZqg3TGw0NMR"
  1742. ]
  1743. },
  1744. {
  1745. "__type__": "CCPropertyOverrideInfo",
  1746. "targetInfo": {
  1747. "__id__": 119
  1748. },
  1749. "propertyPath": [
  1750. "_euler"
  1751. ],
  1752. "value": {
  1753. "__type__": "cc.Vec3",
  1754. "x": 0,
  1755. "y": 50,
  1756. "z": 0
  1757. }
  1758. },
  1759. {
  1760. "__type__": "cc.Node",
  1761. "_objFlags": 512,
  1762. "_parent": {
  1763. "__id__": 3
  1764. },
  1765. "_prefab": {
  1766. "__id__": 126
  1767. },
  1768. "_id": "f1ZqxLs1JBqbl7XR08LJfP"
  1769. },
  1770. {
  1771. "__type__": "cc.PrefabInfo",
  1772. "root": {
  1773. "__id__": 125
  1774. },
  1775. "asset": {
  1776. "__uuid__": "29b75d6a-18e5-4439-a18d-0504254b01d8@3ec9d",
  1777. "__expectedType__": "cc.Prefab"
  1778. },
  1779. "fileId": "8dYuTzIoZZQ6mBqcGklk7q",
  1780. "instance": {
  1781. "__id__": 127
  1782. }
  1783. },
  1784. {
  1785. "__type__": "cc.PrefabInstance",
  1786. "fileId": "6caB+9eHxMDY7qyXDd3U5X",
  1787. "prefabRootNode": null,
  1788. "mountedChildren": [
  1789. {
  1790. "__id__": 128
  1791. }
  1792. ],
  1793. "mountedComponents": [],
  1794. "propertyOverrides": [
  1795. {
  1796. "__id__": 156
  1797. },
  1798. {
  1799. "__id__": 158
  1800. },
  1801. {
  1802. "__id__": 160
  1803. },
  1804. {
  1805. "__id__": 162
  1806. },
  1807. {
  1808. "__id__": 164
  1809. },
  1810. {
  1811. "__id__": 166
  1812. },
  1813. {
  1814. "__id__": 168
  1815. },
  1816. {
  1817. "__id__": 170
  1818. }
  1819. ],
  1820. "removedComponents": []
  1821. },
  1822. {
  1823. "__type__": "cc.MountedChildrenInfo",
  1824. "targetInfo": {
  1825. "__id__": 129
  1826. },
  1827. "nodes": [
  1828. {
  1829. "__id__": 130
  1830. }
  1831. ]
  1832. },
  1833. {
  1834. "__type__": "cc.TargetInfo",
  1835. "localID": [
  1836. "8dYuTzIoZZQ6mBqcGklk7q"
  1837. ]
  1838. },
  1839. {
  1840. "__type__": "cc.Node",
  1841. "_objFlags": 512,
  1842. "_parent": {
  1843. "__id__": 125
  1844. },
  1845. "_prefab": {
  1846. "__id__": 131
  1847. },
  1848. "_id": "91upgh3ZpACZrQn3/VPnsu"
  1849. },
  1850. {
  1851. "__type__": "cc.PrefabInfo",
  1852. "root": {
  1853. "__id__": 130
  1854. },
  1855. "asset": {
  1856. "__uuid__": "ae3a8b42-ae42-4b85-bbe4-7a728e936429@2e743",
  1857. "__expectedType__": "cc.Prefab"
  1858. },
  1859. "fileId": "82n5Xh5kVRHbOPhuRiiBCT",
  1860. "instance": {
  1861. "__id__": 132
  1862. }
  1863. },
  1864. {
  1865. "__type__": "cc.PrefabInstance",
  1866. "fileId": "98eUSn3ExEc4olEWIAqTcg",
  1867. "prefabRootNode": null,
  1868. "mountedChildren": [
  1869. {
  1870. "__id__": 133
  1871. }
  1872. ],
  1873. "mountedComponents": [],
  1874. "propertyOverrides": [
  1875. {
  1876. "__id__": 146
  1877. },
  1878. {
  1879. "__id__": 148
  1880. },
  1881. {
  1882. "__id__": 150
  1883. },
  1884. {
  1885. "__id__": 152
  1886. },
  1887. {
  1888. "__id__": 154
  1889. }
  1890. ],
  1891. "removedComponents": []
  1892. },
  1893. {
  1894. "__type__": "cc.MountedChildrenInfo",
  1895. "targetInfo": {
  1896. "__id__": 134
  1897. },
  1898. "nodes": [
  1899. {
  1900. "__id__": 135
  1901. }
  1902. ]
  1903. },
  1904. {
  1905. "__type__": "cc.TargetInfo",
  1906. "localID": [
  1907. "82n5Xh5kVRHbOPhuRiiBCT"
  1908. ]
  1909. },
  1910. {
  1911. "__type__": "cc.Node",
  1912. "_objFlags": 0,
  1913. "_parent": {
  1914. "__id__": 130
  1915. },
  1916. "_prefab": {
  1917. "__id__": 136
  1918. },
  1919. "_id": "85DX1gXMxNR4uRvmccfyBm"
  1920. },
  1921. {
  1922. "__type__": "cc.PrefabInfo",
  1923. "root": {
  1924. "__id__": 135
  1925. },
  1926. "asset": {
  1927. "__uuid__": "5ae3608e-feb5-45aa-be7a-61bf0257c4f7@5d2a2",
  1928. "__expectedType__": "cc.Prefab"
  1929. },
  1930. "fileId": "b3bDJghX1QAKKQlaU8RPVZ",
  1931. "instance": {
  1932. "__id__": 137
  1933. }
  1934. },
  1935. {
  1936. "__type__": "cc.PrefabInstance",
  1937. "fileId": "11JjTOWDNAlYRcuRgC3EJA",
  1938. "mountedChildren": [],
  1939. "mountedComponents": [],
  1940. "propertyOverrides": [
  1941. {
  1942. "__id__": 138
  1943. },
  1944. {
  1945. "__id__": 140
  1946. },
  1947. {
  1948. "__id__": 141
  1949. },
  1950. {
  1951. "__id__": 142
  1952. },
  1953. {
  1954. "__id__": 144
  1955. },
  1956. {
  1957. "__id__": 145
  1958. }
  1959. ],
  1960. "removedComponents": []
  1961. },
  1962. {
  1963. "__type__": "CCPropertyOverrideInfo",
  1964. "targetInfo": {
  1965. "__id__": 139
  1966. },
  1967. "propertyPath": [
  1968. "_name"
  1969. ],
  1970. "value": "rightFoot"
  1971. },
  1972. {
  1973. "__type__": "cc.TargetInfo",
  1974. "localID": [
  1975. "b3bDJghX1QAKKQlaU8RPVZ"
  1976. ]
  1977. },
  1978. {
  1979. "__type__": "CCPropertyOverrideInfo",
  1980. "targetInfo": {
  1981. "__id__": 139
  1982. },
  1983. "propertyPath": [
  1984. "_lpos"
  1985. ],
  1986. "value": {
  1987. "__type__": "cc.Vec3",
  1988. "x": 0.057,
  1989. "y": -4.226,
  1990. "z": 3.716
  1991. }
  1992. },
  1993. {
  1994. "__type__": "CCPropertyOverrideInfo",
  1995. "targetInfo": {
  1996. "__id__": 139
  1997. },
  1998. "propertyPath": [
  1999. "_lrot"
  2000. ],
  2001. "value": {
  2002. "__type__": "cc.Quat",
  2003. "x": -0.08738330836217266,
  2004. "y": -0.18628470789576498,
  2005. "z": 0.045851466555108945,
  2006. "w": 0.977527395032291
  2007. }
  2008. },
  2009. {
  2010. "__type__": "CCPropertyOverrideInfo",
  2011. "targetInfo": {
  2012. "__id__": 143
  2013. },
  2014. "propertyPath": [
  2015. "_lscale"
  2016. ],
  2017. "value": {
  2018. "__type__": "cc.Vec3",
  2019. "x": 1,
  2020. "y": 1,
  2021. "z": 1
  2022. }
  2023. },
  2024. {
  2025. "__type__": "cc.TargetInfo",
  2026. "localID": [
  2027. "daTQMUmlRbvIMNyGH1u4hx"
  2028. ]
  2029. },
  2030. {
  2031. "__type__": "CCPropertyOverrideInfo",
  2032. "targetInfo": {
  2033. "__id__": 143
  2034. },
  2035. "propertyPath": [
  2036. "_layer"
  2037. ],
  2038. "value": 8388608
  2039. },
  2040. {
  2041. "__type__": "CCPropertyOverrideInfo",
  2042. "targetInfo": {
  2043. "__id__": 139
  2044. },
  2045. "propertyPath": [
  2046. "_euler"
  2047. ],
  2048. "value": {
  2049. "__type__": "cc.Vec3",
  2050. "x": -8.912,
  2051. "y": -21.031,
  2052. "z": 7.019
  2053. }
  2054. },
  2055. {
  2056. "__type__": "CCPropertyOverrideInfo",
  2057. "targetInfo": {
  2058. "__id__": 147
  2059. },
  2060. "propertyPath": [
  2061. "_name"
  2062. ],
  2063. "value": "rightLeg"
  2064. },
  2065. {
  2066. "__type__": "cc.TargetInfo",
  2067. "localID": [
  2068. "82n5Xh5kVRHbOPhuRiiBCT"
  2069. ]
  2070. },
  2071. {
  2072. "__type__": "CCPropertyOverrideInfo",
  2073. "targetInfo": {
  2074. "__id__": 149
  2075. },
  2076. "propertyPath": [
  2077. "_lpos"
  2078. ],
  2079. "value": {
  2080. "__type__": "cc.Vec3",
  2081. "x": 4.36906796910362,
  2082. "y": -10.782028403612383,
  2083. "z": 1.3765386246119862
  2084. }
  2085. },
  2086. {
  2087. "__type__": "cc.TargetInfo",
  2088. "localID": [
  2089. "82n5Xh5kVRHbOPhuRiiBCT"
  2090. ]
  2091. },
  2092. {
  2093. "__type__": "CCPropertyOverrideInfo",
  2094. "targetInfo": {
  2095. "__id__": 151
  2096. },
  2097. "propertyPath": [
  2098. "_lrot"
  2099. ],
  2100. "value": {
  2101. "__type__": "cc.Quat",
  2102. "x": 0.24162321349276922,
  2103. "y": -0.7627387934849258,
  2104. "z": 0.19879789459219394,
  2105. "w": 0.5659745159636589
  2106. }
  2107. },
  2108. {
  2109. "__type__": "cc.TargetInfo",
  2110. "localID": [
  2111. "82n5Xh5kVRHbOPhuRiiBCT"
  2112. ]
  2113. },
  2114. {
  2115. "__type__": "CCPropertyOverrideInfo",
  2116. "targetInfo": {
  2117. "__id__": 153
  2118. },
  2119. "propertyPath": [
  2120. "_lscale"
  2121. ],
  2122. "value": {
  2123. "__type__": "cc.Vec3",
  2124. "x": 1,
  2125. "y": 1,
  2126. "z": 1
  2127. }
  2128. },
  2129. {
  2130. "__type__": "cc.TargetInfo",
  2131. "localID": [
  2132. "97/f6C3I1RHazS9WT0Sb+Z"
  2133. ]
  2134. },
  2135. {
  2136. "__type__": "CCPropertyOverrideInfo",
  2137. "targetInfo": {
  2138. "__id__": 155
  2139. },
  2140. "propertyPath": [
  2141. "_euler"
  2142. ],
  2143. "value": {
  2144. "__type__": "cc.Vec3",
  2145. "x": 35.648,
  2146. "y": -104.189,
  2147. "z": -8.254
  2148. }
  2149. },
  2150. {
  2151. "__type__": "cc.TargetInfo",
  2152. "localID": [
  2153. "82n5Xh5kVRHbOPhuRiiBCT"
  2154. ]
  2155. },
  2156. {
  2157. "__type__": "CCPropertyOverrideInfo",
  2158. "targetInfo": {
  2159. "__id__": 157
  2160. },
  2161. "propertyPath": [
  2162. "_name"
  2163. ],
  2164. "value": "rightThigh"
  2165. },
  2166. {
  2167. "__type__": "cc.TargetInfo",
  2168. "localID": [
  2169. "8dYuTzIoZZQ6mBqcGklk7q"
  2170. ]
  2171. },
  2172. {
  2173. "__type__": "CCPropertyOverrideInfo",
  2174. "targetInfo": {
  2175. "__id__": 159
  2176. },
  2177. "propertyPath": [
  2178. "_lpos"
  2179. ],
  2180. "value": {
  2181. "__type__": "cc.Vec3",
  2182. "x": -5.502,
  2183. "y": -8.284,
  2184. "z": 2.806
  2185. }
  2186. },
  2187. {
  2188. "__type__": "cc.TargetInfo",
  2189. "localID": [
  2190. "8dYuTzIoZZQ6mBqcGklk7q"
  2191. ]
  2192. },
  2193. {
  2194. "__type__": "CCPropertyOverrideInfo",
  2195. "targetInfo": {
  2196. "__id__": 161
  2197. },
  2198. "propertyPath": [
  2199. "_lrot"
  2200. ],
  2201. "value": {
  2202. "__type__": "cc.Quat",
  2203. "x": -0.09725912380421799,
  2204. "y": 0.7935730525054284,
  2205. "z": -0.07785291726234152,
  2206. "w": 0.5955849195940033
  2207. }
  2208. },
  2209. {
  2210. "__type__": "cc.TargetInfo",
  2211. "localID": [
  2212. "8dYuTzIoZZQ6mBqcGklk7q"
  2213. ]
  2214. },
  2215. {
  2216. "__type__": "CCPropertyOverrideInfo",
  2217. "targetInfo": {
  2218. "__id__": 163
  2219. },
  2220. "propertyPath": [
  2221. "_lscale"
  2222. ],
  2223. "value": {
  2224. "__type__": "cc.Vec3",
  2225. "x": 1,
  2226. "y": 1,
  2227. "z": 1
  2228. }
  2229. },
  2230. {
  2231. "__type__": "cc.TargetInfo",
  2232. "localID": [
  2233. "86ldU8+v5dFZVirsJxSLEO"
  2234. ]
  2235. },
  2236. {
  2237. "__type__": "CCPropertyOverrideInfo",
  2238. "targetInfo": {
  2239. "__id__": 165
  2240. },
  2241. "propertyPath": [
  2242. "_euler"
  2243. ],
  2244. "value": {
  2245. "__type__": "cc.Vec3",
  2246. "x": 0.456,
  2247. "y": 106.28,
  2248. "z": -14.306
  2249. }
  2250. },
  2251. {
  2252. "__type__": "cc.TargetInfo",
  2253. "localID": [
  2254. "8dYuTzIoZZQ6mBqcGklk7q"
  2255. ]
  2256. },
  2257. {
  2258. "__type__": "CCPropertyOverrideInfo",
  2259. "targetInfo": {
  2260. "__id__": 167
  2261. },
  2262. "propertyPath": [
  2263. "_lpos"
  2264. ],
  2265. "value": {
  2266. "__type__": "cc.Vec3",
  2267. "x": -1.003,
  2268. "y": -1.52,
  2269. "z": 2.082
  2270. }
  2271. },
  2272. {
  2273. "__type__": "cc.TargetInfo",
  2274. "localID": [
  2275. "86ldU8+v5dFZVirsJxSLEO"
  2276. ]
  2277. },
  2278. {
  2279. "__type__": "CCPropertyOverrideInfo",
  2280. "targetInfo": {
  2281. "__id__": 169
  2282. },
  2283. "propertyPath": [
  2284. "_lrot"
  2285. ],
  2286. "value": {
  2287. "__type__": "cc.Quat",
  2288. "x": 0.02090952268484718,
  2289. "y": -0.27595534993072474,
  2290. "z": 0.02958572578616729,
  2291. "w": 0.9604874395510901
  2292. }
  2293. },
  2294. {
  2295. "__type__": "cc.TargetInfo",
  2296. "localID": [
  2297. "86ldU8+v5dFZVirsJxSLEO"
  2298. ]
  2299. },
  2300. {
  2301. "__type__": "CCPropertyOverrideInfo",
  2302. "targetInfo": {
  2303. "__id__": 171
  2304. },
  2305. "propertyPath": [
  2306. "_euler"
  2307. ],
  2308. "value": {
  2309. "__type__": "cc.Vec3",
  2310. "x": 3.242,
  2311. "y": -32.133,
  2312. "z": 2.596
  2313. }
  2314. },
  2315. {
  2316. "__type__": "cc.TargetInfo",
  2317. "localID": [
  2318. "86ldU8+v5dFZVirsJxSLEO"
  2319. ]
  2320. },
  2321. {
  2322. "__type__": "cc.Node",
  2323. "_name": "rightThigh",
  2324. "_objFlags": 512,
  2325. "_parent": {
  2326. "__id__": 3
  2327. },
  2328. "_children": [
  2329. {
  2330. "__id__": 173
  2331. },
  2332. {
  2333. "__id__": 177
  2334. }
  2335. ],
  2336. "_active": true,
  2337. "_components": [],
  2338. "_prefab": null,
  2339. "_lpos": {
  2340. "__type__": "cc.Vec3",
  2341. "x": 3.671,
  2342. "y": -8.989,
  2343. "z": -3.33
  2344. },
  2345. "_lrot": {
  2346. "__type__": "cc.Quat",
  2347. "x": 0,
  2348. "y": 0.42261826174069944,
  2349. "z": 0,
  2350. "w": 0.90630778703665
  2351. },
  2352. "_lscale": {
  2353. "__type__": "cc.Vec3",
  2354. "x": 0.9999999999999999,
  2355. "y": 1,
  2356. "z": 0.9999999999999999
  2357. },
  2358. "_layer": 1073741824,
  2359. "_euler": {
  2360. "__type__": "cc.Vec3",
  2361. "x": 0,
  2362. "y": 50.00000000000001,
  2363. "z": 0
  2364. },
  2365. "_id": "fbACfdMQJDOoGbMkn+zJsg"
  2366. },
  2367. {
  2368. "__type__": "cc.Node",
  2369. "_name": "Node-0",
  2370. "_objFlags": 0,
  2371. "_parent": {
  2372. "__id__": 172
  2373. },
  2374. "_children": [],
  2375. "_active": true,
  2376. "_components": [
  2377. {
  2378. "__id__": 174
  2379. }
  2380. ],
  2381. "_prefab": null,
  2382. "_lpos": {
  2383. "__type__": "cc.Vec3",
  2384. "x": 0,
  2385. "y": 0,
  2386. "z": 0
  2387. },
  2388. "_lrot": {
  2389. "__type__": "cc.Quat",
  2390. "x": 0,
  2391. "y": 0,
  2392. "z": 0,
  2393. "w": 1
  2394. },
  2395. "_lscale": {
  2396. "__type__": "cc.Vec3",
  2397. "x": 1,
  2398. "y": 1,
  2399. "z": 1
  2400. },
  2401. "_layer": 1073741824,
  2402. "_euler": {
  2403. "__type__": "cc.Vec3",
  2404. "x": 0,
  2405. "y": 0,
  2406. "z": 0
  2407. },
  2408. "_id": "87iSJ4JAJOqpkPNJyf3LTp"
  2409. },
  2410. {
  2411. "__type__": "cc.MeshRenderer",
  2412. "_name": "",
  2413. "_objFlags": 0,
  2414. "node": {
  2415. "__id__": 173
  2416. },
  2417. "_enabled": true,
  2418. "__prefab": {
  2419. "__id__": 175
  2420. },
  2421. "_materials": [
  2422. {
  2423. "__uuid__": "29b75d6a-18e5-4439-a18d-0504254b01d8@da62c",
  2424. "__expectedType__": "cc.Material"
  2425. }
  2426. ],
  2427. "_visFlags": 0,
  2428. "lightmapSettings": {
  2429. "__id__": 176
  2430. },
  2431. "_mesh": {
  2432. "__uuid__": "29b75d6a-18e5-4439-a18d-0504254b01d8@53daa",
  2433. "__expectedType__": "cc.Mesh"
  2434. },
  2435. "_shadowCastingMode": 0,
  2436. "_shadowReceivingMode": 1,
  2437. "_enableMorph": true,
  2438. "_id": "cenbivjkJC8I9Z2BbElkpP"
  2439. },
  2440. {
  2441. "__type__": "cc.CompPrefabInfo",
  2442. "fileId": "91AlHPdXtcSr4PxxlS9wfW"
  2443. },
  2444. {
  2445. "__type__": "cc.ModelLightmapSettings",
  2446. "texture": null,
  2447. "uvParam": {
  2448. "__type__": "cc.Vec4",
  2449. "x": 0,
  2450. "y": 0,
  2451. "z": 0,
  2452. "w": 0
  2453. },
  2454. "_bakeable": false,
  2455. "_castShadow": false,
  2456. "_receiveShadow": false,
  2457. "_recieveShadow": false,
  2458. "_lightmapSize": 64
  2459. },
  2460. {
  2461. "__type__": "cc.Node",
  2462. "_name": "rightLeg",
  2463. "_objFlags": 0,
  2464. "_parent": {
  2465. "__id__": 172
  2466. },
  2467. "_children": [
  2468. {
  2469. "__id__": 178
  2470. },
  2471. {
  2472. "__id__": 182
  2473. }
  2474. ],
  2475. "_active": true,
  2476. "_components": [],
  2477. "_prefab": null,
  2478. "_lpos": {
  2479. "__type__": "cc.Vec3",
  2480. "x": -0.9162875132096389,
  2481. "y": -11.127,
  2482. "z": -1.7127227426341065
  2483. },
  2484. "_lrot": {
  2485. "__type__": "cc.Quat",
  2486. "x": 0.12362961654737778,
  2487. "y": -0.001827481423881551,
  2488. "z": -0.08725936043504529,
  2489. "w": 0.9884827678014727
  2490. },
  2491. "_lscale": {
  2492. "__type__": "cc.Vec3",
  2493. "x": 1,
  2494. "y": 1,
  2495. "z": 1.0000000000000002
  2496. },
  2497. "_layer": 1073741824,
  2498. "_euler": {
  2499. "__type__": "cc.Vec3",
  2500. "x": 14.349,
  2501. "y": 1.0449999999999922,
  2502. "z": -9.960000000000004
  2503. },
  2504. "_id": "d46GlYM/ZEd5nSM5I27vTj"
  2505. },
  2506. {
  2507. "__type__": "cc.Node",
  2508. "_name": "Node-0",
  2509. "_objFlags": 0,
  2510. "_parent": {
  2511. "__id__": 177
  2512. },
  2513. "_children": [],
  2514. "_active": true,
  2515. "_components": [
  2516. {
  2517. "__id__": 179
  2518. }
  2519. ],
  2520. "_prefab": null,
  2521. "_lpos": {
  2522. "__type__": "cc.Vec3",
  2523. "x": 0,
  2524. "y": 0,
  2525. "z": 0
  2526. },
  2527. "_lrot": {
  2528. "__type__": "cc.Quat",
  2529. "x": 0,
  2530. "y": 0,
  2531. "z": 0,
  2532. "w": 1
  2533. },
  2534. "_lscale": {
  2535. "__type__": "cc.Vec3",
  2536. "x": 1,
  2537. "y": 1,
  2538. "z": 1
  2539. },
  2540. "_layer": 1073741824,
  2541. "_euler": {
  2542. "__type__": "cc.Vec3",
  2543. "x": 0,
  2544. "y": 0,
  2545. "z": 0
  2546. },
  2547. "_id": "9chjH5uutNxKgBYF/1MQ3N"
  2548. },
  2549. {
  2550. "__type__": "cc.MeshRenderer",
  2551. "_name": "",
  2552. "_objFlags": 0,
  2553. "node": {
  2554. "__id__": 178
  2555. },
  2556. "_enabled": true,
  2557. "__prefab": {
  2558. "__id__": 180
  2559. },
  2560. "_materials": [
  2561. {
  2562. "__uuid__": "ae3a8b42-ae42-4b85-bbe4-7a728e936429@a170f",
  2563. "__expectedType__": "cc.Material"
  2564. }
  2565. ],
  2566. "_visFlags": 0,
  2567. "lightmapSettings": {
  2568. "__id__": 181
  2569. },
  2570. "_mesh": {
  2571. "__uuid__": "ae3a8b42-ae42-4b85-bbe4-7a728e936429@dd14f",
  2572. "__expectedType__": "cc.Mesh"
  2573. },
  2574. "_shadowCastingMode": 0,
  2575. "_shadowReceivingMode": 1,
  2576. "_enableMorph": true,
  2577. "_id": "00OUqi/YBIHpxIEkyMrw55"
  2578. },
  2579. {
  2580. "__type__": "cc.CompPrefabInfo",
  2581. "fileId": "0bHNg6VDlYNKvTpapI2+DH"
  2582. },
  2583. {
  2584. "__type__": "cc.ModelLightmapSettings",
  2585. "texture": null,
  2586. "uvParam": {
  2587. "__type__": "cc.Vec4",
  2588. "x": 0,
  2589. "y": 0,
  2590. "z": 0,
  2591. "w": 0
  2592. },
  2593. "_bakeable": false,
  2594. "_castShadow": false,
  2595. "_receiveShadow": false,
  2596. "_recieveShadow": false,
  2597. "_lightmapSize": 64
  2598. },
  2599. {
  2600. "__type__": "cc.Node",
  2601. "_name": "rightFoot",
  2602. "_objFlags": 0,
  2603. "_parent": {
  2604. "__id__": 177
  2605. },
  2606. "_children": [
  2607. {
  2608. "__id__": 183
  2609. }
  2610. ],
  2611. "_active": true,
  2612. "_components": [],
  2613. "_prefab": null,
  2614. "_lpos": {
  2615. "__type__": "cc.Vec3",
  2616. "x": 1.360761669496675,
  2617. "y": -4.973543000653006,
  2618. "z": 2.699270957033413
  2619. },
  2620. "_lrot": {
  2621. "__type__": "cc.Quat",
  2622. "x": -0.13958548328202033,
  2623. "y": 0.21573099146463953,
  2624. "z": 0.05843261869974366,
  2625. "w": 0.9646562399375743
  2626. },
  2627. "_lscale": {
  2628. "__type__": "cc.Vec3",
  2629. "x": 1.0000000000000002,
  2630. "y": 1,
  2631. "z": 0.9999999999999999
  2632. },
  2633. "_layer": 1073741824,
  2634. "_euler": {
  2635. "__type__": "cc.Vec3",
  2636. "x": -17.15287984946857,
  2637. "y": 25.66589824683797,
  2638. "z": 3.009925521907823
  2639. },
  2640. "_id": "58RwKG8t5AKbm6aK7iC3dD"
  2641. },
  2642. {
  2643. "__type__": "cc.Node",
  2644. "_name": "Node-0",
  2645. "_objFlags": 0,
  2646. "_parent": {
  2647. "__id__": 182
  2648. },
  2649. "_children": [],
  2650. "_active": true,
  2651. "_components": [
  2652. {
  2653. "__id__": 184
  2654. }
  2655. ],
  2656. "_prefab": null,
  2657. "_lpos": {
  2658. "__type__": "cc.Vec3",
  2659. "x": 0,
  2660. "y": 0,
  2661. "z": 0
  2662. },
  2663. "_lrot": {
  2664. "__type__": "cc.Quat",
  2665. "x": 0,
  2666. "y": 0,
  2667. "z": 0,
  2668. "w": 1
  2669. },
  2670. "_lscale": {
  2671. "__type__": "cc.Vec3",
  2672. "x": 1,
  2673. "y": 1,
  2674. "z": 1
  2675. },
  2676. "_layer": 1073741824,
  2677. "_euler": {
  2678. "__type__": "cc.Vec3",
  2679. "x": 0,
  2680. "y": 0,
  2681. "z": 0
  2682. },
  2683. "_id": "fewoHT9PdCmLlEUNLQ8giz"
  2684. },
  2685. {
  2686. "__type__": "cc.MeshRenderer",
  2687. "_name": "",
  2688. "_objFlags": 0,
  2689. "node": {
  2690. "__id__": 183
  2691. },
  2692. "_enabled": true,
  2693. "__prefab": {
  2694. "__id__": 185
  2695. },
  2696. "_materials": [
  2697. {
  2698. "__uuid__": "5ae3608e-feb5-45aa-be7a-61bf0257c4f7@46290",
  2699. "__expectedType__": "cc.Material"
  2700. }
  2701. ],
  2702. "_visFlags": 0,
  2703. "lightmapSettings": {
  2704. "__id__": 186
  2705. },
  2706. "_mesh": {
  2707. "__uuid__": "5ae3608e-feb5-45aa-be7a-61bf0257c4f7@a6052",
  2708. "__expectedType__": "cc.Mesh"
  2709. },
  2710. "_shadowCastingMode": 0,
  2711. "_shadowReceivingMode": 1,
  2712. "_enableMorph": true,
  2713. "_id": "58VtAw9TVOCYmofh5cqbRm"
  2714. },
  2715. {
  2716. "__type__": "cc.CompPrefabInfo",
  2717. "fileId": "cbTj1dRylRGJCk8Q5UfpJe"
  2718. },
  2719. {
  2720. "__type__": "cc.ModelLightmapSettings",
  2721. "texture": null,
  2722. "uvParam": {
  2723. "__type__": "cc.Vec4",
  2724. "x": 0,
  2725. "y": 0,
  2726. "z": 0,
  2727. "w": 0
  2728. },
  2729. "_bakeable": false,
  2730. "_castShadow": false,
  2731. "_receiveShadow": false,
  2732. "_recieveShadow": false,
  2733. "_lightmapSize": 64
  2734. },
  2735. {
  2736. "__type__": "99d629GgQNL2L5MIjaZG8Mc",
  2737. "_name": "",
  2738. "_objFlags": 0,
  2739. "node": {
  2740. "__id__": 3
  2741. },
  2742. "_enabled": true,
  2743. "__prefab": null,
  2744. "moveClip": null,
  2745. "_touchVec2": null,
  2746. "_startVec3": null,
  2747. "_moveAnimation": null,
  2748. "_startTouch": false,
  2749. "_id": "4aZrK63jBFUJ9RyAfY+EDd"
  2750. },
  2751. {
  2752. "__type__": "cc.Animation",
  2753. "_name": "",
  2754. "_objFlags": 0,
  2755. "node": {
  2756. "__id__": 3
  2757. },
  2758. "_enabled": true,
  2759. "__prefab": null,
  2760. "playOnLoad": false,
  2761. "_clips": [
  2762. {
  2763. "__uuid__": "23e7018b-f580-430c-9da3-eb27ed3b3686",
  2764. "__expectedType__": "cc.AnimationClip"
  2765. }
  2766. ],
  2767. "_defaultClip": {
  2768. "__uuid__": "23e7018b-f580-430c-9da3-eb27ed3b3686",
  2769. "__expectedType__": "cc.AnimationClip"
  2770. },
  2771. "_id": "65eJABjsVKMJTYg2zevaiF"
  2772. },
  2773. {
  2774. "__type__": "cc.DirectionalLight",
  2775. "_name": "",
  2776. "_objFlags": 0,
  2777. "node": {
  2778. "__id__": 2
  2779. },
  2780. "_enabled": true,
  2781. "__prefab": null,
  2782. "_color": {
  2783. "__type__": "cc.Color",
  2784. "r": 255,
  2785. "g": 255,
  2786. "b": 255,
  2787. "a": 255
  2788. },
  2789. "_useColorTemperature": true,
  2790. "_colorTemperature": 15000,
  2791. "_staticSettings": {
  2792. "__id__": 190
  2793. },
  2794. "_illuminance": 65000,
  2795. "_id": "597uMYCbhEtJQc0ffJlcgA"
  2796. },
  2797. {
  2798. "__type__": "cc.StaticLightSettings",
  2799. "_baked": false,
  2800. "_editorOnly": true,
  2801. "_bakeable": true,
  2802. "_castShadow": true
  2803. },
  2804. {
  2805. "__type__": "cc.Node",
  2806. "_name": "Main Camera",
  2807. "_objFlags": 0,
  2808. "_parent": {
  2809. "__id__": 1
  2810. },
  2811. "_children": [],
  2812. "_active": true,
  2813. "_components": [
  2814. {
  2815. "__id__": 192
  2816. }
  2817. ],
  2818. "_prefab": null,
  2819. "_lpos": {
  2820. "__type__": "cc.Vec3",
  2821. "x": 202.772,
  2822. "y": 104.903,
  2823. "z": -7.954
  2824. },
  2825. "_lrot": {
  2826. "__type__": "cc.Quat",
  2827. "x": -0.11675704948863015,
  2828. "y": 0.707616202018001,
  2829. "z": 0.12036406897501001,
  2830. "w": 0.6864106591072927
  2831. },
  2832. "_lscale": {
  2833. "__type__": "cc.Vec3",
  2834. "x": 1,
  2835. "y": 1,
  2836. "z": 1
  2837. },
  2838. "_layer": 1073741824,
  2839. "_euler": {
  2840. "__type__": "cc.Vec3",
  2841. "x": -19.307,
  2842. "y": 91.743,
  2843. "z": 0
  2844. },
  2845. "_id": "c9DMICJLFO5IeO07EPon7U"
  2846. },
  2847. {
  2848. "__type__": "cc.Camera",
  2849. "_name": "",
  2850. "_objFlags": 0,
  2851. "node": {
  2852. "__id__": 191
  2853. },
  2854. "_enabled": true,
  2855. "__prefab": null,
  2856. "_projection": 1,
  2857. "_priority": 0,
  2858. "_fov": 45,
  2859. "_fovAxis": 0,
  2860. "_orthoHeight": 10,
  2861. "_near": 1,
  2862. "_far": 1000,
  2863. "_color": {
  2864. "__type__": "cc.Color",
  2865. "r": 223,
  2866. "g": 166,
  2867. "b": 94,
  2868. "a": 255
  2869. },
  2870. "_depth": 1,
  2871. "_stencil": 0,
  2872. "_clearFlags": 7,
  2873. "_rect": {
  2874. "__type__": "cc.Rect",
  2875. "x": 0,
  2876. "y": 0,
  2877. "width": 1,
  2878. "height": 1
  2879. },
  2880. "_aperture": 8,
  2881. "_shutter": 11,
  2882. "_iso": 1,
  2883. "_screenScale": 1,
  2884. "_visibility": 1099956224,
  2885. "_targetTexture": null,
  2886. "_id": "7dWQTpwS5LrIHnc1zAPUtf"
  2887. },
  2888. {
  2889. "__type__": "cc.SceneGlobals",
  2890. "ambient": {
  2891. "__id__": 194
  2892. },
  2893. "shadows": {
  2894. "__id__": 195
  2895. },
  2896. "_skybox": {
  2897. "__id__": 196
  2898. },
  2899. "fog": {
  2900. "__id__": 197
  2901. }
  2902. },
  2903. {
  2904. "__type__": "cc.AmbientInfo",
  2905. "_skyColor": {
  2906. "__type__": "cc.Color",
  2907. "r": 255,
  2908. "g": 255,
  2909. "b": 255,
  2910. "a": 1
  2911. },
  2912. "_skyIllum": 20000,
  2913. "_groundAlbedo": {
  2914. "__type__": "cc.Color",
  2915. "r": 51,
  2916. "g": 51,
  2917. "b": 51,
  2918. "a": 255
  2919. }
  2920. },
  2921. {
  2922. "__type__": "cc.ShadowsInfo",
  2923. "_type": 0,
  2924. "_enabled": true,
  2925. "_normal": {
  2926. "__type__": "cc.Vec3",
  2927. "x": 0,
  2928. "y": 1,
  2929. "z": 0
  2930. },
  2931. "_distance": 0,
  2932. "_shadowColor": {
  2933. "__type__": "cc.Color",
  2934. "r": 109,
  2935. "g": 109,
  2936. "b": 109,
  2937. "a": 255
  2938. },
  2939. "_autoAdapt": true,
  2940. "_pcf": 0,
  2941. "_bias": 0.00001,
  2942. "_packing": false,
  2943. "_linear": true,
  2944. "_selfShadow": false,
  2945. "_normalBias": 0,
  2946. "_near": 1,
  2947. "_far": 30,
  2948. "_aspect": 1,
  2949. "_orthoSize": 5,
  2950. "_maxReceived": 4,
  2951. "_size": {
  2952. "__type__": "cc.Vec2",
  2953. "x": 512,
  2954. "y": 512
  2955. }
  2956. },
  2957. {
  2958. "__type__": "cc.SkyboxInfo",
  2959. "_envmap": null,
  2960. "_isRGBE": false,
  2961. "_enabled": false,
  2962. "_useIBL": false
  2963. },
  2964. {
  2965. "__type__": "cc.FogInfo",
  2966. "_type": 0,
  2967. "_fogColor": {
  2968. "__type__": "cc.Color",
  2969. "r": 255,
  2970. "g": 255,
  2971. "b": 255,
  2972. "a": 255
  2973. },
  2974. "_enabled": false,
  2975. "_fogDensity": 0.3,
  2976. "_fogStart": 0.5,
  2977. "_fogEnd": 300,
  2978. "_fogAtten": 5,
  2979. "_fogTop": 1.5,
  2980. "_fogRange": 1.2
  2981. }
  2982. ]