male3.lh 99 KB

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