male7.lh 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225
  1. {
  2. "version":"LAYAHIERARCHY:02",
  3. "data":{
  4. "type":"Sprite3D",
  5. "instanceID":1522,
  6. "props":{
  7. "name":"male7",
  8. "active":true,
  9. "isStatic":false,
  10. "layer":0,
  11. "position":[
  12. 0,
  13. 0,
  14. 0
  15. ],
  16. "rotation":[
  17. 0,
  18. 0,
  19. 0,
  20. -1
  21. ],
  22. "scale":[
  23. 1,
  24. 1,
  25. 1
  26. ]
  27. },
  28. "components":[],
  29. "child":[
  30. {
  31. "type":"Sprite3D",
  32. "instanceID":1523,
  33. "props":{
  34. "name":"male7",
  35. "active":true,
  36. "isStatic":false,
  37. "layer":0,
  38. "position":[
  39. 0,
  40. 0.22,
  41. 0
  42. ],
  43. "rotation":[
  44. 0,
  45. 0,
  46. 0,
  47. -1
  48. ],
  49. "scale":[
  50. 1,
  51. 1,
  52. 1
  53. ]
  54. },
  55. "components":[
  56. {
  57. "type":"Animator",
  58. "layers":[
  59. {
  60. "name":"Base Layer",
  61. "weight":0,
  62. "blendingMode":0,
  63. "states":[
  64. {
  65. "name":"Idle",
  66. "clipPath":"Assets/LatestRes/NPC/Model/male7-Idle.lani"
  67. },
  68. {
  69. "name":"Walk",
  70. "clipPath":"Assets/LatestRes/NPC/Model/male7-Walk.lani"
  71. },
  72. {
  73. "name":"Run",
  74. "clipPath":"Assets/LatestRes/NPC/Model/male7-Run.lani"
  75. },
  76. {
  77. "name":"Death",
  78. "clipPath":"Assets/LatestRes/NPC/Model/male7-Death.lani"
  79. }
  80. ]
  81. }
  82. ],
  83. "cullingMode":0,
  84. "playOnWake":true
  85. }
  86. ],
  87. "child":[
  88. {
  89. "type":"Sprite3D",
  90. "instanceID":1524,
  91. "props":{
  92. "name":"Bip001",
  93. "active":true,
  94. "isStatic":false,
  95. "layer":0,
  96. "position":[
  97. 0,
  98. 0.9593976,
  99. -0.02780217
  100. ],
  101. "rotation":[
  102. 0.5000004,
  103. 0.4999996,
  104. 0.4999996,
  105. -0.5000004
  106. ],
  107. "scale":[
  108. 0.9999999,
  109. 0.9999999,
  110. 1
  111. ]
  112. },
  113. "components":[],
  114. "child":[
  115. {
  116. "type":"Sprite3D",
  117. "instanceID":1525,
  118. "props":{
  119. "name":"Bip001 Footsteps",
  120. "active":true,
  121. "isStatic":false,
  122. "layer":0,
  123. "position":[
  124. 0,
  125. 0,
  126. -0.9516997
  127. ],
  128. "rotation":[
  129. 0,
  130. 0,
  131. -0.7071062,
  132. -0.7071074
  133. ],
  134. "scale":[
  135. 1,
  136. 1,
  137. 1
  138. ]
  139. },
  140. "components":[],
  141. "child":[]
  142. },
  143. {
  144. "type":"Sprite3D",
  145. "instanceID":1526,
  146. "props":{
  147. "name":"Bip001 Pelvis",
  148. "active":true,
  149. "isStatic":false,
  150. "layer":0,
  151. "position":[
  152. 0,
  153. 0,
  154. 0
  155. ],
  156. "rotation":[
  157. 0.4425943,
  158. 0.5514619,
  159. 0.4425944,
  160. -0.5514619
  161. ],
  162. "scale":[
  163. 1,
  164. 0.9999999,
  165. 0.9999999
  166. ]
  167. },
  168. "components":[],
  169. "child":[
  170. {
  171. "type":"Sprite3D",
  172. "instanceID":1527,
  173. "props":{
  174. "name":"Bip001 Spine",
  175. "active":true,
  176. "isStatic":false,
  177. "layer":0,
  178. "position":[
  179. 0.1002067,
  180. -0.01127821,
  181. 0.002491893
  182. ],
  183. "rotation":[
  184. 0.07410676,
  185. -2.88152E-05,
  186. -0.0003970128,
  187. -0.9972503
  188. ],
  189. "scale":[
  190. 1,
  191. 1,
  192. 1
  193. ]
  194. },
  195. "components":[],
  196. "child":[
  197. {
  198. "type":"Sprite3D",
  199. "instanceID":1528,
  200. "props":{
  201. "name":"collider",
  202. "active":true,
  203. "isStatic":false,
  204. "layer":0,
  205. "position":[
  206. 0.150873,
  207. -0.0001199706,
  208. -6.516991E-09
  209. ],
  210. "rotation":[
  211. 0.02617611,
  212. 0.0001056941,
  213. -0.004832653,
  214. -0.9996457
  215. ],
  216. "scale":[
  217. 1,
  218. 1,
  219. 1
  220. ]
  221. },
  222. "components":[
  223. {
  224. "type":"PhysicsCollider",
  225. "restitution":0,
  226. "friction":0.5,
  227. "rollingFriction":0,
  228. "shapes":[
  229. {
  230. "type":"BoxColliderShape",
  231. "center":[
  232. 0.009444473,
  233. -0.005781283,
  234. -0.006604241
  235. ],
  236. "size":[
  237. 0.6627307,
  238. 0.2832628,
  239. 0.2964313
  240. ]
  241. }
  242. ],
  243. "isTrigger":false
  244. }
  245. ],
  246. "child":[]
  247. },
  248. {
  249. "type":"Sprite3D",
  250. "instanceID":1529,
  251. "props":{
  252. "name":"AimAssist",
  253. "active":true,
  254. "isStatic":false,
  255. "layer":0,
  256. "position":[
  257. 0.008426919,
  258. 0.03925041,
  259. -0.002737053
  260. ],
  261. "rotation":[
  262. -0.5173528,
  263. -0.5169404,
  264. -0.4824357,
  265. 0.4820525
  266. ],
  267. "scale":[
  268. 1,
  269. 1,
  270. 1
  271. ]
  272. },
  273. "components":[
  274. {
  275. "type":"PhysicsCollider",
  276. "restitution":0,
  277. "friction":0.5,
  278. "rollingFriction":0,
  279. "shapes":[
  280. {
  281. "type":"BoxColliderShape",
  282. "center":[
  283. -0.01423764,
  284. -0.1113636,
  285. -0.01545059
  286. ],
  287. "size":[
  288. 0.6795347,
  289. 1.975664,
  290. 0.4958494
  291. ]
  292. }
  293. ],
  294. "isTrigger":false
  295. }
  296. ],
  297. "child":[]
  298. },
  299. {
  300. "type":"Sprite3D",
  301. "instanceID":1530,
  302. "props":{
  303. "name":"Bip001 L Thigh",
  304. "active":true,
  305. "isStatic":false,
  306. "layer":0,
  307. "position":[
  308. -0.1002069,
  309. -0.0001077168,
  310. 0.07755981
  311. ],
  312. "rotation":[
  313. -0.1472033,
  314. 0.986541,
  315. 0.05952821,
  316. -0.03904505
  317. ],
  318. "scale":[
  319. 1,
  320. 1,
  321. 1
  322. ]
  323. },
  324. "components":[],
  325. "child":[
  326. {
  327. "type":"Sprite3D",
  328. "instanceID":1531,
  329. "props":{
  330. "name":"collider",
  331. "active":true,
  332. "isStatic":false,
  333. "layer":0,
  334. "position":[
  335. 0.2371574,
  336. 4.726927E-05,
  337. 1.572072E-05
  338. ],
  339. "rotation":[
  340. -2.386514E-07,
  341. -5.373731E-07,
  342. 0.7071063,
  343. -0.7071073
  344. ],
  345. "scale":[
  346. 1,
  347. 1,
  348. 1
  349. ]
  350. },
  351. "components":[
  352. {
  353. "type":"PhysicsCollider",
  354. "restitution":0,
  355. "friction":0.5,
  356. "rollingFriction":0,
  357. "shapes":[
  358. {
  359. "type":"CapsuleColliderShape",
  360. "center":[
  361. 0.00495829,
  362. 0.006859852,
  363. -0.00796997
  364. ],
  365. "radius":0.07920094,
  366. "height":0.4946195,
  367. "orientation":1
  368. }
  369. ],
  370. "isTrigger":false
  371. }
  372. ],
  373. "child":[]
  374. },
  375. {
  376. "type":"Sprite3D",
  377. "instanceID":1532,
  378. "props":{
  379. "name":"Bip001 L Calf",
  380. "active":true,
  381. "isStatic":false,
  382. "layer":0,
  383. "position":[
  384. 0.41028,
  385. -2.980232E-08,
  386. 1.490116E-08
  387. ],
  388. "rotation":[
  389. -6.058349E-09,
  390. -2.898141E-09,
  391. 0.1413322,
  392. -0.9899623
  393. ],
  394. "scale":[
  395. 1,
  396. 1,
  397. 1
  398. ]
  399. },
  400. "components":[],
  401. "child":[
  402. {
  403. "type":"Sprite3D",
  404. "instanceID":1533,
  405. "props":{
  406. "name":"collider",
  407. "active":true,
  408. "isStatic":false,
  409. "layer":0,
  410. "position":[
  411. 0.1451377,
  412. 8.95136E-05,
  413. 1.581866E-05
  414. ],
  415. "rotation":[
  416. -1.496258E-07,
  417. -4.318692E-08,
  418. 0.7071073,
  419. -0.7071064
  420. ],
  421. "scale":[
  422. 1,
  423. 1,
  424. 1
  425. ]
  426. },
  427. "components":[
  428. {
  429. "type":"PhysicsCollider",
  430. "restitution":0,
  431. "friction":0.5,
  432. "rollingFriction":0,
  433. "shapes":[
  434. {
  435. "type":"CapsuleColliderShape",
  436. "center":[
  437. 0.007207188,
  438. 0.09287051,
  439. -0.00452481
  440. ],
  441. "radius":0.07270732,
  442. "height":0.5883211,
  443. "orientation":1
  444. }
  445. ],
  446. "isTrigger":false
  447. }
  448. ],
  449. "child":[]
  450. },
  451. {
  452. "type":"Sprite3D",
  453. "instanceID":1534,
  454. "props":{
  455. "name":"Bip001 L Foot",
  456. "active":true,
  457. "isStatic":false,
  458. "layer":0,
  459. "position":[
  460. 0.4850561,
  461. 2.980232E-08,
  462. 0
  463. ],
  464. "rotation":[
  465. -0.01637426,
  466. 0.04588192,
  467. 0.07386579,
  468. -0.9960776
  469. ],
  470. "scale":[
  471. 1,
  472. 0.9999999,
  473. 1
  474. ]
  475. },
  476. "components":[],
  477. "child":[
  478. {
  479. "type":"Sprite3D",
  480. "instanceID":1535,
  481. "props":{
  482. "name":"collider",
  483. "active":true,
  484. "isStatic":false,
  485. "layer":0,
  486. "position":[
  487. 0.04612381,
  488. 0.0001081587,
  489. 6.93195E-07
  490. ],
  491. "rotation":[
  492. 1.881271E-07,
  493. 1.750886E-07,
  494. 9.086214E-08,
  495. -1
  496. ],
  497. "scale":[
  498. 1,
  499. 1,
  500. 1
  501. ]
  502. },
  503. "components":[
  504. {
  505. "type":"PhysicsCollider",
  506. "restitution":0,
  507. "friction":0.5,
  508. "rollingFriction":0,
  509. "shapes":[
  510. {
  511. "type":"BoxColliderShape",
  512. "center":[
  513. 0.01256435,
  514. 0.05339844,
  515. -0.01221541
  516. ],
  517. "size":[
  518. 0.1017027,
  519. 0.2593699,
  520. 0.1244307
  521. ]
  522. }
  523. ],
  524. "isTrigger":false
  525. }
  526. ],
  527. "child":[]
  528. },
  529. {
  530. "type":"Sprite3D",
  531. "instanceID":1536,
  532. "props":{
  533. "name":"Bip001 L Toe0",
  534. "active":true,
  535. "isStatic":false,
  536. "layer":0,
  537. "position":[
  538. 0.1002067,
  539. 0.1289617,
  540. 1.490116E-08
  541. ],
  542. "rotation":[
  543. -0.04738755,
  544. 0.02243434,
  545. 0.9025903,
  546. 0.4272959
  547. ],
  548. "scale":[
  549. 0.9999999,
  550. 1,
  551. 1
  552. ]
  553. },
  554. "components":[],
  555. "child":[
  556. {
  557. "type":"Sprite3D",
  558. "instanceID":1537,
  559. "props":{
  560. "name":"Bip001 L Toe0Nub",
  561. "active":true,
  562. "isStatic":false,
  563. "layer":0,
  564. "position":[
  565. 0.07950649,
  566. 0,
  567. 1.490116E-08
  568. ],
  569. "rotation":[
  570. 6.69388E-10,
  571. 2.328306E-10,
  572. 1,
  573. -4.371139E-08
  574. ],
  575. "scale":[
  576. -1,
  577. -1,
  578. -1
  579. ]
  580. },
  581. "components":[],
  582. "child":[]
  583. }
  584. ]
  585. }
  586. ]
  587. }
  588. ]
  589. }
  590. ]
  591. },
  592. {
  593. "type":"Sprite3D",
  594. "instanceID":1538,
  595. "props":{
  596. "name":"Bip001 R Thigh",
  597. "active":true,
  598. "isStatic":false,
  599. "layer":0,
  600. "position":[
  601. -0.1001882,
  602. 0.02331263,
  603. -0.07915463
  604. ],
  605. "rotation":[
  606. 0.2076711,
  607. 0.9753774,
  608. -0.07276304,
  609. 0.01474258
  610. ],
  611. "scale":[
  612. 1,
  613. 1,
  614. 1
  615. ]
  616. },
  617. "components":[],
  618. "child":[
  619. {
  620. "type":"Sprite3D",
  621. "instanceID":1539,
  622. "props":{
  623. "name":"collider",
  624. "active":true,
  625. "isStatic":false,
  626. "layer":0,
  627. "position":[
  628. 0.2371508,
  629. -6.645964E-05,
  630. 3.539025E-07
  631. ],
  632. "rotation":[
  633. -1.583248E-08,
  634. 2.942979E-07,
  635. 0.7071058,
  636. -0.7071078
  637. ],
  638. "scale":[
  639. 1,
  640. 1,
  641. 1
  642. ]
  643. },
  644. "components":[
  645. {
  646. "type":"PhysicsCollider",
  647. "restitution":0,
  648. "friction":0.5,
  649. "rollingFriction":0,
  650. "shapes":[
  651. {
  652. "type":"CapsuleColliderShape",
  653. "center":[
  654. 0.005492967,
  655. 0.006859869,
  656. 0.01259414
  657. ],
  658. "radius":0.07695609,
  659. "height":0.4946195,
  660. "orientation":1
  661. }
  662. ],
  663. "isTrigger":false
  664. }
  665. ],
  666. "child":[]
  667. },
  668. {
  669. "type":"Sprite3D",
  670. "instanceID":1540,
  671. "props":{
  672. "name":"Bip001 R Calf",
  673. "active":true,
  674. "isStatic":false,
  675. "layer":0,
  676. "position":[
  677. 0.4102799,
  678. 0,
  679. 0
  680. ],
  681. "rotation":[
  682. -2.056496E-09,
  683. -2.374651E-09,
  684. 0.09601644,
  685. -0.9953797
  686. ],
  687. "scale":[
  688. 1,
  689. 1,
  690. 1
  691. ]
  692. },
  693. "components":[],
  694. "child":[
  695. {
  696. "type":"Sprite3D",
  697. "instanceID":1541,
  698. "props":{
  699. "name":"collider",
  700. "active":true,
  701. "isStatic":false,
  702. "layer":0,
  703. "position":[
  704. 0.1451618,
  705. -3.601116E-05,
  706. 3.76998E-07
  707. ],
  708. "rotation":[
  709. 1.77609E-07,
  710. 9.052636E-09,
  711. 0.7071071,
  712. -0.7071065
  713. ],
  714. "scale":[
  715. 1,
  716. 1,
  717. 1
  718. ]
  719. },
  720. "components":[
  721. {
  722. "type":"PhysicsCollider",
  723. "restitution":0,
  724. "friction":0.5,
  725. "rollingFriction":0,
  726. "shapes":[
  727. {
  728. "type":"CapsuleColliderShape",
  729. "center":[
  730. 0.01173474,
  731. 0.0928705,
  732. 0.004084994
  733. ],
  734. "radius":0.06862505,
  735. "height":0.5883211,
  736. "orientation":1
  737. }
  738. ],
  739. "isTrigger":false
  740. }
  741. ],
  742. "child":[]
  743. },
  744. {
  745. "type":"Sprite3D",
  746. "instanceID":1542,
  747. "props":{
  748. "name":"Bip001 R Foot",
  749. "active":true,
  750. "isStatic":false,
  751. "layer":0,
  752. "position":[
  753. 0.4850559,
  754. -2.980232E-08,
  755. 0
  756. ],
  757. "rotation":[
  758. -0.02635118,
  759. 0.005223143,
  760. -0.04941652,
  761. -0.998417
  762. ],
  763. "scale":[
  764. 0.9999999,
  765. 0.9999998,
  766. 0.9999999
  767. ]
  768. },
  769. "components":[],
  770. "child":[
  771. {
  772. "type":"Sprite3D",
  773. "instanceID":1543,
  774. "props":{
  775. "name":"collider",
  776. "active":true,
  777. "isStatic":false,
  778. "layer":0,
  779. "position":[
  780. 0.04615756,
  781. -5.223371E-05,
  782. 9.338693E-07
  783. ],
  784. "rotation":[
  785. 1.303851E-08,
  786. 2.211891E-07,
  787. -4.806934E-07,
  788. -1
  789. ],
  790. "scale":[
  791. 1,
  792. 1,
  793. 1
  794. ]
  795. },
  796. "components":[
  797. {
  798. "type":"PhysicsCollider",
  799. "restitution":0,
  800. "friction":0.5,
  801. "rollingFriction":0,
  802. "shapes":[
  803. {
  804. "type":"BoxColliderShape",
  805. "center":[
  806. 0.01256436,
  807. 0.0704357,
  808. -0.01221542
  809. ],
  810. "size":[
  811. 0.1017027,
  812. 0.2934446,
  813. 0.1244307
  814. ]
  815. }
  816. ],
  817. "isTrigger":false
  818. }
  819. ],
  820. "child":[]
  821. },
  822. {
  823. "type":"Sprite3D",
  824. "instanceID":1544,
  825. "props":{
  826. "name":"Bip001 R Toe0",
  827. "active":true,
  828. "isStatic":false,
  829. "layer":0,
  830. "position":[
  831. 0.1002067,
  832. 0.1289617,
  833. -3.72529E-09
  834. ],
  835. "rotation":[
  836. 0.005242018,
  837. 0.1681595,
  838. -0.7222707,
  839. -0.6708353
  840. ],
  841. "scale":[
  842. 1,
  843. 1,
  844. 1
  845. ]
  846. },
  847. "components":[],
  848. "child":[
  849. {
  850. "type":"Sprite3D",
  851. "instanceID":1545,
  852. "props":{
  853. "name":"Bip001 R Toe0Nub",
  854. "active":true,
  855. "isStatic":false,
  856. "layer":0,
  857. "position":[
  858. 0.07950649,
  859. 0,
  860. -1.490116E-08
  861. ],
  862. "rotation":[
  863. -1.665335E-16,
  864. 1.117587E-08,
  865. -1.490116E-08,
  866. -1
  867. ],
  868. "scale":[
  869. 0.9999999,
  870. 1,
  871. 1
  872. ]
  873. },
  874. "components":[],
  875. "child":[]
  876. }
  877. ]
  878. }
  879. ]
  880. }
  881. ]
  882. }
  883. ]
  884. },
  885. {
  886. "type":"Sprite3D",
  887. "instanceID":1546,
  888. "props":{
  889. "name":"Bip001 Spine1",
  890. "active":true,
  891. "isStatic":false,
  892. "layer":0,
  893. "position":[
  894. 0.1510375,
  895. -0.0001200959,
  896. 6.293412E-06
  897. ],
  898. "rotation":[
  899. 0.0261759,
  900. 0.0001057147,
  901. -0.00483269,
  902. -0.9996457
  903. ],
  904. "scale":[
  905. 1,
  906. 1,
  907. 1
  908. ]
  909. },
  910. "components":[],
  911. "child":[
  912. {
  913. "type":"Sprite3D",
  914. "instanceID":1547,
  915. "props":{
  916. "name":"Bip001 Spine2",
  917. "active":true,
  918. "isStatic":false,
  919. "layer":0,
  920. "position":[
  921. 0.1510425,
  922. -0.0001497045,
  923. 2.266059E-05
  924. ],
  925. "rotation":[
  926. 0.0749701,
  927. 0.001466577,
  928. -0.02029648,
  929. -0.9969782
  930. ],
  931. "scale":[
  932. 1,
  933. 1,
  934. 1
  935. ]
  936. },
  937. "components":[],
  938. "child":[
  939. {
  940. "type":"Sprite3D",
  941. "instanceID":1548,
  942. "props":{
  943. "name":"Bip001 Neck",
  944. "active":true,
  945. "isStatic":false,
  946. "layer":0,
  947. "position":[
  948. 0.1903179,
  949. -4.944205E-05,
  950. -1.862645E-09
  951. ],
  952. "rotation":[
  953. -4.360866E-09,
  954. 4.348257E-07,
  955. -0.1582244,
  956. -0.9874032
  957. ],
  958. "scale":[
  959. 0.9999999,
  960. 0.9999999,
  961. 1
  962. ]
  963. },
  964. "components":[],
  965. "child":[
  966. {
  967. "type":"Sprite3D",
  968. "instanceID":1549,
  969. "props":{
  970. "name":"collider",
  971. "active":true,
  972. "isStatic":false,
  973. "layer":0,
  974. "position":[
  975. -0.0001533311,
  976. -0.04114084,
  977. 1.365266E-06
  978. ],
  979. "rotation":[
  980. -1.290487E-07,
  981. 1.278926E-07,
  982. 0.7071067,
  983. -0.7071069
  984. ],
  985. "scale":[
  986. 1,
  987. 1,
  988. 1
  989. ]
  990. },
  991. "components":[
  992. {
  993. "type":"PhysicsCollider",
  994. "restitution":0,
  995. "friction":0.5,
  996. "rollingFriction":0,
  997. "shapes":[
  998. {
  999. "type":"CapsuleColliderShape",
  1000. "center":[
  1001. 0.0004788069,
  1002. 0.004258768,
  1003. -0.003552764
  1004. ],
  1005. "radius":0.05741175,
  1006. "height":0.2131524,
  1007. "orientation":1
  1008. }
  1009. ],
  1010. "isTrigger":false
  1011. }
  1012. ],
  1013. "child":[]
  1014. },
  1015. {
  1016. "type":"Sprite3D",
  1017. "instanceID":1550,
  1018. "props":{
  1019. "name":"Bip001 Head",
  1020. "active":true,
  1021. "isStatic":false,
  1022. "layer":0,
  1023. "position":[
  1024. 0.0653522,
  1025. 0,
  1026. 0
  1027. ],
  1028. "rotation":[
  1029. -0.06579452,
  1030. 0.008179823,
  1031. 0.1829726,
  1032. -0.9808798
  1033. ],
  1034. "scale":[
  1035. 0.9999999,
  1036. 0.9999998,
  1037. 0.9999998
  1038. ]
  1039. },
  1040. "components":[],
  1041. "child":[
  1042. {
  1043. "type":"Sprite3D",
  1044. "instanceID":1551,
  1045. "props":{
  1046. "name":"collider",
  1047. "active":true,
  1048. "isStatic":false,
  1049. "layer":0,
  1050. "position":[
  1051. 0.09283572,
  1052. -3.306196E-08,
  1053. 6.332995E-08
  1054. ],
  1055. "rotation":[
  1056. -3.725289E-08,
  1057. -6.519255E-09,
  1058. 0.7071074,
  1059. -0.7071062
  1060. ],
  1061. "scale":[
  1062. 1,
  1063. 1,
  1064. 1
  1065. ]
  1066. },
  1067. "components":[
  1068. {
  1069. "type":"PhysicsCollider",
  1070. "restitution":0,
  1071. "friction":0.5,
  1072. "rollingFriction":0,
  1073. "shapes":[
  1074. {
  1075. "type":"CapsuleColliderShape",
  1076. "center":[
  1077. -0.009858033,
  1078. -0.01142278,
  1079. 0.0004709456
  1080. ],
  1081. "radius":0.1043281,
  1082. "height":0.2922795,
  1083. "orientation":1
  1084. }
  1085. ],
  1086. "isTrigger":false
  1087. }
  1088. ],
  1089. "child":[]
  1090. },
  1091. {
  1092. "type":"Sprite3D",
  1093. "instanceID":1552,
  1094. "props":{
  1095. "name":"Bip001 HeadNub",
  1096. "active":true,
  1097. "isStatic":false,
  1098. "layer":0,
  1099. "position":[
  1100. 0.2047703,
  1101. 0,
  1102. 0
  1103. ],
  1104. "rotation":[
  1105. 3.417626E-20,
  1106. -3.388132E-21,
  1107. -1.157935E-40,
  1108. -1
  1109. ],
  1110. "scale":[
  1111. 1,
  1112. 0.9999999,
  1113. 0.9999999
  1114. ]
  1115. },
  1116. "components":[],
  1117. "child":[]
  1118. },
  1119. {
  1120. "type":"Sprite3D",
  1121. "instanceID":1553,
  1122. "props":{
  1123. "name":"headPos",
  1124. "active":true,
  1125. "isStatic":false,
  1126. "layer":0,
  1127. "position":[
  1128. 0.1,
  1129. 0,
  1130. 0
  1131. ],
  1132. "rotation":[
  1133. 0,
  1134. 0,
  1135. 0,
  1136. -1
  1137. ],
  1138. "scale":[
  1139. 1,
  1140. 1,
  1141. 1
  1142. ]
  1143. },
  1144. "components":[],
  1145. "child":[]
  1146. }
  1147. ]
  1148. },
  1149. {
  1150. "type":"Sprite3D",
  1151. "instanceID":1554,
  1152. "props":{
  1153. "name":"Bip001 L Clavicle",
  1154. "active":true,
  1155. "isStatic":false,
  1156. "layer":0,
  1157. "position":[
  1158. -0.1011752,
  1159. -0.01943409,
  1160. 0.03514031
  1161. ],
  1162. "rotation":[
  1163. -0.7062656,
  1164. 0.06659842,
  1165. -0.686976,
  1166. -0.1575356
  1167. ],
  1168. "scale":[
  1169. 1,
  1170. 0.9999999,
  1171. 0.9999999
  1172. ]
  1173. },
  1174. "components":[],
  1175. "child":[
  1176. {
  1177. "type":"Sprite3D",
  1178. "instanceID":1555,
  1179. "props":{
  1180. "name":"Bip001 L UpperArm",
  1181. "active":true,
  1182. "isStatic":false,
  1183. "layer":0,
  1184. "position":[
  1185. 0.1132772,
  1186. 0,
  1187. 0
  1188. ],
  1189. "rotation":[
  1190. -0.03758134,
  1191. -0.6456758,
  1192. 0.1300792,
  1193. -0.7515118
  1194. ],
  1195. "scale":[
  1196. 1,
  1197. 1,
  1198. 0.9999999
  1199. ]
  1200. },
  1201. "components":[],
  1202. "child":[
  1203. {
  1204. "type":"Sprite3D",
  1205. "instanceID":1556,
  1206. "props":{
  1207. "name":"collider",
  1208. "active":true,
  1209. "isStatic":false,
  1210. "layer":0,
  1211. "position":[
  1212. 0.1081624,
  1213. 1.117214E-05,
  1214. -2.384186E-05
  1215. ],
  1216. "rotation":[
  1217. -1.080334E-07,
  1218. -4.172324E-07,
  1219. 0.7071067,
  1220. -0.7071069
  1221. ],
  1222. "scale":[
  1223. 1,
  1224. 1,
  1225. 1
  1226. ]
  1227. },
  1228. "components":[
  1229. {
  1230. "type":"PhysicsCollider",
  1231. "restitution":0,
  1232. "friction":0.5,
  1233. "rollingFriction":0,
  1234. "shapes":[
  1235. {
  1236. "type":"CapsuleColliderShape",
  1237. "center":[
  1238. 0.003608461,
  1239. 0.01213855,
  1240. -0.0009051926
  1241. ],
  1242. "radius":0.04407898,
  1243. "height":0.3562577,
  1244. "orientation":1
  1245. }
  1246. ],
  1247. "isTrigger":false
  1248. }
  1249. ],
  1250. "child":[]
  1251. },
  1252. {
  1253. "type":"Sprite3D",
  1254. "instanceID":1557,
  1255. "props":{
  1256. "name":"Bip001 L Forearm",
  1257. "active":true,
  1258. "isStatic":false,
  1259. "layer":0,
  1260. "position":[
  1261. 0.2614089,
  1262. -7.450581E-09,
  1263. 0
  1264. ],
  1265. "rotation":[
  1266. -1.413071E-08,
  1267. 4.108164E-08,
  1268. 0.2076088,
  1269. -0.9782119
  1270. ],
  1271. "scale":[
  1272. 1,
  1273. 1,
  1274. 1
  1275. ]
  1276. },
  1277. "components":[],
  1278. "child":[
  1279. {
  1280. "type":"Sprite3D",
  1281. "instanceID":1558,
  1282. "props":{
  1283. "name":"collider",
  1284. "active":true,
  1285. "isStatic":false,
  1286. "layer":0,
  1287. "position":[
  1288. 0.1131446,
  1289. 7.626646E-05,
  1290. -2.379069E-05
  1291. ],
  1292. "rotation":[
  1293. -1.990473E-07,
  1294. 1.210706E-07,
  1295. 0.7071074,
  1296. -0.7071062
  1297. ],
  1298. "scale":[
  1299. 1,
  1300. 1,
  1301. 1
  1302. ]
  1303. },
  1304. "components":[
  1305. {
  1306. "type":"PhysicsCollider",
  1307. "restitution":0,
  1308. "friction":0.5,
  1309. "rollingFriction":0,
  1310. "shapes":[
  1311. {
  1312. "type":"CapsuleColliderShape",
  1313. "center":[
  1314. -0.001699676,
  1315. 0.02514258,
  1316. -0.007048072
  1317. ],
  1318. "radius":0.03111569,
  1319. "height":0.3246627,
  1320. "orientation":1
  1321. }
  1322. ],
  1323. "isTrigger":false
  1324. }
  1325. ],
  1326. "child":[]
  1327. },
  1328. {
  1329. "type":"Sprite3D",
  1330. "instanceID":1559,
  1331. "props":{
  1332. "name":"Bip001 L Hand",
  1333. "active":true,
  1334. "isStatic":false,
  1335. "layer":0,
  1336. "position":[
  1337. 0.2889125,
  1338. 2.980232E-08,
  1339. 0
  1340. ],
  1341. "rotation":[
  1342. 0.7068253,
  1343. 1.053252E-08,
  1344. -1.054091E-08,
  1345. -0.7073883
  1346. ],
  1347. "scale":[
  1348. 1,
  1349. 1,
  1350. 1
  1351. ]
  1352. },
  1353. "components":[],
  1354. "child":[
  1355. {
  1356. "type":"Sprite3D",
  1357. "instanceID":1560,
  1358. "props":{
  1359. "name":"collider",
  1360. "active":true,
  1361. "isStatic":false,
  1362. "layer":0,
  1363. "position":[
  1364. 0.06324503,
  1365. 2.386917E-05,
  1366. 7.61995E-05
  1367. ],
  1368. "rotation":[
  1369. -1.192092E-07,
  1370. -1.523002E-07,
  1371. 1.81629E-07,
  1372. -1
  1373. ],
  1374. "scale":[
  1375. 1,
  1376. 1,
  1377. 1
  1378. ]
  1379. },
  1380. "components":[
  1381. {
  1382. "type":"PhysicsCollider",
  1383. "restitution":0,
  1384. "friction":0.5,
  1385. "rollingFriction":0,
  1386. "shapes":[
  1387. {
  1388. "type":"BoxColliderShape",
  1389. "center":[
  1390. -0.004424372,
  1391. 0.006033781,
  1392. -0.007631439
  1393. ],
  1394. "size":[
  1395. 0.07743821,
  1396. 0.04974617,
  1397. 0.07583927
  1398. ]
  1399. }
  1400. ],
  1401. "isTrigger":false
  1402. }
  1403. ],
  1404. "child":[]
  1405. },
  1406. {
  1407. "type":"Sprite3D",
  1408. "instanceID":1561,
  1409. "props":{
  1410. "name":"Bip001 L Finger0",
  1411. "active":true,
  1412. "isStatic":false,
  1413. "layer":0,
  1414. "position":[
  1415. 0.02434999,
  1416. 0.002616614,
  1417. -0.02980405
  1418. ],
  1419. "rotation":[
  1420. -0.7754843,
  1421. -0.3229517,
  1422. 0.1262423,
  1423. -0.527626
  1424. ],
  1425. "scale":[
  1426. 0.9999999,
  1427. 1,
  1428. 1
  1429. ]
  1430. },
  1431. "components":[],
  1432. "child":[
  1433. {
  1434. "type":"Sprite3D",
  1435. "instanceID":1562,
  1436. "props":{
  1437. "name":"Bip001 L Finger01",
  1438. "active":true,
  1439. "isStatic":false,
  1440. "layer":0,
  1441. "position":[
  1442. 0.02723005,
  1443. -5.960464E-08,
  1444. 0
  1445. ],
  1446. "rotation":[
  1447. -0.01778253,
  1448. 0.07941228,
  1449. -0.03380839,
  1450. -0.9961097
  1451. ],
  1452. "scale":[
  1453. 1,
  1454. 0.9999999,
  1455. 1
  1456. ]
  1457. },
  1458. "components":[],
  1459. "child":[
  1460. {
  1461. "type":"Sprite3D",
  1462. "instanceID":1563,
  1463. "props":{
  1464. "name":"Bip001 L Finger02",
  1465. "active":true,
  1466. "isStatic":false,
  1467. "layer":0,
  1468. "position":[
  1469. 0.02723011,
  1470. 5.960464E-08,
  1471. 0
  1472. ],
  1473. "rotation":[
  1474. -7.450581E-09,
  1475. -7.450581E-09,
  1476. -1.490116E-08,
  1477. -1
  1478. ],
  1479. "scale":[
  1480. 1,
  1481. 1,
  1482. 1
  1483. ]
  1484. },
  1485. "components":[],
  1486. "child":[
  1487. {
  1488. "type":"Sprite3D",
  1489. "instanceID":1564,
  1490. "props":{
  1491. "name":"Bip001 L Finger0Nub",
  1492. "active":true,
  1493. "isStatic":false,
  1494. "layer":0,
  1495. "position":[
  1496. 0.02723011,
  1497. 0,
  1498. 0
  1499. ],
  1500. "rotation":[
  1501. -7.450581E-09,
  1502. -7.450581E-09,
  1503. -1.490116E-08,
  1504. -1
  1505. ],
  1506. "scale":[
  1507. 1,
  1508. 1,
  1509. 1
  1510. ]
  1511. },
  1512. "components":[],
  1513. "child":[]
  1514. }
  1515. ]
  1516. }
  1517. ]
  1518. }
  1519. ]
  1520. },
  1521. {
  1522. "type":"Sprite3D",
  1523. "instanceID":1565,
  1524. "props":{
  1525. "name":"Bip001 L Finger1",
  1526. "active":true,
  1527. "isStatic":false,
  1528. "layer":0,
  1529. "position":[
  1530. 0.0973376,
  1531. -0.0002412796,
  1532. -0.03862372
  1533. ],
  1534. "rotation":[
  1535. -0.02114632,
  1536. -0.07691225,
  1537. 0.8695826,
  1538. 0.4873022
  1539. ],
  1540. "scale":[
  1541. 1,
  1542. 1,
  1543. 0.9999999
  1544. ]
  1545. },
  1546. "components":[],
  1547. "child":[
  1548. {
  1549. "type":"Sprite3D",
  1550. "instanceID":1566,
  1551. "props":{
  1552. "name":"Bip001 L Finger11",
  1553. "active":true,
  1554. "isStatic":false,
  1555. "layer":0,
  1556. "position":[
  1557. 0.02929166,
  1558. 0,
  1559. 0
  1560. ],
  1561. "rotation":[
  1562. -1.034649E-08,
  1563. -1.993092E-09,
  1564. -0.8280955,
  1565. -0.5605872
  1566. ],
  1567. "scale":[
  1568. 0.9999999,
  1569. 0.9999999,
  1570. 1
  1571. ]
  1572. },
  1573. "components":[],
  1574. "child":[
  1575. {
  1576. "type":"Sprite3D",
  1577. "instanceID":1567,
  1578. "props":{
  1579. "name":"Bip001 L Finger12",
  1580. "active":true,
  1581. "isStatic":false,
  1582. "layer":0,
  1583. "position":[
  1584. 0.02267462,
  1585. -2.980232E-08,
  1586. 0
  1587. ],
  1588. "rotation":[
  1589. -3.725291E-08,
  1590. 0,
  1591. 0,
  1592. -1
  1593. ],
  1594. "scale":[
  1595. 1,
  1596. 1,
  1597. 1
  1598. ]
  1599. },
  1600. "components":[],
  1601. "child":[
  1602. {
  1603. "type":"Sprite3D",
  1604. "instanceID":1568,
  1605. "props":{
  1606. "name":"Bip001 L Finger1Nub",
  1607. "active":true,
  1608. "isStatic":false,
  1609. "layer":0,
  1610. "position":[
  1611. 0.02512115,
  1612. -2.980232E-08,
  1613. 0
  1614. ],
  1615. "rotation":[
  1616. -3.725291E-08,
  1617. 0,
  1618. 0,
  1619. -1
  1620. ],
  1621. "scale":[
  1622. 1,
  1623. 1,
  1624. 1
  1625. ]
  1626. },
  1627. "components":[],
  1628. "child":[]
  1629. }
  1630. ]
  1631. }
  1632. ]
  1633. }
  1634. ]
  1635. },
  1636. {
  1637. "type":"Sprite3D",
  1638. "instanceID":1569,
  1639. "props":{
  1640. "name":"Bip001 L Finger2",
  1641. "active":true,
  1642. "isStatic":false,
  1643. "layer":0,
  1644. "position":[
  1645. 0.09498984,
  1646. -0.001502931,
  1647. -0.01683405
  1648. ],
  1649. "rotation":[
  1650. -0.02381417,
  1651. -0.03912364,
  1652. 0.8724915,
  1653. 0.4864779
  1654. ],
  1655. "scale":[
  1656. 1,
  1657. 1,
  1658. 1
  1659. ]
  1660. },
  1661. "components":[],
  1662. "child":[
  1663. {
  1664. "type":"Sprite3D",
  1665. "instanceID":1570,
  1666. "props":{
  1667. "name":"Bip001 L Finger21",
  1668. "active":true,
  1669. "isStatic":false,
  1670. "layer":0,
  1671. "position":[
  1672. 0.03223771,
  1673. 0,
  1674. 2.980232E-08
  1675. ],
  1676. "rotation":[
  1677. -4.1767E-09,
  1678. -6.169792E-09,
  1679. -0.8280955,
  1680. -0.5605872
  1681. ],
  1682. "scale":[
  1683. 1,
  1684. 1,
  1685. 1
  1686. ]
  1687. },
  1688. "components":[],
  1689. "child":[
  1690. {
  1691. "type":"Sprite3D",
  1692. "instanceID":1571,
  1693. "props":{
  1694. "name":"Bip001 L Finger22",
  1695. "active":true,
  1696. "isStatic":false,
  1697. "layer":0,
  1698. "position":[
  1699. 0.02475232,
  1700. 0,
  1701. -2.980232E-08
  1702. ],
  1703. "rotation":[
  1704. 7.450581E-09,
  1705. -1.490116E-08,
  1706. -1.110223E-16,
  1707. -1
  1708. ],
  1709. "scale":[
  1710. 1,
  1711. 1,
  1712. 1
  1713. ]
  1714. },
  1715. "components":[],
  1716. "child":[
  1717. {
  1718. "type":"Sprite3D",
  1719. "instanceID":1572,
  1720. "props":{
  1721. "name":"Bip001 L Finger2Nub",
  1722. "active":true,
  1723. "isStatic":false,
  1724. "layer":0,
  1725. "position":[
  1726. 0.02478039,
  1727. -2.980232E-08,
  1728. 2.980232E-08
  1729. ],
  1730. "rotation":[
  1731. 7.450581E-09,
  1732. -1.490116E-08,
  1733. -1.110223E-16,
  1734. -1
  1735. ],
  1736. "scale":[
  1737. 1,
  1738. 1,
  1739. 1
  1740. ]
  1741. },
  1742. "components":[],
  1743. "child":[]
  1744. }
  1745. ]
  1746. }
  1747. ]
  1748. }
  1749. ]
  1750. },
  1751. {
  1752. "type":"Sprite3D",
  1753. "instanceID":1573,
  1754. "props":{
  1755. "name":"Bip001 L Finger3",
  1756. "active":true,
  1757. "isStatic":false,
  1758. "layer":0,
  1759. "position":[
  1760. 0.09241927,
  1761. -0.0008970499,
  1762. 0.004036814
  1763. ],
  1764. "rotation":[
  1765. 0.03047645,
  1766. 0.04573257,
  1767. 0.8834154,
  1768. 0.4653569
  1769. ],
  1770. "scale":[
  1771. 1,
  1772. 1,
  1773. 1
  1774. ]
  1775. },
  1776. "components":[],
  1777. "child":[
  1778. {
  1779. "type":"Sprite3D",
  1780. "instanceID":1574,
  1781. "props":{
  1782. "name":"Bip001 L Finger31",
  1783. "active":true,
  1784. "isStatic":false,
  1785. "layer":0,
  1786. "position":[
  1787. 0.02750182,
  1788. 0,
  1789. 0
  1790. ],
  1791. "rotation":[
  1792. 4.367212E-09,
  1793. 3.303257E-08,
  1794. -0.8280955,
  1795. -0.5605871
  1796. ],
  1797. "scale":[
  1798. 1,
  1799. 1,
  1800. 1
  1801. ]
  1802. },
  1803. "components":[],
  1804. "child":[
  1805. {
  1806. "type":"Sprite3D",
  1807. "instanceID":1575,
  1808. "props":{
  1809. "name":"Bip001 L Finger32",
  1810. "active":true,
  1811. "isStatic":false,
  1812. "layer":0,
  1813. "position":[
  1814. 0.02453631,
  1815. 0,
  1816. 0
  1817. ],
  1818. "rotation":[
  1819. -2.980232E-08,
  1820. 1.490116E-08,
  1821. -4.440892E-16,
  1822. -1
  1823. ],
  1824. "scale":[
  1825. 1,
  1826. 1,
  1827. 1
  1828. ]
  1829. },
  1830. "components":[],
  1831. "child":[
  1832. {
  1833. "type":"Sprite3D",
  1834. "instanceID":1576,
  1835. "props":{
  1836. "name":"Bip001 L Finger3Nub",
  1837. "active":true,
  1838. "isStatic":false,
  1839. "layer":0,
  1840. "position":[
  1841. 0.02523476,
  1842. 2.980232E-08,
  1843. 0
  1844. ],
  1845. "rotation":[
  1846. -2.980232E-08,
  1847. 1.490116E-08,
  1848. -4.440892E-16,
  1849. -1
  1850. ],
  1851. "scale":[
  1852. 1,
  1853. 1,
  1854. 1
  1855. ]
  1856. },
  1857. "components":[],
  1858. "child":[]
  1859. }
  1860. ]
  1861. }
  1862. ]
  1863. }
  1864. ]
  1865. },
  1866. {
  1867. "type":"Sprite3D",
  1868. "instanceID":1577,
  1869. "props":{
  1870. "name":"Bip001 L Finger4",
  1871. "active":true,
  1872. "isStatic":false,
  1873. "layer":0,
  1874. "position":[
  1875. 0.08746123,
  1876. 9.900331E-05,
  1877. 0.02346155
  1878. ],
  1879. "rotation":[
  1880. 0.04256824,
  1881. -0.03958687,
  1882. -0.839859,
  1883. -0.539683
  1884. ],
  1885. "scale":[
  1886. 0.9999999,
  1887. 1,
  1888. 1
  1889. ]
  1890. },
  1891. "components":[],
  1892. "child":[
  1893. {
  1894. "type":"Sprite3D",
  1895. "instanceID":1578,
  1896. "props":{
  1897. "name":"Bip001 L Finger41",
  1898. "active":true,
  1899. "isStatic":false,
  1900. "layer":0,
  1901. "position":[
  1902. 0.02496493,
  1903. -5.960464E-08,
  1904. 2.980232E-08
  1905. ],
  1906. "rotation":[
  1907. 3.303257E-08,
  1908. -4.367212E-09,
  1909. -0.8280955,
  1910. -0.5605872
  1911. ],
  1912. "scale":[
  1913. 1,
  1914. 0.9999999,
  1915. 1
  1916. ]
  1917. },
  1918. "components":[],
  1919. "child":[
  1920. {
  1921. "type":"Sprite3D",
  1922. "instanceID":1579,
  1923. "props":{
  1924. "name":"Bip001 L Finger42",
  1925. "active":true,
  1926. "isStatic":false,
  1927. "layer":0,
  1928. "position":[
  1929. 0.01756698,
  1930. 0,
  1931. 2.980232E-08
  1932. ],
  1933. "rotation":[
  1934. 0,
  1935. 0,
  1936. 0,
  1937. -1
  1938. ],
  1939. "scale":[
  1940. 1,
  1941. 1,
  1942. 0.9999999
  1943. ]
  1944. },
  1945. "components":[],
  1946. "child":[
  1947. {
  1948. "type":"Sprite3D",
  1949. "instanceID":1580,
  1950. "props":{
  1951. "name":"Bip001 L Finger4Nub",
  1952. "active":true,
  1953. "isStatic":false,
  1954. "layer":0,
  1955. "position":[
  1956. 0.02018112,
  1957. 0,
  1958. -2.980232E-08
  1959. ],
  1960. "rotation":[
  1961. 0,
  1962. 0,
  1963. 0,
  1964. -1
  1965. ],
  1966. "scale":[
  1967. 1,
  1968. 1,
  1969. 0.9999999
  1970. ]
  1971. },
  1972. "components":[],
  1973. "child":[]
  1974. }
  1975. ]
  1976. }
  1977. ]
  1978. }
  1979. ]
  1980. }
  1981. ]
  1982. }
  1983. ]
  1984. }
  1985. ]
  1986. }
  1987. ]
  1988. },
  1989. {
  1990. "type":"Sprite3D",
  1991. "instanceID":1581,
  1992. "props":{
  1993. "name":"Bip001 R Clavicle",
  1994. "active":true,
  1995. "isStatic":false,
  1996. "layer":0,
  1997. "position":[
  1998. -0.1011752,
  1999. -0.01943392,
  2000. -0.03514042
  2001. ],
  2002. "rotation":[
  2003. -0.6907305,
  2004. 0.1512976,
  2005. 0.7033635,
  2006. 0.0726656
  2007. ],
  2008. "scale":[
  2009. 1,
  2010. 0.9999998,
  2011. 0.9999999
  2012. ]
  2013. },
  2014. "components":[],
  2015. "child":[
  2016. {
  2017. "type":"Sprite3D",
  2018. "instanceID":1582,
  2019. "props":{
  2020. "name":"Bip001 R UpperArm",
  2021. "active":true,
  2022. "isStatic":false,
  2023. "layer":0,
  2024. "position":[
  2025. 0.1132772,
  2026. -1.490116E-08,
  2027. 0
  2028. ],
  2029. "rotation":[
  2030. 0.2389552,
  2031. 0.6030575,
  2032. -0.07878477,
  2033. -0.7569776
  2034. ],
  2035. "scale":[
  2036. 1,
  2037. 1,
  2038. 0.9999999
  2039. ]
  2040. },
  2041. "components":[],
  2042. "child":[
  2043. {
  2044. "type":"Sprite3D",
  2045. "instanceID":1583,
  2046. "props":{
  2047. "name":"collider",
  2048. "active":true,
  2049. "isStatic":false,
  2050. "layer":0,
  2051. "position":[
  2052. 0.1081401,
  2053. -8.219107E-05,
  2054. 2.612174E-05
  2055. ],
  2056. "rotation":[
  2057. -2.235174E-07,
  2058. 4.172324E-07,
  2059. 0.7071065,
  2060. -0.7071071
  2061. ],
  2062. "scale":[
  2063. 1,
  2064. 1,
  2065. 1
  2066. ]
  2067. },
  2068. "components":[
  2069. {
  2070. "type":"PhysicsCollider",
  2071. "restitution":0,
  2072. "friction":0.5,
  2073. "rollingFriction":0,
  2074. "shapes":[
  2075. {
  2076. "type":"CapsuleColliderShape",
  2077. "center":[
  2078. 0.004304147,
  2079. 0.01213855,
  2080. -0.001981514
  2081. ],
  2082. "radius":0.04545103,
  2083. "height":0.3562577,
  2084. "orientation":1
  2085. }
  2086. ],
  2087. "isTrigger":false
  2088. }
  2089. ],
  2090. "child":[]
  2091. },
  2092. {
  2093. "type":"Sprite3D",
  2094. "instanceID":1584,
  2095. "props":{
  2096. "name":"Bip001 R Forearm",
  2097. "active":true,
  2098. "isStatic":false,
  2099. "layer":0,
  2100. "position":[
  2101. 0.261409,
  2102. 0,
  2103. -2.980232E-08
  2104. ],
  2105. "rotation":[
  2106. 3.396715E-11,
  2107. -7.67981E-09,
  2108. 0.2382424,
  2109. -0.9712058
  2110. ],
  2111. "scale":[
  2112. 0.9999999,
  2113. 1,
  2114. 1
  2115. ]
  2116. },
  2117. "components":[],
  2118. "child":[
  2119. {
  2120. "type":"Sprite3D",
  2121. "instanceID":1585,
  2122. "props":{
  2123. "name":"collider",
  2124. "active":true,
  2125. "isStatic":false,
  2126. "layer":0,
  2127. "position":[
  2128. 0.1131622,
  2129. -0.003808383,
  2130. 2.59297E-05
  2131. ],
  2132. "rotation":[
  2133. -1.809298E-07,
  2134. -1.922458E-07,
  2135. 0.7071071,
  2136. -0.7071065
  2137. ],
  2138. "scale":[
  2139. 1,
  2140. 1,
  2141. 1
  2142. ]
  2143. },
  2144. "components":[
  2145. {
  2146. "type":"PhysicsCollider",
  2147. "restitution":0,
  2148. "friction":0.5,
  2149. "rollingFriction":0,
  2150. "shapes":[
  2151. {
  2152. "type":"CapsuleColliderShape",
  2153. "center":[
  2154. 0.004886687,
  2155. 0.02514258,
  2156. 0.003056047
  2157. ],
  2158. "radius":0.03153799,
  2159. "height":0.3246627,
  2160. "orientation":1
  2161. }
  2162. ],
  2163. "isTrigger":false
  2164. }
  2165. ],
  2166. "child":[]
  2167. },
  2168. {
  2169. "type":"Sprite3D",
  2170. "instanceID":1586,
  2171. "props":{
  2172. "name":"Bip001 R Hand",
  2173. "active":true,
  2174. "isStatic":false,
  2175. "layer":0,
  2176. "position":[
  2177. 0.2889125,
  2178. 0,
  2179. 0
  2180. ],
  2181. "rotation":[
  2182. -0.7068253,
  2183. 0,
  2184. 0,
  2185. -0.7073883
  2186. ],
  2187. "scale":[
  2188. 1,
  2189. 1,
  2190. 1
  2191. ]
  2192. },
  2193. "components":[],
  2194. "child":[
  2195. {
  2196. "type":"Sprite3D",
  2197. "instanceID":1587,
  2198. "props":{
  2199. "name":"collider",
  2200. "active":true,
  2201. "isStatic":false,
  2202. "layer":0,
  2203. "position":[
  2204. 0.06326196,
  2205. 2.603605E-05,
  2206. 0.03980828
  2207. ],
  2208. "rotation":[
  2209. -4.768369E-07,
  2210. -1.226454E-07,
  2211. -1.512895E-07,
  2212. -1
  2213. ],
  2214. "scale":[
  2215. 1,
  2216. 1,
  2217. 1
  2218. ]
  2219. },
  2220. "components":[
  2221. {
  2222. "type":"PhysicsCollider",
  2223. "restitution":0,
  2224. "friction":0.5,
  2225. "rollingFriction":0,
  2226. "shapes":[
  2227. {
  2228. "type":"BoxColliderShape",
  2229. "center":[
  2230. -0.004424369,
  2231. 0.006033781,
  2232. -0.02930725
  2233. ],
  2234. "size":[
  2235. 0.07743821,
  2236. 0.04974616,
  2237. 0.08135738
  2238. ]
  2239. }
  2240. ],
  2241. "isTrigger":false
  2242. }
  2243. ],
  2244. "child":[]
  2245. },
  2246. {
  2247. "type":"Sprite3D",
  2248. "instanceID":1588,
  2249. "props":{
  2250. "name":"Bip001 R Finger0",
  2251. "active":true,
  2252. "isStatic":false,
  2253. "layer":0,
  2254. "position":[
  2255. 0.02434993,
  2256. 0.002616644,
  2257. 0.02980411
  2258. ],
  2259. "rotation":[
  2260. 0.7166103,
  2261. 0.3600573,
  2262. 0.2802146,
  2263. -0.5275493
  2264. ],
  2265. "scale":[
  2266. 1,
  2267. 1,
  2268. 1
  2269. ]
  2270. },
  2271. "components":[],
  2272. "child":[
  2273. {
  2274. "type":"Sprite3D",
  2275. "instanceID":1589,
  2276. "props":{
  2277. "name":"Bip001 R Finger01",
  2278. "active":true,
  2279. "isStatic":false,
  2280. "layer":0,
  2281. "position":[
  2282. 0.02723008,
  2283. 2.980232E-08,
  2284. 0
  2285. ],
  2286. "rotation":[
  2287. 0.01778248,
  2288. -0.07941224,
  2289. -0.03380844,
  2290. -0.9961097
  2291. ],
  2292. "scale":[
  2293. 1,
  2294. 1,
  2295. 1
  2296. ]
  2297. },
  2298. "components":[],
  2299. "child":[
  2300. {
  2301. "type":"Sprite3D",
  2302. "instanceID":1590,
  2303. "props":{
  2304. "name":"Bip001 R Finger02",
  2305. "active":true,
  2306. "isStatic":false,
  2307. "layer":0,
  2308. "position":[
  2309. 0.02723014,
  2310. 2.980232E-08,
  2311. 0
  2312. ],
  2313. "rotation":[
  2314. 0,
  2315. -7.450581E-09,
  2316. 0,
  2317. -1
  2318. ],
  2319. "scale":[
  2320. 1,
  2321. 1,
  2322. 1
  2323. ]
  2324. },
  2325. "components":[],
  2326. "child":[
  2327. {
  2328. "type":"Sprite3D",
  2329. "instanceID":1591,
  2330. "props":{
  2331. "name":"Bip001 R Finger0Nub",
  2332. "active":true,
  2333. "isStatic":false,
  2334. "layer":0,
  2335. "position":[
  2336. 0.02723008,
  2337. 0,
  2338. 0
  2339. ],
  2340. "rotation":[
  2341. 7.450581E-09,
  2342. 3.256752E-16,
  2343. 1,
  2344. -4.371139E-08
  2345. ],
  2346. "scale":[
  2347. -1,
  2348. -1,
  2349. -1
  2350. ]
  2351. },
  2352. "components":[],
  2353. "child":[]
  2354. }
  2355. ]
  2356. }
  2357. ]
  2358. }
  2359. ]
  2360. },
  2361. {
  2362. "type":"Sprite3D",
  2363. "instanceID":1592,
  2364. "props":{
  2365. "name":"Bip001 R Finger1",
  2366. "active":true,
  2367. "isStatic":false,
  2368. "layer":0,
  2369. "position":[
  2370. 0.0973376,
  2371. -0.0002412498,
  2372. 0.03862378
  2373. ],
  2374. "rotation":[
  2375. 0.02114636,
  2376. 0.07691222,
  2377. 0.8695825,
  2378. 0.4873023
  2379. ],
  2380. "scale":[
  2381. 1,
  2382. 1,
  2383. 1
  2384. ]
  2385. },
  2386. "components":[],
  2387. "child":[
  2388. {
  2389. "type":"Sprite3D",
  2390. "instanceID":1593,
  2391. "props":{
  2392. "name":"Bip001 R Finger11",
  2393. "active":true,
  2394. "isStatic":false,
  2395. "layer":0,
  2396. "position":[
  2397. 0.02929166,
  2398. 5.960464E-08,
  2399. -5.960464E-08
  2400. ],
  2401. "rotation":[
  2402. 0,
  2403. 0,
  2404. -0.8280955,
  2405. -0.5605871
  2406. ],
  2407. "scale":[
  2408. 1,
  2409. 0.9999999,
  2410. 0.9999999
  2411. ]
  2412. },
  2413. "components":[],
  2414. "child":[
  2415. {
  2416. "type":"Sprite3D",
  2417. "instanceID":1594,
  2418. "props":{
  2419. "name":"Bip001 R Finger12",
  2420. "active":true,
  2421. "isStatic":false,
  2422. "layer":0,
  2423. "position":[
  2424. 0.02267456,
  2425. 5.960464E-08,
  2426. 2.980232E-08
  2427. ],
  2428. "rotation":[
  2429. -3.72529E-09,
  2430. 0,
  2431. 0,
  2432. -1
  2433. ],
  2434. "scale":[
  2435. 1,
  2436. 1,
  2437. 1
  2438. ]
  2439. },
  2440. "components":[],
  2441. "child":[
  2442. {
  2443. "type":"Sprite3D",
  2444. "instanceID":1595,
  2445. "props":{
  2446. "name":"Bip001 R Finger1Nub",
  2447. "active":true,
  2448. "isStatic":false,
  2449. "layer":0,
  2450. "position":[
  2451. 0.02512109,
  2452. 0,
  2453. 0
  2454. ],
  2455. "rotation":[
  2456. 1.628376E-16,
  2457. -3.72529E-09,
  2458. 1,
  2459. -4.371139E-08
  2460. ],
  2461. "scale":[
  2462. -1,
  2463. -1,
  2464. -1
  2465. ]
  2466. },
  2467. "components":[],
  2468. "child":[]
  2469. }
  2470. ]
  2471. }
  2472. ]
  2473. }
  2474. ]
  2475. },
  2476. {
  2477. "type":"Sprite3D",
  2478. "instanceID":1596,
  2479. "props":{
  2480. "name":"Bip001 R Finger2",
  2481. "active":true,
  2482. "isStatic":false,
  2483. "layer":0,
  2484. "position":[
  2485. 0.09498984,
  2486. -0.001502931,
  2487. 0.01683408
  2488. ],
  2489. "rotation":[
  2490. 0.02381419,
  2491. 0.03912361,
  2492. 0.8724915,
  2493. 0.4864779
  2494. ],
  2495. "scale":[
  2496. 1,
  2497. 1,
  2498. 1
  2499. ]
  2500. },
  2501. "components":[],
  2502. "child":[
  2503. {
  2504. "type":"Sprite3D",
  2505. "instanceID":1597,
  2506. "props":{
  2507. "name":"Bip001 R Finger21",
  2508. "active":true,
  2509. "isStatic":false,
  2510. "layer":0,
  2511. "position":[
  2512. 0.03223774,
  2513. -5.960464E-08,
  2514. 0
  2515. ],
  2516. "rotation":[
  2517. 3.084896E-09,
  2518. -2.08835E-09,
  2519. -0.8280955,
  2520. -0.5605872
  2521. ],
  2522. "scale":[
  2523. 1,
  2524. 1,
  2525. 1
  2526. ]
  2527. },
  2528. "components":[],
  2529. "child":[
  2530. {
  2531. "type":"Sprite3D",
  2532. "instanceID":1598,
  2533. "props":{
  2534. "name":"Bip001 R Finger22",
  2535. "active":true,
  2536. "isStatic":false,
  2537. "layer":0,
  2538. "position":[
  2539. 0.0247522,
  2540. -5.960464E-08,
  2541. 0
  2542. ],
  2543. "rotation":[
  2544. -5.551115E-17,
  2545. 3.72529E-09,
  2546. -1.490116E-08,
  2547. -1
  2548. ],
  2549. "scale":[
  2550. 1,
  2551. 1,
  2552. 1
  2553. ]
  2554. },
  2555. "components":[],
  2556. "child":[
  2557. {
  2558. "type":"Sprite3D",
  2559. "instanceID":1599,
  2560. "props":{
  2561. "name":"Bip001 R Finger2Nub",
  2562. "active":true,
  2563. "isStatic":false,
  2564. "layer":0,
  2565. "position":[
  2566. 0.02478033,
  2567. 5.960464E-08,
  2568. 0
  2569. ],
  2570. "rotation":[
  2571. -3.72529E-09,
  2572. -1.628376E-16,
  2573. 1,
  2574. -4.371139E-08
  2575. ],
  2576. "scale":[
  2577. -1,
  2578. -1,
  2579. -1
  2580. ]
  2581. },
  2582. "components":[],
  2583. "child":[]
  2584. }
  2585. ]
  2586. }
  2587. ]
  2588. }
  2589. ]
  2590. },
  2591. {
  2592. "type":"Sprite3D",
  2593. "instanceID":1600,
  2594. "props":{
  2595. "name":"Bip001 R Finger3",
  2596. "active":true,
  2597. "isStatic":false,
  2598. "layer":0,
  2599. "position":[
  2600. 0.09241921,
  2601. -0.0008970201,
  2602. -0.004036784
  2603. ],
  2604. "rotation":[
  2605. -0.03047649,
  2606. -0.04573259,
  2607. 0.8834154,
  2608. 0.4653569
  2609. ],
  2610. "scale":[
  2611. 0.9999999,
  2612. 1,
  2613. 1
  2614. ]
  2615. },
  2616. "components":[],
  2617. "child":[
  2618. {
  2619. "type":"Sprite3D",
  2620. "instanceID":1601,
  2621. "props":{
  2622. "name":"Bip001 R Finger31",
  2623. "active":true,
  2624. "isStatic":false,
  2625. "layer":0,
  2626. "position":[
  2627. 0.02750181,
  2628. -5.960464E-08,
  2629. 1.490116E-08
  2630. ],
  2631. "rotation":[
  2632. 1.074951E-08,
  2633. -1.402492E-08,
  2634. -0.8280955,
  2635. -0.5605872
  2636. ],
  2637. "scale":[
  2638. 1,
  2639. 1,
  2640. 1
  2641. ]
  2642. },
  2643. "components":[],
  2644. "child":[
  2645. {
  2646. "type":"Sprite3D",
  2647. "instanceID":1602,
  2648. "props":{
  2649. "name":"Bip001 R Finger32",
  2650. "active":true,
  2651. "isStatic":false,
  2652. "layer":0,
  2653. "position":[
  2654. 0.02453637,
  2655. 0,
  2656. 0
  2657. ],
  2658. "rotation":[
  2659. -2.775558E-17,
  2660. 1.862645E-09,
  2661. -1.490116E-08,
  2662. -1
  2663. ],
  2664. "scale":[
  2665. 1,
  2666. 1,
  2667. 1
  2668. ]
  2669. },
  2670. "components":[],
  2671. "child":[
  2672. {
  2673. "type":"Sprite3D",
  2674. "instanceID":1603,
  2675. "props":{
  2676. "name":"Bip001 R Finger3Nub",
  2677. "active":true,
  2678. "isStatic":false,
  2679. "layer":0,
  2680. "position":[
  2681. 0.02523476,
  2682. 0,
  2683. -1.490116E-08
  2684. ],
  2685. "rotation":[
  2686. -1.862645E-09,
  2687. -8.141881E-17,
  2688. 1,
  2689. -4.371139E-08
  2690. ],
  2691. "scale":[
  2692. -1,
  2693. -1,
  2694. -1
  2695. ]
  2696. },
  2697. "components":[],
  2698. "child":[]
  2699. }
  2700. ]
  2701. }
  2702. ]
  2703. }
  2704. ]
  2705. },
  2706. {
  2707. "type":"Sprite3D",
  2708. "instanceID":1604,
  2709. "props":{
  2710. "name":"Bip001 R Finger4",
  2711. "active":true,
  2712. "isStatic":false,
  2713. "layer":0,
  2714. "position":[
  2715. 0.08746117,
  2716. 9.900331E-05,
  2717. -0.02346155
  2718. ],
  2719. "rotation":[
  2720. -0.04256825,
  2721. 0.03958691,
  2722. -0.839859,
  2723. -0.539683
  2724. ],
  2725. "scale":[
  2726. 1,
  2727. 1,
  2728. 1
  2729. ]
  2730. },
  2731. "components":[],
  2732. "child":[
  2733. {
  2734. "type":"Sprite3D",
  2735. "instanceID":1605,
  2736. "props":{
  2737. "name":"Bip001 R Finger41",
  2738. "active":true,
  2739. "isStatic":false,
  2740. "layer":0,
  2741. "position":[
  2742. 0.02496494,
  2743. 0,
  2744. 0
  2745. ],
  2746. "rotation":[
  2747. -4.982733E-10,
  2748. 2.586623E-09,
  2749. -0.8280955,
  2750. -0.5605871
  2751. ],
  2752. "scale":[
  2753. 0.9999998,
  2754. 0.9999998,
  2755. 0.9999999
  2756. ]
  2757. },
  2758. "components":[],
  2759. "child":[
  2760. {
  2761. "type":"Sprite3D",
  2762. "instanceID":1606,
  2763. "props":{
  2764. "name":"Bip001 R Finger42",
  2765. "active":true,
  2766. "isStatic":false,
  2767. "layer":0,
  2768. "position":[
  2769. 0.01756698,
  2770. 0,
  2771. -5.960464E-08
  2772. ],
  2773. "rotation":[
  2774. 0,
  2775. 0,
  2776. -1.490116E-08,
  2777. -1
  2778. ],
  2779. "scale":[
  2780. 0.9999999,
  2781. 0.9999999,
  2782. 0.9999999
  2783. ]
  2784. },
  2785. "components":[],
  2786. "child":[
  2787. {
  2788. "type":"Sprite3D",
  2789. "instanceID":1607,
  2790. "props":{
  2791. "name":"Bip001 R Finger4Nub",
  2792. "active":true,
  2793. "isStatic":false,
  2794. "layer":0,
  2795. "position":[
  2796. 0.020181,
  2797. 2.980232E-08,
  2798. 5.960464E-08
  2799. ],
  2800. "rotation":[
  2801. 0,
  2802. 0,
  2803. 1,
  2804. -4.371139E-08
  2805. ],
  2806. "scale":[
  2807. -0.9999999,
  2808. -0.9999999,
  2809. -0.9999999
  2810. ]
  2811. },
  2812. "components":[],
  2813. "child":[]
  2814. }
  2815. ]
  2816. }
  2817. ]
  2818. }
  2819. ]
  2820. },
  2821. {
  2822. "type":"Sprite3D",
  2823. "instanceID":1608,
  2824. "props":{
  2825. "name":"gunPos",
  2826. "active":true,
  2827. "isStatic":false,
  2828. "layer":0,
  2829. "position":[
  2830. 0,
  2831. 0,
  2832. 0
  2833. ],
  2834. "rotation":[
  2835. 0,
  2836. 0,
  2837. 0,
  2838. -1
  2839. ],
  2840. "scale":[
  2841. 1,
  2842. 1,
  2843. 1
  2844. ]
  2845. },
  2846. "components":[],
  2847. "child":[]
  2848. }
  2849. ]
  2850. }
  2851. ]
  2852. }
  2853. ]
  2854. }
  2855. ]
  2856. }
  2857. ]
  2858. }
  2859. ]
  2860. }
  2861. ]
  2862. }
  2863. ]
  2864. }
  2865. ]
  2866. }
  2867. ]
  2868. },
  2869. {
  2870. "type":"SkinnedMeshSprite3D",
  2871. "instanceID":1609,
  2872. "props":{
  2873. "name":"male_forearm",
  2874. "active":true,
  2875. "isStatic":false,
  2876. "layer":0,
  2877. "position":[
  2878. 0,
  2879. -2.384186E-07,
  2880. 4.470348E-08
  2881. ],
  2882. "rotation":[
  2883. 0,
  2884. 0,
  2885. 0,
  2886. -1
  2887. ],
  2888. "scale":[
  2889. 1,
  2890. 1,
  2891. 1
  2892. ],
  2893. "rootBone":1584,
  2894. "boundBox":{
  2895. "min":[
  2896. 0.08406818,
  2897. -0.4889689,
  2898. -0.01866296
  2899. ],
  2900. "max":[
  2901. 0.3987461,
  2902. 0.03417242,
  2903. 0.3853364
  2904. ]
  2905. },
  2906. "boundSphere":{
  2907. "center":[
  2908. 0.2414071,
  2909. -0.2273982,
  2910. 0.1833367
  2911. ],
  2912. "radius":0.3660309
  2913. },
  2914. "bones":[
  2915. 1579,
  2916. 1578,
  2917. 1577,
  2918. 1559,
  2919. 1573,
  2920. 1575,
  2921. 1574,
  2922. 1571,
  2923. 1569,
  2924. 1570,
  2925. 1565,
  2926. 1567,
  2927. 1566,
  2928. 1563,
  2929. 1562,
  2930. 1561,
  2931. 1557,
  2932. 1606,
  2933. 1605,
  2934. 1604,
  2935. 1586,
  2936. 1600,
  2937. 1602,
  2938. 1601,
  2939. 1598,
  2940. 1596,
  2941. 1597,
  2942. 1592,
  2943. 1594,
  2944. 1593,
  2945. 1590,
  2946. 1589,
  2947. 1588,
  2948. 1584
  2949. ],
  2950. "materials":[
  2951. {
  2952. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  2953. }
  2954. ],
  2955. "meshPath":"Assets/LatestRes/NPC/Model/male7-male_forearm.lm"
  2956. },
  2957. "components":[],
  2958. "child":[]
  2959. },
  2960. {
  2961. "type":"SkinnedMeshSprite3D",
  2962. "instanceID":1610,
  2963. "props":{
  2964. "name":"male_head_7",
  2965. "active":true,
  2966. "isStatic":false,
  2967. "layer":0,
  2968. "position":[
  2969. 0,
  2970. -2.384186E-07,
  2971. 4.470348E-08
  2972. ],
  2973. "rotation":[
  2974. -0.7071069,
  2975. 0,
  2976. 0,
  2977. -0.7071068
  2978. ],
  2979. "scale":[
  2980. 1,
  2981. 1,
  2982. 1
  2983. ],
  2984. "rootBone":1547,
  2985. "boundBox":{
  2986. "min":[
  2987. 0.09694703,
  2988. -0.1352802,
  2989. -0.111369
  2990. ],
  2991. "max":[
  2992. 0.4738098,
  2993. 0.1425876,
  2994. 0.1069031
  2995. ]
  2996. },
  2997. "boundSphere":{
  2998. "center":[
  2999. 0.2853784,
  3000. 0.003653675,
  3001. -0.002232939
  3002. ],
  3003. "radius":0.2583016
  3004. },
  3005. "bones":[
  3006. 1550,
  3007. 1547,
  3008. 1548
  3009. ],
  3010. "materials":[
  3011. {
  3012. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3013. }
  3014. ],
  3015. "meshPath":"Assets/LatestRes/NPC/Model/male7-male_head_7.lm"
  3016. },
  3017. "components":[],
  3018. "child":[]
  3019. },
  3020. {
  3021. "type":"SkinnedMeshSprite3D",
  3022. "instanceID":1611,
  3023. "props":{
  3024. "name":"male_pants_7",
  3025. "active":true,
  3026. "isStatic":false,
  3027. "layer":0,
  3028. "position":[
  3029. 0,
  3030. -2.384186E-07,
  3031. 4.470348E-08
  3032. ],
  3033. "rotation":[
  3034. 0,
  3035. 0,
  3036. 0,
  3037. -1
  3038. ],
  3039. "scale":[
  3040. 1,
  3041. 1,
  3042. 1
  3043. ],
  3044. "rootBone":1526,
  3045. "boundBox":{
  3046. "min":[
  3047. -0.8932979,
  3048. -0.4680563,
  3049. -0.2570405
  3050. ],
  3051. "max":[
  3052. 0.1751539,
  3053. 0.3835061,
  3054. 0.2452267
  3055. ]
  3056. },
  3057. "boundSphere":{
  3058. "center":[
  3059. -0.359072,
  3060. -0.04227507,
  3061. -0.00590688
  3062. ],
  3063. "radius":0.7278427
  3064. },
  3065. "bones":[
  3066. 1530,
  3067. 1526,
  3068. 1538,
  3069. 1532,
  3070. 1534,
  3071. 1527,
  3072. 1540,
  3073. 1542
  3074. ],
  3075. "materials":[
  3076. {
  3077. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3078. }
  3079. ],
  3080. "meshPath":"Assets/LatestRes/NPC/Model/male7-male_pants_7.lm"
  3081. },
  3082. "components":[],
  3083. "child":[]
  3084. },
  3085. {
  3086. "type":"SkinnedMeshSprite3D",
  3087. "instanceID":1612,
  3088. "props":{
  3089. "name":"male_shirt_7",
  3090. "active":true,
  3091. "isStatic":false,
  3092. "layer":0,
  3093. "position":[
  3094. 0,
  3095. 0,
  3096. 0
  3097. ],
  3098. "rotation":[
  3099. 0,
  3100. 0,
  3101. 0,
  3102. -1
  3103. ],
  3104. "scale":[
  3105. 1,
  3106. 1,
  3107. 1
  3108. ],
  3109. "rootBone":1526,
  3110. "boundBox":{
  3111. "min":[
  3112. -0.04519278,
  3113. -0.4410746,
  3114. -0.2945268
  3115. ],
  3116. "max":[
  3117. 0.7025558,
  3118. 0.2743741,
  3119. 0.3420528
  3120. ]
  3121. },
  3122. "boundSphere":{
  3123. "center":[
  3124. 0.3286815,
  3125. -0.08335024,
  3126. 0.02376299
  3127. ],
  3128. "radius":0.6075007
  3129. },
  3130. "bones":[
  3131. 1546,
  3132. 1527,
  3133. 1526,
  3134. 1554,
  3135. 1555,
  3136. 1547,
  3137. 1557,
  3138. 1562,
  3139. 1561,
  3140. 1559,
  3141. 1582,
  3142. 1581,
  3143. 1584,
  3144. 1589,
  3145. 1588,
  3146. 1586
  3147. ],
  3148. "materials":[
  3149. {
  3150. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3151. }
  3152. ],
  3153. "meshPath":"Assets/LatestRes/NPC/Model/male7-male_shirt_7.lm"
  3154. },
  3155. "components":[],
  3156. "child":[]
  3157. },
  3158. {
  3159. "type":"SkinnedMeshSprite3D",
  3160. "instanceID":1613,
  3161. "props":{
  3162. "name":"male_shoes_7",
  3163. "active":true,
  3164. "isStatic":false,
  3165. "layer":0,
  3166. "position":[
  3167. 0,
  3168. -2.384186E-07,
  3169. 4.470348E-08
  3170. ],
  3171. "rotation":[
  3172. 0,
  3173. 0,
  3174. 0,
  3175. -1
  3176. ],
  3177. "scale":[
  3178. 1,
  3179. 1,
  3180. 1
  3181. ],
  3182. "rootBone":1540,
  3183. "boundBox":{
  3184. "min":[
  3185. 0.1931498,
  3186. -0.8146219,
  3187. -0.2351375
  3188. ],
  3189. "max":[
  3190. 0.610649,
  3191. 0.2423344,
  3192. 0.08957525
  3193. ]
  3194. },
  3195. "boundSphere":{
  3196. "center":[
  3197. 0.4018994,
  3198. -0.2861437,
  3199. -0.07278112
  3200. ],
  3201. "radius":0.5909528
  3202. },
  3203. "bones":[
  3204. 1534,
  3205. 1532,
  3206. 1536,
  3207. 1542,
  3208. 1540,
  3209. 1544
  3210. ],
  3211. "materials":[
  3212. {
  3213. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3214. }
  3215. ],
  3216. "meshPath":"Assets/LatestRes/NPC/Model/male7-male_shoes_7.lm"
  3217. },
  3218. "components":[],
  3219. "child":[]
  3220. }
  3221. ]
  3222. }
  3223. ]
  3224. }
  3225. }