enemy.lh 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. {
  2. "version":"LAYAHIERARCHY:02",
  3. "data":{
  4. "type":"Sprite3D",
  5. "instanceID":0,
  6. "props":{
  7. "name":"enemy",
  8. "active":true,
  9. "isStatic":false,
  10. "layer":0,
  11. "position":[
  12. 2.509,
  13. 0,
  14. 0
  15. ],
  16. "rotation":[
  17. 0,
  18. 0,
  19. 0,
  20. -1
  21. ],
  22. "scale":[
  23. 1.5,
  24. 1.5,
  25. 1.5
  26. ]
  27. },
  28. "components":[
  29. {
  30. "type":"Animator",
  31. "layers":[
  32. {
  33. "name":"Base Layer",
  34. "weight":0,
  35. "blendingMode":0,
  36. "states":[
  37. {
  38. "name":"Idle",
  39. "clipPath":"Assets/ArcherAsset/Animator/Ragdoll _5741/Ragdoll _5741-Idle.lani"
  40. },
  41. {
  42. "name":"Happy Idle",
  43. "clipPath":"Assets/ArcherAsset/Animator/Ragdoll _5741/Ragdoll _5741-Happy Idle.lani"
  44. },
  45. {
  46. "name":"JumpOver",
  47. "clipPath":"Assets/ArcherAsset/Animator/Ragdoll _5741/Ragdoll _5741-JumpOver.lani"
  48. },
  49. {
  50. "name":"run",
  51. "clipPath":"Assets/ArcherAsset/Animator/Ragdoll _5741/Ragdoll _5741-run.lani"
  52. },
  53. {
  54. "name":"Stable Sword Outward Slash",
  55. "clipPath":"Assets/ArcherAsset/Animator/Ragdoll _5741/Ragdoll _5741-Stable Sword Outward Slash.lani"
  56. },
  57. {
  58. "name":"Victory Idle",
  59. "clipPath":"Assets/ArcherAsset/Animator/Ragdoll _5741/Ragdoll _5741-Victory Idle.lani"
  60. },
  61. {
  62. "name":"walk",
  63. "clipPath":"Assets/ArcherAsset/Animator/Ragdoll _5741/Ragdoll _5741-walk.lani"
  64. },
  65. {
  66. "name":"wave",
  67. "clipPath":"Assets/ArcherAsset/Animator/Ragdoll _5741/Ragdoll _5741-wave.lani"
  68. }
  69. ]
  70. }
  71. ],
  72. "cullingMode":0,
  73. "playOnWake":true
  74. }
  75. ],
  76. "child":[
  77. {
  78. "type":"Sprite3D",
  79. "instanceID":1,
  80. "props":{
  81. "name":"Ragdoll",
  82. "active":true,
  83. "isStatic":false,
  84. "layer":0,
  85. "position":[
  86. 0,
  87. 0,
  88. 0
  89. ],
  90. "rotation":[
  91. 0,
  92. 0,
  93. 0,
  94. -1
  95. ],
  96. "scale":[
  97. 1,
  98. 1,
  99. 1
  100. ]
  101. },
  102. "components":[],
  103. "child":[
  104. {
  105. "type":"Sprite3D",
  106. "instanceID":2,
  107. "props":{
  108. "name":"Bip001",
  109. "active":true,
  110. "isStatic":false,
  111. "layer":0,
  112. "position":[
  113. 0.00120822,
  114. 0.5828773,
  115. -0.005212399
  116. ],
  117. "rotation":[
  118. 0.4984051,
  119. 0.4843373,
  120. 0.4985493,
  121. -0.5181296
  122. ],
  123. "scale":[
  124. 0.9999999,
  125. 0.9999999,
  126. 1
  127. ]
  128. },
  129. "components":[],
  130. "child":[
  131. {
  132. "type":"Sprite3D",
  133. "instanceID":3,
  134. "props":{
  135. "name":"Bip001 Footsteps",
  136. "active":true,
  137. "isStatic":false,
  138. "layer":0,
  139. "position":[
  140. 0,
  141. 0,
  142. -0.5925218
  143. ],
  144. "rotation":[
  145. 0,
  146. 0,
  147. -0.7071063,
  148. -0.7071072
  149. ],
  150. "scale":[
  151. 1,
  152. 1,
  153. 1
  154. ]
  155. },
  156. "components":[],
  157. "child":[]
  158. },
  159. {
  160. "type":"Sprite3D",
  161. "instanceID":4,
  162. "props":{
  163. "name":"Bip001 Pelvis",
  164. "active":true,
  165. "isStatic":false,
  166. "layer":0,
  167. "position":[
  168. 0,
  169. 0,
  170. 0
  171. ],
  172. "rotation":[
  173. 0.4999996,
  174. 0.5000005,
  175. 0.4999996,
  176. -0.5000005
  177. ],
  178. "scale":[
  179. 1,
  180. 0.9999999,
  181. 0.9999999
  182. ]
  183. },
  184. "components":[],
  185. "child":[
  186. {
  187. "type":"Sprite3D",
  188. "instanceID":5,
  189. "props":{
  190. "name":"Bip001 Spine",
  191. "active":true,
  192. "isStatic":false,
  193. "layer":0,
  194. "position":[
  195. 0.06138724,
  196. -0.0001044242,
  197. 8.527657E-08
  198. ],
  199. "rotation":[
  200. 1.744982E-06,
  201. 8.733591E-07,
  202. -0.0003979351,
  203. -0.9999999
  204. ],
  205. "scale":[
  206. 1,
  207. 0.9999999,
  208. 0.9999999
  209. ]
  210. },
  211. "components":[],
  212. "child":[
  213. {
  214. "type":"Sprite3D",
  215. "instanceID":6,
  216. "props":{
  217. "name":"Bip001 L Thigh",
  218. "active":true,
  219. "isStatic":false,
  220. "layer":0,
  221. "position":[
  222. -0.06138714,
  223. 0.000152996,
  224. 0.1218973
  225. ],
  226. "rotation":[
  227. 0.2636043,
  228. 0.9603851,
  229. 0.0887567,
  230. -0.01718703
  231. ],
  232. "scale":[
  233. 0.9999999,
  234. 1,
  235. 1
  236. ]
  237. },
  238. "components":[],
  239. "child":[
  240. {
  241. "type":"Sprite3D",
  242. "instanceID":7,
  243. "props":{
  244. "name":"Bip001 L Calf",
  245. "active":true,
  246. "isStatic":false,
  247. "layer":0,
  248. "position":[
  249. 0.2669007,
  250. -6.055832E-09,
  251. 0
  252. ],
  253. "rotation":[
  254. -0.03278146,
  255. 0.02314604,
  256. 0.5634811,
  257. -0.8251538
  258. ],
  259. "scale":[
  260. 1,
  261. 0.9999999,
  262. 1
  263. ]
  264. },
  265. "components":[],
  266. "child":[
  267. {
  268. "type":"Sprite3D",
  269. "instanceID":8,
  270. "props":{
  271. "name":"Bip001 L Foot",
  272. "active":true,
  273. "isStatic":false,
  274. "layer":0,
  275. "position":[
  276. 0.2669007,
  277. -4.541874E-09,
  278. 0
  279. ],
  280. "rotation":[
  281. -0.0003250553,
  282. 0.009191423,
  283. -0.07757022,
  284. -0.9969445
  285. ],
  286. "scale":[
  287. 1,
  288. 1,
  289. 1
  290. ]
  291. },
  292. "components":[],
  293. "child":[
  294. {
  295. "type":"Sprite3D",
  296. "instanceID":9,
  297. "props":{
  298. "name":"Bip001 L Toe0",
  299. "active":true,
  300. "isStatic":false,
  301. "layer":0,
  302. "position":[
  303. 0.04889454,
  304. 0.1476999,
  305. 0
  306. ],
  307. "rotation":[
  308. -0.02904199,
  309. -0.0238791,
  310. -0.8545446,
  311. -0.5180154
  312. ],
  313. "scale":[
  314. 0.9999999,
  315. 1,
  316. 0.9999999
  317. ]
  318. },
  319. "components":[],
  320. "child":[
  321. {
  322. "type":"Sprite3D",
  323. "instanceID":10,
  324. "props":{
  325. "name":"Bip001 L Toe0Nub",
  326. "active":true,
  327. "isStatic":false,
  328. "layer":0,
  329. "position":[
  330. 0.1585926,
  331. -1.513958E-09,
  332. 0
  333. ],
  334. "rotation":[
  335. 9.553415E-16,
  336. -5.849759E-32,
  337. 1,
  338. 6.123234E-17
  339. ],
  340. "scale":[
  341. -0.9999999,
  342. -1,
  343. -0.9999999
  344. ]
  345. },
  346. "components":[],
  347. "child":[]
  348. }
  349. ]
  350. }
  351. ]
  352. }
  353. ]
  354. }
  355. ]
  356. },
  357. {
  358. "type":"Sprite3D",
  359. "instanceID":11,
  360. "props":{
  361. "name":"Bip001 R Thigh",
  362. "active":true,
  363. "isStatic":false,
  364. "layer":0,
  365. "position":[
  366. -0.06138714,
  367. 0.0001536722,
  368. -0.1218973
  369. ],
  370. "rotation":[
  371. 0.1479543,
  372. 0.9867862,
  373. -0.06337371,
  374. -0.01861028
  375. ],
  376. "scale":[
  377. 0.9999999,
  378. 1,
  379. 1
  380. ]
  381. },
  382. "components":[],
  383. "child":[
  384. {
  385. "type":"Sprite3D",
  386. "instanceID":12,
  387. "props":{
  388. "name":"Bip001 R Calf",
  389. "active":true,
  390. "isStatic":false,
  391. "layer":0,
  392. "position":[
  393. 0.2669007,
  394. 0,
  395. 0
  396. ],
  397. "rotation":[
  398. 0.02885593,
  399. 0.0300122,
  400. 0.2673493,
  401. -0.9626999
  402. ],
  403. "scale":[
  404. 1,
  405. 0.9999999,
  406. 1
  407. ]
  408. },
  409. "components":[],
  410. "child":[
  411. {
  412. "type":"Sprite3D",
  413. "instanceID":13,
  414. "props":{
  415. "name":"Bip001 R Foot",
  416. "active":true,
  417. "isStatic":false,
  418. "layer":0,
  419. "position":[
  420. 0.2669007,
  421. 7.56979E-10,
  422. 0
  423. ],
  424. "rotation":[
  425. 0.0003263924,
  426. -0.0009959183,
  427. -0.1482361,
  428. -0.9889514
  429. ],
  430. "scale":[
  431. 1,
  432. 1,
  433. 1
  434. ]
  435. },
  436. "components":[],
  437. "child":[
  438. {
  439. "type":"Sprite3D",
  440. "instanceID":14,
  441. "props":{
  442. "name":"Bip001 R Toe0",
  443. "active":true,
  444. "isStatic":false,
  445. "layer":0,
  446. "position":[
  447. 0.04889454,
  448. 0.1476999,
  449. 0
  450. ],
  451. "rotation":[
  452. 1.361312E-07,
  453. 2.353022E-07,
  454. -0.7371109,
  455. -0.6757718
  456. ],
  457. "scale":[
  458. 0.9999999,
  459. 1,
  460. 0.9999999
  461. ]
  462. },
  463. "components":[],
  464. "child":[
  465. {
  466. "type":"Sprite3D",
  467. "instanceID":15,
  468. "props":{
  469. "name":"Bip001 R Toe0Nub",
  470. "active":true,
  471. "isStatic":false,
  472. "layer":0,
  473. "position":[
  474. 0.1585926,
  475. -1.513958E-09,
  476. 0
  477. ],
  478. "rotation":[
  479. 1.697032E-30,
  480. 9.553441E-16,
  481. 1.776357E-15,
  482. -1
  483. ],
  484. "scale":[
  485. 0.9999999,
  486. 1,
  487. 0.9999999
  488. ]
  489. },
  490. "components":[],
  491. "child":[]
  492. }
  493. ]
  494. }
  495. ]
  496. }
  497. ]
  498. }
  499. ]
  500. },
  501. {
  502. "type":"Sprite3D",
  503. "instanceID":16,
  504. "props":{
  505. "name":"Bip001 Spine1",
  506. "active":true,
  507. "isStatic":false,
  508. "layer":0,
  509. "position":[
  510. 0.1311772,
  511. -0.0001029974,
  512. -2.856735E-10
  513. ],
  514. "rotation":[
  515. 0.01135026,
  516. 0.004058046,
  517. -0.05380659,
  518. -0.9984787
  519. ],
  520. "scale":[
  521. 1,
  522. 1,
  523. 1
  524. ]
  525. },
  526. "components":[],
  527. "child":[
  528. {
  529. "type":"Sprite3D",
  530. "instanceID":17,
  531. "props":{
  532. "name":"Bip001 Spine2",
  533. "active":true,
  534. "isStatic":false,
  535. "layer":0,
  536. "position":[
  537. 0.129349,
  538. -0.0001231012,
  539. -3.414332E-10
  540. ],
  541. "rotation":[
  542. 0.02133214,
  543. -0.0103061,
  544. -0.02156592,
  545. -0.9994867
  546. ],
  547. "scale":[
  548. 1,
  549. 1,
  550. 1
  551. ]
  552. },
  553. "components":[],
  554. "child":[
  555. {
  556. "type":"Sprite3D",
  557. "instanceID":18,
  558. "props":{
  559. "name":"Bip001 Neck",
  560. "active":true,
  561. "isStatic":false,
  562. "layer":0,
  563. "position":[
  564. 0.2056219,
  565. -7.991134E-05,
  566. -2.216423E-10
  567. ],
  568. "rotation":[
  569. 0.02096386,
  570. -0.01127568,
  571. -0.02131734,
  572. -0.9994894
  573. ],
  574. "scale":[
  575. 1,
  576. 1,
  577. 1
  578. ]
  579. },
  580. "components":[],
  581. "child":[
  582. {
  583. "type":"Sprite3D",
  584. "instanceID":19,
  585. "props":{
  586. "name":"Bip001 Head",
  587. "active":true,
  588. "isStatic":false,
  589. "layer":0,
  590. "position":[
  591. 0.06709881,
  592. -1.414794E-05,
  593. -3.924094E-11
  594. ],
  595. "rotation":[
  596. -0.01856978,
  597. 0.002156668,
  598. 0.00459718,
  599. -0.9998147
  600. ],
  601. "scale":[
  602. 1,
  603. 1,
  604. 1
  605. ]
  606. },
  607. "components":[],
  608. "child":[
  609. {
  610. "type":"Sprite3D",
  611. "instanceID":20,
  612. "props":{
  613. "name":"Bip001 HeadNub",
  614. "active":true,
  615. "isStatic":false,
  616. "layer":0,
  617. "position":[
  618. 0.4866897,
  619. 0,
  620. 5.507747E-21
  621. ],
  622. "rotation":[
  623. 4.117466E-20,
  624. -3.388132E-21,
  625. -1.395049E-40,
  626. -1
  627. ],
  628. "scale":[
  629. 1,
  630. 0.9999999,
  631. 0.9999999
  632. ]
  633. },
  634. "components":[],
  635. "child":[]
  636. }
  637. ]
  638. },
  639. {
  640. "type":"Sprite3D",
  641. "instanceID":21,
  642. "props":{
  643. "name":"Bip001 L Clavicle",
  644. "active":true,
  645. "isStatic":false,
  646. "layer":0,
  647. "position":[
  648. -0.05102547,
  649. 7.969428E-05,
  650. 0.07830243
  651. ],
  652. "rotation":[
  653. 0.61081,
  654. 0.06479152,
  655. 0.7877278,
  656. 0.0468842
  657. ],
  658. "scale":[
  659. 1,
  660. 1,
  661. 1
  662. ]
  663. },
  664. "components":[],
  665. "child":[
  666. {
  667. "type":"Sprite3D",
  668. "instanceID":22,
  669. "props":{
  670. "name":"Bip001 L UpperArm",
  671. "active":true,
  672. "isStatic":false,
  673. "layer":0,
  674. "position":[
  675. 0.06939408,
  676. 5.775291E-15,
  677. 0
  678. ],
  679. "rotation":[
  680. -0.1723127,
  681. -0.4829147,
  682. 0.1499279,
  683. -0.845354
  684. ],
  685. "scale":[
  686. 1,
  687. 0.9999999,
  688. 1
  689. ]
  690. },
  691. "components":[],
  692. "child":[
  693. {
  694. "type":"Sprite3D",
  695. "instanceID":23,
  696. "props":{
  697. "name":"Bip001 L Forearm",
  698. "active":true,
  699. "isStatic":false,
  700. "layer":0,
  701. "position":[
  702. 0.2419441,
  703. 0,
  704. -9.689331E-08
  705. ],
  706. "rotation":[
  707. -4.037631E-08,
  708. 0.0007754989,
  709. 0.09637583,
  710. -0.9953447
  711. ],
  712. "scale":[
  713. 0.9999999,
  714. 1,
  715. 1
  716. ]
  717. },
  718. "components":[],
  719. "child":[
  720. {
  721. "type":"Sprite3D",
  722. "instanceID":24,
  723. "props":{
  724. "name":"Bip001 L Hand",
  725. "active":true,
  726. "isStatic":false,
  727. "layer":0,
  728. "position":[
  729. 0.2507243,
  730. 0,
  731. 9.689331E-08
  732. ],
  733. "rotation":[
  734. 0.6849535,
  735. -0.008158031,
  736. -0.1197769,
  737. -0.7186276
  738. ],
  739. "scale":[
  740. 1,
  741. 1,
  742. 1
  743. ]
  744. },
  745. "components":[],
  746. "child":[
  747. {
  748. "type":"Sprite3D",
  749. "instanceID":25,
  750. "props":{
  751. "name":"Bip001 L Finger0",
  752. "active":true,
  753. "isStatic":false,
  754. "layer":0,
  755. "position":[
  756. 0.03493406,
  757. 0.003497364,
  758. -0.05212575
  759. ],
  760. "rotation":[
  761. -0.5777597,
  762. -0.287827,
  763. 0.001938196,
  764. -0.7637707
  765. ],
  766. "scale":[
  767. 1,
  768. 1,
  769. 0.9999999
  770. ]
  771. },
  772. "components":[],
  773. "child":[
  774. {
  775. "type":"Sprite3D",
  776. "instanceID":26,
  777. "props":{
  778. "name":"Bip001 L Finger01",
  779. "active":true,
  780. "isStatic":false,
  781. "layer":0,
  782. "position":[
  783. 0.03459571,
  784. -4.844665E-08,
  785. -9.689331E-08
  786. ],
  787. "rotation":[
  788. -0.01655966,
  789. 0.07177021,
  790. -0.07128046,
  791. -0.9947331
  792. ],
  793. "scale":[
  794. 1,
  795. 0.9999999,
  796. 1
  797. ]
  798. },
  799. "components":[],
  800. "child":[
  801. {
  802. "type":"Sprite3D",
  803. "instanceID":27,
  804. "props":{
  805. "name":"Bip001 L Finger02",
  806. "active":true,
  807. "isStatic":false,
  808. "layer":0,
  809. "position":[
  810. 0.06115894,
  811. -4.844665E-08,
  812. 0
  813. ],
  814. "rotation":[
  815. -0.1159003,
  816. 0.1200228,
  817. 0.1017227,
  818. -0.9807212
  819. ],
  820. "scale":[
  821. 1,
  822. 1,
  823. 1
  824. ]
  825. },
  826. "components":[],
  827. "child":[
  828. {
  829. "type":"Sprite3D",
  830. "instanceID":28,
  831. "props":{
  832. "name":"Bip001 L Finger0Nub",
  833. "active":true,
  834. "isStatic":false,
  835. "layer":0,
  836. "position":[
  837. 0.0539002,
  838. -4.844665E-08,
  839. 0
  840. ],
  841. "rotation":[
  842. 1.490116E-08,
  843. -1.490116E-08,
  844. 7.450579E-09,
  845. -1
  846. ],
  847. "scale":[
  848. 1,
  849. 1,
  850. 1
  851. ]
  852. },
  853. "components":[],
  854. "child":[]
  855. }
  856. ]
  857. }
  858. ]
  859. }
  860. ]
  861. },
  862. {
  863. "type":"Sprite3D",
  864. "instanceID":29,
  865. "props":{
  866. "name":"Bip001 L Finger1",
  867. "active":true,
  868. "isStatic":false,
  869. "layer":0,
  870. "position":[
  871. 0.1432866,
  872. -4.011383E-05,
  873. -0.05032036
  874. ],
  875. "rotation":[
  876. 0.007035354,
  877. -0.08332372,
  878. -0.1536534,
  879. -0.9845803
  880. ],
  881. "scale":[
  882. 1,
  883. 0.9999999,
  884. 1
  885. ]
  886. },
  887. "components":[],
  888. "child":[
  889. {
  890. "type":"Sprite3D",
  891. "instanceID":30,
  892. "props":{
  893. "name":"Bip001 L Finger11",
  894. "active":true,
  895. "isStatic":false,
  896. "layer":0,
  897. "position":[
  898. 0.0570549,
  899. -9.689331E-08,
  900. 0
  901. ],
  902. "rotation":[
  903. -4.395117E-09,
  904. 0.01406394,
  905. -0.1312879,
  906. -0.9912446
  907. ],
  908. "scale":[
  909. 1,
  910. 1,
  911. 1
  912. ]
  913. },
  914. "components":[],
  915. "child":[
  916. {
  917. "type":"Sprite3D",
  918. "instanceID":31,
  919. "props":{
  920. "name":"Bip001 L Finger12",
  921. "active":true,
  922. "isStatic":false,
  923. "layer":0,
  924. "position":[
  925. 0.02968021,
  926. 9.689331E-08,
  927. 0
  928. ],
  929. "rotation":[
  930. -4.9403E-09,
  931. 0.01406382,
  932. -0.1312881,
  933. -0.9912445
  934. ],
  935. "scale":[
  936. 1,
  937. 1,
  938. 1
  939. ]
  940. },
  941. "components":[],
  942. "child":[
  943. {
  944. "type":"Sprite3D",
  945. "instanceID":32,
  946. "props":{
  947. "name":"Bip001 L Finger1Nub",
  948. "active":true,
  949. "isStatic":false,
  950. "layer":0,
  951. "position":[
  952. 0.03668613,
  953. 0,
  954. 0
  955. ],
  956. "rotation":[
  957. -9.313227E-10,
  958. -1.391163E-08,
  959. 1.295622E-17,
  960. -1
  961. ],
  962. "scale":[
  963. 1,
  964. 0.9999999,
  965. 1
  966. ]
  967. },
  968. "components":[],
  969. "child":[]
  970. }
  971. ]
  972. }
  973. ]
  974. }
  975. ]
  976. },
  977. {
  978. "type":"Sprite3D",
  979. "instanceID":33,
  980. "props":{
  981. "name":"Bip001 L Finger2",
  982. "active":true,
  983. "isStatic":false,
  984. "layer":0,
  985. "position":[
  986. 0.1506886,
  987. -1.104584E-05,
  988. -0.01383829
  989. ],
  990. "rotation":[
  991. -0.005077053,
  992. -0.004680993,
  993. -0.2299748,
  994. -0.9731721
  995. ],
  996. "scale":[
  997. 1,
  998. 0.9999999,
  999. 1
  1000. ]
  1001. },
  1002. "components":[],
  1003. "child":[
  1004. {
  1005. "type":"Sprite3D",
  1006. "instanceID":34,
  1007. "props":{
  1008. "name":"Bip001 L Finger21",
  1009. "active":true,
  1010. "isStatic":false,
  1011. "layer":0,
  1012. "position":[
  1013. 0.06380758,
  1014. 0,
  1015. 6.055832E-09
  1016. ],
  1017. "rotation":[
  1018. -1.826657E-08,
  1019. 0.01104151,
  1020. -0.1036041,
  1021. -0.9945573
  1022. ],
  1023. "scale":[
  1024. 0.9999999,
  1025. 0.9999999,
  1026. 0.9999999
  1027. ]
  1028. },
  1029. "components":[],
  1030. "child":[
  1031. {
  1032. "type":"Sprite3D",
  1033. "instanceID":35,
  1034. "props":{
  1035. "name":"Bip001 L Finger22",
  1036. "active":true,
  1037. "isStatic":false,
  1038. "layer":0,
  1039. "position":[
  1040. 0.03940631,
  1041. 0,
  1042. 9.083748E-09
  1043. ],
  1044. "rotation":[
  1045. -3.522113E-08,
  1046. 0.01287922,
  1047. -0.1208472,
  1048. -0.9925876
  1049. ],
  1050. "scale":[
  1051. 0.9999998,
  1052. 0.9999999,
  1053. 0.9999999
  1054. ]
  1055. },
  1056. "components":[],
  1057. "child":[
  1058. {
  1059. "type":"Sprite3D",
  1060. "instanceID":36,
  1061. "props":{
  1062. "name":"Bip001 L Finger2Nub",
  1063. "active":true,
  1064. "isStatic":false,
  1065. "layer":0,
  1066. "position":[
  1067. 0.04017948,
  1068. 9.689331E-08,
  1069. -3.027916E-09
  1070. ],
  1071. "rotation":[
  1072. 0,
  1073. 1.513399E-09,
  1074. 0,
  1075. -1
  1076. ],
  1077. "scale":[
  1078. 1,
  1079. 1,
  1080. 1
  1081. ]
  1082. },
  1083. "components":[],
  1084. "child":[]
  1085. }
  1086. ]
  1087. }
  1088. ]
  1089. }
  1090. ]
  1091. },
  1092. {
  1093. "type":"Sprite3D",
  1094. "instanceID":37,
  1095. "props":{
  1096. "name":"Bip001 L Finger3",
  1097. "active":true,
  1098. "isStatic":false,
  1099. "layer":0,
  1100. "position":[
  1101. 0.1488944,
  1102. 9.27269E-05,
  1103. 0.021928
  1104. ],
  1105. "rotation":[
  1106. -0.01201515,
  1107. 0.01704802,
  1108. -0.2355147,
  1109. -0.971647
  1110. ],
  1111. "scale":[
  1112. 1,
  1113. 1,
  1114. 1
  1115. ]
  1116. },
  1117. "components":[],
  1118. "child":[
  1119. {
  1120. "type":"Sprite3D",
  1121. "instanceID":38,
  1122. "props":{
  1123. "name":"Bip001 L Finger31",
  1124. "active":true,
  1125. "isStatic":false,
  1126. "layer":0,
  1127. "position":[
  1128. 0.05413846,
  1129. 9.689331E-08,
  1130. 3.027916E-09
  1131. ],
  1132. "rotation":[
  1133. 3.763021E-08,
  1134. 0.01732497,
  1135. -0.1677741,
  1136. -0.9856732
  1137. ],
  1138. "scale":[
  1139. 1,
  1140. 1,
  1141. 1
  1142. ]
  1143. },
  1144. "components":[],
  1145. "child":[
  1146. {
  1147. "type":"Sprite3D",
  1148. "instanceID":39,
  1149. "props":{
  1150. "name":"Bip001 L Finger32",
  1151. "active":true,
  1152. "isStatic":false,
  1153. "layer":0,
  1154. "position":[
  1155. 0.02864602,
  1156. 0,
  1157. 0
  1158. ],
  1159. "rotation":[
  1160. 4.938737E-09,
  1161. 0.0190862,
  1162. -0.18483,
  1163. -0.9825852
  1164. ],
  1165. "scale":[
  1166. 1,
  1167. 0.9999999,
  1168. 1
  1169. ]
  1170. },
  1171. "components":[],
  1172. "child":[
  1173. {
  1174. "type":"Sprite3D",
  1175. "instanceID":40,
  1176. "props":{
  1177. "name":"Bip001 L Finger3Nub",
  1178. "active":true,
  1179. "isStatic":false,
  1180. "layer":0,
  1181. "position":[
  1182. 0.04180326,
  1183. -9.689331E-08,
  1184. 0
  1185. ],
  1186. "rotation":[
  1187. -6.505211E-18,
  1188. 8.731148E-10,
  1189. -7.45058E-09,
  1190. -1
  1191. ],
  1192. "scale":[
  1193. 1,
  1194. 1,
  1195. 1
  1196. ]
  1197. },
  1198. "components":[],
  1199. "child":[]
  1200. }
  1201. ]
  1202. }
  1203. ]
  1204. }
  1205. ]
  1206. },
  1207. {
  1208. "type":"Sprite3D",
  1209. "instanceID":41,
  1210. "props":{
  1211. "name":"Bip001 L Finger4",
  1212. "active":true,
  1213. "isStatic":false,
  1214. "layer":0,
  1215. "position":[
  1216. 0.137076,
  1217. -0.0005242897,
  1218. 0.05495664
  1219. ],
  1220. "rotation":[
  1221. -0.01385914,
  1222. 0.03702791,
  1223. -0.2894262,
  1224. -0.9563835
  1225. ],
  1226. "scale":[
  1227. 1,
  1228. 0.9999999,
  1229. 1
  1230. ]
  1231. },
  1232. "components":[],
  1233. "child":[
  1234. {
  1235. "type":"Sprite3D",
  1236. "instanceID":42,
  1237. "props":{
  1238. "name":"Bip001 L Finger41",
  1239. "active":true,
  1240. "isStatic":false,
  1241. "layer":0,
  1242. "position":[
  1243. 0.04698027,
  1244. 0,
  1245. -2.422333E-08
  1246. ],
  1247. "rotation":[
  1248. 1.572658E-08,
  1249. 0.01646855,
  1250. -0.1537355,
  1251. -0.9879748
  1252. ],
  1253. "scale":[
  1254. 1,
  1255. 1,
  1256. 1
  1257. ]
  1258. },
  1259. "components":[],
  1260. "child":[
  1261. {
  1262. "type":"Sprite3D",
  1263. "instanceID":43,
  1264. "props":{
  1265. "name":"Bip001 L Finger42",
  1266. "active":true,
  1267. "isStatic":false,
  1268. "layer":0,
  1269. "position":[
  1270. 0.02962997,
  1271. 9.689331E-08,
  1272. 0
  1273. ],
  1274. "rotation":[
  1275. -2.365736E-08,
  1276. 0.01646879,
  1277. -0.1537352,
  1278. -0.9879748
  1279. ],
  1280. "scale":[
  1281. 1,
  1282. 1,
  1283. 1
  1284. ]
  1285. },
  1286. "components":[],
  1287. "child":[
  1288. {
  1289. "type":"Sprite3D",
  1290. "instanceID":44,
  1291. "props":{
  1292. "name":"Bip001 L Finger4Nub",
  1293. "active":true,
  1294. "isStatic":false,
  1295. "layer":0,
  1296. "position":[
  1297. 0.0371067,
  1298. 9.689331E-08,
  1299. 1.211166E-08
  1300. ],
  1301. "rotation":[
  1302. 2.328306E-10,
  1303. 1.135049E-09,
  1304. -3.72529E-09,
  1305. -1
  1306. ],
  1307. "scale":[
  1308. 1,
  1309. 1,
  1310. 1
  1311. ]
  1312. },
  1313. "components":[],
  1314. "child":[]
  1315. }
  1316. ]
  1317. }
  1318. ]
  1319. }
  1320. ]
  1321. }
  1322. ]
  1323. }
  1324. ]
  1325. }
  1326. ]
  1327. }
  1328. ]
  1329. },
  1330. {
  1331. "type":"Sprite3D",
  1332. "instanceID":45,
  1333. "props":{
  1334. "name":"Bip001 R Clavicle",
  1335. "active":true,
  1336. "isStatic":false,
  1337. "layer":0,
  1338. "position":[
  1339. -0.05102547,
  1340. 8.012859E-05,
  1341. -0.07830243
  1342. ],
  1343. "rotation":[
  1344. -0.6031564,
  1345. -0.03143089,
  1346. 0.7967942,
  1347. 0.01825607
  1348. ],
  1349. "scale":[
  1350. 1,
  1351. 1,
  1352. 1
  1353. ]
  1354. },
  1355. "components":[],
  1356. "child":[
  1357. {
  1358. "type":"Sprite3D",
  1359. "instanceID":46,
  1360. "props":{
  1361. "name":"Bip001 R UpperArm",
  1362. "active":true,
  1363. "isStatic":false,
  1364. "layer":0,
  1365. "position":[
  1366. 0.06939408,
  1367. 1.155058E-14,
  1368. 0
  1369. ],
  1370. "rotation":[
  1371. 0.1261404,
  1372. 0.4093936,
  1373. 0.215559,
  1374. -0.8775077
  1375. ],
  1376. "scale":[
  1377. 1,
  1378. 0.9999999,
  1379. 1
  1380. ]
  1381. },
  1382. "components":[],
  1383. "child":[
  1384. {
  1385. "type":"Sprite3D",
  1386. "instanceID":47,
  1387. "props":{
  1388. "name":"Bip001 R Forearm",
  1389. "active":true,
  1390. "isStatic":false,
  1391. "layer":0,
  1392. "position":[
  1393. 0.2419441,
  1394. -7.56979E-10,
  1395. 9.689331E-08
  1396. ],
  1397. "rotation":[
  1398. 6.12711E-08,
  1399. -0.001617984,
  1400. 0.2010609,
  1401. -0.9795774
  1402. ],
  1403. "scale":[
  1404. 1,
  1405. 1,
  1406. 1
  1407. ]
  1408. },
  1409. "components":[],
  1410. "child":[
  1411. {
  1412. "type":"Sprite3D",
  1413. "instanceID":48,
  1414. "props":{
  1415. "name":"Bip001 R Hand",
  1416. "active":true,
  1417. "isStatic":false,
  1418. "layer":0,
  1419. "position":[
  1420. 0.2507243,
  1421. -3.027916E-09,
  1422. -9.689331E-08
  1423. ],
  1424. "rotation":[
  1425. -0.7162353,
  1426. 0.01084649,
  1427. -0.06291362,
  1428. -0.6949326
  1429. ],
  1430. "scale":[
  1431. 1,
  1432. 1,
  1433. 1
  1434. ]
  1435. },
  1436. "components":[],
  1437. "child":[
  1438. {
  1439. "type":"Sprite3D",
  1440. "instanceID":49,
  1441. "props":{
  1442. "name":"Bip001 R Finger0",
  1443. "active":true,
  1444. "isStatic":false,
  1445. "layer":0,
  1446. "position":[
  1447. 0.03493401,
  1448. 0.003497364,
  1449. 0.05212576
  1450. ],
  1451. "rotation":[
  1452. 0.6098554,
  1453. 0.3146115,
  1454. -0.0624317,
  1455. -0.7247057
  1456. ],
  1457. "scale":[
  1458. 1,
  1459. 1,
  1460. 1
  1461. ]
  1462. },
  1463. "components":[],
  1464. "child":[
  1465. {
  1466. "type":"Sprite3D",
  1467. "instanceID":50,
  1468. "props":{
  1469. "name":"Bip001 R Finger01",
  1470. "active":true,
  1471. "isStatic":false,
  1472. "layer":0,
  1473. "position":[
  1474. 0.03459578,
  1475. 0,
  1476. 0
  1477. ],
  1478. "rotation":[
  1479. -0.02132399,
  1480. -0.1324565,
  1481. -0.1317629,
  1482. -0.9821604
  1483. ],
  1484. "scale":[
  1485. 1,
  1486. 0.9999999,
  1487. 1
  1488. ]
  1489. },
  1490. "components":[],
  1491. "child":[
  1492. {
  1493. "type":"Sprite3D",
  1494. "instanceID":51,
  1495. "props":{
  1496. "name":"Bip001 R Finger02",
  1497. "active":true,
  1498. "isStatic":false,
  1499. "layer":0,
  1500. "position":[
  1501. 0.06115891,
  1502. -4.844665E-08,
  1503. 9.689331E-08
  1504. ],
  1505. "rotation":[
  1506. -0.07373592,
  1507. -0.1272251,
  1508. 0.09381152,
  1509. -0.9846706
  1510. ],
  1511. "scale":[
  1512. 0.9999998,
  1513. 0.9999999,
  1514. 1
  1515. ]
  1516. },
  1517. "components":[],
  1518. "child":[
  1519. {
  1520. "type":"Sprite3D",
  1521. "instanceID":52,
  1522. "props":{
  1523. "name":"Bip001 R Finger0Nub",
  1524. "active":true,
  1525. "isStatic":false,
  1526. "layer":0,
  1527. "position":[
  1528. 0.0539002,
  1529. -9.689331E-08,
  1530. -9.689331E-08
  1531. ],
  1532. "rotation":[
  1533. 1.490116E-08,
  1534. 9.12433E-25,
  1535. 1,
  1536. -6.123234E-17
  1537. ],
  1538. "scale":[
  1539. -1,
  1540. -1,
  1541. -1
  1542. ]
  1543. },
  1544. "components":[],
  1545. "child":[]
  1546. }
  1547. ]
  1548. }
  1549. ]
  1550. }
  1551. ]
  1552. },
  1553. {
  1554. "type":"Sprite3D",
  1555. "instanceID":53,
  1556. "props":{
  1557. "name":"Bip001 R Finger1",
  1558. "active":true,
  1559. "isStatic":false,
  1560. "layer":0,
  1561. "position":[
  1562. 0.1432866,
  1563. -4.011383E-05,
  1564. 0.05032036
  1565. ],
  1566. "rotation":[
  1567. -0.008192615,
  1568. 0.08262003,
  1569. -0.1802104,
  1570. -0.9801179
  1571. ],
  1572. "scale":[
  1573. 1,
  1574. 1,
  1575. 1
  1576. ]
  1577. },
  1578. "components":[],
  1579. "child":[
  1580. {
  1581. "type":"Sprite3D",
  1582. "instanceID":54,
  1583. "props":{
  1584. "name":"Bip001 R Finger11",
  1585. "active":true,
  1586. "isStatic":false,
  1587. "layer":0,
  1588. "position":[
  1589. 0.05705485,
  1590. -9.689331E-08,
  1591. -3.633499E-08
  1592. ],
  1593. "rotation":[
  1594. -1.809812E-08,
  1595. -0.01769588,
  1596. -0.2055515,
  1597. -0.9784863
  1598. ],
  1599. "scale":[
  1600. 1,
  1601. 1,
  1602. 1
  1603. ]
  1604. },
  1605. "components":[],
  1606. "child":[
  1607. {
  1608. "type":"Sprite3D",
  1609. "instanceID":55,
  1610. "props":{
  1611. "name":"Bip001 R Finger12",
  1612. "active":true,
  1613. "isStatic":false,
  1614. "layer":0,
  1615. "position":[
  1616. 0.02968012,
  1617. 0,
  1618. 6.055832E-08
  1619. ],
  1620. "rotation":[
  1621. 3.962775E-08,
  1622. -0.007858816,
  1623. -0.09128523,
  1624. -0.9957938
  1625. ],
  1626. "scale":[
  1627. 1,
  1628. 1,
  1629. 1
  1630. ]
  1631. },
  1632. "components":[],
  1633. "child":[
  1634. {
  1635. "type":"Sprite3D",
  1636. "instanceID":56,
  1637. "props":{
  1638. "name":"Bip001 R Finger1Nub",
  1639. "active":true,
  1640. "isStatic":false,
  1641. "layer":0,
  1642. "position":[
  1643. 0.03668613,
  1644. 9.689331E-08,
  1645. -2.422333E-08
  1646. ],
  1647. "rotation":[
  1648. -1.396984E-08,
  1649. 9.313226E-10,
  1650. 1,
  1651. -4.822191E-17
  1652. ],
  1653. "scale":[
  1654. -1,
  1655. -1,
  1656. -1
  1657. ]
  1658. },
  1659. "components":[],
  1660. "child":[]
  1661. }
  1662. ]
  1663. }
  1664. ]
  1665. }
  1666. ]
  1667. },
  1668. {
  1669. "type":"Sprite3D",
  1670. "instanceID":57,
  1671. "props":{
  1672. "name":"Bip001 R Finger2",
  1673. "active":true,
  1674. "isStatic":false,
  1675. "layer":0,
  1676. "position":[
  1677. 0.1506887,
  1678. -1.104584E-05,
  1679. 0.01383829
  1680. ],
  1681. "rotation":[
  1682. -0.001386956,
  1683. 0.04322546,
  1684. -0.1929045,
  1685. -0.980264
  1686. ],
  1687. "scale":[
  1688. 1,
  1689. 1,
  1690. 1
  1691. ]
  1692. },
  1693. "components":[],
  1694. "child":[
  1695. {
  1696. "type":"Sprite3D",
  1697. "instanceID":58,
  1698. "props":{
  1699. "name":"Bip001 R Finger21",
  1700. "active":true,
  1701. "isStatic":false,
  1702. "layer":0,
  1703. "position":[
  1704. 0.06380773,
  1705. 0,
  1706. -3.027916E-09
  1707. ],
  1708. "rotation":[
  1709. -2.320096E-09,
  1710. -0.02591319,
  1711. -0.3029227,
  1712. -0.9526628
  1713. ],
  1714. "scale":[
  1715. 1,
  1716. 0.9999999,
  1717. 1
  1718. ]
  1719. },
  1720. "components":[],
  1721. "child":[
  1722. {
  1723. "type":"Sprite3D",
  1724. "instanceID":59,
  1725. "props":{
  1726. "name":"Bip001 R Finger22",
  1727. "active":true,
  1728. "isStatic":false,
  1729. "layer":0,
  1730. "position":[
  1731. 0.03940622,
  1732. -9.689331E-08,
  1733. 3.027916E-09
  1734. ],
  1735. "rotation":[
  1736. 6.472321E-08,
  1737. -0.01522684,
  1738. -0.1779998,
  1739. -0.9839127
  1740. ],
  1741. "scale":[
  1742. 0.9999999,
  1743. 1,
  1744. 1
  1745. ]
  1746. },
  1747. "components":[],
  1748. "child":[
  1749. {
  1750. "type":"Sprite3D",
  1751. "instanceID":60,
  1752. "props":{
  1753. "name":"Bip001 R Finger2Nub",
  1754. "active":true,
  1755. "isStatic":false,
  1756. "layer":0,
  1757. "position":[
  1758. 0.04017948,
  1759. 0,
  1760. 0
  1761. ],
  1762. "rotation":[
  1763. -2.386514E-09,
  1764. 4.656613E-10,
  1765. 1,
  1766. -6.012104E-17
  1767. ],
  1768. "scale":[
  1769. -0.9999999,
  1770. -0.9999999,
  1771. -1
  1772. ]
  1773. },
  1774. "components":[],
  1775. "child":[]
  1776. }
  1777. ]
  1778. }
  1779. ]
  1780. }
  1781. ]
  1782. },
  1783. {
  1784. "type":"Sprite3D",
  1785. "instanceID":61,
  1786. "props":{
  1787. "name":"Bip001 R Finger3",
  1788. "active":true,
  1789. "isStatic":false,
  1790. "layer":0,
  1791. "position":[
  1792. 0.1488944,
  1793. 9.27269E-05,
  1794. -0.021928
  1795. ],
  1796. "rotation":[
  1797. 0.004080689,
  1798. 0.02271346,
  1799. -0.2108836,
  1800. -0.9772388
  1801. ],
  1802. "scale":[
  1803. 1,
  1804. 1,
  1805. 1
  1806. ]
  1807. },
  1808. "components":[],
  1809. "child":[
  1810. {
  1811. "type":"Sprite3D",
  1812. "instanceID":62,
  1813. "props":{
  1814. "name":"Bip001 R Finger31",
  1815. "active":true,
  1816. "isStatic":false,
  1817. "layer":0,
  1818. "position":[
  1819. 0.05413836,
  1820. 9.689331E-08,
  1821. -3.027916E-09
  1822. ],
  1823. "rotation":[
  1824. 6.966587E-08,
  1825. -0.03300128,
  1826. -0.4012469,
  1827. -0.9153752
  1828. ],
  1829. "scale":[
  1830. 1,
  1831. 1,
  1832. 1
  1833. ]
  1834. },
  1835. "components":[],
  1836. "child":[
  1837. {
  1838. "type":"Sprite3D",
  1839. "instanceID":63,
  1840. "props":{
  1841. "name":"Bip001 R Finger32",
  1842. "active":true,
  1843. "isStatic":false,
  1844. "layer":0,
  1845. "position":[
  1846. 0.02864612,
  1847. -9.689331E-08,
  1848. 0
  1849. ],
  1850. "rotation":[
  1851. 1.14821E-08,
  1852. -0.01645851,
  1853. -0.200112,
  1854. -0.9796348
  1855. ],
  1856. "scale":[
  1857. 0.9999999,
  1858. 0.9999999,
  1859. 1
  1860. ]
  1861. },
  1862. "components":[],
  1863. "child":[
  1864. {
  1865. "type":"Sprite3D",
  1866. "instanceID":64,
  1867. "props":{
  1868. "name":"Bip001 R Finger3Nub",
  1869. "active":true,
  1870. "isStatic":false,
  1871. "layer":0,
  1872. "position":[
  1873. 0.04180331,
  1874. -9.689331E-08,
  1875. 3.027916E-09
  1876. ],
  1877. "rotation":[
  1878. -1.862645E-09,
  1879. -4.656613E-10,
  1880. 1,
  1881. -6.20997E-17
  1882. ],
  1883. "scale":[
  1884. -1,
  1885. -1,
  1886. -0.9999999
  1887. ]
  1888. },
  1889. "components":[],
  1890. "child":[]
  1891. }
  1892. ]
  1893. }
  1894. ]
  1895. }
  1896. ]
  1897. },
  1898. {
  1899. "type":"Sprite3D",
  1900. "instanceID":65,
  1901. "props":{
  1902. "name":"Bip001 R Finger4",
  1903. "active":true,
  1904. "isStatic":false,
  1905. "layer":0,
  1906. "position":[
  1907. 0.1370761,
  1908. -0.0005243866,
  1909. -0.05495666
  1910. ],
  1911. "rotation":[
  1912. 0.001352895,
  1913. 0.01477957,
  1914. -0.2531115,
  1915. -0.9673233
  1916. ],
  1917. "scale":[
  1918. 1,
  1919. 1,
  1920. 1
  1921. ]
  1922. },
  1923. "components":[],
  1924. "child":[
  1925. {
  1926. "type":"Sprite3D",
  1927. "instanceID":66,
  1928. "props":{
  1929. "name":"Bip001 R Finger41",
  1930. "active":true,
  1931. "isStatic":false,
  1932. "layer":0,
  1933. "position":[
  1934. 0.04698018,
  1935. 0,
  1936. 1.211166E-08
  1937. ],
  1938. "rotation":[
  1939. 1.892439E-08,
  1940. -0.02125288,
  1941. -0.2468632,
  1942. -0.9688172
  1943. ],
  1944. "scale":[
  1945. 1,
  1946. 1,
  1947. 1
  1948. ]
  1949. },
  1950. "components":[],
  1951. "child":[
  1952. {
  1953. "type":"Sprite3D",
  1954. "instanceID":67,
  1955. "props":{
  1956. "name":"Bip001 R Finger42",
  1957. "active":true,
  1958. "isStatic":false,
  1959. "layer":0,
  1960. "position":[
  1961. 0.02962978,
  1962. 0,
  1963. -1.211166E-08
  1964. ],
  1965. "rotation":[
  1966. 3.922853E-08,
  1967. -0.0118856,
  1968. -0.1380568,
  1969. -0.990353
  1970. ],
  1971. "scale":[
  1972. 1,
  1973. 1,
  1974. 1
  1975. ]
  1976. },
  1977. "components":[],
  1978. "child":[
  1979. {
  1980. "type":"Sprite3D",
  1981. "instanceID":68,
  1982. "props":{
  1983. "name":"Bip001 R Finger4Nub",
  1984. "active":true,
  1985. "isStatic":false,
  1986. "layer":0,
  1987. "position":[
  1988. 0.03710684,
  1989. -9.689331E-08,
  1990. -1.211166E-08
  1991. ],
  1992. "rotation":[
  1993. 1.135049E-09,
  1994. 6.98492E-10,
  1995. 1,
  1996. -6.202517E-17
  1997. ],
  1998. "scale":[
  1999. -1,
  2000. -0.9999999,
  2001. -1
  2002. ]
  2003. },
  2004. "components":[],
  2005. "child":[]
  2006. }
  2007. ]
  2008. }
  2009. ]
  2010. }
  2011. ]
  2012. }
  2013. ]
  2014. }
  2015. ]
  2016. }
  2017. ]
  2018. }
  2019. ]
  2020. }
  2021. ]
  2022. }
  2023. ]
  2024. }
  2025. ]
  2026. }
  2027. ]
  2028. }
  2029. ]
  2030. }
  2031. ]
  2032. },
  2033. {
  2034. "type":"SkinnedMeshSprite3D",
  2035. "instanceID":69,
  2036. "props":{
  2037. "name":"Whiteman",
  2038. "active":true,
  2039. "isStatic":false,
  2040. "layer":0,
  2041. "position":[
  2042. 0,
  2043. 0,
  2044. 0
  2045. ],
  2046. "rotation":[
  2047. 0.7071068,
  2048. 0,
  2049. 0,
  2050. -0.7071068
  2051. ],
  2052. "scale":[
  2053. 1,
  2054. 1,
  2055. 1
  2056. ],
  2057. "rootBone":2,
  2058. "boundBox":{
  2059. "min":[
  2060. -0.2197284,
  2061. -0.3362955,
  2062. -0.5999184
  2063. ],
  2064. "max":[
  2065. 0.4479354,
  2066. 0.3485964,
  2067. 1.134846
  2068. ]
  2069. },
  2070. "boundSphere":{
  2071. "center":[
  2072. 0.1141035,
  2073. 0.006150454,
  2074. 0.2674641
  2075. ],
  2076. "radius":0.9904873
  2077. },
  2078. "bones":[
  2079. 19,
  2080. 21,
  2081. 22,
  2082. 5,
  2083. 16,
  2084. 17,
  2085. 2,
  2086. 18,
  2087. 23,
  2088. 24,
  2089. 29,
  2090. 33,
  2091. 41,
  2092. 37,
  2093. 30,
  2094. 38,
  2095. 27,
  2096. 25,
  2097. 26,
  2098. 42,
  2099. 34,
  2100. 35,
  2101. 39,
  2102. 31,
  2103. 43,
  2104. 7,
  2105. 6,
  2106. 4,
  2107. 11,
  2108. 12,
  2109. 8,
  2110. 13,
  2111. 9,
  2112. 14,
  2113. 45,
  2114. 46,
  2115. 47,
  2116. 48,
  2117. 53,
  2118. 57,
  2119. 65,
  2120. 61,
  2121. 54,
  2122. 62,
  2123. 50,
  2124. 51,
  2125. 49,
  2126. 66,
  2127. 58,
  2128. 59,
  2129. 63,
  2130. 55,
  2131. 67
  2132. ],
  2133. "materials":[
  2134. {
  2135. "path":"Assets/ArcherAsset/Animator/Ragdoll _5741/Materials/ragdoll.lmat"
  2136. }
  2137. ],
  2138. "meshPath":"Assets/ArcherAsset/Animator/Ragdoll _5741/Ragdoll _5741-Whiteman.lm"
  2139. },
  2140. "components":[],
  2141. "child":[]
  2142. }
  2143. ]
  2144. },
  2145. {
  2146. "type":"Sprite3D",
  2147. "instanceID":70,
  2148. "props":{
  2149. "name":"collider",
  2150. "active":true,
  2151. "isStatic":false,
  2152. "layer":0,
  2153. "position":[
  2154. 0,
  2155. 0.686,
  2156. 0
  2157. ],
  2158. "rotation":[
  2159. 0,
  2160. 0,
  2161. 0,
  2162. -1
  2163. ],
  2164. "scale":[
  2165. 1,
  2166. 1,
  2167. 1
  2168. ]
  2169. },
  2170. "components":[
  2171. {
  2172. "type":"PhysicsCollider",
  2173. "restitution":0,
  2174. "friction":0.5,
  2175. "rollingFriction":0,
  2176. "shapes":[
  2177. {
  2178. "type":"CapsuleColliderShape",
  2179. "center":[
  2180. 0.04386699,
  2181. -0.001422962,
  2182. 0.1129636
  2183. ],
  2184. "radius":0.2833572,
  2185. "height":1.967032,
  2186. "orientation":1
  2187. }
  2188. ],
  2189. "isTrigger":false
  2190. }
  2191. ],
  2192. "child":[]
  2193. }
  2194. ]
  2195. }
  2196. }