1-5.prefab 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "1-5",
  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": "1-5",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 44
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [
  30. {
  31. "__id__": 50
  32. },
  33. {
  34. "__id__": 52
  35. },
  36. {
  37. "__id__": 54
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 136
  42. },
  43. "_lpos": {
  44. "__type__": "cc.Vec3",
  45. "x": 0,
  46. "y": 0,
  47. "z": 0
  48. },
  49. "_lrot": {
  50. "__type__": "cc.Quat",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0,
  54. "w": 1
  55. },
  56. "_lscale": {
  57. "__type__": "cc.Vec3",
  58. "x": 1,
  59. "y": 1,
  60. "z": 1
  61. },
  62. "_mobility": 0,
  63. "_layer": 1073741824,
  64. "_euler": {
  65. "__type__": "cc.Vec3",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0
  69. },
  70. "_id": ""
  71. },
  72. {
  73. "__type__": "cc.Node",
  74. "_objFlags": 0,
  75. "_parent": {
  76. "__id__": 1
  77. },
  78. "_prefab": {
  79. "__id__": 3
  80. },
  81. "__editorExtras__": {}
  82. },
  83. {
  84. "__type__": "cc.PrefabInfo",
  85. "root": {
  86. "__id__": 2
  87. },
  88. "asset": {
  89. "__uuid__": "78c4bda3-3fed-467e-961f-16173257dcff@4bb36",
  90. "__expectedType__": "cc.Prefab"
  91. },
  92. "fileId": "dejzFtqfdYg5IOoFUzaylf",
  93. "instance": {
  94. "__id__": 4
  95. },
  96. "targetOverrides": null
  97. },
  98. {
  99. "__type__": "cc.PrefabInstance",
  100. "fileId": "02KizakMJGIoHcwQYCSC9j",
  101. "prefabRootNode": {
  102. "__id__": 1
  103. },
  104. "mountedChildren": [],
  105. "mountedComponents": [],
  106. "propertyOverrides": [
  107. {
  108. "__id__": 5
  109. },
  110. {
  111. "__id__": 7
  112. },
  113. {
  114. "__id__": 8
  115. },
  116. {
  117. "__id__": 9
  118. },
  119. {
  120. "__id__": 10
  121. },
  122. {
  123. "__id__": 11
  124. },
  125. {
  126. "__id__": 13
  127. },
  128. {
  129. "__id__": 15
  130. },
  131. {
  132. "__id__": 17
  133. },
  134. {
  135. "__id__": 19
  136. },
  137. {
  138. "__id__": 21
  139. },
  140. {
  141. "__id__": 23
  142. },
  143. {
  144. "__id__": 24
  145. },
  146. {
  147. "__id__": 26
  148. },
  149. {
  150. "__id__": 28
  151. },
  152. {
  153. "__id__": 30
  154. },
  155. {
  156. "__id__": 31
  157. },
  158. {
  159. "__id__": 32
  160. },
  161. {
  162. "__id__": 34
  163. },
  164. {
  165. "__id__": 36
  166. },
  167. {
  168. "__id__": 38
  169. },
  170. {
  171. "__id__": 40
  172. },
  173. {
  174. "__id__": 41
  175. },
  176. {
  177. "__id__": 42
  178. }
  179. ],
  180. "removedComponents": [
  181. {
  182. "__id__": 43
  183. }
  184. ]
  185. },
  186. {
  187. "__type__": "CCPropertyOverrideInfo",
  188. "targetInfo": {
  189. "__id__": 6
  190. },
  191. "propertyPath": [
  192. "_name"
  193. ],
  194. "value": "alien2"
  195. },
  196. {
  197. "__type__": "cc.TargetInfo",
  198. "localID": [
  199. "dejzFtqfdYg5IOoFUzaylf"
  200. ]
  201. },
  202. {
  203. "__type__": "CCPropertyOverrideInfo",
  204. "targetInfo": {
  205. "__id__": 6
  206. },
  207. "propertyPath": [
  208. "_lpos"
  209. ],
  210. "value": {
  211. "__type__": "cc.Vec3",
  212. "x": 0,
  213. "y": 0,
  214. "z": 0
  215. }
  216. },
  217. {
  218. "__type__": "CCPropertyOverrideInfo",
  219. "targetInfo": {
  220. "__id__": 6
  221. },
  222. "propertyPath": [
  223. "_lrot"
  224. ],
  225. "value": {
  226. "__type__": "cc.Quat",
  227. "x": 0,
  228. "y": 0,
  229. "z": 0,
  230. "w": 1
  231. }
  232. },
  233. {
  234. "__type__": "CCPropertyOverrideInfo",
  235. "targetInfo": {
  236. "__id__": 6
  237. },
  238. "propertyPath": [
  239. "_euler"
  240. ],
  241. "value": {
  242. "__type__": "cc.Vec3",
  243. "x": 0,
  244. "y": 0,
  245. "z": 0
  246. }
  247. },
  248. {
  249. "__type__": "CCPropertyOverrideInfo",
  250. "targetInfo": {
  251. "__id__": 6
  252. },
  253. "propertyPath": [
  254. "_lscale"
  255. ],
  256. "value": {
  257. "__type__": "cc.Vec3",
  258. "x": 0.1,
  259. "y": 0.1,
  260. "z": 0.1
  261. }
  262. },
  263. {
  264. "__type__": "CCPropertyOverrideInfo",
  265. "targetInfo": {
  266. "__id__": 12
  267. },
  268. "propertyPath": [
  269. "_active"
  270. ],
  271. "value": true
  272. },
  273. {
  274. "__type__": "cc.TargetInfo",
  275. "localID": [
  276. "07GgJJJb9U9poWBMJC1PFE"
  277. ]
  278. },
  279. {
  280. "__type__": "CCPropertyOverrideInfo",
  281. "targetInfo": {
  282. "__id__": 14
  283. },
  284. "propertyPath": [
  285. "_active"
  286. ],
  287. "value": true
  288. },
  289. {
  290. "__type__": "cc.TargetInfo",
  291. "localID": [
  292. "e59ZdkN2VUvpm18dC0+pYk"
  293. ]
  294. },
  295. {
  296. "__type__": "CCPropertyOverrideInfo",
  297. "targetInfo": {
  298. "__id__": 16
  299. },
  300. "propertyPath": [
  301. "_active"
  302. ],
  303. "value": true
  304. },
  305. {
  306. "__type__": "cc.TargetInfo",
  307. "localID": [
  308. "beU1uNpLtcL48FQ4pLkOP/"
  309. ]
  310. },
  311. {
  312. "__type__": "CCPropertyOverrideInfo",
  313. "targetInfo": {
  314. "__id__": 18
  315. },
  316. "propertyPath": [
  317. "_active"
  318. ],
  319. "value": true
  320. },
  321. {
  322. "__type__": "cc.TargetInfo",
  323. "localID": [
  324. "1eCX/T5sFUv5AiQue+kNfz"
  325. ]
  326. },
  327. {
  328. "__type__": "CCPropertyOverrideInfo",
  329. "targetInfo": {
  330. "__id__": 20
  331. },
  332. "propertyPath": [
  333. "_active"
  334. ],
  335. "value": true
  336. },
  337. {
  338. "__type__": "cc.TargetInfo",
  339. "localID": [
  340. "35ZWQXPGpYn7pW5bMCak6B"
  341. ]
  342. },
  343. {
  344. "__type__": "CCPropertyOverrideInfo",
  345. "targetInfo": {
  346. "__id__": 22
  347. },
  348. "propertyPath": [
  349. "_skinningRoot"
  350. ],
  351. "value": {
  352. "__id__": 2
  353. }
  354. },
  355. {
  356. "__type__": "cc.TargetInfo",
  357. "localID": [
  358. "42YR/fEWtWs7iQqJSNEiM4"
  359. ]
  360. },
  361. {
  362. "__type__": "CCPropertyOverrideInfo",
  363. "targetInfo": {
  364. "__id__": 22
  365. },
  366. "propertyPath": [
  367. "_materials",
  368. "0"
  369. ],
  370. "value": {
  371. "__uuid__": "78c4bda3-3fed-467e-961f-16173257dcff@dd992",
  372. "__expectedType__": "cc.Material"
  373. }
  374. },
  375. {
  376. "__type__": "CCPropertyOverrideInfo",
  377. "targetInfo": {
  378. "__id__": 25
  379. },
  380. "propertyPath": [
  381. "_name"
  382. ],
  383. "value": "bodyRender"
  384. },
  385. {
  386. "__type__": "cc.TargetInfo",
  387. "localID": [
  388. "70U61mF8tX0bxegRUKN10g"
  389. ]
  390. },
  391. {
  392. "__type__": "CCPropertyOverrideInfo",
  393. "targetInfo": {
  394. "__id__": 27
  395. },
  396. "propertyPath": [
  397. "_name"
  398. ],
  399. "value": "eyeRender"
  400. },
  401. {
  402. "__type__": "cc.TargetInfo",
  403. "localID": [
  404. "6fBRG06KBSBqDj7SYlTvQJ"
  405. ]
  406. },
  407. {
  408. "__type__": "CCPropertyOverrideInfo",
  409. "targetInfo": {
  410. "__id__": 29
  411. },
  412. "propertyPath": [
  413. "_lrot"
  414. ],
  415. "value": {
  416. "__type__": "cc.Quat",
  417. "x": 0,
  418. "y": 0,
  419. "z": 3.0695692873562742e-9,
  420. "w": 1
  421. }
  422. },
  423. {
  424. "__type__": "cc.TargetInfo",
  425. "localID": [
  426. "4bfA0IC4hZYZ4QYLY/2Uvx"
  427. ]
  428. },
  429. {
  430. "__type__": "CCPropertyOverrideInfo",
  431. "targetInfo": {
  432. "__id__": 29
  433. },
  434. "propertyPath": [
  435. "_euler"
  436. ],
  437. "value": {
  438. "__type__": "cc.Vec3",
  439. "x": 0,
  440. "y": 0,
  441. "z": 3.5174673017698865e-7
  442. }
  443. },
  444. {
  445. "__type__": "CCPropertyOverrideInfo",
  446. "targetInfo": {
  447. "__id__": 29
  448. },
  449. "propertyPath": [
  450. "_lpos"
  451. ],
  452. "value": {
  453. "__type__": "cc.Vec3",
  454. "x": 1.1238962017989795e-11,
  455. "y": 0.0008915732614696026,
  456. "z": 8.812334889585216e-11
  457. }
  458. },
  459. {
  460. "__type__": "CCPropertyOverrideInfo",
  461. "targetInfo": {
  462. "__id__": 33
  463. },
  464. "propertyPath": [
  465. "_lpos"
  466. ],
  467. "value": {
  468. "__type__": "cc.Vec3",
  469. "x": 0.000020164938177913427,
  470. "y": 0.0006908487994223833,
  471. "z": 0.000034078486351063475
  472. }
  473. },
  474. {
  475. "__type__": "cc.TargetInfo",
  476. "localID": [
  477. "7cmaZ7p6ZcI5Oy6zUjHimD"
  478. ]
  479. },
  480. {
  481. "__type__": "CCPropertyOverrideInfo",
  482. "targetInfo": {
  483. "__id__": 35
  484. },
  485. "propertyPath": [
  486. "_lpos"
  487. ],
  488. "value": {
  489. "__type__": "cc.Vec3",
  490. "x": -0.000020164901798125356,
  491. "y": 0.0006908487994223833,
  492. "z": 0.000034078486351063475
  493. }
  494. },
  495. {
  496. "__type__": "cc.TargetInfo",
  497. "localID": [
  498. "88IXN414BfW6HELVje2DiZ"
  499. ]
  500. },
  501. {
  502. "__type__": "CCPropertyOverrideInfo",
  503. "targetInfo": {
  504. "__id__": 37
  505. },
  506. "propertyPath": [
  507. "_lpos"
  508. ],
  509. "value": {
  510. "__type__": "cc.Vec3",
  511. "x": 1.811713452870567e-11,
  512. "y": 0.001860996475443244,
  513. "z": -6.8394001399851856e-12
  514. }
  515. },
  516. {
  517. "__type__": "cc.TargetInfo",
  518. "localID": [
  519. "46PGDPQyZWwoKl5uxPV6s6"
  520. ]
  521. },
  522. {
  523. "__type__": "CCPropertyOverrideInfo",
  524. "targetInfo": {
  525. "__id__": 39
  526. },
  527. "propertyPath": [
  528. "_lpos"
  529. ],
  530. "value": {
  531. "__type__": "cc.Vec3",
  532. "x": -1.811713452870567e-11,
  533. "y": 0.001861,
  534. "z": 1.6734702165677184e-11
  535. }
  536. },
  537. {
  538. "__type__": "cc.TargetInfo",
  539. "localID": [
  540. "01Y1xzFZRdLo31QZuqHpLE"
  541. ]
  542. },
  543. {
  544. "__type__": "CCPropertyOverrideInfo",
  545. "targetInfo": {
  546. "__id__": 33
  547. },
  548. "propertyPath": [
  549. "_lrot"
  550. ],
  551. "value": {
  552. "__type__": "cc.Quat",
  553. "x": -0.4300574535992874,
  554. "y": -0.5612936723353442,
  555. "z": -0.4300574535992873,
  556. "w": 0.5612936723353443
  557. }
  558. },
  559. {
  560. "__type__": "CCPropertyOverrideInfo",
  561. "targetInfo": {
  562. "__id__": 33
  563. },
  564. "propertyPath": [
  565. "_euler"
  566. ],
  567. "value": {
  568. "__type__": "cc.Vec3",
  569. "x": -74.917931,
  570. "y": -90,
  571. "z": 0
  572. }
  573. },
  574. {
  575. "__type__": "CCPropertyOverrideInfo",
  576. "targetInfo": {
  577. "__id__": 29
  578. },
  579. "propertyPath": [
  580. "_active"
  581. ],
  582. "value": true
  583. },
  584. {
  585. "__type__": "cc.TargetInfo",
  586. "localID": [
  587. "617Zs86uZYCbpTTr73c/nH"
  588. ]
  589. },
  590. {
  591. "__type__": "cc.Node",
  592. "_name": "head",
  593. "_objFlags": 0,
  594. "__editorExtras__": {},
  595. "_parent": {
  596. "__id__": 1
  597. },
  598. "_children": [],
  599. "_active": true,
  600. "_components": [
  601. {
  602. "__id__": 45
  603. },
  604. {
  605. "__id__": 47
  606. }
  607. ],
  608. "_prefab": {
  609. "__id__": 49
  610. },
  611. "_lpos": {
  612. "__type__": "cc.Vec3",
  613. "x": 0,
  614. "y": 0.0949999988079071,
  615. "z": -0.007000000216066837
  616. },
  617. "_lrot": {
  618. "__type__": "cc.Quat",
  619. "x": 0,
  620. "y": 0,
  621. "z": 0,
  622. "w": 1
  623. },
  624. "_lscale": {
  625. "__type__": "cc.Vec3",
  626. "x": 1,
  627. "y": 1,
  628. "z": 1
  629. },
  630. "_mobility": 0,
  631. "_layer": 1073741824,
  632. "_euler": {
  633. "__type__": "cc.Vec3",
  634. "x": 0,
  635. "y": 0,
  636. "z": 0
  637. },
  638. "_id": ""
  639. },
  640. {
  641. "__type__": "cc.RigidBody",
  642. "_name": "",
  643. "_objFlags": 0,
  644. "__editorExtras__": {},
  645. "node": {
  646. "__id__": 44
  647. },
  648. "_enabled": true,
  649. "__prefab": {
  650. "__id__": 46
  651. },
  652. "_group": 16,
  653. "_type": 4,
  654. "_mass": 1,
  655. "_allowSleep": true,
  656. "_linearDamping": 0.1,
  657. "_angularDamping": 0.1,
  658. "_useGravity": true,
  659. "_linearFactor": {
  660. "__type__": "cc.Vec3",
  661. "x": 1,
  662. "y": 1,
  663. "z": 1
  664. },
  665. "_angularFactor": {
  666. "__type__": "cc.Vec3",
  667. "x": 1,
  668. "y": 1,
  669. "z": 1
  670. },
  671. "_id": ""
  672. },
  673. {
  674. "__type__": "cc.CompPrefabInfo",
  675. "fileId": "23AvAmTe5IfL4Fnhf8/MJt"
  676. },
  677. {
  678. "__type__": "cc.BoxCollider",
  679. "_name": "",
  680. "_objFlags": 0,
  681. "__editorExtras__": {},
  682. "node": {
  683. "__id__": 44
  684. },
  685. "_enabled": true,
  686. "__prefab": {
  687. "__id__": 48
  688. },
  689. "_material": null,
  690. "_isTrigger": false,
  691. "_center": {
  692. "__type__": "cc.Vec3",
  693. "x": 0,
  694. "y": 0,
  695. "z": 0
  696. },
  697. "_size": {
  698. "__type__": "cc.Vec3",
  699. "x": 0.049,
  700. "y": 0.054,
  701. "z": 0.048
  702. },
  703. "_id": ""
  704. },
  705. {
  706. "__type__": "cc.CompPrefabInfo",
  707. "fileId": "daOAOTnolDIa6mHABRrdle"
  708. },
  709. {
  710. "__type__": "cc.PrefabInfo",
  711. "root": {
  712. "__id__": 1
  713. },
  714. "asset": {
  715. "__id__": 0
  716. },
  717. "fileId": "e8XFJDbpZAaaKGJTbMNTgB",
  718. "instance": null,
  719. "targetOverrides": null,
  720. "nestedPrefabInstanceRoots": null
  721. },
  722. {
  723. "__type__": "cc.RigidBody",
  724. "_name": "",
  725. "_objFlags": 0,
  726. "__editorExtras__": {},
  727. "node": {
  728. "__id__": 1
  729. },
  730. "_enabled": true,
  731. "__prefab": {
  732. "__id__": 51
  733. },
  734. "_group": 8,
  735. "_type": 4,
  736. "_mass": 1,
  737. "_allowSleep": true,
  738. "_linearDamping": 0.1,
  739. "_angularDamping": 0.1,
  740. "_useGravity": true,
  741. "_linearFactor": {
  742. "__type__": "cc.Vec3",
  743. "x": 1,
  744. "y": 1,
  745. "z": 1
  746. },
  747. "_angularFactor": {
  748. "__type__": "cc.Vec3",
  749. "x": 1,
  750. "y": 1,
  751. "z": 1
  752. },
  753. "_id": ""
  754. },
  755. {
  756. "__type__": "cc.CompPrefabInfo",
  757. "fileId": "61fnjBKRlKo6OnUkMH8+wl"
  758. },
  759. {
  760. "__type__": "cc.BoxCollider",
  761. "_name": "",
  762. "_objFlags": 0,
  763. "__editorExtras__": {},
  764. "node": {
  765. "__id__": 1
  766. },
  767. "_enabled": true,
  768. "__prefab": {
  769. "__id__": 53
  770. },
  771. "_material": null,
  772. "_isTrigger": false,
  773. "_center": {
  774. "__type__": "cc.Vec3",
  775. "x": 0,
  776. "y": 0.055,
  777. "z": 0
  778. },
  779. "_size": {
  780. "__type__": "cc.Vec3",
  781. "x": 0.045,
  782. "y": 0.131,
  783. "z": 0.049
  784. },
  785. "_id": ""
  786. },
  787. {
  788. "__type__": "cc.CompPrefabInfo",
  789. "fileId": "b6/pcz/Z1HzpnSfGmvA1Fg"
  790. },
  791. {
  792. "__type__": "0f4f9NJuDVDXIj25U7eS5MZ",
  793. "_name": "",
  794. "_objFlags": 0,
  795. "__editorExtras__": {},
  796. "node": {
  797. "__id__": 1
  798. },
  799. "_enabled": true,
  800. "__prefab": {
  801. "__id__": 55
  802. },
  803. "rigidBody": {
  804. "__id__": 50
  805. },
  806. "head": {
  807. "__id__": 56
  808. },
  809. "leftHand": {
  810. "__id__": 98
  811. },
  812. "rightHand": {
  813. "__id__": 108
  814. },
  815. "leftFoot": {
  816. "__id__": 64
  817. },
  818. "rightFoot": {
  819. "__id__": 80
  820. },
  821. "eyeRender": {
  822. "__id__": 126
  823. },
  824. "bodyRender": {
  825. "__id__": 127
  826. },
  827. "hitEyeMaterial": {
  828. "__uuid__": "78c4bda3-3fed-467e-961f-16173257dcff@dd992",
  829. "__expectedType__": "cc.Material"
  830. },
  831. "hitMaterial": {
  832. "__uuid__": "69bebebe-3eaa-4678-8d8d-8e1d889e0250",
  833. "__expectedType__": "cc.Material"
  834. },
  835. "_id": ""
  836. },
  837. {
  838. "__type__": "cc.CompPrefabInfo",
  839. "fileId": "abA0+j3KZOM6TgUuktnalN"
  840. },
  841. {
  842. "__type__": "cc.Node",
  843. "_name": "spine.004",
  844. "_objFlags": 0,
  845. "__editorExtras__": {},
  846. "_parent": {
  847. "__id__": 57
  848. },
  849. "_children": [
  850. {
  851. "__id__": 119
  852. }
  853. ],
  854. "_active": true,
  855. "_components": [],
  856. "_prefab": {
  857. "__id__": 125
  858. },
  859. "_lpos": {
  860. "__type__": "cc.Vec3",
  861. "x": 1.1238962017989795e-11,
  862. "y": 0.0008915732614696026,
  863. "z": 8.812334889585216e-11
  864. },
  865. "_lrot": {
  866. "__type__": "cc.Quat",
  867. "x": 0,
  868. "y": 0,
  869. "z": 3.0695692873562742e-9,
  870. "w": 1
  871. },
  872. "_lscale": {
  873. "__type__": "cc.Vec3",
  874. "x": 1,
  875. "y": 1.0000001192092896,
  876. "z": 1.000000238418579
  877. },
  878. "_mobility": 0,
  879. "_layer": 1073741824,
  880. "_euler": {
  881. "__type__": "cc.Vec3",
  882. "x": 0,
  883. "y": 0,
  884. "z": 3.5174673017698865e-7
  885. },
  886. "_id": ""
  887. },
  888. {
  889. "__type__": "cc.Node",
  890. "_name": "spine.003",
  891. "_objFlags": 0,
  892. "__editorExtras__": {},
  893. "_parent": {
  894. "__id__": 58
  895. },
  896. "_children": [
  897. {
  898. "__id__": 56
  899. },
  900. {
  901. "__id__": 98
  902. },
  903. {
  904. "__id__": 108
  905. }
  906. ],
  907. "_active": true,
  908. "_components": [],
  909. "_prefab": {
  910. "__id__": 118
  911. },
  912. "_lpos": {
  913. "__type__": "cc.Vec3",
  914. "x": -2.25512945990769e-12,
  915. "y": 0.000737909518647939,
  916. "z": 1.560026240132739e-11
  917. },
  918. "_lrot": {
  919. "__type__": "cc.Quat",
  920. "x": -0.012637507344085986,
  921. "y": -1.311864981352867e-7,
  922. "z": -1.4120144359039185e-8,
  923. "w": 0.9999201435155264
  924. },
  925. "_lscale": {
  926. "__type__": "cc.Vec3",
  927. "x": 1,
  928. "y": 1,
  929. "z": 0.9999999403953552
  930. },
  931. "_mobility": 0,
  932. "_layer": 1073741824,
  933. "_euler": {
  934. "__type__": "cc.Vec3",
  935. "x": -1.4481902180954003,
  936. "y": -0.000015052112983344468,
  937. "z": -0.0000014279421978497032
  938. },
  939. "_id": ""
  940. },
  941. {
  942. "__type__": "cc.Node",
  943. "_name": "spine.002",
  944. "_objFlags": 0,
  945. "__editorExtras__": {},
  946. "_parent": {
  947. "__id__": 59
  948. },
  949. "_children": [
  950. {
  951. "__id__": 57
  952. }
  953. ],
  954. "_active": true,
  955. "_components": [],
  956. "_prefab": {
  957. "__id__": 97
  958. },
  959. "_lpos": {
  960. "__type__": "cc.Vec3",
  961. "x": 4.656612768993984e-12,
  962. "y": 0.0005184284527786076,
  963. "z": 1.8626451075975936e-11
  964. },
  965. "_lrot": {
  966. "__type__": "cc.Quat",
  967. "x": 0.03699538840640157,
  968. "y": 1.2794056602855066e-7,
  969. "z": 1.4208759440457216e-8,
  970. "w": 0.999315436304595
  971. },
  972. "_lscale": {
  973. "__type__": "cc.Vec3",
  974. "x": 1,
  975. "y": 0.9999998211860657,
  976. "z": 1.0000001192092896
  977. },
  978. "_mobility": 0,
  979. "_layer": 1073741824,
  980. "_euler": {
  981. "__type__": "cc.Vec3",
  982. "x": 4.240326869710741,
  983. "y": 0.00001459063656236941,
  984. "z": 0.0000021694753068643515
  985. },
  986. "_id": ""
  987. },
  988. {
  989. "__type__": "cc.Node",
  990. "_name": "spine.001",
  991. "_objFlags": 0,
  992. "__editorExtras__": {},
  993. "_parent": {
  994. "__id__": 60
  995. },
  996. "_children": [
  997. {
  998. "__id__": 58
  999. }
  1000. ],
  1001. "_active": true,
  1002. "_components": [],
  1003. "_prefab": {
  1004. "__id__": 96
  1005. },
  1006. "_lpos": {
  1007. "__type__": "cc.Vec3",
  1008. "x": 4.656612768993984e-12,
  1009. "y": 0.0006008372292853892,
  1010. "z": 2.2351741291171123e-10
  1011. },
  1012. "_lrot": {
  1013. "__type__": "cc.Quat",
  1014. "x": 0.03176893577707812,
  1015. "y": 6.0058207704130504e-18,
  1016. "z": 1.9089478480715395e-19,
  1017. "w": 0.9994952399684512
  1018. },
  1019. "_lscale": {
  1020. "__type__": "cc.Vec3",
  1021. "x": 1,
  1022. "y": 1,
  1023. "z": 0.9999999403953552
  1024. },
  1025. "_mobility": 0,
  1026. "_layer": 1073741824,
  1027. "_euler": {
  1028. "__type__": "cc.Vec3",
  1029. "x": 3.641064521195939,
  1030. "y": 6.871740379209854e-16,
  1031. "z": 4.372779092052782e-17
  1032. },
  1033. "_id": ""
  1034. },
  1035. {
  1036. "__type__": "cc.Node",
  1037. "_name": "spine",
  1038. "_objFlags": 0,
  1039. "__editorExtras__": {},
  1040. "_parent": {
  1041. "__id__": 61
  1042. },
  1043. "_children": [
  1044. {
  1045. "__id__": 59
  1046. },
  1047. {
  1048. "__id__": 63
  1049. },
  1050. {
  1051. "__id__": 79
  1052. }
  1053. ],
  1054. "_active": true,
  1055. "_components": [],
  1056. "_prefab": {
  1057. "__id__": 95
  1058. },
  1059. "_lpos": {
  1060. "__type__": "cc.Vec3",
  1061. "x": 0.000060758789913961664,
  1062. "y": 0.0002356016484554857,
  1063. "z": 0.0044700936414301395
  1064. },
  1065. "_lrot": {
  1066. "__type__": "cc.Quat",
  1067. "x": 0.6447614455583839,
  1068. "y": 4.3945248200884655e-18,
  1069. "z": 3.70680106596606e-18,
  1070. "w": 0.7643838553511338
  1071. },
  1072. "_lscale": {
  1073. "__type__": "cc.Vec3",
  1074. "x": 1,
  1075. "y": 0.9999999403953552,
  1076. "z": 0.9999999403953552
  1077. },
  1078. "_mobility": 0,
  1079. "_layer": 1073741824,
  1080. "_euler": {
  1081. "__type__": "cc.Vec3",
  1082. "x": 80.29558366717453,
  1083. "y": 1.1105084150952885e-16,
  1084. "z": 6.493719232505795e-16
  1085. },
  1086. "_id": ""
  1087. },
  1088. {
  1089. "__type__": "cc.Node",
  1090. "_name": "metarig",
  1091. "_objFlags": 0,
  1092. "__editorExtras__": {},
  1093. "_parent": {
  1094. "__id__": 2
  1095. },
  1096. "_children": [
  1097. {
  1098. "__id__": 60
  1099. }
  1100. ],
  1101. "_active": true,
  1102. "_components": [],
  1103. "_prefab": {
  1104. "__id__": 62
  1105. },
  1106. "_lpos": {
  1107. "__type__": "cc.Vec3",
  1108. "x": 0,
  1109. "y": 0,
  1110. "z": 0
  1111. },
  1112. "_lrot": {
  1113. "__type__": "cc.Quat",
  1114. "x": -0.7071068705935067,
  1115. "y": 0,
  1116. "z": 0,
  1117. "w": 0.7071066917795769
  1118. },
  1119. "_lscale": {
  1120. "__type__": "cc.Vec3",
  1121. "x": 100,
  1122. "y": 100,
  1123. "z": 100
  1124. },
  1125. "_mobility": 0,
  1126. "_layer": 1073741824,
  1127. "_euler": {
  1128. "__type__": "cc.Vec3",
  1129. "x": -90.00001448901888,
  1130. "y": 0,
  1131. "z": 0
  1132. },
  1133. "_id": ""
  1134. },
  1135. {
  1136. "__type__": "cc.PrefabInfo",
  1137. "root": {
  1138. "__id__": 1
  1139. },
  1140. "asset": {
  1141. "__id__": 0
  1142. },
  1143. "fileId": "07GgJJJb9U9poWBMJC1PFE",
  1144. "instance": null,
  1145. "targetOverrides": null,
  1146. "nestedPrefabInstanceRoots": null
  1147. },
  1148. {
  1149. "__type__": "cc.Node",
  1150. "_name": "thigh.L",
  1151. "_objFlags": 0,
  1152. "__editorExtras__": {},
  1153. "_parent": {
  1154. "__id__": 60
  1155. },
  1156. "_children": [
  1157. {
  1158. "__id__": 64
  1159. }
  1160. ],
  1161. "_active": true,
  1162. "_components": [],
  1163. "_prefab": {
  1164. "__id__": 78
  1165. },
  1166. "_lpos": {
  1167. "__type__": "cc.Vec3",
  1168. "x": 0.0004891635617241263,
  1169. "y": 0.00021869255579076707,
  1170. "z": 0.0000015626475260432926
  1171. },
  1172. "_lrot": {
  1173. "__type__": "cc.Quat",
  1174. "x": 0.997163206938459,
  1175. "y": 0.016408036913762324,
  1176. "z": -0.0005049446915479425,
  1177. "w": -0.07345787965700643
  1178. },
  1179. "_lscale": {
  1180. "__type__": "cc.Vec3",
  1181. "x": 1.0000007152557373,
  1182. "y": 1,
  1183. "z": 1.0000096559524536
  1184. },
  1185. "_mobility": 0,
  1186. "_layer": 1073741824,
  1187. "_euler": {
  1188. "__type__": "cc.Vec3",
  1189. "x": -171.57230093209103,
  1190. "y": -0.08046221743378848,
  1191. "z": 1.8794762245774106
  1192. },
  1193. "_id": ""
  1194. },
  1195. {
  1196. "__type__": "cc.Node",
  1197. "_name": "shin.L",
  1198. "_objFlags": 0,
  1199. "__editorExtras__": {},
  1200. "_parent": {
  1201. "__id__": 63
  1202. },
  1203. "_children": [
  1204. {
  1205. "__id__": 65
  1206. }
  1207. ],
  1208. "_active": true,
  1209. "_components": [],
  1210. "_prefab": {
  1211. "__id__": 77
  1212. },
  1213. "_lpos": {
  1214. "__type__": "cc.Vec3",
  1215. "x": 1.811713452870567e-11,
  1216. "y": 0.001860996475443244,
  1217. "z": -6.8394001399851856e-12
  1218. },
  1219. "_lrot": {
  1220. "__type__": "cc.Quat",
  1221. "x": 0.04992698415228021,
  1222. "y": 0.0033266110675427216,
  1223. "z": 0.003716206809353558,
  1224. "w": 0.9987404165844163
  1225. },
  1226. "_lscale": {
  1227. "__type__": "cc.Vec3",
  1228. "x": 0.9999997019767761,
  1229. "y": 0.9999998211860657,
  1230. "z": 0.9999999403953552
  1231. },
  1232. "_mobility": 0,
  1233. "_layer": 1073741824,
  1234. "_euler": {
  1235. "__type__": "cc.Vec3",
  1236. "x": 5.722267830121501,
  1237. "y": 0.35947335867276353,
  1238. "z": 0.4443462413141617
  1239. },
  1240. "_id": ""
  1241. },
  1242. {
  1243. "__type__": "cc.Node",
  1244. "_name": "foot.L",
  1245. "_objFlags": 0,
  1246. "__editorExtras__": {},
  1247. "_parent": {
  1248. "__id__": 64
  1249. },
  1250. "_children": [
  1251. {
  1252. "__id__": 66
  1253. },
  1254. {
  1255. "__id__": 70
  1256. }
  1257. ],
  1258. "_active": true,
  1259. "_components": [],
  1260. "_prefab": {
  1261. "__id__": 76
  1262. },
  1263. "_lpos": {
  1264. "__type__": "cc.Vec3",
  1265. "x": -1.1321390352980742e-10,
  1266. "y": 0.0024248508270829916,
  1267. "z": -5.4278644079364113e-11
  1268. },
  1269. "_lrot": {
  1270. "__type__": "cc.Quat",
  1271. "x": -0.6689279238212968,
  1272. "y": -0.008513084814852055,
  1273. "z": 0.009193849036764373,
  1274. "w": 0.743221658227849
  1275. },
  1276. "_lscale": {
  1277. "__type__": "cc.Vec3",
  1278. "x": 1.0000001192092896,
  1279. "y": 1,
  1280. "z": 1.000000238418579
  1281. },
  1282. "_mobility": 0,
  1283. "_layer": 1073741824,
  1284. "_euler": {
  1285. "__type__": "cc.Vec3",
  1286. "x": -83.97659249432151,
  1287. "y": -0.020299010002502782,
  1288. "z": 1.4357198212859923
  1289. },
  1290. "_id": ""
  1291. },
  1292. {
  1293. "__type__": "cc.Node",
  1294. "_name": "toe.L",
  1295. "_objFlags": 0,
  1296. "__editorExtras__": {},
  1297. "_parent": {
  1298. "__id__": 65
  1299. },
  1300. "_children": [
  1301. {
  1302. "__id__": 67
  1303. }
  1304. ],
  1305. "_active": true,
  1306. "_components": [],
  1307. "_prefab": {
  1308. "__id__": 69
  1309. },
  1310. "_lpos": {
  1311. "__type__": "cc.Vec3",
  1312. "x": 2.3918294428382225e-11,
  1313. "y": 0.0006298104417510331,
  1314. "z": 1.651983411177227e-11
  1315. },
  1316. "_lrot": {
  1317. "__type__": "cc.Quat",
  1318. "x": -1.6716743187745906e-8,
  1319. "y": 0.9999236846867469,
  1320. "z": -0.012354140837238417,
  1321. "w": 0.0000025792962236633847
  1322. },
  1323. "_lscale": {
  1324. "__type__": "cc.Vec3",
  1325. "x": 1,
  1326. "y": 1,
  1327. "z": 0.9999998211860657
  1328. },
  1329. "_mobility": 0,
  1330. "_layer": 1073741824,
  1331. "_euler": {
  1332. "__type__": "cc.Vec3",
  1333. "x": 1.4157162727502477,
  1334. "y": 179.9997044806463,
  1335. "z": -0.00000556691022015891
  1336. },
  1337. "_id": ""
  1338. },
  1339. {
  1340. "__type__": "cc.Node",
  1341. "_name": "toe.L_end",
  1342. "_objFlags": 0,
  1343. "__editorExtras__": {},
  1344. "_parent": {
  1345. "__id__": 66
  1346. },
  1347. "_children": [],
  1348. "_active": true,
  1349. "_components": [],
  1350. "_prefab": {
  1351. "__id__": 68
  1352. },
  1353. "_lpos": {
  1354. "__type__": "cc.Vec3",
  1355. "x": 1.3877787497621727e-19,
  1356. "y": 0.0007033878355287015,
  1357. "z": 6.938893748810864e-20
  1358. },
  1359. "_lrot": {
  1360. "__type__": "cc.Quat",
  1361. "x": 0,
  1362. "y": 0,
  1363. "z": 0,
  1364. "w": 1
  1365. },
  1366. "_lscale": {
  1367. "__type__": "cc.Vec3",
  1368. "x": 1,
  1369. "y": 1,
  1370. "z": 1
  1371. },
  1372. "_mobility": 0,
  1373. "_layer": 1073741824,
  1374. "_euler": {
  1375. "__type__": "cc.Vec3",
  1376. "x": 0,
  1377. "y": 0,
  1378. "z": 0
  1379. },
  1380. "_id": ""
  1381. },
  1382. {
  1383. "__type__": "cc.PrefabInfo",
  1384. "root": {
  1385. "__id__": 1
  1386. },
  1387. "asset": {
  1388. "__id__": 0
  1389. },
  1390. "fileId": "50luoqeFZcvr4krjTycDsp",
  1391. "instance": null,
  1392. "targetOverrides": null,
  1393. "nestedPrefabInstanceRoots": null
  1394. },
  1395. {
  1396. "__type__": "cc.PrefabInfo",
  1397. "root": {
  1398. "__id__": 1
  1399. },
  1400. "asset": {
  1401. "__id__": 0
  1402. },
  1403. "fileId": "b5/vF6NoRYDYnkQMcYakkZ",
  1404. "instance": null,
  1405. "targetOverrides": null,
  1406. "nestedPrefabInstanceRoots": null
  1407. },
  1408. {
  1409. "__type__": "cc.Node",
  1410. "_name": "heel.02.L",
  1411. "_objFlags": 0,
  1412. "__editorExtras__": {},
  1413. "_parent": {
  1414. "__id__": 65
  1415. },
  1416. "_children": [
  1417. {
  1418. "__id__": 71
  1419. }
  1420. ],
  1421. "_active": true,
  1422. "_components": [],
  1423. "_prefab": {
  1424. "__id__": 75
  1425. },
  1426. "_lpos": {
  1427. "__type__": "cc.Vec3",
  1428. "x": -0.0001621898845769465,
  1429. "y": 0.0002671581460162997,
  1430. "z": 0.00022534521121997386
  1431. },
  1432. "_lrot": {
  1433. "__type__": "cc.Quat",
  1434. "x": 0.7041563340705528,
  1435. "y": 0.7041533538383355,
  1436. "z": -0.06454346282245182,
  1437. "w": 0.06454496783972151
  1438. },
  1439. "_lscale": {
  1440. "__type__": "cc.Vec3",
  1441. "x": 0.9999998807907104,
  1442. "y": 1,
  1443. "z": 0.9999997615814209
  1444. },
  1445. "_mobility": 0,
  1446. "_layer": 1073741824,
  1447. "_euler": {
  1448. "__type__": "cc.Vec3",
  1449. "x": 90.00126154305072,
  1450. "y": 89.99861599647292,
  1451. "z": 79.52558236033835
  1452. },
  1453. "_id": ""
  1454. },
  1455. {
  1456. "__type__": "cc.Node",
  1457. "_name": "heel.02.L_end",
  1458. "_objFlags": 0,
  1459. "__editorExtras__": {},
  1460. "_parent": {
  1461. "__id__": 70
  1462. },
  1463. "_children": [
  1464. {
  1465. "__id__": 72
  1466. }
  1467. ],
  1468. "_active": true,
  1469. "_components": [],
  1470. "_prefab": {
  1471. "__id__": 74
  1472. },
  1473. "_lpos": {
  1474. "__type__": "cc.Vec3",
  1475. "x": -7.53815239395994e-12,
  1476. "y": 0.0003414516104385257,
  1477. "z": -6.68691772960639e-13
  1478. },
  1479. "_lrot": {
  1480. "__type__": "cc.Quat",
  1481. "x": 0,
  1482. "y": 0,
  1483. "z": 0,
  1484. "w": 1
  1485. },
  1486. "_lscale": {
  1487. "__type__": "cc.Vec3",
  1488. "x": 1,
  1489. "y": 1,
  1490. "z": 1
  1491. },
  1492. "_mobility": 0,
  1493. "_layer": 1073741824,
  1494. "_euler": {
  1495. "__type__": "cc.Vec3",
  1496. "x": 0,
  1497. "y": 0,
  1498. "z": 0
  1499. },
  1500. "_id": ""
  1501. },
  1502. {
  1503. "__type__": "cc.Node",
  1504. "_name": "heel.02.L_end_end",
  1505. "_objFlags": 0,
  1506. "__editorExtras__": {},
  1507. "_parent": {
  1508. "__id__": 71
  1509. },
  1510. "_children": [],
  1511. "_active": true,
  1512. "_components": [],
  1513. "_prefab": {
  1514. "__id__": 73
  1515. },
  1516. "_lpos": {
  1517. "__type__": "cc.Vec3",
  1518. "x": 3.469446874405432e-20,
  1519. "y": 0.00034145184326916933,
  1520. "z": 1.734723437202716e-20
  1521. },
  1522. "_lrot": {
  1523. "__type__": "cc.Quat",
  1524. "x": 0,
  1525. "y": 0,
  1526. "z": 0,
  1527. "w": 1
  1528. },
  1529. "_lscale": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 1,
  1532. "y": 1,
  1533. "z": 1
  1534. },
  1535. "_mobility": 0,
  1536. "_layer": 1073741824,
  1537. "_euler": {
  1538. "__type__": "cc.Vec3",
  1539. "x": 0,
  1540. "y": 0,
  1541. "z": 0
  1542. },
  1543. "_id": ""
  1544. },
  1545. {
  1546. "__type__": "cc.PrefabInfo",
  1547. "root": {
  1548. "__id__": 1
  1549. },
  1550. "asset": {
  1551. "__id__": 0
  1552. },
  1553. "fileId": "92HK7AweNS8K9efO4IUTRZ",
  1554. "instance": null,
  1555. "targetOverrides": null,
  1556. "nestedPrefabInstanceRoots": null
  1557. },
  1558. {
  1559. "__type__": "cc.PrefabInfo",
  1560. "root": {
  1561. "__id__": 1
  1562. },
  1563. "asset": {
  1564. "__id__": 0
  1565. },
  1566. "fileId": "7dVv4tuqBZPbtGbN045PSB",
  1567. "instance": null,
  1568. "targetOverrides": null,
  1569. "nestedPrefabInstanceRoots": null
  1570. },
  1571. {
  1572. "__type__": "cc.PrefabInfo",
  1573. "root": {
  1574. "__id__": 1
  1575. },
  1576. "asset": {
  1577. "__id__": 0
  1578. },
  1579. "fileId": "5atYxKDW9Q97qogz11AzHe",
  1580. "instance": null,
  1581. "targetOverrides": null,
  1582. "nestedPrefabInstanceRoots": null
  1583. },
  1584. {
  1585. "__type__": "cc.PrefabInfo",
  1586. "root": {
  1587. "__id__": 1
  1588. },
  1589. "asset": {
  1590. "__id__": 0
  1591. },
  1592. "fileId": "746qq9seFbK7hJrOdvA7q7",
  1593. "instance": null,
  1594. "targetOverrides": null,
  1595. "nestedPrefabInstanceRoots": null
  1596. },
  1597. {
  1598. "__type__": "cc.PrefabInfo",
  1599. "root": {
  1600. "__id__": 1
  1601. },
  1602. "asset": {
  1603. "__id__": 0
  1604. },
  1605. "fileId": "46PGDPQyZWwoKl5uxPV6s6",
  1606. "instance": null,
  1607. "targetOverrides": null,
  1608. "nestedPrefabInstanceRoots": null
  1609. },
  1610. {
  1611. "__type__": "cc.PrefabInfo",
  1612. "root": {
  1613. "__id__": 1
  1614. },
  1615. "asset": {
  1616. "__id__": 0
  1617. },
  1618. "fileId": "d9ckqJ2QpbsrGObDsyq93y",
  1619. "instance": null,
  1620. "targetOverrides": null,
  1621. "nestedPrefabInstanceRoots": null
  1622. },
  1623. {
  1624. "__type__": "cc.Node",
  1625. "_name": "thigh.R",
  1626. "_objFlags": 0,
  1627. "__editorExtras__": {},
  1628. "_parent": {
  1629. "__id__": 60
  1630. },
  1631. "_children": [
  1632. {
  1633. "__id__": 80
  1634. }
  1635. ],
  1636. "_active": true,
  1637. "_components": [],
  1638. "_prefab": {
  1639. "__id__": 94
  1640. },
  1641. "_lpos": {
  1642. "__type__": "cc.Vec3",
  1643. "x": -0.0004891635617241263,
  1644. "y": 0.00021869255579076707,
  1645. "z": 0.0000015626475260432926
  1646. },
  1647. "_lrot": {
  1648. "__type__": "cc.Quat",
  1649. "x": 0.997163206938459,
  1650. "y": -0.016408036913762324,
  1651. "z": 0.0005049446915479425,
  1652. "w": -0.07345787965700643
  1653. },
  1654. "_lscale": {
  1655. "__type__": "cc.Vec3",
  1656. "x": 1.0000007152557373,
  1657. "y": 1,
  1658. "z": 1.0000096559524536
  1659. },
  1660. "_mobility": 0,
  1661. "_layer": 1073741824,
  1662. "_euler": {
  1663. "__type__": "cc.Vec3",
  1664. "x": -171.57230093209103,
  1665. "y": 0.08046221743378848,
  1666. "z": -1.8794762245774106
  1667. },
  1668. "_id": ""
  1669. },
  1670. {
  1671. "__type__": "cc.Node",
  1672. "_name": "shin.R",
  1673. "_objFlags": 0,
  1674. "__editorExtras__": {},
  1675. "_parent": {
  1676. "__id__": 79
  1677. },
  1678. "_children": [
  1679. {
  1680. "__id__": 81
  1681. }
  1682. ],
  1683. "_active": true,
  1684. "_components": [],
  1685. "_prefab": {
  1686. "__id__": 93
  1687. },
  1688. "_lpos": {
  1689. "__type__": "cc.Vec3",
  1690. "x": -1.811713452870567e-11,
  1691. "y": 0.001861,
  1692. "z": 1.6734702165677184e-11
  1693. },
  1694. "_lrot": {
  1695. "__type__": "cc.Quat",
  1696. "x": 0.04992697672047528,
  1697. "y": -0.0033266259699546562,
  1698. "z": -0.0037161923752514234,
  1699. "w": 0.9987404169600024
  1700. },
  1701. "_lscale": {
  1702. "__type__": "cc.Vec3",
  1703. "x": 0.9999997019767761,
  1704. "y": 0.9999998211860657,
  1705. "z": 0.9999999403953552
  1706. },
  1707. "_mobility": 0,
  1708. "_layer": 1073741824,
  1709. "_euler": {
  1710. "__type__": "cc.Vec3",
  1711. "x": 5.722266975378697,
  1712. "y": -0.35947515011367986,
  1713. "z": -0.4443446719108391
  1714. },
  1715. "_id": ""
  1716. },
  1717. {
  1718. "__type__": "cc.Node",
  1719. "_name": "foot.R",
  1720. "_objFlags": 0,
  1721. "__editorExtras__": {},
  1722. "_parent": {
  1723. "__id__": 80
  1724. },
  1725. "_children": [
  1726. {
  1727. "__id__": 82
  1728. },
  1729. {
  1730. "__id__": 86
  1731. }
  1732. ],
  1733. "_active": true,
  1734. "_components": [],
  1735. "_prefab": {
  1736. "__id__": 92
  1737. },
  1738. "_lpos": {
  1739. "__type__": "cc.Vec3",
  1740. "x": 4.0963642200519956e-11,
  1741. "y": 0.002424850594252348,
  1742. "z": 8.98580775759994e-12
  1743. },
  1744. "_lrot": {
  1745. "__type__": "cc.Quat",
  1746. "x": -0.6689277299355086,
  1747. "y": 0.008513589399876753,
  1748. "z": -0.009194387134063257,
  1749. "w": 0.7432218202959913
  1750. },
  1751. "_lscale": {
  1752. "__type__": "cc.Vec3",
  1753. "x": 1.0000001192092896,
  1754. "y": 1.0000001192092896,
  1755. "z": 1.0000003576278687
  1756. },
  1757. "_mobility": 0,
  1758. "_layer": 1073741824,
  1759. "_euler": {
  1760. "__type__": "cc.Vec3",
  1761. "x": -83.97656351286031,
  1762. "y": 0.020301100717364927,
  1763. "z": -1.4358043357215784
  1764. },
  1765. "_id": ""
  1766. },
  1767. {
  1768. "__type__": "cc.Node",
  1769. "_name": "toe.R",
  1770. "_objFlags": 0,
  1771. "__editorExtras__": {},
  1772. "_parent": {
  1773. "__id__": 81
  1774. },
  1775. "_children": [
  1776. {
  1777. "__id__": 83
  1778. }
  1779. ],
  1780. "_active": true,
  1781. "_components": [],
  1782. "_prefab": {
  1783. "__id__": 85
  1784. },
  1785. "_lpos": {
  1786. "__type__": "cc.Vec3",
  1787. "x": -2.1508532802028135e-11,
  1788. "y": 0.0006298104417510331,
  1789. "z": -4.602242198448181e-11
  1790. },
  1791. "_lrot": {
  1792. "__type__": "cc.Quat",
  1793. "x": -7.906571923186949e-8,
  1794. "y": 0.9999236826640769,
  1795. "z": -0.012354304725017458,
  1796. "w": -0.0000015051474167988004
  1797. },
  1798. "_lscale": {
  1799. "__type__": "cc.Vec3",
  1800. "x": 1,
  1801. "y": 0.9999997615814209,
  1802. "z": 0.9999998807907104
  1803. },
  1804. "_mobility": 0,
  1805. "_layer": 1073741824,
  1806. "_euler": {
  1807. "__type__": "cc.Vec3",
  1808. "x": 1.415735054361385,
  1809. "y": -179.9998274240407,
  1810. "z": -0.000006928736825389119
  1811. },
  1812. "_id": ""
  1813. },
  1814. {
  1815. "__type__": "cc.Node",
  1816. "_name": "toe.R_end",
  1817. "_objFlags": 0,
  1818. "__editorExtras__": {},
  1819. "_parent": {
  1820. "__id__": 82
  1821. },
  1822. "_children": [],
  1823. "_active": true,
  1824. "_components": [],
  1825. "_prefab": {
  1826. "__id__": 84
  1827. },
  1828. "_lpos": {
  1829. "__type__": "cc.Vec3",
  1830. "x": 6.938893748810864e-20,
  1831. "y": 0.0007033878355287015,
  1832. "z": 0
  1833. },
  1834. "_lrot": {
  1835. "__type__": "cc.Quat",
  1836. "x": 0,
  1837. "y": 0,
  1838. "z": 0,
  1839. "w": 1
  1840. },
  1841. "_lscale": {
  1842. "__type__": "cc.Vec3",
  1843. "x": 1,
  1844. "y": 1,
  1845. "z": 1
  1846. },
  1847. "_mobility": 0,
  1848. "_layer": 1073741824,
  1849. "_euler": {
  1850. "__type__": "cc.Vec3",
  1851. "x": 0,
  1852. "y": 0,
  1853. "z": 0
  1854. },
  1855. "_id": ""
  1856. },
  1857. {
  1858. "__type__": "cc.PrefabInfo",
  1859. "root": {
  1860. "__id__": 1
  1861. },
  1862. "asset": {
  1863. "__id__": 0
  1864. },
  1865. "fileId": "85lIgmpPdT6IYuM0LOAPvj",
  1866. "instance": null,
  1867. "targetOverrides": null,
  1868. "nestedPrefabInstanceRoots": null
  1869. },
  1870. {
  1871. "__type__": "cc.PrefabInfo",
  1872. "root": {
  1873. "__id__": 1
  1874. },
  1875. "asset": {
  1876. "__id__": 0
  1877. },
  1878. "fileId": "2ekgvAwglWMY9YF9uqYZPF",
  1879. "instance": null,
  1880. "targetOverrides": null,
  1881. "nestedPrefabInstanceRoots": null
  1882. },
  1883. {
  1884. "__type__": "cc.Node",
  1885. "_name": "heel.02.R",
  1886. "_objFlags": 0,
  1887. "__editorExtras__": {},
  1888. "_parent": {
  1889. "__id__": 81
  1890. },
  1891. "_children": [
  1892. {
  1893. "__id__": 87
  1894. }
  1895. ],
  1896. "_active": true,
  1897. "_components": [],
  1898. "_prefab": {
  1899. "__id__": 91
  1900. },
  1901. "_lpos": {
  1902. "__type__": "cc.Vec3",
  1903. "x": 0.00016218954988289624,
  1904. "y": 0.0002671582333277911,
  1905. "z": 0.0002253454294987023
  1906. },
  1907. "_lrot": {
  1908. "__type__": "cc.Quat",
  1909. "x": 0.7041564529413182,
  1910. "y": -0.7041532342905252,
  1911. "z": 0.06454398433206032,
  1912. "w": 0.0645444537186343
  1913. },
  1914. "_lscale": {
  1915. "__type__": "cc.Vec3",
  1916. "x": 1,
  1917. "y": 1,
  1918. "z": 0.9999998211860657
  1919. },
  1920. "_mobility": 0,
  1921. "_layer": 1073741824,
  1922. "_euler": {
  1923. "__type__": "cc.Vec3",
  1924. "x": 90.00140949851017,
  1925. "y": -89.99855230837122,
  1926. "z": -79.52558175868235
  1927. },
  1928. "_id": ""
  1929. },
  1930. {
  1931. "__type__": "cc.Node",
  1932. "_name": "heel.02.R_end",
  1933. "_objFlags": 0,
  1934. "__editorExtras__": {},
  1935. "_parent": {
  1936. "__id__": 86
  1937. },
  1938. "_children": [
  1939. {
  1940. "__id__": 88
  1941. }
  1942. ],
  1943. "_active": true,
  1944. "_components": [],
  1945. "_prefab": {
  1946. "__id__": 90
  1947. },
  1948. "_lpos": {
  1949. "__type__": "cc.Vec3",
  1950. "x": 1.224220784424787e-13,
  1951. "y": 0.00034145149402320385,
  1952. "z": 3.794476018115223e-12
  1953. },
  1954. "_lrot": {
  1955. "__type__": "cc.Quat",
  1956. "x": 0,
  1957. "y": 0,
  1958. "z": 0,
  1959. "w": 1
  1960. },
  1961. "_lscale": {
  1962. "__type__": "cc.Vec3",
  1963. "x": 1,
  1964. "y": 1,
  1965. "z": 1
  1966. },
  1967. "_mobility": 0,
  1968. "_layer": 1073741824,
  1969. "_euler": {
  1970. "__type__": "cc.Vec3",
  1971. "x": 0,
  1972. "y": 0,
  1973. "z": 0
  1974. },
  1975. "_id": ""
  1976. },
  1977. {
  1978. "__type__": "cc.Node",
  1979. "_name": "heel.02.R_end_end",
  1980. "_objFlags": 0,
  1981. "__editorExtras__": {},
  1982. "_parent": {
  1983. "__id__": 87
  1984. },
  1985. "_children": [],
  1986. "_active": true,
  1987. "_components": [],
  1988. "_prefab": {
  1989. "__id__": 89
  1990. },
  1991. "_lpos": {
  1992. "__type__": "cc.Vec3",
  1993. "x": 0,
  1994. "y": 0.0003414516104385257,
  1995. "z": -1.734723437202716e-20
  1996. },
  1997. "_lrot": {
  1998. "__type__": "cc.Quat",
  1999. "x": 0,
  2000. "y": 0,
  2001. "z": 0,
  2002. "w": 1
  2003. },
  2004. "_lscale": {
  2005. "__type__": "cc.Vec3",
  2006. "x": 1,
  2007. "y": 1,
  2008. "z": 1
  2009. },
  2010. "_mobility": 0,
  2011. "_layer": 1073741824,
  2012. "_euler": {
  2013. "__type__": "cc.Vec3",
  2014. "x": 0,
  2015. "y": 0,
  2016. "z": 0
  2017. },
  2018. "_id": ""
  2019. },
  2020. {
  2021. "__type__": "cc.PrefabInfo",
  2022. "root": {
  2023. "__id__": 1
  2024. },
  2025. "asset": {
  2026. "__id__": 0
  2027. },
  2028. "fileId": "75atGMHw1doqez8z4RGLKy",
  2029. "instance": null,
  2030. "targetOverrides": null,
  2031. "nestedPrefabInstanceRoots": null
  2032. },
  2033. {
  2034. "__type__": "cc.PrefabInfo",
  2035. "root": {
  2036. "__id__": 1
  2037. },
  2038. "asset": {
  2039. "__id__": 0
  2040. },
  2041. "fileId": "86zquYi0ZYkYtZY4zsdELd",
  2042. "instance": null,
  2043. "targetOverrides": null,
  2044. "nestedPrefabInstanceRoots": null
  2045. },
  2046. {
  2047. "__type__": "cc.PrefabInfo",
  2048. "root": {
  2049. "__id__": 1
  2050. },
  2051. "asset": {
  2052. "__id__": 0
  2053. },
  2054. "fileId": "23Rm6JT7led7xKU7qJPieh",
  2055. "instance": null,
  2056. "targetOverrides": null,
  2057. "nestedPrefabInstanceRoots": null
  2058. },
  2059. {
  2060. "__type__": "cc.PrefabInfo",
  2061. "root": {
  2062. "__id__": 1
  2063. },
  2064. "asset": {
  2065. "__id__": 0
  2066. },
  2067. "fileId": "33oue/ezFYTLGmslo0Zjtl",
  2068. "instance": null,
  2069. "targetOverrides": null,
  2070. "nestedPrefabInstanceRoots": null
  2071. },
  2072. {
  2073. "__type__": "cc.PrefabInfo",
  2074. "root": {
  2075. "__id__": 1
  2076. },
  2077. "asset": {
  2078. "__id__": 0
  2079. },
  2080. "fileId": "01Y1xzFZRdLo31QZuqHpLE",
  2081. "instance": null,
  2082. "targetOverrides": null,
  2083. "nestedPrefabInstanceRoots": null
  2084. },
  2085. {
  2086. "__type__": "cc.PrefabInfo",
  2087. "root": {
  2088. "__id__": 1
  2089. },
  2090. "asset": {
  2091. "__id__": 0
  2092. },
  2093. "fileId": "dfxIkOQnVWeYVl9cEsgUdF",
  2094. "instance": null,
  2095. "targetOverrides": null,
  2096. "nestedPrefabInstanceRoots": null
  2097. },
  2098. {
  2099. "__type__": "cc.PrefabInfo",
  2100. "root": {
  2101. "__id__": 1
  2102. },
  2103. "asset": {
  2104. "__id__": 0
  2105. },
  2106. "fileId": "ed4AI+lgtXOJXGYRJtFn3I",
  2107. "instance": null,
  2108. "targetOverrides": null,
  2109. "nestedPrefabInstanceRoots": null
  2110. },
  2111. {
  2112. "__type__": "cc.PrefabInfo",
  2113. "root": {
  2114. "__id__": 1
  2115. },
  2116. "asset": {
  2117. "__id__": 0
  2118. },
  2119. "fileId": "1eCX/T5sFUv5AiQue+kNfz",
  2120. "instance": null,
  2121. "targetOverrides": null,
  2122. "nestedPrefabInstanceRoots": null
  2123. },
  2124. {
  2125. "__type__": "cc.PrefabInfo",
  2126. "root": {
  2127. "__id__": 1
  2128. },
  2129. "asset": {
  2130. "__id__": 0
  2131. },
  2132. "fileId": "1aYBC2BChRg6vcQAUr2mWM",
  2133. "instance": null,
  2134. "targetOverrides": null,
  2135. "nestedPrefabInstanceRoots": null
  2136. },
  2137. {
  2138. "__type__": "cc.Node",
  2139. "_name": "shoulder.L",
  2140. "_objFlags": 0,
  2141. "__editorExtras__": {},
  2142. "_parent": {
  2143. "__id__": 57
  2144. },
  2145. "_children": [
  2146. {
  2147. "__id__": 99
  2148. }
  2149. ],
  2150. "_active": true,
  2151. "_components": [],
  2152. "_prefab": {
  2153. "__id__": 107
  2154. },
  2155. "_lpos": {
  2156. "__type__": "cc.Vec3",
  2157. "x": 0.000020164938177913427,
  2158. "y": 0.0006908487994223833,
  2159. "z": 0.000034078486351063475
  2160. },
  2161. "_lrot": {
  2162. "__type__": "cc.Quat",
  2163. "x": -0.4300574535992874,
  2164. "y": -0.5612936723353442,
  2165. "z": -0.4300574535992873,
  2166. "w": 0.5612936723353443
  2167. },
  2168. "_lscale": {
  2169. "__type__": "cc.Vec3",
  2170. "x": 1.0000001192092896,
  2171. "y": 0.9999999403953552,
  2172. "z": 0.9999999403953552
  2173. },
  2174. "_mobility": 0,
  2175. "_layer": 1073741824,
  2176. "_euler": {
  2177. "__type__": "cc.Vec3",
  2178. "x": -74.917931,
  2179. "y": -90,
  2180. "z": 0
  2181. },
  2182. "_id": ""
  2183. },
  2184. {
  2185. "__type__": "cc.Node",
  2186. "_name": "upper_arm.L",
  2187. "_objFlags": 0,
  2188. "__editorExtras__": {},
  2189. "_parent": {
  2190. "__id__": 98
  2191. },
  2192. "_children": [
  2193. {
  2194. "__id__": 100
  2195. }
  2196. ],
  2197. "_active": true,
  2198. "_components": [],
  2199. "_prefab": {
  2200. "__id__": 106
  2201. },
  2202. "_lpos": {
  2203. "__type__": "cc.Vec3",
  2204. "x": -0.000018960903616971336,
  2205. "y": 0.0008533570799045265,
  2206. "z": -0.000041954470361815766
  2207. },
  2208. "_lrot": {
  2209. "__type__": "cc.Quat",
  2210. "x": -0.0813712103320111,
  2211. "y": 0.698875187251586,
  2212. "z": -0.0459699257171676,
  2213. "w": 0.7091113908990057
  2214. },
  2215. "_lscale": {
  2216. "__type__": "cc.Vec3",
  2217. "x": 0.9999997615814209,
  2218. "y": 1.0000001192092896,
  2219. "z": 0.9999998211860657
  2220. },
  2221. "_mobility": 0,
  2222. "_layer": 1073741824,
  2223. "_euler": {
  2224. "__type__": "cc.Vec3",
  2225. "x": -2.979980235828357,
  2226. "y": 88.89808633955114,
  2227. "z": -10.30757173524568
  2228. },
  2229. "_id": ""
  2230. },
  2231. {
  2232. "__type__": "cc.Node",
  2233. "_name": "forearm.L",
  2234. "_objFlags": 0,
  2235. "__editorExtras__": {},
  2236. "_parent": {
  2237. "__id__": 99
  2238. },
  2239. "_children": [
  2240. {
  2241. "__id__": 101
  2242. }
  2243. ],
  2244. "_active": true,
  2245. "_components": [],
  2246. "_prefab": {
  2247. "__id__": 105
  2248. },
  2249. "_lpos": {
  2250. "__type__": "cc.Vec3",
  2251. "x": -4.423782173912372e-11,
  2252. "y": 0.0010730552021414042,
  2253. "z": 6.75208847167319e-11
  2254. },
  2255. "_lrot": {
  2256. "__type__": "cc.Quat",
  2257. "x": 0.009155396252130667,
  2258. "y": -0.08631977325835073,
  2259. "z": -0.012027645326033136,
  2260. "w": 0.9961528051519027
  2261. },
  2262. "_lscale": {
  2263. "__type__": "cc.Vec3",
  2264. "x": 0.9999998211860657,
  2265. "y": 0.9999996423721313,
  2266. "z": 0.9999998807907104
  2267. },
  2268. "_mobility": 0,
  2269. "_layer": 1073741824,
  2270. "_euler": {
  2271. "__type__": "cc.Vec3",
  2272. "x": 0.9264659056446944,
  2273. "y": -9.893142312574046,
  2274. "z": -1.4636841260364637
  2275. },
  2276. "_id": ""
  2277. },
  2278. {
  2279. "__type__": "cc.Node",
  2280. "_name": "hand.L",
  2281. "_objFlags": 0,
  2282. "__editorExtras__": {},
  2283. "_parent": {
  2284. "__id__": 100
  2285. },
  2286. "_children": [
  2287. {
  2288. "__id__": 102
  2289. }
  2290. ],
  2291. "_active": true,
  2292. "_components": [],
  2293. "_prefab": {
  2294. "__id__": 104
  2295. },
  2296. "_lpos": {
  2297. "__type__": "cc.Vec3",
  2298. "x": 7.037306293256052e-10,
  2299. "y": 0.0014173414092510939,
  2300. "z": -8.381903504606214e-11
  2301. },
  2302. "_lrot": {
  2303. "__type__": "cc.Quat",
  2304. "x": 0.01178082105227149,
  2305. "y": 0.015041672963404513,
  2306. "z": -0.0016254692238821327,
  2307. "w": 0.9998161421879518
  2308. },
  2309. "_lscale": {
  2310. "__type__": "cc.Vec3",
  2311. "x": 1,
  2312. "y": 0.9999997019767761,
  2313. "z": 0.9999996423721313
  2314. },
  2315. "_mobility": 0,
  2316. "_layer": 1073741824,
  2317. "_euler": {
  2318. "__type__": "cc.Vec3",
  2319. "x": 1.3526675062464855,
  2320. "y": 1.725794385931041,
  2321. "z": -0.16592504060673471
  2322. },
  2323. "_id": ""
  2324. },
  2325. {
  2326. "__type__": "cc.Node",
  2327. "_name": "hand.L_end",
  2328. "_objFlags": 0,
  2329. "__editorExtras__": {},
  2330. "_parent": {
  2331. "__id__": 101
  2332. },
  2333. "_children": [],
  2334. "_active": true,
  2335. "_components": [],
  2336. "_prefab": {
  2337. "__id__": 103
  2338. },
  2339. "_lpos": {
  2340. "__type__": "cc.Vec3",
  2341. "x": 0,
  2342. "y": 0.0010987288551405072,
  2343. "z": -1.3877787497621727e-19
  2344. },
  2345. "_lrot": {
  2346. "__type__": "cc.Quat",
  2347. "x": 0,
  2348. "y": 0,
  2349. "z": 0,
  2350. "w": 1
  2351. },
  2352. "_lscale": {
  2353. "__type__": "cc.Vec3",
  2354. "x": 1,
  2355. "y": 1,
  2356. "z": 1
  2357. },
  2358. "_mobility": 0,
  2359. "_layer": 1073741824,
  2360. "_euler": {
  2361. "__type__": "cc.Vec3",
  2362. "x": 0,
  2363. "y": 0,
  2364. "z": 0
  2365. },
  2366. "_id": ""
  2367. },
  2368. {
  2369. "__type__": "cc.PrefabInfo",
  2370. "root": {
  2371. "__id__": 1
  2372. },
  2373. "asset": {
  2374. "__id__": 0
  2375. },
  2376. "fileId": "b1+IzHx2JRkbKkda0OUO4f",
  2377. "instance": null,
  2378. "targetOverrides": null,
  2379. "nestedPrefabInstanceRoots": null
  2380. },
  2381. {
  2382. "__type__": "cc.PrefabInfo",
  2383. "root": {
  2384. "__id__": 1
  2385. },
  2386. "asset": {
  2387. "__id__": 0
  2388. },
  2389. "fileId": "cckpmYhZ1SZbdThXrIxhrl",
  2390. "instance": null,
  2391. "targetOverrides": null,
  2392. "nestedPrefabInstanceRoots": null
  2393. },
  2394. {
  2395. "__type__": "cc.PrefabInfo",
  2396. "root": {
  2397. "__id__": 1
  2398. },
  2399. "asset": {
  2400. "__id__": 0
  2401. },
  2402. "fileId": "c8tuseBGZRWbnu/mKLyw4c",
  2403. "instance": null,
  2404. "targetOverrides": null,
  2405. "nestedPrefabInstanceRoots": null
  2406. },
  2407. {
  2408. "__type__": "cc.PrefabInfo",
  2409. "root": {
  2410. "__id__": 1
  2411. },
  2412. "asset": {
  2413. "__id__": 0
  2414. },
  2415. "fileId": "35ZWQXPGpYn7pW5bMCak6B",
  2416. "instance": null,
  2417. "targetOverrides": null,
  2418. "nestedPrefabInstanceRoots": null
  2419. },
  2420. {
  2421. "__type__": "cc.PrefabInfo",
  2422. "root": {
  2423. "__id__": 1
  2424. },
  2425. "asset": {
  2426. "__id__": 0
  2427. },
  2428. "fileId": "7cmaZ7p6ZcI5Oy6zUjHimD",
  2429. "instance": null,
  2430. "targetOverrides": null,
  2431. "nestedPrefabInstanceRoots": null
  2432. },
  2433. {
  2434. "__type__": "cc.Node",
  2435. "_name": "shoulder.R",
  2436. "_objFlags": 0,
  2437. "__editorExtras__": {},
  2438. "_parent": {
  2439. "__id__": 57
  2440. },
  2441. "_children": [
  2442. {
  2443. "__id__": 109
  2444. }
  2445. ],
  2446. "_active": true,
  2447. "_components": [],
  2448. "_prefab": {
  2449. "__id__": 117
  2450. },
  2451. "_lpos": {
  2452. "__type__": "cc.Vec3",
  2453. "x": -0.000020164901798125356,
  2454. "y": 0.0006908487994223833,
  2455. "z": 0.000034078486351063475
  2456. },
  2457. "_lrot": {
  2458. "__type__": "cc.Quat",
  2459. "x": -0.39538395419881195,
  2460. "y": 0.5216560961803672,
  2461. "z": 0.4952949585417674,
  2462. "w": 0.5711649062425668
  2463. },
  2464. "_lscale": {
  2465. "__type__": "cc.Vec3",
  2466. "x": 1.0000001192092896,
  2467. "y": 0.9999998211860657,
  2468. "z": 0.9999999403953552
  2469. },
  2470. "_mobility": 0,
  2471. "_layer": 1073741824,
  2472. "_euler": {
  2473. "__type__": "cc.Vec3",
  2474. "x": -78.51793097512295,
  2475. "y": 92.02304899719904,
  2476. "z": 8.817130702254577
  2477. },
  2478. "_id": ""
  2479. },
  2480. {
  2481. "__type__": "cc.Node",
  2482. "_name": "upper_arm.R",
  2483. "_objFlags": 0,
  2484. "__editorExtras__": {},
  2485. "_parent": {
  2486. "__id__": 108
  2487. },
  2488. "_children": [
  2489. {
  2490. "__id__": 110
  2491. }
  2492. ],
  2493. "_active": true,
  2494. "_components": [],
  2495. "_prefab": {
  2496. "__id__": 116
  2497. },
  2498. "_lpos": {
  2499. "__type__": "cc.Vec3",
  2500. "x": 0.000018960914530907758,
  2501. "y": 0.0008533572545275092,
  2502. "z": -0.00004195384099148214
  2503. },
  2504. "_lrot": {
  2505. "__type__": "cc.Quat",
  2506. "x": -0.08137116609174035,
  2507. "y": -0.6988751912299962,
  2508. "z": 0.04596988127537182,
  2509. "w": 0.7091113949356863
  2510. },
  2511. "_lscale": {
  2512. "__type__": "cc.Vec3",
  2513. "x": 0.9999998211860657,
  2514. "y": 0.9999997615814209,
  2515. "z": 0.9999997019767761
  2516. },
  2517. "_mobility": 0,
  2518. "_layer": 1073741824,
  2519. "_euler": {
  2520. "__type__": "cc.Vec3",
  2521. "x": -2.9799801481352985,
  2522. "y": -88.89808653659034,
  2523. "z": 10.307564522960076
  2524. },
  2525. "_id": ""
  2526. },
  2527. {
  2528. "__type__": "cc.Node",
  2529. "_name": "forearm.R",
  2530. "_objFlags": 0,
  2531. "__editorExtras__": {},
  2532. "_parent": {
  2533. "__id__": 109
  2534. },
  2535. "_children": [
  2536. {
  2537. "__id__": 111
  2538. }
  2539. ],
  2540. "_active": true,
  2541. "_components": [],
  2542. "_prefab": {
  2543. "__id__": 115
  2544. },
  2545. "_lpos": {
  2546. "__type__": "cc.Vec3",
  2547. "x": 7.217749731225354e-10,
  2548. "y": 0.001073055318556726,
  2549. "z": 2.3283061676565575e-12
  2550. },
  2551. "_lrot": {
  2552. "__type__": "cc.Quat",
  2553. "x": 0.009155346908871442,
  2554. "y": 0.08631975851593084,
  2555. "z": 0.012027636966248768,
  2556. "w": 0.9961528069838168
  2557. },
  2558. "_lscale": {
  2559. "__type__": "cc.Vec3",
  2560. "x": 0.9999998807907104,
  2561. "y": 0.9999997019767761,
  2562. "z": 0.9999998211860657
  2563. },
  2564. "_mobility": 0,
  2565. "_layer": 1073741824,
  2566. "_euler": {
  2567. "__type__": "cc.Vec3",
  2568. "x": 0.9264603748801521,
  2569. "y": 9.893140693632446,
  2570. "z": 1.4636826702647159
  2571. },
  2572. "_id": ""
  2573. },
  2574. {
  2575. "__type__": "cc.Node",
  2576. "_name": "hand.R",
  2577. "_objFlags": 0,
  2578. "__editorExtras__": {},
  2579. "_parent": {
  2580. "__id__": 110
  2581. },
  2582. "_children": [
  2583. {
  2584. "__id__": 112
  2585. }
  2586. ],
  2587. "_active": true,
  2588. "_components": [],
  2589. "_prefab": {
  2590. "__id__": 114
  2591. },
  2592. "_lpos": {
  2593. "__type__": "cc.Vec3",
  2594. "x": -1.3329554127139431e-10,
  2595. "y": 0.0014173409435898066,
  2596. "z": 1.3969838306981952e-11
  2597. },
  2598. "_lrot": {
  2599. "__type__": "cc.Quat",
  2600. "x": 0.011780931866805526,
  2601. "y": -0.015041658045830185,
  2602. "z": 0.0016254751592900323,
  2603. "w": 0.9998161410969962
  2604. },
  2605. "_lscale": {
  2606. "__type__": "cc.Vec3",
  2607. "x": 1,
  2608. "y": 0.9999996423721313,
  2609. "z": 0.9999999403953552
  2610. },
  2611. "_mobility": 0,
  2612. "_layer": 1073741824,
  2613. "_euler": {
  2614. "__type__": "cc.Vec3",
  2615. "x": 1.352680211929896,
  2616. "y": -1.7257927028643603,
  2617. "z": 0.1659255495615778
  2618. },
  2619. "_id": ""
  2620. },
  2621. {
  2622. "__type__": "cc.Node",
  2623. "_name": "hand.R_end",
  2624. "_objFlags": 0,
  2625. "__editorExtras__": {},
  2626. "_parent": {
  2627. "__id__": 111
  2628. },
  2629. "_children": [],
  2630. "_active": true,
  2631. "_components": [],
  2632. "_prefab": {
  2633. "__id__": 113
  2634. },
  2635. "_lpos": {
  2636. "__type__": "cc.Vec3",
  2637. "x": 2.2204459996194763e-18,
  2638. "y": 0.0010987285058945417,
  2639. "z": 6.938893748810864e-20
  2640. },
  2641. "_lrot": {
  2642. "__type__": "cc.Quat",
  2643. "x": 0,
  2644. "y": 0,
  2645. "z": 0,
  2646. "w": 1
  2647. },
  2648. "_lscale": {
  2649. "__type__": "cc.Vec3",
  2650. "x": 1,
  2651. "y": 1,
  2652. "z": 1
  2653. },
  2654. "_mobility": 0,
  2655. "_layer": 1073741824,
  2656. "_euler": {
  2657. "__type__": "cc.Vec3",
  2658. "x": 0,
  2659. "y": 0,
  2660. "z": 0
  2661. },
  2662. "_id": ""
  2663. },
  2664. {
  2665. "__type__": "cc.PrefabInfo",
  2666. "root": {
  2667. "__id__": 1
  2668. },
  2669. "asset": {
  2670. "__id__": 0
  2671. },
  2672. "fileId": "8b4FD9eo5VpqlCGeU/cARu",
  2673. "instance": null,
  2674. "targetOverrides": null,
  2675. "nestedPrefabInstanceRoots": null
  2676. },
  2677. {
  2678. "__type__": "cc.PrefabInfo",
  2679. "root": {
  2680. "__id__": 1
  2681. },
  2682. "asset": {
  2683. "__id__": 0
  2684. },
  2685. "fileId": "cdF62GPxxd/ankJgZFoL0u",
  2686. "instance": null,
  2687. "targetOverrides": null,
  2688. "nestedPrefabInstanceRoots": null
  2689. },
  2690. {
  2691. "__type__": "cc.PrefabInfo",
  2692. "root": {
  2693. "__id__": 1
  2694. },
  2695. "asset": {
  2696. "__id__": 0
  2697. },
  2698. "fileId": "1dh2fOonFXSoFbcRvZRTOi",
  2699. "instance": null,
  2700. "targetOverrides": null,
  2701. "nestedPrefabInstanceRoots": null
  2702. },
  2703. {
  2704. "__type__": "cc.PrefabInfo",
  2705. "root": {
  2706. "__id__": 1
  2707. },
  2708. "asset": {
  2709. "__id__": 0
  2710. },
  2711. "fileId": "335v87HBRW9bwtFFemvZbX",
  2712. "instance": null,
  2713. "targetOverrides": null,
  2714. "nestedPrefabInstanceRoots": null
  2715. },
  2716. {
  2717. "__type__": "cc.PrefabInfo",
  2718. "root": {
  2719. "__id__": 1
  2720. },
  2721. "asset": {
  2722. "__id__": 0
  2723. },
  2724. "fileId": "88IXN414BfW6HELVje2DiZ",
  2725. "instance": null,
  2726. "targetOverrides": null,
  2727. "nestedPrefabInstanceRoots": null
  2728. },
  2729. {
  2730. "__type__": "cc.PrefabInfo",
  2731. "root": {
  2732. "__id__": 1
  2733. },
  2734. "asset": {
  2735. "__id__": 0
  2736. },
  2737. "fileId": "dbMnUXVCRdgaUnXMc09KtN",
  2738. "instance": null,
  2739. "targetOverrides": null,
  2740. "nestedPrefabInstanceRoots": null
  2741. },
  2742. {
  2743. "__type__": "cc.Node",
  2744. "_name": "spine.005",
  2745. "_objFlags": 0,
  2746. "__editorExtras__": {},
  2747. "_parent": {
  2748. "__id__": 56
  2749. },
  2750. "_children": [
  2751. {
  2752. "__id__": 120
  2753. }
  2754. ],
  2755. "_active": true,
  2756. "_components": [],
  2757. "_prefab": {
  2758. "__id__": 124
  2759. },
  2760. "_lpos": {
  2761. "__type__": "cc.Vec3",
  2762. "x": -4.049711835553848e-17,
  2763. "y": 0.00036761179217137396,
  2764. "z": -3.725290215195187e-11
  2765. },
  2766. "_lrot": {
  2767. "__type__": "cc.Quat",
  2768. "x": 0.075285652580239,
  2769. "y": 1.9646704286628977e-8,
  2770. "z": 1.893317192533839e-8,
  2771. "w": 0.9971620081589384
  2772. },
  2773. "_lscale": {
  2774. "__type__": "cc.Vec3",
  2775. "x": 1,
  2776. "y": 0.9999998807907104,
  2777. "z": 0.9999997615814209
  2778. },
  2779. "_mobility": 0,
  2780. "_layer": 1073741824,
  2781. "_euler": {
  2782. "__type__": "cc.Vec3",
  2783. "x": 8.635270790759694,
  2784. "y": 0.000002081618797781526,
  2785. "z": 0.0000023329185215793145
  2786. },
  2787. "_id": ""
  2788. },
  2789. {
  2790. "__type__": "cc.Node",
  2791. "_name": "spine.006",
  2792. "_objFlags": 0,
  2793. "__editorExtras__": {},
  2794. "_parent": {
  2795. "__id__": 119
  2796. },
  2797. "_children": [
  2798. {
  2799. "__id__": 121
  2800. }
  2801. ],
  2802. "_active": true,
  2803. "_components": [],
  2804. "_prefab": {
  2805. "__id__": 123
  2806. },
  2807. "_lpos": {
  2808. "__type__": "cc.Vec3",
  2809. "x": -1.224028690904877e-12,
  2810. "y": 0.00026761682238429785,
  2811. "z": 3.9806758583837976e-11
  2812. },
  2813. "_lrot": {
  2814. "__type__": "cc.Quat",
  2815. "x": -0.10599454553825263,
  2816. "y": 9.948411929791414e-8,
  2817. "z": -3.216544205218638e-8,
  2818. "w": 0.9943667111866369
  2819. },
  2820. "_lscale": {
  2821. "__type__": "cc.Vec3",
  2822. "x": 1,
  2823. "y": 0.9999998807907104,
  2824. "z": 1.0000001192092896
  2825. },
  2826. "_mobility": 0,
  2827. "_layer": 1073741824,
  2828. "_euler": {
  2829. "__type__": "cc.Vec3",
  2830. "x": -12.16893919756557,
  2831. "y": 0.00001094513656951172,
  2832. "z": -0.000004873466572792062
  2833. },
  2834. "_id": ""
  2835. },
  2836. {
  2837. "__type__": "cc.Node",
  2838. "_name": "spine.006_end",
  2839. "_objFlags": 0,
  2840. "__editorExtras__": {},
  2841. "_parent": {
  2842. "__id__": 120
  2843. },
  2844. "_children": [],
  2845. "_active": true,
  2846. "_components": [],
  2847. "_prefab": {
  2848. "__id__": 122
  2849. },
  2850. "_lpos": {
  2851. "__type__": "cc.Vec3",
  2852. "x": 0,
  2853. "y": 0.002740412950515747,
  2854. "z": -3.469446874405432e-20
  2855. },
  2856. "_lrot": {
  2857. "__type__": "cc.Quat",
  2858. "x": 0,
  2859. "y": 0,
  2860. "z": 0,
  2861. "w": 1
  2862. },
  2863. "_lscale": {
  2864. "__type__": "cc.Vec3",
  2865. "x": 1,
  2866. "y": 1,
  2867. "z": 1
  2868. },
  2869. "_mobility": 0,
  2870. "_layer": 1073741824,
  2871. "_euler": {
  2872. "__type__": "cc.Vec3",
  2873. "x": 0,
  2874. "y": 0,
  2875. "z": 0
  2876. },
  2877. "_id": ""
  2878. },
  2879. {
  2880. "__type__": "cc.PrefabInfo",
  2881. "root": {
  2882. "__id__": 1
  2883. },
  2884. "asset": {
  2885. "__id__": 0
  2886. },
  2887. "fileId": "beU1uNpLtcL48FQ4pLkOP/",
  2888. "instance": null,
  2889. "targetOverrides": null,
  2890. "nestedPrefabInstanceRoots": null
  2891. },
  2892. {
  2893. "__type__": "cc.PrefabInfo",
  2894. "root": {
  2895. "__id__": 1
  2896. },
  2897. "asset": {
  2898. "__id__": 0
  2899. },
  2900. "fileId": "e59ZdkN2VUvpm18dC0+pYk",
  2901. "instance": null,
  2902. "targetOverrides": null,
  2903. "nestedPrefabInstanceRoots": null
  2904. },
  2905. {
  2906. "__type__": "cc.PrefabInfo",
  2907. "root": {
  2908. "__id__": 1
  2909. },
  2910. "asset": {
  2911. "__id__": 0
  2912. },
  2913. "fileId": "2fVz/LUqhTZaPm+Qi2wD4E",
  2914. "instance": null,
  2915. "targetOverrides": null,
  2916. "nestedPrefabInstanceRoots": null
  2917. },
  2918. {
  2919. "__type__": "cc.PrefabInfo",
  2920. "root": {
  2921. "__id__": 1
  2922. },
  2923. "asset": {
  2924. "__id__": 0
  2925. },
  2926. "fileId": "4bfA0IC4hZYZ4QYLY/2Uvx",
  2927. "instance": null,
  2928. "targetOverrides": null,
  2929. "nestedPrefabInstanceRoots": null
  2930. },
  2931. {
  2932. "__type__": "cc.Node",
  2933. "_name": "eyeRender",
  2934. "_objFlags": 0,
  2935. "__editorExtras__": {},
  2936. "_parent": {
  2937. "__id__": 127
  2938. },
  2939. "_children": [],
  2940. "_active": true,
  2941. "_components": [
  2942. {
  2943. "__id__": 132
  2944. }
  2945. ],
  2946. "_prefab": {
  2947. "__id__": 135
  2948. },
  2949. "_lpos": {
  2950. "__type__": "cc.Vec3",
  2951. "x": 9.556024221358026e-22,
  2952. "y": 3.3031135452735418e-18,
  2953. "z": 2.508792806631275e-17
  2954. },
  2955. "_lrot": {
  2956. "__type__": "cc.Quat",
  2957. "x": -0.7071068407911908,
  2958. "y": 1.0669327517405082e-22,
  2959. "z": 5.862205473528827e-22,
  2960. "w": 0.7071067215818992
  2961. },
  2962. "_lscale": {
  2963. "__type__": "cc.Vec3",
  2964. "x": 100,
  2965. "y": 100,
  2966. "z": 100
  2967. },
  2968. "_mobility": 0,
  2969. "_layer": 1073741824,
  2970. "_euler": {
  2971. "__type__": "cc.Vec3",
  2972. "x": -90.00000965934633,
  2973. "y": 5.614574908532272e-20,
  2974. "z": 3.885535571390936e-20
  2975. },
  2976. "_id": ""
  2977. },
  2978. {
  2979. "__type__": "cc.Node",
  2980. "_name": "bodyRender",
  2981. "_objFlags": 0,
  2982. "__editorExtras__": {},
  2983. "_parent": {
  2984. "__id__": 2
  2985. },
  2986. "_children": [
  2987. {
  2988. "__id__": 126
  2989. }
  2990. ],
  2991. "_active": true,
  2992. "_components": [
  2993. {
  2994. "__id__": 128
  2995. }
  2996. ],
  2997. "_prefab": {
  2998. "__id__": 131
  2999. },
  3000. "_lpos": {
  3001. "__type__": "cc.Vec3",
  3002. "x": -1.669487770250555e-9,
  3003. "y": 1.539884608714459e-10,
  3004. "z": 2.364799467358125e-9
  3005. },
  3006. "_lrot": {
  3007. "__type__": "cc.Quat",
  3008. "x": -0.7071068705935067,
  3009. "y": -1.4317919321320408e-13,
  3010. "z": 4.28749940662336e-15,
  3011. "w": 0.7071066917795769
  3012. },
  3013. "_lscale": {
  3014. "__type__": "cc.Vec3",
  3015. "x": 99.99998474121094,
  3016. "y": 100,
  3017. "z": 100
  3018. },
  3019. "_mobility": 0,
  3020. "_layer": 1073741824,
  3021. "_euler": {
  3022. "__type__": "cc.Vec3",
  3023. "x": -90.00001448901888,
  3024. "y": -1.125417971931037e-11,
  3025. "z": 1.1949001673966663e-11
  3026. },
  3027. "_id": ""
  3028. },
  3029. {
  3030. "__type__": "cc.SkinnedMeshRenderer",
  3031. "_name": "",
  3032. "_objFlags": 0,
  3033. "__editorExtras__": {},
  3034. "node": {
  3035. "__id__": 127
  3036. },
  3037. "_enabled": true,
  3038. "__prefab": {
  3039. "__id__": 129
  3040. },
  3041. "_materials": [
  3042. {
  3043. "__uuid__": "78c4bda3-3fed-467e-961f-16173257dcff@22e2a",
  3044. "__expectedType__": "cc.Material"
  3045. }
  3046. ],
  3047. "_visFlags": 0,
  3048. "bakeSettings": {
  3049. "__id__": 130
  3050. },
  3051. "_mesh": {
  3052. "__uuid__": "78c4bda3-3fed-467e-961f-16173257dcff@fe48d",
  3053. "__expectedType__": "cc.Mesh"
  3054. },
  3055. "_shadowCastingMode": 1,
  3056. "_shadowReceivingMode": 1,
  3057. "_shadowBias": 0,
  3058. "_shadowNormalBias": 0,
  3059. "_reflectionProbeId": -1,
  3060. "_reflectionProbeBlendId": -1,
  3061. "_reflectionProbeBlendWeight": 0,
  3062. "_enabledGlobalStandardSkinObject": false,
  3063. "_enableMorph": true,
  3064. "_skeleton": {
  3065. "__uuid__": "78c4bda3-3fed-467e-961f-16173257dcff@30732",
  3066. "__expectedType__": "cc.Skeleton"
  3067. },
  3068. "_skinningRoot": {
  3069. "__id__": 2
  3070. },
  3071. "_id": ""
  3072. },
  3073. {
  3074. "__type__": "cc.CompPrefabInfo",
  3075. "fileId": "94AY9SzNJfTIrgEA8XUpjp"
  3076. },
  3077. {
  3078. "__type__": "cc.ModelBakeSettings",
  3079. "texture": null,
  3080. "uvParam": {
  3081. "__type__": "cc.Vec4",
  3082. "x": 0,
  3083. "y": 0,
  3084. "z": 0,
  3085. "w": 0
  3086. },
  3087. "_bakeable": false,
  3088. "_castShadow": true,
  3089. "_receiveShadow": true,
  3090. "_recieveShadow": true,
  3091. "_lightmapSize": 64,
  3092. "_useLightProbe": false,
  3093. "_bakeToLightProbe": true,
  3094. "_reflectionProbeType": 0,
  3095. "_bakeToReflectionProbe": true
  3096. },
  3097. {
  3098. "__type__": "cc.PrefabInfo",
  3099. "root": {
  3100. "__id__": 1
  3101. },
  3102. "asset": {
  3103. "__id__": 0
  3104. },
  3105. "fileId": "70U61mF8tX0bxegRUKN10g",
  3106. "instance": null,
  3107. "targetOverrides": null,
  3108. "nestedPrefabInstanceRoots": null
  3109. },
  3110. {
  3111. "__type__": "cc.SkinnedMeshRenderer",
  3112. "_name": "",
  3113. "_objFlags": 0,
  3114. "__editorExtras__": {},
  3115. "node": {
  3116. "__id__": 126
  3117. },
  3118. "_enabled": true,
  3119. "__prefab": {
  3120. "__id__": 133
  3121. },
  3122. "_materials": [
  3123. {
  3124. "__uuid__": "78c4bda3-3fed-467e-961f-16173257dcff@dd992",
  3125. "__expectedType__": "cc.Material"
  3126. }
  3127. ],
  3128. "_visFlags": 0,
  3129. "bakeSettings": {
  3130. "__id__": 134
  3131. },
  3132. "_mesh": {
  3133. "__uuid__": "78c4bda3-3fed-467e-961f-16173257dcff@07d75",
  3134. "__expectedType__": "cc.Mesh"
  3135. },
  3136. "_shadowCastingMode": 1,
  3137. "_shadowReceivingMode": 1,
  3138. "_shadowBias": 0,
  3139. "_shadowNormalBias": 0,
  3140. "_reflectionProbeId": -1,
  3141. "_reflectionProbeBlendId": -1,
  3142. "_reflectionProbeBlendWeight": 0,
  3143. "_enabledGlobalStandardSkinObject": false,
  3144. "_enableMorph": true,
  3145. "_skeleton": {
  3146. "__uuid__": "78c4bda3-3fed-467e-961f-16173257dcff@f1394",
  3147. "__expectedType__": "cc.Skeleton"
  3148. },
  3149. "_skinningRoot": {
  3150. "__id__": 2
  3151. },
  3152. "_id": ""
  3153. },
  3154. {
  3155. "__type__": "cc.CompPrefabInfo",
  3156. "fileId": "42YR/fEWtWs7iQqJSNEiM4"
  3157. },
  3158. {
  3159. "__type__": "cc.ModelBakeSettings",
  3160. "texture": null,
  3161. "uvParam": {
  3162. "__type__": "cc.Vec4",
  3163. "x": 0,
  3164. "y": 0,
  3165. "z": 0,
  3166. "w": 0
  3167. },
  3168. "_bakeable": false,
  3169. "_castShadow": true,
  3170. "_receiveShadow": true,
  3171. "_recieveShadow": true,
  3172. "_lightmapSize": 64,
  3173. "_useLightProbe": false,
  3174. "_bakeToLightProbe": true,
  3175. "_reflectionProbeType": 0,
  3176. "_bakeToReflectionProbe": true
  3177. },
  3178. {
  3179. "__type__": "cc.PrefabInfo",
  3180. "root": {
  3181. "__id__": 1
  3182. },
  3183. "asset": {
  3184. "__id__": 0
  3185. },
  3186. "fileId": "6fBRG06KBSBqDj7SYlTvQJ",
  3187. "instance": null,
  3188. "targetOverrides": null,
  3189. "nestedPrefabInstanceRoots": null
  3190. },
  3191. {
  3192. "__type__": "cc.PrefabInfo",
  3193. "root": {
  3194. "__id__": 1
  3195. },
  3196. "asset": {
  3197. "__id__": 0
  3198. },
  3199. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  3200. "instance": null,
  3201. "targetOverrides": [
  3202. {
  3203. "__id__": 137
  3204. },
  3205. {
  3206. "__id__": 139
  3207. },
  3208. {
  3209. "__id__": 141
  3210. },
  3211. {
  3212. "__id__": 143
  3213. },
  3214. {
  3215. "__id__": 145
  3216. },
  3217. {
  3218. "__id__": 147
  3219. },
  3220. {
  3221. "__id__": 149
  3222. }
  3223. ],
  3224. "nestedPrefabInstanceRoots": [
  3225. {
  3226. "__id__": 2
  3227. }
  3228. ]
  3229. },
  3230. {
  3231. "__type__": "cc.TargetOverrideInfo",
  3232. "source": {
  3233. "__id__": 54
  3234. },
  3235. "sourceInfo": null,
  3236. "propertyPath": [
  3237. "head"
  3238. ],
  3239. "target": {
  3240. "__id__": 2
  3241. },
  3242. "targetInfo": {
  3243. "__id__": 138
  3244. }
  3245. },
  3246. {
  3247. "__type__": "cc.TargetInfo",
  3248. "localID": [
  3249. "4bfA0IC4hZYZ4QYLY/2Uvx"
  3250. ]
  3251. },
  3252. {
  3253. "__type__": "cc.TargetOverrideInfo",
  3254. "source": {
  3255. "__id__": 54
  3256. },
  3257. "sourceInfo": null,
  3258. "propertyPath": [
  3259. "leftHand"
  3260. ],
  3261. "target": {
  3262. "__id__": 2
  3263. },
  3264. "targetInfo": {
  3265. "__id__": 140
  3266. }
  3267. },
  3268. {
  3269. "__type__": "cc.TargetInfo",
  3270. "localID": [
  3271. "7cmaZ7p6ZcI5Oy6zUjHimD"
  3272. ]
  3273. },
  3274. {
  3275. "__type__": "cc.TargetOverrideInfo",
  3276. "source": {
  3277. "__id__": 54
  3278. },
  3279. "sourceInfo": null,
  3280. "propertyPath": [
  3281. "rightHand"
  3282. ],
  3283. "target": {
  3284. "__id__": 2
  3285. },
  3286. "targetInfo": {
  3287. "__id__": 142
  3288. }
  3289. },
  3290. {
  3291. "__type__": "cc.TargetInfo",
  3292. "localID": [
  3293. "88IXN414BfW6HELVje2DiZ"
  3294. ]
  3295. },
  3296. {
  3297. "__type__": "cc.TargetOverrideInfo",
  3298. "source": {
  3299. "__id__": 54
  3300. },
  3301. "sourceInfo": null,
  3302. "propertyPath": [
  3303. "leftFoot"
  3304. ],
  3305. "target": {
  3306. "__id__": 2
  3307. },
  3308. "targetInfo": {
  3309. "__id__": 144
  3310. }
  3311. },
  3312. {
  3313. "__type__": "cc.TargetInfo",
  3314. "localID": [
  3315. "46PGDPQyZWwoKl5uxPV6s6"
  3316. ]
  3317. },
  3318. {
  3319. "__type__": "cc.TargetOverrideInfo",
  3320. "source": {
  3321. "__id__": 54
  3322. },
  3323. "sourceInfo": null,
  3324. "propertyPath": [
  3325. "rightFoot"
  3326. ],
  3327. "target": {
  3328. "__id__": 2
  3329. },
  3330. "targetInfo": {
  3331. "__id__": 146
  3332. }
  3333. },
  3334. {
  3335. "__type__": "cc.TargetInfo",
  3336. "localID": [
  3337. "01Y1xzFZRdLo31QZuqHpLE"
  3338. ]
  3339. },
  3340. {
  3341. "__type__": "cc.TargetOverrideInfo",
  3342. "source": {
  3343. "__id__": 54
  3344. },
  3345. "sourceInfo": null,
  3346. "propertyPath": [
  3347. "bodyRender"
  3348. ],
  3349. "target": {
  3350. "__id__": 2
  3351. },
  3352. "targetInfo": {
  3353. "__id__": 148
  3354. }
  3355. },
  3356. {
  3357. "__type__": "cc.TargetInfo",
  3358. "localID": [
  3359. "70U61mF8tX0bxegRUKN10g"
  3360. ]
  3361. },
  3362. {
  3363. "__type__": "cc.TargetOverrideInfo",
  3364. "source": {
  3365. "__id__": 54
  3366. },
  3367. "sourceInfo": null,
  3368. "propertyPath": [
  3369. "eyeRender"
  3370. ],
  3371. "target": {
  3372. "__id__": 2
  3373. },
  3374. "targetInfo": {
  3375. "__id__": 150
  3376. }
  3377. },
  3378. {
  3379. "__type__": "cc.TargetInfo",
  3380. "localID": [
  3381. "6fBRG06KBSBqDj7SYlTvQJ"
  3382. ]
  3383. }
  3384. ]