fmale7.lh 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282
  1. {
  2. "version":"LAYAHIERARCHY:02",
  3. "data":{
  4. "type":"Sprite3D",
  5. "instanceID":565,
  6. "props":{
  7. "name":"fmale7",
  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":566,
  33. "props":{
  34. "name":"fmale7",
  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/fmale7-Idle.lani"
  67. },
  68. {
  69. "name":"Walk",
  70. "clipPath":"Assets/LatestRes/NPC/Model/fmale7-Walk.lani"
  71. },
  72. {
  73. "name":"Shoot1",
  74. "clipPath":"Assets/LatestRes/NPC/Model/fmale7-Shoot1.lani"
  75. },
  76. {
  77. "name":"Run",
  78. "clipPath":"Assets/LatestRes/NPC/Model/fmale7-Run.lani"
  79. },
  80. {
  81. "name":"Death",
  82. "clipPath":"Assets/LatestRes/NPC/Model/fmale7-Death.lani"
  83. }
  84. ]
  85. }
  86. ],
  87. "cullingMode":0,
  88. "playOnWake":true
  89. }
  90. ],
  91. "child":[
  92. {
  93. "type":"Sprite3D",
  94. "instanceID":567,
  95. "props":{
  96. "name":"Bip001",
  97. "active":true,
  98. "isStatic":false,
  99. "layer":0,
  100. "position":[
  101. -0.021276,
  102. 1.001756,
  103. -0.01371002
  104. ],
  105. "rotation":[
  106. 0.4566199,
  107. 0.4556417,
  108. 0.5867067,
  109. -0.4895552
  110. ],
  111. "scale":[
  112. 1,
  113. 1,
  114. 1
  115. ]
  116. },
  117. "components":[],
  118. "child":[
  119. {
  120. "type":"Sprite3D",
  121. "instanceID":568,
  122. "props":{
  123. "name":"Bip001 Footsteps",
  124. "active":true,
  125. "isStatic":false,
  126. "layer":0,
  127. "position":[
  128. 0.1583027,
  129. 0.1054277,
  130. -0.9815032
  131. ],
  132. "rotation":[
  133. 0.02328876,
  134. 0.09267696,
  135. -0.7370516,
  136. -0.6690468
  137. ],
  138. "scale":[
  139. 0.9999999,
  140. 1,
  141. 0.9999999
  142. ]
  143. },
  144. "components":[],
  145. "child":[]
  146. },
  147. {
  148. "type":"Sprite3D",
  149. "instanceID":569,
  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.4732335,
  162. 0.4977342,
  163. 0.4980267,
  164. -0.5294149
  165. ],
  166. "scale":[
  167. 1,
  168. 1,
  169. 1
  170. ]
  171. },
  172. "components":[],
  173. "child":[
  174. {
  175. "type":"Sprite3D",
  176. "instanceID":570,
  177. "props":{
  178. "name":"Bip001 Spine",
  179. "active":true,
  180. "isStatic":false,
  181. "layer":0,
  182. "position":[
  183. 0.08907032,
  184. -0.0005918741,
  185. 0.005072501
  186. ],
  187. "rotation":[
  188. 0.08736917,
  189. 0.03597695,
  190. 0.004193609,
  191. -0.9955173
  192. ],
  193. "scale":[
  194. 0.9999999,
  195. 1,
  196. 0.9999999
  197. ]
  198. },
  199. "components":[],
  200. "child":[
  201. {
  202. "type":"Sprite3D",
  203. "instanceID":571,
  204. "props":{
  205. "name":"collider",
  206. "active":true,
  207. "isStatic":false,
  208. "layer":0,
  209. "position":[
  210. 0.1419181,
  211. 0.00123102,
  212. 0.001296723
  213. ],
  214. "rotation":[
  215. 0.02617547,
  216. 0.0001055635,
  217. -0.004832712,
  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.04409866,
  237. -0.01461273,
  238. -0.01135113
  239. ],
  240. "size":[
  241. 0.6445466,
  242. 0.3000859,
  243. 0.3260841
  244. ]
  245. }
  246. ],
  247. "isTrigger":false
  248. }
  249. ],
  250. "child":[]
  251. },
  252. {
  253. "type":"Sprite3D",
  254. "instanceID":572,
  255. "props":{
  256. "name":"AimAssist",
  257. "active":true,
  258. "isStatic":false,
  259. "layer":0,
  260. "position":[
  261. -0.01972615,
  262. -0.0009242835,
  263. 0.01559264
  264. ],
  265. "rotation":[
  266. -0.5122299,
  267. -0.3704185,
  268. -0.5569443,
  269. 0.5387242
  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":573,
  306. "props":{
  307. "name":"Bip001 L Thigh",
  308. "active":true,
  309. "isStatic":false,
  310. "layer":0,
  311. "position":[
  312. -0.08288354,
  313. -0.01500967,
  314. 0.0872336
  315. ],
  316. "rotation":[
  317. -0.05597841,
  318. 0.9886782,
  319. 0.1383811,
  320. -0.01524882
  321. ],
  322. "scale":[
  323. 1,
  324. 1,
  325. 1
  326. ]
  327. },
  328. "components":[],
  329. "child":[
  330. {
  331. "type":"Sprite3D",
  332. "instanceID":574,
  333. "props":{
  334. "name":"Bip001 L Calf",
  335. "active":true,
  336. "isStatic":false,
  337. "layer":0,
  338. "position":[
  339. 0.4448671,
  340. 0,
  341. 0
  342. ],
  343. "rotation":[
  344. -6.608946E-09,
  345. -6.56186E-09,
  346. 0.1449595,
  347. -0.9894376
  348. ],
  349. "scale":[
  350. 1,
  351. 0.9999999,
  352. 1
  353. ]
  354. },
  355. "components":[],
  356. "child":[
  357. {
  358. "type":"Sprite3D",
  359. "instanceID":575,
  360. "props":{
  361. "name":"Bip001 L Foot",
  362. "active":true,
  363. "isStatic":false,
  364. "layer":0,
  365. "position":[
  366. 0.5160714,
  367. 0,
  368. 9.313226E-09
  369. ],
  370. "rotation":[
  371. 0.05276107,
  372. -0.01683846,
  373. -0.0007193779,
  374. -0.9984649
  375. ],
  376. "scale":[
  377. 1,
  378. 1,
  379. 0.9999999
  380. ]
  381. },
  382. "components":[],
  383. "child":[
  384. {
  385. "type":"Sprite3D",
  386. "instanceID":576,
  387. "props":{
  388. "name":"Bip001 L Toe0",
  389. "active":true,
  390. "isStatic":false,
  391. "layer":0,
  392. "position":[
  393. 0.08885273,
  394. 0.09381816,
  395. 0
  396. ],
  397. "rotation":[
  398. -1.859164E-07,
  399. -5.692962E-09,
  400. -0.8573352,
  401. -0.5147585
  402. ],
  403. "scale":[
  404. 1,
  405. 1,
  406. 1
  407. ]
  408. },
  409. "components":[],
  410. "child":[
  411. {
  412. "type":"Sprite3D",
  413. "instanceID":577,
  414. "props":{
  415. "name":"Bip001 L Toe0Nub",
  416. "active":true,
  417. "isStatic":false,
  418. "layer":0,
  419. "position":[
  420. 0.101517,
  421. 1.862645E-09,
  422. 0
  423. ],
  424. "rotation":[
  425. 2.328307E-10,
  426. 1.425677E-26,
  427. 1,
  428. -6.123234E-17
  429. ],
  430. "scale":[
  431. -0.9999999,
  432. -0.9999999,
  433. -0.9999999
  434. ]
  435. },
  436. "components":[],
  437. "child":[]
  438. }
  439. ]
  440. },
  441. {
  442. "type":"Sprite3D",
  443. "instanceID":578,
  444. "props":{
  445. "name":"collider",
  446. "active":true,
  447. "isStatic":false,
  448. "layer":0,
  449. "position":[
  450. 0.05380651,
  451. 0.005064657,
  452. 0.0003348355
  453. ],
  454. "rotation":[
  455. 7.674096E-07,
  456. 2.51457E-07,
  457. -1.133303E-07,
  458. -1
  459. ],
  460. "scale":[
  461. 1,
  462. 1,
  463. 1
  464. ]
  465. },
  466. "components":[
  467. {
  468. "type":"PhysicsCollider",
  469. "restitution":0,
  470. "friction":0.5,
  471. "rollingFriction":0,
  472. "shapes":[
  473. {
  474. "type":"BoxColliderShape",
  475. "center":[
  476. 0.007476851,
  477. 0.05893485,
  478. -0.01221542
  479. ],
  480. "size":[
  481. 0.09152768,
  482. 0.2482971,
  483. 0.1244307
  484. ]
  485. }
  486. ],
  487. "isTrigger":false
  488. }
  489. ],
  490. "child":[]
  491. }
  492. ]
  493. },
  494. {
  495. "type":"Sprite3D",
  496. "instanceID":579,
  497. "props":{
  498. "name":"collider",
  499. "active":true,
  500. "isStatic":false,
  501. "layer":0,
  502. "position":[
  503. 0.1527972,
  504. 0.005069107,
  505. -0.0004635002
  506. ],
  507. "rotation":[
  508. 6.669577E-07,
  509. 2.727891E-07,
  510. 0.7071072,
  511. -0.7071064
  512. ],
  513. "scale":[
  514. 1,
  515. 1,
  516. 1
  517. ]
  518. },
  519. "components":[
  520. {
  521. "type":"PhysicsCollider",
  522. "restitution":0,
  523. "friction":0.5,
  524. "rollingFriction":0,
  525. "shapes":[
  526. {
  527. "type":"CapsuleColliderShape",
  528. "center":[
  529. 0.01123195,
  530. 0.09287056,
  531. 0.003752708
  532. ],
  533. "radius":0.05533569,
  534. "height":0.5883211,
  535. "orientation":1
  536. }
  537. ],
  538. "isTrigger":false
  539. }
  540. ],
  541. "child":[]
  542. }
  543. ]
  544. },
  545. {
  546. "type":"Sprite3D",
  547. "instanceID":580,
  548. "props":{
  549. "name":"collider",
  550. "active":true,
  551. "isStatic":false,
  552. "layer":0,
  553. "position":[
  554. 0.2459222,
  555. 0.00261922,
  556. -0.0004632919
  557. ],
  558. "rotation":[
  559. 3.97209E-07,
  560. 4.321336E-07,
  561. 0.7071064,
  562. -0.7071072
  563. ],
  564. "scale":[
  565. 1,
  566. 1,
  567. 1
  568. ]
  569. },
  570. "components":[
  571. {
  572. "type":"PhysicsCollider",
  573. "restitution":0,
  574. "friction":0.5,
  575. "rollingFriction":0,
  576. "shapes":[
  577. {
  578. "type":"CapsuleColliderShape",
  579. "center":[
  580. 0.007993147,
  581. 0.006859853,
  582. -0.003382058
  583. ],
  584. "radius":0.07764789,
  585. "height":0.4946195,
  586. "orientation":1
  587. }
  588. ],
  589. "isTrigger":false
  590. }
  591. ],
  592. "child":[]
  593. }
  594. ]
  595. },
  596. {
  597. "type":"Sprite3D",
  598. "instanceID":581,
  599. "props":{
  600. "name":"Bip001 R Thigh",
  601. "active":true,
  602. "isStatic":false,
  603. "layer":0,
  604. "position":[
  605. -0.09552634,
  606. 0.01532982,
  607. -0.08436126
  608. ],
  609. "rotation":[
  610. 0.2589485,
  611. 0.9517648,
  612. 0.1169568,
  613. -0.1158043
  614. ],
  615. "scale":[
  616. 0.9999999,
  617. 1,
  618. 0.9999999
  619. ]
  620. },
  621. "components":[],
  622. "child":[
  623. {
  624. "type":"Sprite3D",
  625. "instanceID":582,
  626. "props":{
  627. "name":"Bip001 R Calf",
  628. "active":true,
  629. "isStatic":false,
  630. "layer":0,
  631. "position":[
  632. 0.4448672,
  633. -2.980232E-08,
  634. -7.450581E-09
  635. ],
  636. "rotation":[
  637. -2.804393E-09,
  638. -1.846912E-09,
  639. 0.005620598,
  640. -0.9999842
  641. ],
  642. "scale":[
  643. 1,
  644. 1,
  645. 1
  646. ]
  647. },
  648. "components":[],
  649. "child":[
  650. {
  651. "type":"Sprite3D",
  652. "instanceID":583,
  653. "props":{
  654. "name":"Bip001 R Foot",
  655. "active":true,
  656. "isStatic":false,
  657. "layer":0,
  658. "position":[
  659. 0.5160714,
  660. -2.980232E-08,
  661. 1.490116E-08
  662. ],
  663. "rotation":[
  664. -0.02083331,
  665. 0.02445732,
  666. 0.02825664,
  667. -0.9990843
  668. ],
  669. "scale":[
  670. 1,
  671. 0.9999998,
  672. 0.9999999
  673. ]
  674. },
  675. "components":[],
  676. "child":[
  677. {
  678. "type":"Sprite3D",
  679. "instanceID":584,
  680. "props":{
  681. "name":"Bip001 R Toe0",
  682. "active":true,
  683. "isStatic":false,
  684. "layer":0,
  685. "position":[
  686. 0.08885276,
  687. 0.09381813,
  688. 0
  689. ],
  690. "rotation":[
  691. -0.002406822,
  692. -0.001061723,
  693. -0.7054856,
  694. -0.7087194
  695. ],
  696. "scale":[
  697. 1,
  698. 1,
  699. 1
  700. ]
  701. },
  702. "components":[],
  703. "child":[
  704. {
  705. "type":"Sprite3D",
  706. "instanceID":585,
  707. "props":{
  708. "name":"Bip001 R Toe0Nub",
  709. "active":true,
  710. "isStatic":false,
  711. "layer":0,
  712. "position":[
  713. 0.101517,
  714. 0,
  715. 0
  716. ],
  717. "rotation":[
  718. -6.938892E-18,
  719. 4.656612E-10,
  720. -1.490116E-08,
  721. -1
  722. ],
  723. "scale":[
  724. 1,
  725. 1,
  726. 1
  727. ]
  728. },
  729. "components":[],
  730. "child":[]
  731. }
  732. ]
  733. },
  734. {
  735. "type":"Sprite3D",
  736. "instanceID":586,
  737. "props":{
  738. "name":"collider",
  739. "active":true,
  740. "isStatic":false,
  741. "layer":0,
  742. "position":[
  743. 0.05488138,
  744. -0.002784686,
  745. 0.0003093104
  746. ],
  747. "rotation":[
  748. 3.129244E-07,
  749. -3.632157E-07,
  750. -9.697395E-08,
  751. -1
  752. ],
  753. "scale":[
  754. 1,
  755. 1,
  756. 1
  757. ]
  758. },
  759. "components":[
  760. {
  761. "type":"PhysicsCollider",
  762. "restitution":0,
  763. "friction":0.5,
  764. "rollingFriction":0,
  765. "shapes":[
  766. {
  767. "type":"BoxColliderShape",
  768. "center":[
  769. 0.01256435,
  770. 0.07499123,
  771. -0.00295495
  772. ],
  773. "size":[
  774. 0.1017027,
  775. 0.2567321,
  776. 0.09851577
  777. ]
  778. }
  779. ],
  780. "isTrigger":false
  781. }
  782. ],
  783. "child":[]
  784. }
  785. ]
  786. },
  787. {
  788. "type":"Sprite3D",
  789. "instanceID":587,
  790. "props":{
  791. "name":"collider",
  792. "active":true,
  793. "isStatic":false,
  794. "layer":0,
  795. "position":[
  796. 0.1536867,
  797. -0.003301205,
  798. 0.0006129227
  799. ],
  800. "rotation":[
  801. 3.518446E-07,
  802. 1.406598E-07,
  803. 0.7071067,
  804. -0.7071069
  805. ],
  806. "scale":[
  807. 1,
  808. 1,
  809. 1
  810. ]
  811. },
  812. "components":[
  813. {
  814. "type":"PhysicsCollider",
  815. "restitution":0,
  816. "friction":0.5,
  817. "rollingFriction":0,
  818. "shapes":[
  819. {
  820. "type":"CapsuleColliderShape",
  821. "center":[
  822. 0.01494378,
  823. 0.09287053,
  824. -0.0007165957
  825. ],
  826. "radius":0.05323286,
  827. "height":0.5883211,
  828. "orientation":1
  829. }
  830. ],
  831. "isTrigger":false
  832. }
  833. ],
  834. "child":[]
  835. }
  836. ]
  837. },
  838. {
  839. "type":"Sprite3D",
  840. "instanceID":588,
  841. "props":{
  842. "name":"collider",
  843. "active":true,
  844. "isStatic":false,
  845. "layer":0,
  846. "position":[
  847. 0.2456466,
  848. -0.003398191,
  849. 0.0006130189
  850. ],
  851. "rotation":[
  852. 3.508175E-07,
  853. -1.133303E-07,
  854. 0.7071069,
  855. -0.7071068
  856. ],
  857. "scale":[
  858. 1,
  859. 1,
  860. 1
  861. ]
  862. },
  863. "components":[
  864. {
  865. "type":"PhysicsCollider",
  866. "restitution":0,
  867. "friction":0.5,
  868. "rollingFriction":0,
  869. "shapes":[
  870. {
  871. "type":"CapsuleColliderShape",
  872. "center":[
  873. 0.01100321,
  874. 0.006859867,
  875. 0.01066438
  876. ],
  877. "radius":0.08091222,
  878. "height":0.4946195,
  879. "orientation":1
  880. }
  881. ],
  882. "isTrigger":false
  883. }
  884. ],
  885. "child":[]
  886. }
  887. ]
  888. },
  889. {
  890. "type":"Sprite3D",
  891. "instanceID":589,
  892. "props":{
  893. "name":"Bip001 Spine1",
  894. "active":true,
  895. "isStatic":false,
  896. "layer":0,
  897. "position":[
  898. 0.1513953,
  899. -0.0001180172,
  900. -6.92904E-06
  901. ],
  902. "rotation":[
  903. -0.03747471,
  904. -0.08667143,
  905. 0.09529337,
  906. -0.9909606
  907. ],
  908. "scale":[
  909. 1,
  910. 0.9999999,
  911. 0.9999999
  912. ]
  913. },
  914. "components":[],
  915. "child":[
  916. {
  917. "type":"Sprite3D",
  918. "instanceID":590,
  919. "props":{
  920. "name":"Bip001 Spine2",
  921. "active":true,
  922. "isStatic":false,
  923. "layer":0,
  924. "position":[
  925. 0.1514053,
  926. -0.0001196936,
  927. -4.190952E-06
  928. ],
  929. "rotation":[
  930. -0.01795566,
  931. -0.008856121,
  932. 0.05748387,
  933. -0.9981457
  934. ],
  935. "scale":[
  936. 1,
  937. 0.9999999,
  938. 1
  939. ]
  940. },
  941. "components":[],
  942. "child":[
  943. {
  944. "type":"Sprite3D",
  945. "instanceID":591,
  946. "props":{
  947. "name":"Bip001 Neck",
  948. "active":true,
  949. "isStatic":false,
  950. "layer":0,
  951. "position":[
  952. 0.1514153,
  953. -5.206466E-05,
  954. 6.482005E-07
  955. ],
  956. "rotation":[
  957. 0.005762377,
  958. -0.01234138,
  959. 0.03483123,
  960. -0.9993004
  961. ],
  962. "scale":[
  963. 1,
  964. 1,
  965. 1
  966. ]
  967. },
  968. "components":[],
  969. "child":[
  970. {
  971. "type":"Sprite3D",
  972. "instanceID":592,
  973. "props":{
  974. "name":"Bip001 Head",
  975. "active":true,
  976. "isStatic":false,
  977. "layer":0,
  978. "position":[
  979. 0.06551135,
  980. -0.008063972,
  981. -1.490116E-08
  982. ],
  983. "rotation":[
  984. -0.05060568,
  985. 0.02765496,
  986. -0.1374329,
  987. -0.9888309
  988. ],
  989. "scale":[
  990. 1,
  991. 1,
  992. 1
  993. ]
  994. },
  995. "components":[],
  996. "child":[
  997. {
  998. "type":"Sprite3D",
  999. "instanceID":593,
  1000. "props":{
  1001. "name":"Bip001 HeadNub",
  1002. "active":true,
  1003. "isStatic":false,
  1004. "layer":0,
  1005. "position":[
  1006. 0.2281946,
  1007. 7.450581E-09,
  1008. 9.313226E-10
  1009. ],
  1010. "rotation":[
  1011. 2.910383E-11,
  1012. 5.42101E-20,
  1013. -1.862645E-09,
  1014. -1
  1015. ],
  1016. "scale":[
  1017. 1,
  1018. 1,
  1019. 1
  1020. ]
  1021. },
  1022. "components":[],
  1023. "child":[]
  1024. },
  1025. {
  1026. "type":"Sprite3D",
  1027. "instanceID":594,
  1028. "props":{
  1029. "name":"headPos",
  1030. "active":true,
  1031. "isStatic":false,
  1032. "layer":0,
  1033. "position":[
  1034. 0.1,
  1035. 0,
  1036. 0
  1037. ],
  1038. "rotation":[
  1039. 0,
  1040. 0,
  1041. 0,
  1042. -1
  1043. ],
  1044. "scale":[
  1045. 1,
  1046. 1,
  1047. 1
  1048. ]
  1049. },
  1050. "components":[],
  1051. "child":[]
  1052. },
  1053. {
  1054. "type":"Sprite3D",
  1055. "instanceID":595,
  1056. "props":{
  1057. "name":"collider",
  1058. "active":true,
  1059. "isStatic":false,
  1060. "layer":0,
  1061. "position":[
  1062. 0.08370215,
  1063. 0.02681377,
  1064. -0.000128719
  1065. ],
  1066. "rotation":[
  1067. -3.390014E-07,
  1068. -5.308538E-07,
  1069. 0.7071073,
  1070. -0.7071064
  1071. ],
  1072. "scale":[
  1073. 1,
  1074. 1,
  1075. 1
  1076. ]
  1077. },
  1078. "components":[
  1079. {
  1080. "type":"PhysicsCollider",
  1081. "restitution":0,
  1082. "friction":0.5,
  1083. "rollingFriction":0,
  1084. "shapes":[
  1085. {
  1086. "type":"CapsuleColliderShape",
  1087. "center":[
  1088. -0.00409104,
  1089. -0.01142278,
  1090. 0.0004709472
  1091. ],
  1092. "radius":0.1100951,
  1093. "height":0.2922795,
  1094. "orientation":1
  1095. }
  1096. ],
  1097. "isTrigger":false
  1098. }
  1099. ],
  1100. "child":[]
  1101. }
  1102. ]
  1103. },
  1104. {
  1105. "type":"Sprite3D",
  1106. "instanceID":596,
  1107. "props":{
  1108. "name":"Bip001 L Clavicle",
  1109. "active":true,
  1110. "isStatic":false,
  1111. "layer":0,
  1112. "position":[
  1113. -0.09321177,
  1114. -0.03414121,
  1115. 0.05947226
  1116. ],
  1117. "rotation":[
  1118. 0.6340476,
  1119. -0.003098941,
  1120. 0.7717954,
  1121. -0.04801948
  1122. ],
  1123. "scale":[
  1124. 1,
  1125. 1,
  1126. 1
  1127. ]
  1128. },
  1129. "components":[],
  1130. "child":[
  1131. {
  1132. "type":"Sprite3D",
  1133. "instanceID":597,
  1134. "props":{
  1135. "name":"Bip001 L UpperArm",
  1136. "active":true,
  1137. "isStatic":false,
  1138. "layer":0,
  1139. "position":[
  1140. 0.08302393,
  1141. -1.490116E-08,
  1142. 0
  1143. ],
  1144. "rotation":[
  1145. -0.07237224,
  1146. -0.5595429,
  1147. 0.03458469,
  1148. -0.8249109
  1149. ],
  1150. "scale":[
  1151. 1,
  1152. 1,
  1153. 1
  1154. ]
  1155. },
  1156. "components":[],
  1157. "child":[
  1158. {
  1159. "type":"Sprite3D",
  1160. "instanceID":598,
  1161. "props":{
  1162. "name":"Bip001 L Forearm",
  1163. "active":true,
  1164. "isStatic":false,
  1165. "layer":0,
  1166. "position":[
  1167. 0.2699146,
  1168. -7.450581E-09,
  1169. 0
  1170. ],
  1171. "rotation":[
  1172. -8.188461E-09,
  1173. 3.229818E-08,
  1174. 0.2136915,
  1175. -0.9769012
  1176. ],
  1177. "scale":[
  1178. 1,
  1179. 1,
  1180. 1
  1181. ]
  1182. },
  1183. "components":[],
  1184. "child":[
  1185. {
  1186. "type":"Sprite3D",
  1187. "instanceID":599,
  1188. "props":{
  1189. "name":"Bip001 L Hand",
  1190. "active":true,
  1191. "isStatic":false,
  1192. "layer":0,
  1193. "position":[
  1194. 0.2895808,
  1195. 0,
  1196. -5.960464E-08
  1197. ],
  1198. "rotation":[
  1199. 0.6520344,
  1200. 0.107669,
  1201. 0.0431429,
  1202. -0.7492645
  1203. ],
  1204. "scale":[
  1205. 1,
  1206. 1,
  1207. 1
  1208. ]
  1209. },
  1210. "components":[],
  1211. "child":[
  1212. {
  1213. "type":"Sprite3D",
  1214. "instanceID":600,
  1215. "props":{
  1216. "name":"Bip001 L Finger0",
  1217. "active":true,
  1218. "isStatic":false,
  1219. "layer":0,
  1220. "position":[
  1221. 0.02279198,
  1222. 0.003467083,
  1223. -0.02227503
  1224. ],
  1225. "rotation":[
  1226. -0.9275256,
  1227. -0.2870783,
  1228. -0.1558645,
  1229. -0.1816274
  1230. ],
  1231. "scale":[
  1232. 1,
  1233. 0.9999999,
  1234. 1
  1235. ]
  1236. },
  1237. "components":[],
  1238. "child":[
  1239. {
  1240. "type":"Sprite3D",
  1241. "instanceID":601,
  1242. "props":{
  1243. "name":"Bip001 L Finger01",
  1244. "active":true,
  1245. "isStatic":false,
  1246. "layer":0,
  1247. "position":[
  1248. 0.02449101,
  1249. 1.490116E-08,
  1250. 0
  1251. ],
  1252. "rotation":[
  1253. 0.0004157241,
  1254. -0.01963172,
  1255. -0.1093269,
  1256. -0.9938119
  1257. ],
  1258. "scale":[
  1259. 1,
  1260. 1,
  1261. 0.9999999
  1262. ]
  1263. },
  1264. "components":[],
  1265. "child":[
  1266. {
  1267. "type":"Sprite3D",
  1268. "instanceID":602,
  1269. "props":{
  1270. "name":"Bip001 L Finger02",
  1271. "active":true,
  1272. "isStatic":false,
  1273. "layer":0,
  1274. "position":[
  1275. 0.03130716,
  1276. 0,
  1277. 0
  1278. ],
  1279. "rotation":[
  1280. -2.471645E-08,
  1281. -4.299925E-08,
  1282. -0.07665125,
  1283. -0.997058
  1284. ],
  1285. "scale":[
  1286. 0.9999999,
  1287. 0.9999999,
  1288. 0.9999999
  1289. ]
  1290. },
  1291. "components":[],
  1292. "child":[
  1293. {
  1294. "type":"Sprite3D",
  1295. "instanceID":603,
  1296. "props":{
  1297. "name":"Bip001 L Finger0Nub",
  1298. "active":true,
  1299. "isStatic":false,
  1300. "layer":0,
  1301. "position":[
  1302. 0.02449101,
  1303. 0,
  1304. -2.980232E-08
  1305. ],
  1306. "rotation":[
  1307. 0,
  1308. 0,
  1309. -7.450581E-09,
  1310. -1
  1311. ],
  1312. "scale":[
  1313. 0.9999999,
  1314. 0.9999999,
  1315. 0.9999999
  1316. ]
  1317. },
  1318. "components":[],
  1319. "child":[]
  1320. }
  1321. ]
  1322. }
  1323. ]
  1324. }
  1325. ]
  1326. },
  1327. {
  1328. "type":"Sprite3D",
  1329. "instanceID":604,
  1330. "props":{
  1331. "name":"Bip001 L Finger1",
  1332. "active":true,
  1333. "isStatic":false,
  1334. "layer":0,
  1335. "position":[
  1336. 0.09003782,
  1337. 0.002995253,
  1338. -0.02621096
  1339. ],
  1340. "rotation":[
  1341. -0.03257859,
  1342. -0.04734362,
  1343. -0.5665357,
  1344. -0.8220308
  1345. ],
  1346. "scale":[
  1347. 0.9999999,
  1348. 1,
  1349. 0.9999999
  1350. ]
  1351. },
  1352. "components":[],
  1353. "child":[
  1354. {
  1355. "type":"Sprite3D",
  1356. "instanceID":605,
  1357. "props":{
  1358. "name":"Bip001 L Finger11",
  1359. "active":true,
  1360. "isStatic":false,
  1361. "layer":0,
  1362. "position":[
  1363. 0.02575368,
  1364. 2.980232E-08,
  1365. 0
  1366. ],
  1367. "rotation":[
  1368. 4.725356E-08,
  1369. -9.650609E-08,
  1370. -0.8640855,
  1371. -0.5033452
  1372. ],
  1373. "scale":[
  1374. 0.9999999,
  1375. 0.9999999,
  1376. 0.9999999
  1377. ]
  1378. },
  1379. "components":[],
  1380. "child":[
  1381. {
  1382. "type":"Sprite3D",
  1383. "instanceID":606,
  1384. "props":{
  1385. "name":"Bip001 L Finger12",
  1386. "active":true,
  1387. "isStatic":false,
  1388. "layer":0,
  1389. "position":[
  1390. 0.02463907,
  1391. -5.960464E-08,
  1392. -2.980232E-08
  1393. ],
  1394. "rotation":[
  1395. -3.867506E-08,
  1396. 5.141293E-08,
  1397. -0.2561652,
  1398. -0.966633
  1399. ],
  1400. "scale":[
  1401. 1,
  1402. 1,
  1403. 1
  1404. ]
  1405. },
  1406. "components":[],
  1407. "child":[
  1408. {
  1409. "type":"Sprite3D",
  1410. "instanceID":607,
  1411. "props":{
  1412. "name":"Bip001 L Finger1Nub",
  1413. "active":true,
  1414. "isStatic":false,
  1415. "layer":0,
  1416. "position":[
  1417. 0.02396786,
  1418. 0,
  1419. 0
  1420. ],
  1421. "rotation":[
  1422. 1.67638E-08,
  1423. -1.490116E-08,
  1424. 1.490116E-08,
  1425. -1
  1426. ],
  1427. "scale":[
  1428. 1,
  1429. 1,
  1430. 1
  1431. ]
  1432. },
  1433. "components":[],
  1434. "child":[]
  1435. }
  1436. ]
  1437. }
  1438. ]
  1439. }
  1440. ]
  1441. },
  1442. {
  1443. "type":"Sprite3D",
  1444. "instanceID":608,
  1445. "props":{
  1446. "name":"Bip001 L Finger2",
  1447. "active":true,
  1448. "isStatic":false,
  1449. "layer":0,
  1450. "position":[
  1451. 0.08955479,
  1452. 0.003975034,
  1453. -0.006442219
  1454. ],
  1455. "rotation":[
  1456. 0.04224811,
  1457. 0.06084426,
  1458. -0.6934045,
  1459. -0.716731
  1460. ],
  1461. "scale":[
  1462. 0.9999999,
  1463. 1,
  1464. 1
  1465. ]
  1466. },
  1467. "components":[],
  1468. "child":[
  1469. {
  1470. "type":"Sprite3D",
  1471. "instanceID":609,
  1472. "props":{
  1473. "name":"Bip001 L Finger21",
  1474. "active":true,
  1475. "isStatic":false,
  1476. "layer":0,
  1477. "position":[
  1478. 0.03108788,
  1479. 2.980232E-08,
  1480. 0
  1481. ],
  1482. "rotation":[
  1483. -2.421067E-08,
  1484. 4.767479E-08,
  1485. 0.8677455,
  1486. 0.4970089
  1487. ],
  1488. "scale":[
  1489. 0.9999998,
  1490. 0.9999999,
  1491. 0.9999999
  1492. ]
  1493. },
  1494. "components":[],
  1495. "child":[
  1496. {
  1497. "type":"Sprite3D",
  1498. "instanceID":610,
  1499. "props":{
  1500. "name":"Bip001 L Finger22",
  1501. "active":true,
  1502. "isStatic":false,
  1503. "layer":0,
  1504. "position":[
  1505. 0.02312112,
  1506. 2.980232E-08,
  1507. 0
  1508. ],
  1509. "rotation":[
  1510. 4.241227E-08,
  1511. 1.841863E-08,
  1512. -0.08149075,
  1513. -0.9966741
  1514. ],
  1515. "scale":[
  1516. 0.9999999,
  1517. 0.9999999,
  1518. 0.9999999
  1519. ]
  1520. },
  1521. "components":[],
  1522. "child":[
  1523. {
  1524. "type":"Sprite3D",
  1525. "instanceID":611,
  1526. "props":{
  1527. "name":"Bip001 L Finger2Nub",
  1528. "active":true,
  1529. "isStatic":false,
  1530. "layer":0,
  1531. "position":[
  1532. 0.024957,
  1533. 0,
  1534. 0
  1535. ],
  1536. "rotation":[
  1537. -2.793968E-09,
  1538. 7.450581E-09,
  1539. -2.081669E-17,
  1540. -1
  1541. ],
  1542. "scale":[
  1543. 1,
  1544. 0.9999999,
  1545. 1
  1546. ]
  1547. },
  1548. "components":[],
  1549. "child":[]
  1550. }
  1551. ]
  1552. }
  1553. ]
  1554. }
  1555. ]
  1556. },
  1557. {
  1558. "type":"Sprite3D",
  1559. "instanceID":612,
  1560. "props":{
  1561. "name":"Bip001 L Finger3",
  1562. "active":true,
  1563. "isStatic":false,
  1564. "layer":0,
  1565. "position":[
  1566. 0.08418941,
  1567. 0.003210306,
  1568. 0.0137898
  1569. ],
  1570. "rotation":[
  1571. 0.07565791,
  1572. 0.06349319,
  1573. -0.6333945,
  1574. -0.7674998
  1575. ],
  1576. "scale":[
  1577. 1,
  1578. 0.9999999,
  1579. 0.9999999
  1580. ]
  1581. },
  1582. "components":[],
  1583. "child":[
  1584. {
  1585. "type":"Sprite3D",
  1586. "instanceID":613,
  1587. "props":{
  1588. "name":"Bip001 L Finger31",
  1589. "active":true,
  1590. "isStatic":false,
  1591. "layer":0,
  1592. "position":[
  1593. 0.02815855,
  1594. 5.960464E-08,
  1595. -2.980232E-08
  1596. ],
  1597. "rotation":[
  1598. -2.923776E-10,
  1599. -1.053265E-08,
  1600. -0.6872134,
  1601. -0.7264556
  1602. ],
  1603. "scale":[
  1604. 1,
  1605. 1,
  1606. 1
  1607. ]
  1608. },
  1609. "components":[],
  1610. "child":[
  1611. {
  1612. "type":"Sprite3D",
  1613. "instanceID":614,
  1614. "props":{
  1615. "name":"Bip001 L Finger32",
  1616. "active":true,
  1617. "isStatic":false,
  1618. "layer":0,
  1619. "position":[
  1620. 0.02565232,
  1621. 0,
  1622. 0
  1623. ],
  1624. "rotation":[
  1625. -6.43491E-10,
  1626. 1.051704E-08,
  1627. -0.7489709,
  1628. -0.662603
  1629. ],
  1630. "scale":[
  1631. 1,
  1632. 1,
  1633. 1
  1634. ]
  1635. },
  1636. "components":[],
  1637. "child":[
  1638. {
  1639. "type":"Sprite3D",
  1640. "instanceID":615,
  1641. "props":{
  1642. "name":"Bip001 L Finger3Nub",
  1643. "active":true,
  1644. "isStatic":false,
  1645. "layer":0,
  1646. "position":[
  1647. 0.02478564,
  1648. 5.960464E-08,
  1649. 0
  1650. ],
  1651. "rotation":[
  1652. -7.450581E-09,
  1653. 0,
  1654. 0,
  1655. -1
  1656. ],
  1657. "scale":[
  1658. 1,
  1659. 0.9999999,
  1660. 1
  1661. ]
  1662. },
  1663. "components":[],
  1664. "child":[]
  1665. }
  1666. ]
  1667. }
  1668. ]
  1669. }
  1670. ]
  1671. },
  1672. {
  1673. "type":"Sprite3D",
  1674. "instanceID":616,
  1675. "props":{
  1676. "name":"Bip001 L Finger4",
  1677. "active":true,
  1678. "isStatic":false,
  1679. "layer":0,
  1680. "position":[
  1681. 0.07969743,
  1682. 0.004698992,
  1683. 0.03242943
  1684. ],
  1685. "rotation":[
  1686. 0.08276475,
  1687. 0.1064015,
  1688. -0.6061245,
  1689. -0.7838634
  1690. ],
  1691. "scale":[
  1692. 0.9999999,
  1693. 0.9999999,
  1694. 1
  1695. ]
  1696. },
  1697. "components":[],
  1698. "child":[
  1699. {
  1700. "type":"Sprite3D",
  1701. "instanceID":617,
  1702. "props":{
  1703. "name":"Bip001 L Finger41",
  1704. "active":true,
  1705. "isStatic":false,
  1706. "layer":0,
  1707. "position":[
  1708. 0.01974499,
  1709. -5.960464E-08,
  1710. 2.980232E-08
  1711. ],
  1712. "rotation":[
  1713. 5.370196E-09,
  1714. -1.048517E-08,
  1715. -0.7139246,
  1716. -0.7002226
  1717. ],
  1718. "scale":[
  1719. 1,
  1720. 1,
  1721. 1
  1722. ]
  1723. },
  1724. "components":[],
  1725. "child":[
  1726. {
  1727. "type":"Sprite3D",
  1728. "instanceID":618,
  1729. "props":{
  1730. "name":"Bip001 L Finger42",
  1731. "active":true,
  1732. "isStatic":false,
  1733. "layer":0,
  1734. "position":[
  1735. 0.02124196,
  1736. 0,
  1737. -2.980232E-08
  1738. ],
  1739. "rotation":[
  1740. -1.031991E-08,
  1741. 2.12642E-09,
  1742. -0.5498561,
  1743. -0.8352594
  1744. ],
  1745. "scale":[
  1746. 1,
  1747. 1,
  1748. 1
  1749. ]
  1750. },
  1751. "components":[],
  1752. "child":[
  1753. {
  1754. "type":"Sprite3D",
  1755. "instanceID":619,
  1756. "props":{
  1757. "name":"Bip001 L Finger4Nub",
  1758. "active":true,
  1759. "isStatic":false,
  1760. "layer":0,
  1761. "position":[
  1762. 0.02110857,
  1763. 0,
  1764. 0
  1765. ],
  1766. "rotation":[
  1767. -7.450581E-09,
  1768. 1.110223E-16,
  1769. 1.490116E-08,
  1770. -1
  1771. ],
  1772. "scale":[
  1773. 1,
  1774. 1,
  1775. 1
  1776. ]
  1777. },
  1778. "components":[],
  1779. "child":[]
  1780. }
  1781. ]
  1782. }
  1783. ]
  1784. }
  1785. ]
  1786. },
  1787. {
  1788. "type":"Sprite3D",
  1789. "instanceID":620,
  1790. "props":{
  1791. "name":"collider",
  1792. "active":true,
  1793. "isStatic":false,
  1794. "layer":0,
  1795. "position":[
  1796. 0.06734232,
  1797. 0.01153372,
  1798. 0.003364342
  1799. ],
  1800. "rotation":[
  1801. -5.960461E-07,
  1802. 5.215403E-08,
  1803. 5.960461E-08,
  1804. -1
  1805. ],
  1806. "scale":[
  1807. 1,
  1808. 1,
  1809. 1
  1810. ]
  1811. },
  1812. "components":[
  1813. {
  1814. "type":"PhysicsCollider",
  1815. "restitution":0,
  1816. "friction":0.5,
  1817. "rollingFriction":0,
  1818. "shapes":[
  1819. {
  1820. "type":"BoxColliderShape",
  1821. "center":[
  1822. -0.007629189,
  1823. 0.006033795,
  1824. 0.001223894
  1825. ],
  1826. "size":[
  1827. 0.0952789,
  1828. 0.04974617,
  1829. 0.08006321
  1830. ]
  1831. }
  1832. ],
  1833. "isTrigger":false
  1834. }
  1835. ],
  1836. "child":[]
  1837. }
  1838. ]
  1839. },
  1840. {
  1841. "type":"Sprite3D",
  1842. "instanceID":621,
  1843. "props":{
  1844. "name":"collider",
  1845. "active":true,
  1846. "isStatic":false,
  1847. "layer":0,
  1848. "position":[
  1849. 0.1257406,
  1850. 0.004550918,
  1851. -0.002461068
  1852. ],
  1853. "rotation":[
  1854. 1.180449E-07,
  1855. 5.269893E-07,
  1856. 0.7071062,
  1857. -0.7071074
  1858. ],
  1859. "scale":[
  1860. 1,
  1861. 1,
  1862. 1
  1863. ]
  1864. },
  1865. "components":[
  1866. {
  1867. "type":"PhysicsCollider",
  1868. "restitution":0,
  1869. "friction":0.5,
  1870. "rollingFriction":0,
  1871. "shapes":[
  1872. {
  1873. "type":"CapsuleColliderShape",
  1874. "center":[
  1875. -0.00083379,
  1876. 0.02514257,
  1877. -0.001924161
  1878. ],
  1879. "radius":0.03300484,
  1880. "height":0.3246626,
  1881. "orientation":1
  1882. }
  1883. ],
  1884. "isTrigger":false
  1885. }
  1886. ],
  1887. "child":[]
  1888. }
  1889. ]
  1890. },
  1891. {
  1892. "type":"Sprite3D",
  1893. "instanceID":622,
  1894. "props":{
  1895. "name":"collider",
  1896. "active":true,
  1897. "isStatic":false,
  1898. "layer":0,
  1899. "position":[
  1900. 0.1439323,
  1901. 0.0009036761,
  1902. -0.002461411
  1903. ],
  1904. "rotation":[
  1905. 1.601874E-07,
  1906. 2.980231E-08,
  1907. 0.7071066,
  1908. -0.707107
  1909. ],
  1910. "scale":[
  1911. 1,
  1912. 1,
  1913. 1
  1914. ]
  1915. },
  1916. "components":[
  1917. {
  1918. "type":"PhysicsCollider",
  1919. "restitution":0,
  1920. "friction":0.5,
  1921. "rollingFriction":0,
  1922. "shapes":[
  1923. {
  1924. "type":"CapsuleColliderShape",
  1925. "center":[
  1926. 0.00360846,
  1927. 0.01213855,
  1928. 0.001580297
  1929. ],
  1930. "radius":0.04065445,
  1931. "height":0.3562577,
  1932. "orientation":1
  1933. }
  1934. ],
  1935. "isTrigger":false
  1936. }
  1937. ],
  1938. "child":[]
  1939. }
  1940. ]
  1941. }
  1942. ]
  1943. },
  1944. {
  1945. "type":"Sprite3D",
  1946. "instanceID":623,
  1947. "props":{
  1948. "name":"Bip001 R Clavicle",
  1949. "active":true,
  1950. "isStatic":false,
  1951. "layer":0,
  1952. "position":[
  1953. -0.09019649,
  1954. -0.03260288,
  1955. -0.06475195
  1956. ],
  1957. "rotation":[
  1958. -0.6821445,
  1959. 0.05979519,
  1960. 0.7220058,
  1961. -0.09905105
  1962. ],
  1963. "scale":[
  1964. 1,
  1965. 1,
  1966. 1
  1967. ]
  1968. },
  1969. "components":[],
  1970. "child":[
  1971. {
  1972. "type":"Sprite3D",
  1973. "instanceID":624,
  1974. "props":{
  1975. "name":"Bip001 R UpperArm",
  1976. "active":true,
  1977. "isStatic":false,
  1978. "layer":0,
  1979. "position":[
  1980. 0.08302392,
  1981. -1.490116E-08,
  1982. -1.192093E-07
  1983. ],
  1984. "rotation":[
  1985. 0.06973759,
  1986. 0.5427405,
  1987. -0.05712071,
  1988. -0.8350489
  1989. ],
  1990. "scale":[
  1991. 1,
  1992. 1,
  1993. 1
  1994. ]
  1995. },
  1996. "components":[],
  1997. "child":[
  1998. {
  1999. "type":"Sprite3D",
  2000. "instanceID":625,
  2001. "props":{
  2002. "name":"Bip001 R Forearm",
  2003. "active":true,
  2004. "isStatic":false,
  2005. "layer":0,
  2006. "position":[
  2007. 0.2699145,
  2008. 7.450581E-09,
  2009. -5.960464E-08
  2010. ],
  2011. "rotation":[
  2012. 2.211209E-09,
  2013. -1.519977E-08,
  2014. 0.1003464,
  2015. -0.9949526
  2016. ],
  2017. "scale":[
  2018. 0.9999999,
  2019. 0.9999998,
  2020. 1
  2021. ]
  2022. },
  2023. "components":[],
  2024. "child":[
  2025. {
  2026. "type":"Sprite3D",
  2027. "instanceID":626,
  2028. "props":{
  2029. "name":"Bip001 R Hand",
  2030. "active":true,
  2031. "isStatic":false,
  2032. "layer":0,
  2033. "position":[
  2034. 0.2895808,
  2035. 0,
  2036. 0
  2037. ],
  2038. "rotation":[
  2039. -0.6520343,
  2040. -0.107669,
  2041. 0.04314291,
  2042. -0.7492645
  2043. ],
  2044. "scale":[
  2045. 0.9999999,
  2046. 1,
  2047. 1
  2048. ]
  2049. },
  2050. "components":[],
  2051. "child":[
  2052. {
  2053. "type":"Sprite3D",
  2054. "instanceID":627,
  2055. "props":{
  2056. "name":"Bip001 R Finger0",
  2057. "active":true,
  2058. "isStatic":false,
  2059. "layer":0,
  2060. "position":[
  2061. 0.02279186,
  2062. 0.003466964,
  2063. 0.02227505
  2064. ],
  2065. "rotation":[
  2066. -0.9275256,
  2067. -0.2870782,
  2068. 0.1558645,
  2069. 0.1816276
  2070. ],
  2071. "scale":[
  2072. 1,
  2073. 1,
  2074. 1
  2075. ]
  2076. },
  2077. "components":[],
  2078. "child":[
  2079. {
  2080. "type":"Sprite3D",
  2081. "instanceID":628,
  2082. "props":{
  2083. "name":"Bip001 R Finger01",
  2084. "active":true,
  2085. "isStatic":false,
  2086. "layer":0,
  2087. "position":[
  2088. 0.02449101,
  2089. 0,
  2090. 1.490116E-08
  2091. ],
  2092. "rotation":[
  2093. -0.0004156855,
  2094. 0.01963167,
  2095. -0.1093269,
  2096. -0.9938119
  2097. ],
  2098. "scale":[
  2099. 0.9999999,
  2100. 1,
  2101. 1
  2102. ]
  2103. },
  2104. "components":[],
  2105. "child":[
  2106. {
  2107. "type":"Sprite3D",
  2108. "instanceID":629,
  2109. "props":{
  2110. "name":"Bip001 R Finger02",
  2111. "active":true,
  2112. "isStatic":false,
  2113. "layer":0,
  2114. "position":[
  2115. 0.03130716,
  2116. 0,
  2117. -7.450581E-09
  2118. ],
  2119. "rotation":[
  2120. -2.113938E-08,
  2121. 8.057308E-08,
  2122. -0.07665126,
  2123. -0.997058
  2124. ],
  2125. "scale":[
  2126. 0.9999999,
  2127. 1,
  2128. 1
  2129. ]
  2130. },
  2131. "components":[],
  2132. "child":[
  2133. {
  2134. "type":"Sprite3D",
  2135. "instanceID":630,
  2136. "props":{
  2137. "name":"Bip001 R Finger0Nub",
  2138. "active":true,
  2139. "isStatic":false,
  2140. "layer":0,
  2141. "position":[
  2142. 0.02449101,
  2143. 0,
  2144. 0
  2145. ],
  2146. "rotation":[
  2147. -8.326673E-17,
  2148. -3.72529E-09,
  2149. 1,
  2150. 2.235174E-08
  2151. ],
  2152. "scale":[
  2153. -1,
  2154. -1,
  2155. -1
  2156. ]
  2157. },
  2158. "components":[],
  2159. "child":[]
  2160. }
  2161. ]
  2162. }
  2163. ]
  2164. }
  2165. ]
  2166. },
  2167. {
  2168. "type":"Sprite3D",
  2169. "instanceID":631,
  2170. "props":{
  2171. "name":"Bip001 R Finger1",
  2172. "active":true,
  2173. "isStatic":false,
  2174. "layer":0,
  2175. "position":[
  2176. 0.09003776,
  2177. 0.002995193,
  2178. 0.02621098
  2179. ],
  2180. "rotation":[
  2181. 0.03257856,
  2182. 0.04734362,
  2183. -0.5665357,
  2184. -0.8220308
  2185. ],
  2186. "scale":[
  2187. 1,
  2188. 0.9999999,
  2189. 1
  2190. ]
  2191. },
  2192. "components":[],
  2193. "child":[
  2194. {
  2195. "type":"Sprite3D",
  2196. "instanceID":632,
  2197. "props":{
  2198. "name":"Bip001 R Finger11",
  2199. "active":true,
  2200. "isStatic":false,
  2201. "layer":0,
  2202. "position":[
  2203. 0.02575368,
  2204. 0,
  2205. -7.450581E-09
  2206. ],
  2207. "rotation":[
  2208. -1.531373E-08,
  2209. 4.77218E-08,
  2210. -0.8640854,
  2211. -0.5033452
  2212. ],
  2213. "scale":[
  2214. 0.9999999,
  2215. 0.9999998,
  2216. 0.9999999
  2217. ]
  2218. },
  2219. "components":[],
  2220. "child":[
  2221. {
  2222. "type":"Sprite3D",
  2223. "instanceID":633,
  2224. "props":{
  2225. "name":"Bip001 R Finger12",
  2226. "active":true,
  2227. "isStatic":false,
  2228. "layer":0,
  2229. "position":[
  2230. 0.02463901,
  2231. 0,
  2232. 0
  2233. ],
  2234. "rotation":[
  2235. 4.476063E-08,
  2236. -3.438468E-08,
  2237. -0.2561652,
  2238. -0.966633
  2239. ],
  2240. "scale":[
  2241. 1,
  2242. 0.9999999,
  2243. 1
  2244. ]
  2245. },
  2246. "components":[],
  2247. "child":[
  2248. {
  2249. "type":"Sprite3D",
  2250. "instanceID":634,
  2251. "props":{
  2252. "name":"Bip001 R Finger1Nub",
  2253. "active":true,
  2254. "isStatic":false,
  2255. "layer":0,
  2256. "position":[
  2257. 0.0239678,
  2258. 2.980232E-08,
  2259. 7.450581E-09
  2260. ],
  2261. "rotation":[
  2262. 3.72529E-09,
  2263. 9.313226E-10,
  2264. 1,
  2265. -7.450581E-09
  2266. ],
  2267. "scale":[
  2268. -1,
  2269. -1,
  2270. -1
  2271. ]
  2272. },
  2273. "components":[],
  2274. "child":[]
  2275. }
  2276. ]
  2277. }
  2278. ]
  2279. }
  2280. ]
  2281. },
  2282. {
  2283. "type":"Sprite3D",
  2284. "instanceID":635,
  2285. "props":{
  2286. "name":"Bip001 R Finger2",
  2287. "active":true,
  2288. "isStatic":false,
  2289. "layer":0,
  2290. "position":[
  2291. 0.08955479,
  2292. 0.003975034,
  2293. 0.006442202
  2294. ],
  2295. "rotation":[
  2296. -0.0422481,
  2297. -0.06084426,
  2298. -0.6934045,
  2299. -0.716731
  2300. ],
  2301. "scale":[
  2302. 1,
  2303. 1,
  2304. 1
  2305. ]
  2306. },
  2307. "components":[],
  2308. "child":[
  2309. {
  2310. "type":"Sprite3D",
  2311. "instanceID":636,
  2312. "props":{
  2313. "name":"Bip001 R Finger21",
  2314. "active":true,
  2315. "isStatic":false,
  2316. "layer":0,
  2317. "position":[
  2318. 0.03108793,
  2319. 5.960464E-08,
  2320. 7.450581E-09
  2321. ],
  2322. "rotation":[
  2323. 1.654546E-08,
  2324. -3.107606E-08,
  2325. 0.8677455,
  2326. 0.4970089
  2327. ],
  2328. "scale":[
  2329. 0.9999999,
  2330. 0.9999999,
  2331. 0.9999999
  2332. ]
  2333. },
  2334. "components":[],
  2335. "child":[
  2336. {
  2337. "type":"Sprite3D",
  2338. "instanceID":637,
  2339. "props":{
  2340. "name":"Bip001 R Finger22",
  2341. "active":true,
  2342. "isStatic":false,
  2343. "layer":0,
  2344. "position":[
  2345. 0.02312118,
  2346. -2.980232E-08,
  2347. 0
  2348. ],
  2349. "rotation":[
  2350. -5.478278E-08,
  2351. -1.569235E-08,
  2352. -0.08149075,
  2353. -0.9966741
  2354. ],
  2355. "scale":[
  2356. 1,
  2357. 1,
  2358. 1
  2359. ]
  2360. },
  2361. "components":[],
  2362. "child":[
  2363. {
  2364. "type":"Sprite3D",
  2365. "instanceID":638,
  2366. "props":{
  2367. "name":"Bip001 R Finger2Nub",
  2368. "active":true,
  2369. "isStatic":false,
  2370. "layer":0,
  2371. "position":[
  2372. 0.024957,
  2373. -1.490116E-08,
  2374. 0
  2375. ],
  2376. "rotation":[
  2377. 3.72529E-09,
  2378. 2.281082E-25,
  2379. 1,
  2380. -6.123234E-17
  2381. ],
  2382. "scale":[
  2383. -1,
  2384. -1,
  2385. -1
  2386. ]
  2387. },
  2388. "components":[],
  2389. "child":[]
  2390. }
  2391. ]
  2392. }
  2393. ]
  2394. }
  2395. ]
  2396. },
  2397. {
  2398. "type":"Sprite3D",
  2399. "instanceID":639,
  2400. "props":{
  2401. "name":"Bip001 R Finger3",
  2402. "active":true,
  2403. "isStatic":false,
  2404. "layer":0,
  2405. "position":[
  2406. 0.08418936,
  2407. 0.003210306,
  2408. -0.01378981
  2409. ],
  2410. "rotation":[
  2411. -0.07565794,
  2412. -0.06349318,
  2413. -0.6333945,
  2414. -0.7674998
  2415. ],
  2416. "scale":[
  2417. 1,
  2418. 1,
  2419. 1
  2420. ]
  2421. },
  2422. "components":[],
  2423. "child":[
  2424. {
  2425. "type":"Sprite3D",
  2426. "instanceID":640,
  2427. "props":{
  2428. "name":"Bip001 R Finger31",
  2429. "active":true,
  2430. "isStatic":false,
  2431. "layer":0,
  2432. "position":[
  2433. 0.02815861,
  2434. -2.980232E-08,
  2435. 7.450581E-09
  2436. ],
  2437. "rotation":[
  2438. 1.850524E-08,
  2439. 2.121503E-09,
  2440. -0.6872134,
  2441. -0.7264556
  2442. ],
  2443. "scale":[
  2444. 1,
  2445. 1,
  2446. 1
  2447. ]
  2448. },
  2449. "components":[],
  2450. "child":[
  2451. {
  2452. "type":"Sprite3D",
  2453. "instanceID":641,
  2454. "props":{
  2455. "name":"Bip001 R Finger32",
  2456. "active":true,
  2457. "isStatic":false,
  2458. "layer":0,
  2459. "position":[
  2460. 0.02565232,
  2461. -5.960464E-08,
  2462. -7.450581E-09
  2463. ],
  2464. "rotation":[
  2465. -7.405164E-09,
  2466. -8.370401E-09,
  2467. -0.7489709,
  2468. -0.6626029
  2469. ],
  2470. "scale":[
  2471. 0.9999999,
  2472. 1,
  2473. 1
  2474. ]
  2475. },
  2476. "components":[],
  2477. "child":[
  2478. {
  2479. "type":"Sprite3D",
  2480. "instanceID":642,
  2481. "props":{
  2482. "name":"Bip001 R Finger3Nub",
  2483. "active":true,
  2484. "isStatic":false,
  2485. "layer":0,
  2486. "position":[
  2487. 0.02478558,
  2488. 0,
  2489. -7.450581E-09
  2490. ],
  2491. "rotation":[
  2492. -5.551115E-17,
  2493. 3.72529E-09,
  2494. 1,
  2495. -1.490116E-08
  2496. ],
  2497. "scale":[
  2498. -1,
  2499. -1,
  2500. -1
  2501. ]
  2502. },
  2503. "components":[],
  2504. "child":[]
  2505. }
  2506. ]
  2507. }
  2508. ]
  2509. }
  2510. ]
  2511. },
  2512. {
  2513. "type":"Sprite3D",
  2514. "instanceID":643,
  2515. "props":{
  2516. "name":"Bip001 R Finger4",
  2517. "active":true,
  2518. "isStatic":false,
  2519. "layer":0,
  2520. "position":[
  2521. 0.07969737,
  2522. 0.004698992,
  2523. -0.03242943
  2524. ],
  2525. "rotation":[
  2526. -0.08276479,
  2527. -0.1064015,
  2528. -0.6061245,
  2529. -0.7838634
  2530. ],
  2531. "scale":[
  2532. 1,
  2533. 1,
  2534. 1
  2535. ]
  2536. },
  2537. "components":[],
  2538. "child":[
  2539. {
  2540. "type":"Sprite3D",
  2541. "instanceID":644,
  2542. "props":{
  2543. "name":"Bip001 R Finger41",
  2544. "active":true,
  2545. "isStatic":false,
  2546. "layer":0,
  2547. "position":[
  2548. 0.01974505,
  2549. -2.980232E-08,
  2550. 0
  2551. ],
  2552. "rotation":[
  2553. 5.319153E-09,
  2554. -5.217065E-09,
  2555. -0.7139246,
  2556. -0.7002226
  2557. ],
  2558. "scale":[
  2559. 1,
  2560. 1,
  2561. 1
  2562. ]
  2563. },
  2564. "components":[],
  2565. "child":[
  2566. {
  2567. "type":"Sprite3D",
  2568. "instanceID":645,
  2569. "props":{
  2570. "name":"Bip001 R Finger42",
  2571. "active":true,
  2572. "isStatic":false,
  2573. "layer":0,
  2574. "position":[
  2575. 0.0212419,
  2576. 0,
  2577. 0
  2578. ],
  2579. "rotation":[
  2580. -6.223166E-09,
  2581. -4.096747E-09,
  2582. -0.5498561,
  2583. -0.8352594
  2584. ],
  2585. "scale":[
  2586. 1,
  2587. 1,
  2588. 1
  2589. ]
  2590. },
  2591. "components":[],
  2592. "child":[
  2593. {
  2594. "type":"Sprite3D",
  2595. "instanceID":646,
  2596. "props":{
  2597. "name":"Bip001 R Finger4Nub",
  2598. "active":true,
  2599. "isStatic":false,
  2600. "layer":0,
  2601. "position":[
  2602. 0.02110851,
  2603. 0,
  2604. 0
  2605. ],
  2606. "rotation":[
  2607. -1.490116E-08,
  2608. -2.220446E-16,
  2609. 1,
  2610. -1.490116E-08
  2611. ],
  2612. "scale":[
  2613. -0.9999999,
  2614. -1,
  2615. -1
  2616. ]
  2617. },
  2618. "components":[],
  2619. "child":[]
  2620. }
  2621. ]
  2622. }
  2623. ]
  2624. }
  2625. ]
  2626. },
  2627. {
  2628. "type":"Sprite3D",
  2629. "instanceID":647,
  2630. "props":{
  2631. "name":"gunPos",
  2632. "active":true,
  2633. "isStatic":false,
  2634. "layer":0,
  2635. "position":[
  2636. 0,
  2637. 0,
  2638. 0
  2639. ],
  2640. "rotation":[
  2641. 0,
  2642. 0,
  2643. 0,
  2644. -1
  2645. ],
  2646. "scale":[
  2647. 1,
  2648. 1,
  2649. 1
  2650. ]
  2651. },
  2652. "components":[],
  2653. "child":[]
  2654. },
  2655. {
  2656. "type":"Sprite3D",
  2657. "instanceID":648,
  2658. "props":{
  2659. "name":"collider",
  2660. "active":true,
  2661. "isStatic":false,
  2662. "layer":0,
  2663. "position":[
  2664. 0.06770917,
  2665. 0.01059366,
  2666. 0.0297824
  2667. ],
  2668. "rotation":[
  2669. 4.768368E-07,
  2670. 2.235173E-08,
  2671. -3.352759E-07,
  2672. -1
  2673. ],
  2674. "scale":[
  2675. 1,
  2676. 1,
  2677. 1
  2678. ]
  2679. },
  2680. "components":[
  2681. {
  2682. "type":"PhysicsCollider",
  2683. "restitution":0,
  2684. "friction":0.5,
  2685. "rollingFriction":0,
  2686. "shapes":[
  2687. {
  2688. "type":"BoxColliderShape",
  2689. "center":[
  2690. -0.003480286,
  2691. 0.006029905,
  2692. -0.02930724
  2693. ],
  2694. "size":[
  2695. 0.07932636,
  2696. 0.05531985,
  2697. 0.08135739
  2698. ]
  2699. }
  2700. ],
  2701. "isTrigger":false
  2702. }
  2703. ],
  2704. "child":[]
  2705. }
  2706. ]
  2707. },
  2708. {
  2709. "type":"Sprite3D",
  2710. "instanceID":649,
  2711. "props":{
  2712. "name":"collider",
  2713. "active":true,
  2714. "isStatic":false,
  2715. "layer":0,
  2716. "position":[
  2717. 0.1199223,
  2718. 0.00145664,
  2719. 0.002222839
  2720. ],
  2721. "rotation":[
  2722. 8.509186E-08,
  2723. 4.072084E-07,
  2724. 0.7071071,
  2725. -0.7071065
  2726. ],
  2727. "scale":[
  2728. 1,
  2729. 1,
  2730. 1
  2731. ]
  2732. },
  2733. "components":[
  2734. {
  2735. "type":"PhysicsCollider",
  2736. "restitution":0,
  2737. "friction":0.5,
  2738. "rollingFriction":0,
  2739. "shapes":[
  2740. {
  2741. "type":"CapsuleColliderShape",
  2742. "center":[
  2743. 0.001976177,
  2744. 0.02514257,
  2745. 0.002894619
  2746. ],
  2747. "radius":0.03331672,
  2748. "height":0.3246627,
  2749. "orientation":1
  2750. }
  2751. ],
  2752. "isTrigger":false
  2753. }
  2754. ],
  2755. "child":[]
  2756. }
  2757. ]
  2758. },
  2759. {
  2760. "type":"Sprite3D",
  2761. "instanceID":650,
  2762. "props":{
  2763. "name":"collider",
  2764. "active":true,
  2765. "isStatic":false,
  2766. "layer":0,
  2767. "position":[
  2768. 0.1020328,
  2769. -0.0003540282,
  2770. -0.01077749
  2771. ],
  2772. "rotation":[
  2773. 2.83122E-07,
  2774. 5.960463E-07,
  2775. 0.7071068,
  2776. -0.7071069
  2777. ],
  2778. "scale":[
  2779. 1,
  2780. 1,
  2781. 1
  2782. ]
  2783. },
  2784. "components":[
  2785. {
  2786. "type":"PhysicsCollider",
  2787. "restitution":0,
  2788. "friction":0.5,
  2789. "rollingFriction":0,
  2790. "shapes":[
  2791. {
  2792. "type":"CapsuleColliderShape",
  2793. "center":[
  2794. -5.663768E-05,
  2795. 0.003780215,
  2796. 0.003314345
  2797. ],
  2798. "radius":0.04568683,
  2799. "height":0.3729745,
  2800. "orientation":1
  2801. }
  2802. ],
  2803. "isTrigger":false
  2804. }
  2805. ],
  2806. "child":[]
  2807. }
  2808. ]
  2809. }
  2810. ]
  2811. },
  2812. {
  2813. "type":"Sprite3D",
  2814. "instanceID":651,
  2815. "props":{
  2816. "name":"collider",
  2817. "active":true,
  2818. "isStatic":false,
  2819. "layer":0,
  2820. "position":[
  2821. -0.009041218,
  2822. -0.04329137,
  2823. -0.0007271598
  2824. ],
  2825. "rotation":[
  2826. -3.95812E-08,
  2827. -3.604217E-07,
  2828. 0.7071066,
  2829. -0.707107
  2830. ],
  2831. "scale":[
  2832. 1,
  2833. 1,
  2834. 1
  2835. ]
  2836. },
  2837. "components":[
  2838. {
  2839. "type":"PhysicsCollider",
  2840. "restitution":0,
  2841. "friction":0.5,
  2842. "rollingFriction":0,
  2843. "shapes":[
  2844. {
  2845. "type":"CapsuleColliderShape",
  2846. "center":[
  2847. 0.0004788069,
  2848. 0.004258768,
  2849. -0.003552764
  2850. ],
  2851. "radius":0.05741175,
  2852. "height":0.2131524,
  2853. "orientation":1
  2854. }
  2855. ],
  2856. "isTrigger":false
  2857. }
  2858. ],
  2859. "child":[]
  2860. }
  2861. ]
  2862. }
  2863. ]
  2864. }
  2865. ]
  2866. }
  2867. ]
  2868. }
  2869. ]
  2870. }
  2871. ]
  2872. },
  2873. {
  2874. "type":"SkinnedMeshSprite3D",
  2875. "instanceID":652,
  2876. "props":{
  2877. "name":"female_forearm",
  2878. "active":true,
  2879. "isStatic":false,
  2880. "layer":0,
  2881. "position":[
  2882. 0,
  2883. -2.384186E-07,
  2884. 4.470341E-08
  2885. ],
  2886. "rotation":[
  2887. -2.185569E-08,
  2888. 0,
  2889. 0,
  2890. -1
  2891. ],
  2892. "scale":[
  2893. 1,
  2894. 1,
  2895. 1
  2896. ],
  2897. "rootBone":625,
  2898. "boundBox":{
  2899. "min":[
  2900. -0.01664358,
  2901. -0.1618184,
  2902. -0.04586864
  2903. ],
  2904. "max":[
  2905. 0.404595,
  2906. 0.05657264,
  2907. 0.6350337
  2908. ]
  2909. },
  2910. "boundSphere":{
  2911. "center":[
  2912. 0.1939757,
  2913. -0.05262286,
  2914. 0.2945825
  2915. ],
  2916. "radius":0.4149592
  2917. },
  2918. "bones":[
  2919. 598,
  2920. 618,
  2921. 617,
  2922. 616,
  2923. 599,
  2924. 612,
  2925. 614,
  2926. 613,
  2927. 608,
  2928. 610,
  2929. 609,
  2930. 604,
  2931. 606,
  2932. 605,
  2933. 602,
  2934. 601,
  2935. 600,
  2936. 625,
  2937. 645,
  2938. 644,
  2939. 643,
  2940. 626,
  2941. 639,
  2942. 641,
  2943. 640,
  2944. 635,
  2945. 637,
  2946. 636,
  2947. 631,
  2948. 633,
  2949. 632,
  2950. 629,
  2951. 628,
  2952. 627
  2953. ],
  2954. "materials":[
  2955. {
  2956. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  2957. }
  2958. ],
  2959. "meshPath":"Assets/LatestRes/NPC/Model/fmale7-female_forearm.lm"
  2960. },
  2961. "components":[],
  2962. "child":[]
  2963. },
  2964. {
  2965. "type":"SkinnedMeshSprite3D",
  2966. "instanceID":653,
  2967. "props":{
  2968. "name":"female_hat7",
  2969. "active":true,
  2970. "isStatic":false,
  2971. "layer":0,
  2972. "position":[
  2973. 0,
  2974. 0,
  2975. 0
  2976. ],
  2977. "rotation":[
  2978. -0.7071069,
  2979. 0,
  2980. 0,
  2981. -0.7071067
  2982. ],
  2983. "scale":[
  2984. 0.07414677,
  2985. 0.07414677,
  2986. 0.07414677
  2987. ],
  2988. "rootBone":592,
  2989. "boundBox":{
  2990. "min":[
  2991. 0.06663176,
  2992. -0.1261417,
  2993. -0.09323785
  2994. ],
  2995. "max":[
  2996. 0.2851848,
  2997. 0.1396116,
  2998. 0.09324946
  2999. ]
  3000. },
  3001. "boundSphere":{
  3002. "center":[
  3003. 0.1759083,
  3004. 0.006734923,
  3005. 5.804002E-06
  3006. ],
  3007. "radius":0.1956833
  3008. },
  3009. "bones":[
  3010. 592
  3011. ],
  3012. "materials":[
  3013. {
  3014. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3015. }
  3016. ],
  3017. "meshPath":"Assets/LatestRes/NPC/Model/fmale7-female_hat7.lm"
  3018. },
  3019. "components":[],
  3020. "child":[]
  3021. },
  3022. {
  3023. "type":"SkinnedMeshSprite3D",
  3024. "instanceID":654,
  3025. "props":{
  3026. "name":"female_head7",
  3027. "active":true,
  3028. "isStatic":false,
  3029. "layer":0,
  3030. "position":[
  3031. 0,
  3032. -2.384186E-07,
  3033. 4.470341E-08
  3034. ],
  3035. "rotation":[
  3036. -0.7071069,
  3037. 0,
  3038. 0,
  3039. -0.7071067
  3040. ],
  3041. "scale":[
  3042. 1,
  3043. 1,
  3044. 1
  3045. ],
  3046. "rootBone":590,
  3047. "boundBox":{
  3048. "min":[
  3049. 0.05433224,
  3050. -0.1982232,
  3051. -0.1287967
  3052. ],
  3053. "max":[
  3054. 0.4732267,
  3055. 0.1758086,
  3056. 0.1282837
  3057. ]
  3058. },
  3059. "boundSphere":{
  3060. "center":[
  3061. 0.2637795,
  3062. -0.01120731,
  3063. -0.0002565235
  3064. ],
  3065. "radius":0.3088134
  3066. },
  3067. "bones":[
  3068. 590,
  3069. 591,
  3070. 592
  3071. ],
  3072. "materials":[
  3073. {
  3074. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3075. }
  3076. ],
  3077. "meshPath":"Assets/LatestRes/NPC/Model/fmale7-female_head7.lm"
  3078. },
  3079. "components":[],
  3080. "child":[]
  3081. },
  3082. {
  3083. "type":"SkinnedMeshSprite3D",
  3084. "instanceID":655,
  3085. "props":{
  3086. "name":"female_pants7",
  3087. "active":true,
  3088. "isStatic":false,
  3089. "layer":0,
  3090. "position":[
  3091. 0,
  3092. -2.384186E-07,
  3093. 4.470341E-08
  3094. ],
  3095. "rotation":[
  3096. -0.7071069,
  3097. 0,
  3098. 0,
  3099. -0.7071067
  3100. ],
  3101. "scale":[
  3102. 1,
  3103. 1,
  3104. 1
  3105. ],
  3106. "rootBone":569,
  3107. "boundBox":{
  3108. "min":[
  3109. -0.9322274,
  3110. -0.3062936,
  3111. -0.1974471
  3112. ],
  3113. "max":[
  3114. 0.166499,
  3115. 0.5625483,
  3116. 0.2110089
  3117. ]
  3118. },
  3119. "boundSphere":{
  3120. "center":[
  3121. -0.3828642,
  3122. 0.1281274,
  3123. 0.00678093
  3124. ],
  3125. "radius":0.7295414
  3126. },
  3127. "bones":[
  3128. 573,
  3129. 570,
  3130. 569,
  3131. 581,
  3132. 589,
  3133. 574,
  3134. 582,
  3135. 583
  3136. ],
  3137. "materials":[
  3138. {
  3139. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3140. }
  3141. ],
  3142. "meshPath":"Assets/LatestRes/NPC/Model/fmale7-female_pants7.lm"
  3143. },
  3144. "components":[],
  3145. "child":[]
  3146. },
  3147. {
  3148. "type":"SkinnedMeshSprite3D",
  3149. "instanceID":656,
  3150. "props":{
  3151. "name":"female_shirt7",
  3152. "active":true,
  3153. "isStatic":false,
  3154. "layer":0,
  3155. "position":[
  3156. 0,
  3157. 0,
  3158. 0
  3159. ],
  3160. "rotation":[
  3161. -0.7071069,
  3162. 0,
  3163. 0,
  3164. -0.7071067
  3165. ],
  3166. "scale":[
  3167. 1,
  3168. 1,
  3169. 1
  3170. ],
  3171. "rootBone":569,
  3172. "boundBox":{
  3173. "min":[
  3174. -0.1177847,
  3175. -0.2758489,
  3176. -0.3763421
  3177. ],
  3178. "max":[
  3179. 0.6546497,
  3180. 0.2433962,
  3181. 0.423359
  3182. ]
  3183. },
  3184. "boundSphere":{
  3185. "center":[
  3186. 0.2684325,
  3187. -0.01622632,
  3188. 0.02350847
  3189. ],
  3190. "radius":0.6135536
  3191. },
  3192. "bones":[
  3193. 589,
  3194. 590,
  3195. 597,
  3196. 596,
  3197. 570,
  3198. 598,
  3199. 569,
  3200. 599,
  3201. 624,
  3202. 625,
  3203. 626
  3204. ],
  3205. "materials":[
  3206. {
  3207. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3208. }
  3209. ],
  3210. "meshPath":"Assets/LatestRes/NPC/Model/fmale7-female_shirt7.lm"
  3211. },
  3212. "components":[],
  3213. "child":[]
  3214. },
  3215. {
  3216. "type":"SkinnedMeshSprite3D",
  3217. "instanceID":657,
  3218. "props":{
  3219. "name":"female_shoes7",
  3220. "active":true,
  3221. "isStatic":false,
  3222. "layer":0,
  3223. "position":[
  3224. 0,
  3225. -2.384186E-07,
  3226. 4.470341E-08
  3227. ],
  3228. "rotation":[
  3229. -0.7071069,
  3230. 0,
  3231. 0,
  3232. -0.7071067
  3233. ],
  3234. "scale":[
  3235. 1,
  3236. 1,
  3237. 1
  3238. ],
  3239. "rootBone":582,
  3240. "boundBox":{
  3241. "min":[
  3242. 0.151515,
  3243. -0.8010892,
  3244. -0.1302311
  3245. ],
  3246. "max":[
  3247. 0.6219994,
  3248. 0.2199537,
  3249. 0.06103539
  3250. ]
  3251. },
  3252. "boundSphere":{
  3253. "center":[
  3254. 0.3867572,
  3255. -0.2905678,
  3256. -0.03459784
  3257. ],
  3258. "radius":0.5701901
  3259. },
  3260. "bones":[
  3261. 574,
  3262. 575,
  3263. 576,
  3264. 583,
  3265. 582,
  3266. 584
  3267. ],
  3268. "materials":[
  3269. {
  3270. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3271. }
  3272. ],
  3273. "meshPath":"Assets/LatestRes/NPC/Model/fmale7-female_shoes7.lm"
  3274. },
  3275. "components":[],
  3276. "child":[]
  3277. }
  3278. ]
  3279. }
  3280. ]
  3281. }
  3282. }