fmale9.lh 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519
  1. {
  2. "version":"LAYAHIERARCHY:02",
  3. "data":{
  4. "type":"Sprite3D",
  5. "instanceID":753,
  6. "props":{
  7. "name":"fmale9",
  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":754,
  33. "props":{
  34. "name":"fmale9",
  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/fmale9-Idle.lani"
  67. },
  68. {
  69. "name":"Walk",
  70. "clipPath":"Assets/LatestRes/NPC/Model/fmale9-Walk.lani"
  71. },
  72. {
  73. "name":"Run",
  74. "clipPath":"Assets/LatestRes/NPC/Model/fmale9-Run.lani"
  75. },
  76. {
  77. "name":"Death",
  78. "clipPath":"Assets/LatestRes/NPC/Model/fmale9-Death.lani"
  79. }
  80. ]
  81. }
  82. ],
  83. "cullingMode":0,
  84. "playOnWake":true
  85. }
  86. ],
  87. "child":[
  88. {
  89. "type":"Sprite3D",
  90. "instanceID":755,
  91. "props":{
  92. "name":"Bip001",
  93. "active":true,
  94. "isStatic":false,
  95. "layer":0,
  96. "position":[
  97. -0.021276,
  98. 1.001756,
  99. -0.01371002
  100. ],
  101. "rotation":[
  102. 0.4566199,
  103. 0.4556417,
  104. 0.5867066,
  105. -0.4895552
  106. ],
  107. "scale":[
  108. 1,
  109. 1,
  110. 1
  111. ]
  112. },
  113. "components":[],
  114. "child":[
  115. {
  116. "type":"Sprite3D",
  117. "instanceID":756,
  118. "props":{
  119. "name":"Bip001 Footsteps",
  120. "active":true,
  121. "isStatic":false,
  122. "layer":0,
  123. "position":[
  124. 0.1567301,
  125. 0.1043804,
  126. -0.971753
  127. ],
  128. "rotation":[
  129. 0.02328876,
  130. 0.09267697,
  131. -0.7370516,
  132. -0.6690468
  133. ],
  134. "scale":[
  135. 0.9999999,
  136. 0.9999999,
  137. 0.9999999
  138. ]
  139. },
  140. "components":[],
  141. "child":[]
  142. },
  143. {
  144. "type":"Sprite3D",
  145. "instanceID":757,
  146. "props":{
  147. "name":"Bip001 Pelvis",
  148. "active":true,
  149. "isStatic":false,
  150. "layer":0,
  151. "position":[
  152. 0,
  153. 0,
  154. 0
  155. ],
  156. "rotation":[
  157. 0.4732333,
  158. 0.4977343,
  159. 0.4980266,
  160. -0.5294151
  161. ],
  162. "scale":[
  163. 1,
  164. 1,
  165. 1
  166. ]
  167. },
  168. "components":[],
  169. "child":[
  170. {
  171. "type":"Sprite3D",
  172. "instanceID":758,
  173. "props":{
  174. "name":"Bip001 Spine",
  175. "active":true,
  176. "isStatic":false,
  177. "layer":0,
  178. "position":[
  179. 0.08907032,
  180. -0.0005918741,
  181. 0.005072497
  182. ],
  183. "rotation":[
  184. 0.08736918,
  185. 0.03597695,
  186. 0.004193624,
  187. -0.9955173
  188. ],
  189. "scale":[
  190. 1,
  191. 1,
  192. 1
  193. ]
  194. },
  195. "components":[],
  196. "child":[
  197. {
  198. "type":"Sprite3D",
  199. "instanceID":759,
  200. "props":{
  201. "name":"collider",
  202. "active":true,
  203. "isStatic":false,
  204. "layer":0,
  205. "position":[
  206. 0.1419182,
  207. 0.001231005,
  208. 0.00129678
  209. ],
  210. "rotation":[
  211. 0.0261759,
  212. 0.000105761,
  213. -0.00483277,
  214. -0.9996457
  215. ],
  216. "scale":[
  217. 1,
  218. 1,
  219. 1
  220. ]
  221. },
  222. "components":[
  223. {
  224. "type":"PhysicsCollider",
  225. "restitution":0,
  226. "friction":0.5,
  227. "rollingFriction":0,
  228. "shapes":[
  229. {
  230. "type":"BoxColliderShape",
  231. "center":[
  232. -0.04409866,
  233. -0.01461273,
  234. -0.01135113
  235. ],
  236. "size":[
  237. 0.6445466,
  238. 0.3000859,
  239. 0.3260841
  240. ]
  241. }
  242. ],
  243. "isTrigger":false
  244. }
  245. ],
  246. "child":[]
  247. },
  248. {
  249. "type":"Sprite3D",
  250. "instanceID":760,
  251. "props":{
  252. "name":"AimAssist",
  253. "active":true,
  254. "isStatic":false,
  255. "layer":0,
  256. "position":[
  257. -0.01972614,
  258. -0.0009242912,
  259. 0.01559262
  260. ],
  261. "rotation":[
  262. -0.5122302,
  263. -0.3704189,
  264. -0.5569441,
  265. 0.5387239
  266. ],
  267. "scale":[
  268. 1,
  269. 1,
  270. 1
  271. ]
  272. },
  273. "components":[
  274. {
  275. "type":"PhysicsCollider",
  276. "restitution":0,
  277. "friction":0.5,
  278. "rollingFriction":0,
  279. "shapes":[
  280. {
  281. "type":"BoxColliderShape",
  282. "center":[
  283. -0.01423764,
  284. -0.1113636,
  285. -0.01545059
  286. ],
  287. "size":[
  288. 0.6795347,
  289. 1.975664,
  290. 0.4958494
  291. ]
  292. }
  293. ],
  294. "isTrigger":false
  295. }
  296. ],
  297. "child":[]
  298. },
  299. {
  300. "type":"Sprite3D",
  301. "instanceID":761,
  302. "props":{
  303. "name":"Bip001 L Thigh",
  304. "active":true,
  305. "isStatic":false,
  306. "layer":0,
  307. "position":[
  308. -0.08288348,
  309. -0.01500967,
  310. 0.0872336
  311. ],
  312. "rotation":[
  313. -0.05597841,
  314. 0.9886782,
  315. 0.1383811,
  316. -0.01524882
  317. ],
  318. "scale":[
  319. 1,
  320. 1,
  321. 1
  322. ]
  323. },
  324. "components":[],
  325. "child":[
  326. {
  327. "type":"Sprite3D",
  328. "instanceID":762,
  329. "props":{
  330. "name":"Bip001 L Calf",
  331. "active":true,
  332. "isStatic":false,
  333. "layer":0,
  334. "position":[
  335. 0.4448671,
  336. -2.980232E-08,
  337. 5.587935E-09
  338. ],
  339. "rotation":[
  340. 8.72193E-09,
  341. 8.134818E-09,
  342. 0.14496,
  343. -0.9894375
  344. ],
  345. "scale":[
  346. 1,
  347. 0.9999999,
  348. 1
  349. ]
  350. },
  351. "components":[],
  352. "child":[
  353. {
  354. "type":"Sprite3D",
  355. "instanceID":763,
  356. "props":{
  357. "name":"Bip001 L Foot",
  358. "active":true,
  359. "isStatic":false,
  360. "layer":0,
  361. "position":[
  362. 0.5160713,
  363. 5.960464E-08,
  364. -7.450581E-09
  365. ],
  366. "rotation":[
  367. 0.05276113,
  368. -0.01683834,
  369. -0.000719925,
  370. -0.9984649
  371. ],
  372. "scale":[
  373. 0.9999999,
  374. 1,
  375. 0.9999999
  376. ]
  377. },
  378. "components":[],
  379. "child":[
  380. {
  381. "type":"Sprite3D",
  382. "instanceID":764,
  383. "props":{
  384. "name":"Bip001 L Toe0",
  385. "active":true,
  386. "isStatic":false,
  387. "layer":0,
  388. "position":[
  389. 0.08885274,
  390. 0.09381813,
  391. 0
  392. ],
  393. "rotation":[
  394. -3.627943E-07,
  395. 3.53296E-08,
  396. -0.8573352,
  397. -0.5147586
  398. ],
  399. "scale":[
  400. 0.9999999,
  401. 1,
  402. 1
  403. ]
  404. },
  405. "components":[],
  406. "child":[
  407. {
  408. "type":"Sprite3D",
  409. "instanceID":765,
  410. "props":{
  411. "name":"Bip001 L Toe0Nub",
  412. "active":true,
  413. "isStatic":false,
  414. "layer":0,
  415. "position":[
  416. 0.101517,
  417. 1.862645E-09,
  418. 3.72529E-09
  419. ],
  420. "rotation":[
  421. 2.793968E-09,
  422. -1.862645E-09,
  423. 1,
  424. -3.72529E-09
  425. ],
  426. "scale":[
  427. -1,
  428. -1,
  429. -0.9999999
  430. ]
  431. },
  432. "components":[],
  433. "child":[]
  434. }
  435. ]
  436. },
  437. {
  438. "type":"Sprite3D",
  439. "instanceID":766,
  440. "props":{
  441. "name":"collider",
  442. "active":true,
  443. "isStatic":false,
  444. "layer":0,
  445. "position":[
  446. 0.05380683,
  447. 0.005065665,
  448. 0.0003344827
  449. ],
  450. "rotation":[
  451. 1.862644E-07,
  452. 7.636842E-08,
  453. -7.712512E-08,
  454. -1
  455. ],
  456. "scale":[
  457. 1,
  458. 1,
  459. 1
  460. ]
  461. },
  462. "components":[
  463. {
  464. "type":"PhysicsCollider",
  465. "restitution":0,
  466. "friction":0.5,
  467. "rollingFriction":0,
  468. "shapes":[
  469. {
  470. "type":"BoxColliderShape",
  471. "center":[
  472. 0.007476851,
  473. 0.05893485,
  474. -0.01221542
  475. ],
  476. "size":[
  477. 0.09152768,
  478. 0.2482971,
  479. 0.1244307
  480. ]
  481. }
  482. ],
  483. "isTrigger":false
  484. }
  485. ],
  486. "child":[]
  487. }
  488. ]
  489. },
  490. {
  491. "type":"Sprite3D",
  492. "instanceID":767,
  493. "props":{
  494. "name":"collider",
  495. "active":true,
  496. "isStatic":false,
  497. "layer":0,
  498. "position":[
  499. 0.1527975,
  500. 0.005069762,
  501. -0.0004637269
  502. ],
  503. "rotation":[
  504. 4.357133E-07,
  505. -5.363311E-08,
  506. 0.7071068,
  507. -0.7071068
  508. ],
  509. "scale":[
  510. 1,
  511. 1,
  512. 1
  513. ]
  514. },
  515. "components":[
  516. {
  517. "type":"PhysicsCollider",
  518. "restitution":0,
  519. "friction":0.5,
  520. "rollingFriction":0,
  521. "shapes":[
  522. {
  523. "type":"CapsuleColliderShape",
  524. "center":[
  525. 0.01123195,
  526. 0.09287056,
  527. 0.003752708
  528. ],
  529. "radius":0.05533569,
  530. "height":0.5883211,
  531. "orientation":1
  532. }
  533. ],
  534. "isTrigger":false
  535. }
  536. ],
  537. "child":[]
  538. }
  539. ]
  540. },
  541. {
  542. "type":"Sprite3D",
  543. "instanceID":768,
  544. "props":{
  545. "name":"collider",
  546. "active":true,
  547. "isStatic":false,
  548. "layer":0,
  549. "position":[
  550. 0.2459224,
  551. 0.002619401,
  552. -0.0004634447
  553. ],
  554. "rotation":[
  555. -7.91624E-09,
  556. 1.41561E-07,
  557. 0.7071065,
  558. -0.7071072
  559. ],
  560. "scale":[
  561. 1,
  562. 1,
  563. 1
  564. ]
  565. },
  566. "components":[
  567. {
  568. "type":"PhysicsCollider",
  569. "restitution":0,
  570. "friction":0.5,
  571. "rollingFriction":0,
  572. "shapes":[
  573. {
  574. "type":"CapsuleColliderShape",
  575. "center":[
  576. 0.007993147,
  577. 0.006859853,
  578. -0.003382058
  579. ],
  580. "radius":0.07764789,
  581. "height":0.4946195,
  582. "orientation":1
  583. }
  584. ],
  585. "isTrigger":false
  586. }
  587. ],
  588. "child":[]
  589. }
  590. ]
  591. },
  592. {
  593. "type":"Sprite3D",
  594. "instanceID":769,
  595. "props":{
  596. "name":"Bip001 R Thigh",
  597. "active":true,
  598. "isStatic":false,
  599. "layer":0,
  600. "position":[
  601. -0.09552622,
  602. 0.01532981,
  603. -0.08436126
  604. ],
  605. "rotation":[
  606. 0.2589485,
  607. 0.9517648,
  608. 0.1169568,
  609. -0.1158043
  610. ],
  611. "scale":[
  612. 0.9999999,
  613. 0.9999999,
  614. 0.9999999
  615. ]
  616. },
  617. "components":[],
  618. "child":[
  619. {
  620. "type":"Sprite3D",
  621. "instanceID":770,
  622. "props":{
  623. "name":"Bip001 R Calf",
  624. "active":true,
  625. "isStatic":false,
  626. "layer":0,
  627. "position":[
  628. 0.4448672,
  629. 0,
  630. -1.117587E-08
  631. ],
  632. "rotation":[
  633. 5.629724E-09,
  634. 7.419056E-09,
  635. 0.005620598,
  636. -0.9999842
  637. ],
  638. "scale":[
  639. 1,
  640. 1,
  641. 0.9999999
  642. ]
  643. },
  644. "components":[],
  645. "child":[
  646. {
  647. "type":"Sprite3D",
  648. "instanceID":771,
  649. "props":{
  650. "name":"Bip001 R Foot",
  651. "active":true,
  652. "isStatic":false,
  653. "layer":0,
  654. "position":[
  655. 0.5160713,
  656. 2.980232E-08,
  657. 7.450581E-09
  658. ],
  659. "rotation":[
  660. -0.02083331,
  661. 0.02445733,
  662. 0.02825668,
  663. -0.9990843
  664. ],
  665. "scale":[
  666. 0.9999999,
  667. 0.9999998,
  668. 0.9999998
  669. ]
  670. },
  671. "components":[],
  672. "child":[
  673. {
  674. "type":"Sprite3D",
  675. "instanceID":772,
  676. "props":{
  677. "name":"Bip001 R Toe0",
  678. "active":true,
  679. "isStatic":false,
  680. "layer":0,
  681. "position":[
  682. 0.08885276,
  683. 0.09381816,
  684. -1.862645E-09
  685. ],
  686. "rotation":[
  687. -0.002406823,
  688. -0.001061724,
  689. -0.7054856,
  690. -0.7087194
  691. ],
  692. "scale":[
  693. 1,
  694. 1,
  695. 1
  696. ]
  697. },
  698. "components":[],
  699. "child":[
  700. {
  701. "type":"Sprite3D",
  702. "instanceID":773,
  703. "props":{
  704. "name":"Bip001 R Toe0Nub",
  705. "active":true,
  706. "isStatic":false,
  707. "layer":0,
  708. "position":[
  709. 0.101517,
  710. 1.490116E-08,
  711. 0
  712. ],
  713. "rotation":[
  714. -1.862645E-09,
  715. 4.656612E-10,
  716. -1.490116E-08,
  717. -1
  718. ],
  719. "scale":[
  720. 1,
  721. 1,
  722. 1
  723. ]
  724. },
  725. "components":[],
  726. "child":[]
  727. }
  728. ]
  729. },
  730. {
  731. "type":"Sprite3D",
  732. "instanceID":774,
  733. "props":{
  734. "name":"collider",
  735. "active":true,
  736. "isStatic":false,
  737. "layer":0,
  738. "position":[
  739. 0.05488273,
  740. -0.002784664,
  741. 0.0003098427
  742. ],
  743. "rotation":[
  744. -7.636843E-08,
  745. -1.955777E-07,
  746. -1.736916E-07,
  747. -1
  748. ],
  749. "scale":[
  750. 1,
  751. 1,
  752. 1
  753. ]
  754. },
  755. "components":[
  756. {
  757. "type":"PhysicsCollider",
  758. "restitution":0,
  759. "friction":0.5,
  760. "rollingFriction":0,
  761. "shapes":[
  762. {
  763. "type":"BoxColliderShape",
  764. "center":[
  765. 0.01256435,
  766. 0.07499123,
  767. -0.00295495
  768. ],
  769. "size":[
  770. 0.1017027,
  771. 0.2567321,
  772. 0.09851577
  773. ]
  774. }
  775. ],
  776. "isTrigger":false
  777. }
  778. ],
  779. "child":[]
  780. }
  781. ]
  782. },
  783. {
  784. "type":"Sprite3D",
  785. "instanceID":775,
  786. "props":{
  787. "name":"collider",
  788. "active":true,
  789. "isStatic":false,
  790. "layer":0,
  791. "position":[
  792. 0.1536877,
  793. -0.003301278,
  794. 0.0006132514
  795. ],
  796. "rotation":[
  797. -1.453935E-07,
  798. 5.736128E-08,
  799. 0.7071066,
  800. -0.7071069
  801. ],
  802. "scale":[
  803. 1,
  804. 1,
  805. 1
  806. ]
  807. },
  808. "components":[
  809. {
  810. "type":"PhysicsCollider",
  811. "restitution":0,
  812. "friction":0.5,
  813. "rollingFriction":0,
  814. "shapes":[
  815. {
  816. "type":"CapsuleColliderShape",
  817. "center":[
  818. 0.01494378,
  819. 0.09287053,
  820. -0.0007165957
  821. ],
  822. "radius":0.05323286,
  823. "height":0.5883211,
  824. "orientation":1
  825. }
  826. ],
  827. "isTrigger":false
  828. }
  829. ],
  830. "child":[]
  831. }
  832. ]
  833. },
  834. {
  835. "type":"Sprite3D",
  836. "instanceID":776,
  837. "props":{
  838. "name":"collider",
  839. "active":true,
  840. "isStatic":false,
  841. "layer":0,
  842. "position":[
  843. 0.245647,
  844. -0.003398282,
  845. 0.0006131828
  846. ],
  847. "rotation":[
  848. -2.363231E-07,
  849. -2.277665E-07,
  850. 0.7071069,
  851. -0.7071067
  852. ],
  853. "scale":[
  854. 1,
  855. 1,
  856. 1
  857. ]
  858. },
  859. "components":[
  860. {
  861. "type":"PhysicsCollider",
  862. "restitution":0,
  863. "friction":0.5,
  864. "rollingFriction":0,
  865. "shapes":[
  866. {
  867. "type":"CapsuleColliderShape",
  868. "center":[
  869. 0.01100321,
  870. 0.006859867,
  871. 0.01066438
  872. ],
  873. "radius":0.08091222,
  874. "height":0.4946195,
  875. "orientation":1
  876. }
  877. ],
  878. "isTrigger":false
  879. }
  880. ],
  881. "child":[]
  882. }
  883. ]
  884. },
  885. {
  886. "type":"Sprite3D",
  887. "instanceID":777,
  888. "props":{
  889. "name":"Bip001 Spine1",
  890. "active":true,
  891. "isStatic":false,
  892. "layer":0,
  893. "position":[
  894. 0.1513953,
  895. -0.0001180172,
  896. -6.92904E-06
  897. ],
  898. "rotation":[
  899. -0.03747472,
  900. -0.08667144,
  901. 0.09529337,
  902. -0.9909606
  903. ],
  904. "scale":[
  905. 1,
  906. 0.9999999,
  907. 0.9999999
  908. ]
  909. },
  910. "components":[],
  911. "child":[
  912. {
  913. "type":"Sprite3D",
  914. "instanceID":778,
  915. "props":{
  916. "name":"Bip001 Spine2",
  917. "active":true,
  918. "isStatic":false,
  919. "layer":0,
  920. "position":[
  921. 0.1514053,
  922. -0.0001196861,
  923. -4.202127E-06
  924. ],
  925. "rotation":[
  926. -0.01795566,
  927. -0.008856112,
  928. 0.05748386,
  929. -0.9981457
  930. ],
  931. "scale":[
  932. 1,
  933. 0.9999999,
  934. 0.9999999
  935. ]
  936. },
  937. "components":[],
  938. "child":[
  939. {
  940. "type":"Sprite3D",
  941. "instanceID":779,
  942. "props":{
  943. "name":"Bip001 Neck",
  944. "active":true,
  945. "isStatic":false,
  946. "layer":0,
  947. "position":[
  948. 0.1514155,
  949. -5.204976E-05,
  950. 6.407499E-07
  951. ],
  952. "rotation":[
  953. 0.005762374,
  954. -0.01234138,
  955. 0.03483123,
  956. -0.9993004
  957. ],
  958. "scale":[
  959. 0.9999999,
  960. 1,
  961. 1
  962. ]
  963. },
  964. "components":[],
  965. "child":[
  966. {
  967. "type":"Sprite3D",
  968. "instanceID":780,
  969. "props":{
  970. "name":"Bip001 Head",
  971. "active":true,
  972. "isStatic":false,
  973. "layer":0,
  974. "position":[
  975. 0.06551135,
  976. -0.008063942,
  977. 0
  978. ],
  979. "rotation":[
  980. -0.05060568,
  981. 0.02765496,
  982. -0.1374329,
  983. -0.9888309
  984. ],
  985. "scale":[
  986. 1,
  987. 1,
  988. 1
  989. ]
  990. },
  991. "components":[],
  992. "child":[
  993. {
  994. "type":"Sprite3D",
  995. "instanceID":781,
  996. "props":{
  997. "name":"Bip001 HeadNub",
  998. "active":true,
  999. "isStatic":false,
  1000. "layer":0,
  1001. "position":[
  1002. 0.2281946,
  1003. 0,
  1004. -1.862645E-09
  1005. ],
  1006. "rotation":[
  1007. -5.820766E-11,
  1008. -4.656613E-10,
  1009. 2.710505E-20,
  1010. -1
  1011. ],
  1012. "scale":[
  1013. 1,
  1014. 1,
  1015. 0.9999999
  1016. ]
  1017. },
  1018. "components":[],
  1019. "child":[]
  1020. },
  1021. {
  1022. "type":"Sprite3D",
  1023. "instanceID":782,
  1024. "props":{
  1025. "name":"headPos",
  1026. "active":true,
  1027. "isStatic":false,
  1028. "layer":0,
  1029. "position":[
  1030. 0.1,
  1031. 0,
  1032. 0
  1033. ],
  1034. "rotation":[
  1035. 0,
  1036. 0,
  1037. 0,
  1038. -1
  1039. ],
  1040. "scale":[
  1041. 1,
  1042. 1,
  1043. 1
  1044. ]
  1045. },
  1046. "components":[],
  1047. "child":[]
  1048. },
  1049. {
  1050. "type":"Sprite3D",
  1051. "instanceID":783,
  1052. "props":{
  1053. "name":"collider",
  1054. "active":true,
  1055. "isStatic":false,
  1056. "layer":0,
  1057. "position":[
  1058. 0.08370216,
  1059. 0.02681345,
  1060. -0.0001286734
  1061. ],
  1062. "rotation":[
  1063. -1.93715E-07,
  1064. -5.960462E-08,
  1065. 0.7071073,
  1066. -0.7071063
  1067. ],
  1068. "scale":[
  1069. 1,
  1070. 1,
  1071. 1
  1072. ]
  1073. },
  1074. "components":[
  1075. {
  1076. "type":"PhysicsCollider",
  1077. "restitution":0,
  1078. "friction":0.5,
  1079. "rollingFriction":0,
  1080. "shapes":[
  1081. {
  1082. "type":"CapsuleColliderShape",
  1083. "center":[
  1084. -0.00409104,
  1085. -0.01142278,
  1086. 0.0004709472
  1087. ],
  1088. "radius":0.1100951,
  1089. "height":0.2922795,
  1090. "orientation":1
  1091. }
  1092. ],
  1093. "isTrigger":false
  1094. }
  1095. ],
  1096. "child":[]
  1097. }
  1098. ]
  1099. },
  1100. {
  1101. "type":"Sprite3D",
  1102. "instanceID":784,
  1103. "props":{
  1104. "name":"Bip001 L Clavicle",
  1105. "active":true,
  1106. "isStatic":false,
  1107. "layer":0,
  1108. "position":[
  1109. -0.09321177,
  1110. -0.03414124,
  1111. 0.05947228
  1112. ],
  1113. "rotation":[
  1114. 0.6340476,
  1115. -0.003098941,
  1116. 0.7717954,
  1117. -0.04801948
  1118. ],
  1119. "scale":[
  1120. 1,
  1121. 1,
  1122. 1
  1123. ]
  1124. },
  1125. "components":[],
  1126. "child":[
  1127. {
  1128. "type":"Sprite3D",
  1129. "instanceID":785,
  1130. "props":{
  1131. "name":"Bip001 L UpperArm",
  1132. "active":true,
  1133. "isStatic":false,
  1134. "layer":0,
  1135. "position":[
  1136. 0.08302394,
  1137. -1.490116E-08,
  1138. 1.192093E-07
  1139. ],
  1140. "rotation":[
  1141. -0.07237224,
  1142. -0.5595429,
  1143. 0.03458467,
  1144. -0.8249109
  1145. ],
  1146. "scale":[
  1147. 0.9999999,
  1148. 1,
  1149. 0.9999999
  1150. ]
  1151. },
  1152. "components":[],
  1153. "child":[
  1154. {
  1155. "type":"Sprite3D",
  1156. "instanceID":786,
  1157. "props":{
  1158. "name":"Bip001 L Forearm",
  1159. "active":true,
  1160. "isStatic":false,
  1161. "layer":0,
  1162. "position":[
  1163. 0.2699145,
  1164. 7.450581E-09,
  1165. 0
  1166. ],
  1167. "rotation":[
  1168. 2.251759E-08,
  1169. 3.320816E-08,
  1170. 0.2136914,
  1171. -0.9769012
  1172. ],
  1173. "scale":[
  1174. 1,
  1175. 1,
  1176. 1
  1177. ]
  1178. },
  1179. "components":[],
  1180. "child":[
  1181. {
  1182. "type":"Sprite3D",
  1183. "instanceID":787,
  1184. "props":{
  1185. "name":"Bip001 L Hand",
  1186. "active":true,
  1187. "isStatic":false,
  1188. "layer":0,
  1189. "position":[
  1190. 0.2895808,
  1191. 0,
  1192. 0
  1193. ],
  1194. "rotation":[
  1195. 0.6520343,
  1196. 0.107669,
  1197. 0.04314292,
  1198. -0.7492645
  1199. ],
  1200. "scale":[
  1201. 0.9999999,
  1202. 1,
  1203. 1
  1204. ]
  1205. },
  1206. "components":[],
  1207. "child":[
  1208. {
  1209. "type":"Sprite3D",
  1210. "instanceID":788,
  1211. "props":{
  1212. "name":"Bip001 L Finger0",
  1213. "active":true,
  1214. "isStatic":false,
  1215. "layer":0,
  1216. "position":[
  1217. 0.02279192,
  1218. 0.003467023,
  1219. -0.02227503
  1220. ],
  1221. "rotation":[
  1222. -0.9275256,
  1223. -0.2870783,
  1224. -0.1558646,
  1225. -0.1816276
  1226. ],
  1227. "scale":[
  1228. 1,
  1229. 1,
  1230. 1
  1231. ]
  1232. },
  1233. "components":[],
  1234. "child":[
  1235. {
  1236. "type":"Sprite3D",
  1237. "instanceID":789,
  1238. "props":{
  1239. "name":"Bip001 L Finger01",
  1240. "active":true,
  1241. "isStatic":false,
  1242. "layer":0,
  1243. "position":[
  1244. 0.02449107,
  1245. 1.490116E-08,
  1246. 0
  1247. ],
  1248. "rotation":[
  1249. 0.0004156742,
  1250. -0.01963171,
  1251. -0.1093269,
  1252. -0.9938119
  1253. ],
  1254. "scale":[
  1255. 1,
  1256. 1,
  1257. 1
  1258. ]
  1259. },
  1260. "components":[],
  1261. "child":[
  1262. {
  1263. "type":"Sprite3D",
  1264. "instanceID":790,
  1265. "props":{
  1266. "name":"Bip001 L Finger02",
  1267. "active":true,
  1268. "isStatic":false,
  1269. "layer":0,
  1270. "position":[
  1271. 0.03130716,
  1272. 0,
  1273. 0
  1274. ],
  1275. "rotation":[
  1276. 2.756972E-08,
  1277. -4.27159E-08,
  1278. -0.07665125,
  1279. -0.997058
  1280. ],
  1281. "scale":[
  1282. 1,
  1283. 1,
  1284. 1
  1285. ]
  1286. },
  1287. "components":[],
  1288. "child":[
  1289. {
  1290. "type":"Sprite3D",
  1291. "instanceID":791,
  1292. "props":{
  1293. "name":"Bip001 L Finger0Nub",
  1294. "active":true,
  1295. "isStatic":false,
  1296. "layer":0,
  1297. "position":[
  1298. 0.02449101,
  1299. 0,
  1300. -2.980232E-08
  1301. ],
  1302. "rotation":[
  1303. -9.313227E-10,
  1304. 0,
  1305. 0,
  1306. -1
  1307. ],
  1308. "scale":[
  1309. 0.9999999,
  1310. 0.9999999,
  1311. 0.9999999
  1312. ]
  1313. },
  1314. "components":[],
  1315. "child":[]
  1316. }
  1317. ]
  1318. }
  1319. ]
  1320. }
  1321. ]
  1322. },
  1323. {
  1324. "type":"Sprite3D",
  1325. "instanceID":792,
  1326. "props":{
  1327. "name":"Bip001 L Finger1",
  1328. "active":true,
  1329. "isStatic":false,
  1330. "layer":0,
  1331. "position":[
  1332. 0.09003779,
  1333. 0.002995193,
  1334. -0.02621096
  1335. ],
  1336. "rotation":[
  1337. -0.03257857,
  1338. -0.04734358,
  1339. -0.5665357,
  1340. -0.8220308
  1341. ],
  1342. "scale":[
  1343. 1,
  1344. 1,
  1345. 1
  1346. ]
  1347. },
  1348. "components":[],
  1349. "child":[
  1350. {
  1351. "type":"Sprite3D",
  1352. "instanceID":793,
  1353. "props":{
  1354. "name":"Bip001 L Finger11",
  1355. "active":true,
  1356. "isStatic":false,
  1357. "layer":0,
  1358. "position":[
  1359. 0.02575362,
  1360. -2.980232E-08,
  1361. 0
  1362. ],
  1363. "rotation":[
  1364. 2.900222E-08,
  1365. -6.862934E-08,
  1366. -0.8640854,
  1367. -0.5033452
  1368. ],
  1369. "scale":[
  1370. 1,
  1371. 1,
  1372. 1
  1373. ]
  1374. },
  1375. "components":[],
  1376. "child":[
  1377. {
  1378. "type":"Sprite3D",
  1379. "instanceID":794,
  1380. "props":{
  1381. "name":"Bip001 L Finger12",
  1382. "active":true,
  1383. "isStatic":false,
  1384. "layer":0,
  1385. "position":[
  1386. 0.02463901,
  1387. 0,
  1388. 0
  1389. ],
  1390. "rotation":[
  1391. -5.711234E-08,
  1392. 7.735797E-08,
  1393. -0.2561652,
  1394. -0.966633
  1395. ],
  1396. "scale":[
  1397. 1,
  1398. 1,
  1399. 1
  1400. ]
  1401. },
  1402. "components":[],
  1403. "child":[
  1404. {
  1405. "type":"Sprite3D",
  1406. "instanceID":795,
  1407. "props":{
  1408. "name":"Bip001 L Finger1Nub",
  1409. "active":true,
  1410. "isStatic":false,
  1411. "layer":0,
  1412. "position":[
  1413. 0.02396786,
  1414. -2.980232E-08,
  1415. 2.980232E-08
  1416. ],
  1417. "rotation":[
  1418. 5.587936E-09,
  1419. -2.081668E-17,
  1420. 3.72529E-09,
  1421. -1
  1422. ],
  1423. "scale":[
  1424. 1,
  1425. 0.9999999,
  1426. 1
  1427. ]
  1428. },
  1429. "components":[],
  1430. "child":[]
  1431. }
  1432. ]
  1433. }
  1434. ]
  1435. }
  1436. ]
  1437. },
  1438. {
  1439. "type":"Sprite3D",
  1440. "instanceID":796,
  1441. "props":{
  1442. "name":"Bip001 L Finger2",
  1443. "active":true,
  1444. "isStatic":false,
  1445. "layer":0,
  1446. "position":[
  1447. 0.08955473,
  1448. 0.003975034,
  1449. -0.006442219
  1450. ],
  1451. "rotation":[
  1452. 0.04224809,
  1453. 0.06084426,
  1454. -0.6934045,
  1455. -0.716731
  1456. ],
  1457. "scale":[
  1458. 1,
  1459. 1,
  1460. 1
  1461. ]
  1462. },
  1463. "components":[],
  1464. "child":[
  1465. {
  1466. "type":"Sprite3D",
  1467. "instanceID":797,
  1468. "props":{
  1469. "name":"Bip001 L Finger21",
  1470. "active":true,
  1471. "isStatic":false,
  1472. "layer":0,
  1473. "position":[
  1474. 0.03108788,
  1475. 2.980232E-08,
  1476. 0
  1477. ],
  1478. "rotation":[
  1479. -3.232604E-08,
  1480. 1.851502E-08,
  1481. 0.8677455,
  1482. 0.4970089
  1483. ],
  1484. "scale":[
  1485. 0.9999999,
  1486. 0.9999999,
  1487. 0.9999999
  1488. ]
  1489. },
  1490. "components":[],
  1491. "child":[
  1492. {
  1493. "type":"Sprite3D",
  1494. "instanceID":798,
  1495. "props":{
  1496. "name":"Bip001 L Finger22",
  1497. "active":true,
  1498. "isStatic":false,
  1499. "layer":0,
  1500. "position":[
  1501. 0.02312118,
  1502. 0,
  1503. 0
  1504. ],
  1505. "rotation":[
  1506. 4.148405E-08,
  1507. 1.834273E-08,
  1508. -0.08149074,
  1509. -0.9966741
  1510. ],
  1511. "scale":[
  1512. 1,
  1513. 0.9999999,
  1514. 1
  1515. ]
  1516. },
  1517. "components":[],
  1518. "child":[
  1519. {
  1520. "type":"Sprite3D",
  1521. "instanceID":799,
  1522. "props":{
  1523. "name":"Bip001 L Finger2Nub",
  1524. "active":true,
  1525. "isStatic":false,
  1526. "layer":0,
  1527. "position":[
  1528. 0.02495694,
  1529. 0,
  1530. 0
  1531. ],
  1532. "rotation":[
  1533. -2.793968E-09,
  1534. -7.450581E-09,
  1535. 2.081669E-17,
  1536. -1
  1537. ],
  1538. "scale":[
  1539. 0.9999999,
  1540. 0.9999999,
  1541. 1
  1542. ]
  1543. },
  1544. "components":[],
  1545. "child":[]
  1546. }
  1547. ]
  1548. }
  1549. ]
  1550. }
  1551. ]
  1552. },
  1553. {
  1554. "type":"Sprite3D",
  1555. "instanceID":800,
  1556. "props":{
  1557. "name":"Bip001 L Finger3",
  1558. "active":true,
  1559. "isStatic":false,
  1560. "layer":0,
  1561. "position":[
  1562. 0.08418936,
  1563. 0.003210247,
  1564. 0.01378983
  1565. ],
  1566. "rotation":[
  1567. 0.07565791,
  1568. 0.06349319,
  1569. -0.6333945,
  1570. -0.7674998
  1571. ],
  1572. "scale":[
  1573. 1,
  1574. 1,
  1575. 1
  1576. ]
  1577. },
  1578. "components":[],
  1579. "child":[
  1580. {
  1581. "type":"Sprite3D",
  1582. "instanceID":801,
  1583. "props":{
  1584. "name":"Bip001 L Finger31",
  1585. "active":true,
  1586. "isStatic":false,
  1587. "layer":0,
  1588. "position":[
  1589. 0.02815861,
  1590. -2.980232E-08,
  1591. 0
  1592. ],
  1593. "rotation":[
  1594. -5.704893E-09,
  1595. -1.565279E-08,
  1596. -0.6872134,
  1597. -0.7264556
  1598. ],
  1599. "scale":[
  1600. 1,
  1601. 1,
  1602. 1
  1603. ]
  1604. },
  1605. "components":[],
  1606. "child":[
  1607. {
  1608. "type":"Sprite3D",
  1609. "instanceID":802,
  1610. "props":{
  1611. "name":"Bip001 L Finger32",
  1612. "active":true,
  1613. "isStatic":false,
  1614. "layer":0,
  1615. "position":[
  1616. 0.02565232,
  1617. 0,
  1618. 2.980232E-08
  1619. ],
  1620. "rotation":[
  1621. 9.873553E-09,
  1622. 1.116054E-08,
  1623. -0.7489709,
  1624. -0.6626029
  1625. ],
  1626. "scale":[
  1627. 0.9999999,
  1628. 1,
  1629. 1
  1630. ]
  1631. },
  1632. "components":[],
  1633. "child":[
  1634. {
  1635. "type":"Sprite3D",
  1636. "instanceID":803,
  1637. "props":{
  1638. "name":"Bip001 L Finger3Nub",
  1639. "active":true,
  1640. "isStatic":false,
  1641. "layer":0,
  1642. "position":[
  1643. 0.02478564,
  1644. 5.960464E-08,
  1645. 0
  1646. ],
  1647. "rotation":[
  1648. 7.450581E-09,
  1649. -7.450581E-09,
  1650. 1.490116E-08,
  1651. -1
  1652. ],
  1653. "scale":[
  1654. 1,
  1655. 0.9999999,
  1656. 1
  1657. ]
  1658. },
  1659. "components":[],
  1660. "child":[]
  1661. }
  1662. ]
  1663. }
  1664. ]
  1665. }
  1666. ]
  1667. },
  1668. {
  1669. "type":"Sprite3D",
  1670. "instanceID":804,
  1671. "props":{
  1672. "name":"Bip001 L Finger4",
  1673. "active":true,
  1674. "isStatic":false,
  1675. "layer":0,
  1676. "position":[
  1677. 0.0796974,
  1678. 0.004698992,
  1679. 0.03242943
  1680. ],
  1681. "rotation":[
  1682. 0.08276477,
  1683. 0.1064015,
  1684. -0.6061246,
  1685. -0.7838633
  1686. ],
  1687. "scale":[
  1688. 1,
  1689. 1,
  1690. 1
  1691. ]
  1692. },
  1693. "components":[],
  1694. "child":[
  1695. {
  1696. "type":"Sprite3D",
  1697. "instanceID":805,
  1698. "props":{
  1699. "name":"Bip001 L Finger41",
  1700. "active":true,
  1701. "isStatic":false,
  1702. "layer":0,
  1703. "position":[
  1704. 0.01974499,
  1705. -2.980232E-08,
  1706. 0
  1707. ],
  1708. "rotation":[
  1709. -5.319152E-09,
  1710. 5.217064E-09,
  1711. -0.7139246,
  1712. -0.7002226
  1713. ],
  1714. "scale":[
  1715. 1,
  1716. 1,
  1717. 1
  1718. ]
  1719. },
  1720. "components":[],
  1721. "child":[
  1722. {
  1723. "type":"Sprite3D",
  1724. "instanceID":806,
  1725. "props":{
  1726. "name":"Bip001 L Finger42",
  1727. "active":true,
  1728. "isStatic":false,
  1729. "layer":0,
  1730. "position":[
  1731. 0.02124193,
  1732. 0,
  1733. -2.980232E-08
  1734. ],
  1735. "rotation":[
  1736. -1.301697E-08,
  1737. -1.748922E-08,
  1738. -0.5498561,
  1739. -0.8352594
  1740. ],
  1741. "scale":[
  1742. 0.9999999,
  1743. 0.9999999,
  1744. 1
  1745. ]
  1746. },
  1747. "components":[],
  1748. "child":[
  1749. {
  1750. "type":"Sprite3D",
  1751. "instanceID":807,
  1752. "props":{
  1753. "name":"Bip001 L Finger4Nub",
  1754. "active":true,
  1755. "isStatic":false,
  1756. "layer":0,
  1757. "position":[
  1758. 0.02110851,
  1759. -2.980232E-08,
  1760. 0
  1761. ],
  1762. "rotation":[
  1763. 0,
  1764. 0,
  1765. 1.490116E-08,
  1766. -1
  1767. ],
  1768. "scale":[
  1769. 0.9999999,
  1770. 1,
  1771. 0.9999999
  1772. ]
  1773. },
  1774. "components":[],
  1775. "child":[]
  1776. }
  1777. ]
  1778. }
  1779. ]
  1780. }
  1781. ]
  1782. },
  1783. {
  1784. "type":"Sprite3D",
  1785. "instanceID":808,
  1786. "props":{
  1787. "name":"collider",
  1788. "active":true,
  1789. "isStatic":false,
  1790. "layer":0,
  1791. "position":[
  1792. 0.0673434,
  1793. 0.0115341,
  1794. 0.003364162
  1795. ],
  1796. "rotation":[
  1797. -1.519918E-06,
  1798. -4.172323E-07,
  1799. -4.991886E-07,
  1800. -1
  1801. ],
  1802. "scale":[
  1803. 1,
  1804. 1,
  1805. 1
  1806. ]
  1807. },
  1808. "components":[
  1809. {
  1810. "type":"PhysicsCollider",
  1811. "restitution":0,
  1812. "friction":0.5,
  1813. "rollingFriction":0,
  1814. "shapes":[
  1815. {
  1816. "type":"BoxColliderShape",
  1817. "center":[
  1818. -0.007629189,
  1819. 0.006033795,
  1820. 0.001223894
  1821. ],
  1822. "size":[
  1823. 0.0952789,
  1824. 0.04974617,
  1825. 0.08006321
  1826. ]
  1827. }
  1828. ],
  1829. "isTrigger":false
  1830. }
  1831. ],
  1832. "child":[]
  1833. }
  1834. ]
  1835. },
  1836. {
  1837. "type":"Sprite3D",
  1838. "instanceID":809,
  1839. "props":{
  1840. "name":"collider",
  1841. "active":true,
  1842. "isStatic":false,
  1843. "layer":0,
  1844. "position":[
  1845. 0.1257413,
  1846. 0.004551035,
  1847. -0.002461175
  1848. ],
  1849. "rotation":[
  1850. 2.923876E-07,
  1851. 8.463628E-08,
  1852. 0.7071065,
  1853. -0.7071072
  1854. ],
  1855. "scale":[
  1856. 1,
  1857. 1,
  1858. 1
  1859. ]
  1860. },
  1861. "components":[
  1862. {
  1863. "type":"PhysicsCollider",
  1864. "restitution":0,
  1865. "friction":0.5,
  1866. "rollingFriction":0,
  1867. "shapes":[
  1868. {
  1869. "type":"CapsuleColliderShape",
  1870. "center":[
  1871. -0.00083379,
  1872. 0.02514257,
  1873. -0.001924161
  1874. ],
  1875. "radius":0.03300484,
  1876. "height":0.3246626,
  1877. "orientation":1
  1878. }
  1879. ],
  1880. "isTrigger":false
  1881. }
  1882. ],
  1883. "child":[]
  1884. }
  1885. ]
  1886. },
  1887. {
  1888. "type":"Sprite3D",
  1889. "instanceID":810,
  1890. "props":{
  1891. "name":"collider",
  1892. "active":true,
  1893. "isStatic":false,
  1894. "layer":0,
  1895. "position":[
  1896. 0.1439326,
  1897. 0.0009035962,
  1898. -0.002461374
  1899. ],
  1900. "rotation":[
  1901. 1.117587E-07,
  1902. -4.76837E-07,
  1903. 0.7071068,
  1904. -0.7071069
  1905. ],
  1906. "scale":[
  1907. 1,
  1908. 1,
  1909. 1
  1910. ]
  1911. },
  1912. "components":[
  1913. {
  1914. "type":"PhysicsCollider",
  1915. "restitution":0,
  1916. "friction":0.5,
  1917. "rollingFriction":0,
  1918. "shapes":[
  1919. {
  1920. "type":"CapsuleColliderShape",
  1921. "center":[
  1922. 0.00360846,
  1923. 0.01213855,
  1924. 0.001580297
  1925. ],
  1926. "radius":0.04065445,
  1927. "height":0.3562577,
  1928. "orientation":1
  1929. }
  1930. ],
  1931. "isTrigger":false
  1932. }
  1933. ],
  1934. "child":[]
  1935. }
  1936. ]
  1937. }
  1938. ]
  1939. },
  1940. {
  1941. "type":"Sprite3D",
  1942. "instanceID":811,
  1943. "props":{
  1944. "name":"Bip001 R Clavicle",
  1945. "active":true,
  1946. "isStatic":false,
  1947. "layer":0,
  1948. "position":[
  1949. -0.09019649,
  1950. -0.03260285,
  1951. -0.06475195
  1952. ],
  1953. "rotation":[
  1954. -0.6821445,
  1955. 0.05979518,
  1956. 0.7220058,
  1957. -0.09905104
  1958. ],
  1959. "scale":[
  1960. 1,
  1961. 1,
  1962. 1
  1963. ]
  1964. },
  1965. "components":[],
  1966. "child":[
  1967. {
  1968. "type":"Sprite3D",
  1969. "instanceID":812,
  1970. "props":{
  1971. "name":"Bip001 R UpperArm",
  1972. "active":true,
  1973. "isStatic":false,
  1974. "layer":0,
  1975. "position":[
  1976. 0.08302394,
  1977. 0,
  1978. -1.192093E-07
  1979. ],
  1980. "rotation":[
  1981. 0.06973756,
  1982. 0.5427405,
  1983. -0.05712075,
  1984. -0.8350489
  1985. ],
  1986. "scale":[
  1987. 1,
  1988. 1,
  1989. 1
  1990. ]
  1991. },
  1992. "components":[],
  1993. "child":[
  1994. {
  1995. "type":"Sprite3D",
  1996. "instanceID":813,
  1997. "props":{
  1998. "name":"Bip001 R Forearm",
  1999. "active":true,
  2000. "isStatic":false,
  2001. "layer":0,
  2002. "position":[
  2003. 0.2699145,
  2004. 3.72529E-09,
  2005. -5.960464E-08
  2006. ],
  2007. "rotation":[
  2008. -8.908255E-09,
  2009. -1.407831E-08,
  2010. 0.1003465,
  2011. -0.9949526
  2012. ],
  2013. "scale":[
  2014. 0.9999998,
  2015. 0.9999997,
  2016. 0.9999999
  2017. ]
  2018. },
  2019. "components":[],
  2020. "child":[
  2021. {
  2022. "type":"Sprite3D",
  2023. "instanceID":814,
  2024. "props":{
  2025. "name":"Bip001 R Hand",
  2026. "active":true,
  2027. "isStatic":false,
  2028. "layer":0,
  2029. "position":[
  2030. 0.2895808,
  2031. 2.980232E-08,
  2032. 2.980232E-08
  2033. ],
  2034. "rotation":[
  2035. -0.6520343,
  2036. -0.107669,
  2037. 0.04314291,
  2038. -0.7492645
  2039. ],
  2040. "scale":[
  2041. 0.9999999,
  2042. 1,
  2043. 1
  2044. ]
  2045. },
  2046. "components":[],
  2047. "child":[
  2048. {
  2049. "type":"Sprite3D",
  2050. "instanceID":815,
  2051. "props":{
  2052. "name":"Bip001 R Finger0",
  2053. "active":true,
  2054. "isStatic":false,
  2055. "layer":0,
  2056. "position":[
  2057. 0.02279198,
  2058. 0.003467023,
  2059. 0.02227505
  2060. ],
  2061. "rotation":[
  2062. -0.9275256,
  2063. -0.2870782,
  2064. 0.1558645,
  2065. 0.1816276
  2066. ],
  2067. "scale":[
  2068. 1,
  2069. 0.9999999,
  2070. 1
  2071. ]
  2072. },
  2073. "components":[],
  2074. "child":[
  2075. {
  2076. "type":"Sprite3D",
  2077. "instanceID":816,
  2078. "props":{
  2079. "name":"Bip001 R Finger01",
  2080. "active":true,
  2081. "isStatic":false,
  2082. "layer":0,
  2083. "position":[
  2084. 0.02449101,
  2085. 0,
  2086. -1.490116E-08
  2087. ],
  2088. "rotation":[
  2089. -0.0004156984,
  2090. 0.01963171,
  2091. -0.1093269,
  2092. -0.9938119
  2093. ],
  2094. "scale":[
  2095. 0.9999999,
  2096. 1,
  2097. 1
  2098. ]
  2099. },
  2100. "components":[],
  2101. "child":[
  2102. {
  2103. "type":"Sprite3D",
  2104. "instanceID":817,
  2105. "props":{
  2106. "name":"Bip001 R Finger02",
  2107. "active":true,
  2108. "isStatic":false,
  2109. "layer":0,
  2110. "position":[
  2111. 0.03130716,
  2112. -2.980232E-08,
  2113. 1.490116E-08
  2114. ],
  2115. "rotation":[
  2116. -3.997673E-09,
  2117. 5.200061E-08,
  2118. -0.07665125,
  2119. -0.997058
  2120. ],
  2121. "scale":[
  2122. 1,
  2123. 1,
  2124. 1
  2125. ]
  2126. },
  2127. "components":[],
  2128. "child":[
  2129. {
  2130. "type":"Sprite3D",
  2131. "instanceID":818,
  2132. "props":{
  2133. "name":"Bip001 R Finger0Nub",
  2134. "active":true,
  2135. "isStatic":false,
  2136. "layer":0,
  2137. "position":[
  2138. 0.02449101,
  2139. 0,
  2140. 0
  2141. ],
  2142. "rotation":[
  2143. 5.551116E-17,
  2144. 7.450581E-09,
  2145. 1,
  2146. 7.450581E-09
  2147. ],
  2148. "scale":[
  2149. -0.9999999,
  2150. -0.9999999,
  2151. -1
  2152. ]
  2153. },
  2154. "components":[],
  2155. "child":[]
  2156. }
  2157. ]
  2158. }
  2159. ]
  2160. }
  2161. ]
  2162. },
  2163. {
  2164. "type":"Sprite3D",
  2165. "instanceID":819,
  2166. "props":{
  2167. "name":"Bip001 R Finger1",
  2168. "active":true,
  2169. "isStatic":false,
  2170. "layer":0,
  2171. "position":[
  2172. 0.09003788,
  2173. 0.002995193,
  2174. 0.02621098
  2175. ],
  2176. "rotation":[
  2177. 0.03257857,
  2178. 0.04734362,
  2179. -0.5665357,
  2180. -0.8220308
  2181. ],
  2182. "scale":[
  2183. 0.9999999,
  2184. 0.9999998,
  2185. 0.9999999
  2186. ]
  2187. },
  2188. "components":[],
  2189. "child":[
  2190. {
  2191. "type":"Sprite3D",
  2192. "instanceID":820,
  2193. "props":{
  2194. "name":"Bip001 R Finger11",
  2195. "active":true,
  2196. "isStatic":false,
  2197. "layer":0,
  2198. "position":[
  2199. 0.02575356,
  2200. 0,
  2201. 0
  2202. ],
  2203. "rotation":[
  2204. -5.125576E-09,
  2205. 5.040952E-08,
  2206. -0.8640854,
  2207. -0.5033452
  2208. ],
  2209. "scale":[
  2210. 0.9999999,
  2211. 1,
  2212. 0.9999999
  2213. ]
  2214. },
  2215. "components":[],
  2216. "child":[
  2217. {
  2218. "type":"Sprite3D",
  2219. "instanceID":821,
  2220. "props":{
  2221. "name":"Bip001 R Finger12",
  2222. "active":true,
  2223. "isStatic":false,
  2224. "layer":0,
  2225. "position":[
  2226. 0.02463907,
  2227. 0,
  2228. 0
  2229. ],
  2230. "rotation":[
  2231. 3.835081E-08,
  2232. -2.837557E-08,
  2233. -0.2561652,
  2234. -0.966633
  2235. ],
  2236. "scale":[
  2237. 1,
  2238. 1,
  2239. 1
  2240. ]
  2241. },
  2242. "components":[],
  2243. "child":[
  2244. {
  2245. "type":"Sprite3D",
  2246. "instanceID":822,
  2247. "props":{
  2248. "name":"Bip001 R Finger1Nub",
  2249. "active":true,
  2250. "isStatic":false,
  2251. "layer":0,
  2252. "position":[
  2253. 0.02396786,
  2254. 1.490116E-08,
  2255. 7.450581E-09
  2256. ],
  2257. "rotation":[
  2258. 3.72529E-09,
  2259. -9.313225E-10,
  2260. 1,
  2261. -7.450581E-09
  2262. ],
  2263. "scale":[
  2264. -1,
  2265. -1,
  2266. -1
  2267. ]
  2268. },
  2269. "components":[],
  2270. "child":[]
  2271. }
  2272. ]
  2273. }
  2274. ]
  2275. }
  2276. ]
  2277. },
  2278. {
  2279. "type":"Sprite3D",
  2280. "instanceID":823,
  2281. "props":{
  2282. "name":"Bip001 R Finger2",
  2283. "active":true,
  2284. "isStatic":false,
  2285. "layer":0,
  2286. "position":[
  2287. 0.08955485,
  2288. 0.003975034,
  2289. 0.006442206
  2290. ],
  2291. "rotation":[
  2292. -0.04224811,
  2293. -0.06084425,
  2294. -0.6934045,
  2295. -0.716731
  2296. ],
  2297. "scale":[
  2298. 0.9999999,
  2299. 1,
  2300. 1
  2301. ]
  2302. },
  2303. "components":[],
  2304. "child":[
  2305. {
  2306. "type":"Sprite3D",
  2307. "instanceID":824,
  2308. "props":{
  2309. "name":"Bip001 R Finger21",
  2310. "active":true,
  2311. "isStatic":false,
  2312. "layer":0,
  2313. "position":[
  2314. 0.03108788,
  2315. -5.960464E-08,
  2316. -7.450581E-09
  2317. ],
  2318. "rotation":[
  2319. 1.869379E-08,
  2320. -1.98298E-08,
  2321. 0.8677455,
  2322. 0.4970089
  2323. ],
  2324. "scale":[
  2325. 0.9999999,
  2326. 1,
  2327. 0.9999999
  2328. ]
  2329. },
  2330. "components":[],
  2331. "child":[
  2332. {
  2333. "type":"Sprite3D",
  2334. "instanceID":825,
  2335. "props":{
  2336. "name":"Bip001 R Finger22",
  2337. "active":true,
  2338. "isStatic":false,
  2339. "layer":0,
  2340. "position":[
  2341. 0.02312118,
  2342. 0,
  2343. 7.450581E-09
  2344. ],
  2345. "rotation":[
  2346. -5.5711E-08,
  2347. -1.576825E-08,
  2348. -0.08149074,
  2349. -0.9966741
  2350. ],
  2351. "scale":[
  2352. 1,
  2353. 0.9999999,
  2354. 1
  2355. ]
  2356. },
  2357. "components":[],
  2358. "child":[
  2359. {
  2360. "type":"Sprite3D",
  2361. "instanceID":826,
  2362. "props":{
  2363. "name":"Bip001 R Finger2Nub",
  2364. "active":true,
  2365. "isStatic":false,
  2366. "layer":0,
  2367. "position":[
  2368. 0.024957,
  2369. 1.490116E-08,
  2370. 7.450581E-09
  2371. ],
  2372. "rotation":[
  2373. 3.72529E-09,
  2374. -9.313225E-09,
  2375. 1,
  2376. -2.653788E-17
  2377. ],
  2378. "scale":[
  2379. -1,
  2380. -1,
  2381. -1
  2382. ]
  2383. },
  2384. "components":[],
  2385. "child":[]
  2386. }
  2387. ]
  2388. }
  2389. ]
  2390. }
  2391. ]
  2392. },
  2393. {
  2394. "type":"Sprite3D",
  2395. "instanceID":827,
  2396. "props":{
  2397. "name":"Bip001 R Finger3",
  2398. "active":true,
  2399. "isStatic":false,
  2400. "layer":0,
  2401. "position":[
  2402. 0.08418941,
  2403. 0.003210247,
  2404. -0.01378982
  2405. ],
  2406. "rotation":[
  2407. -0.07565792,
  2408. -0.06349318,
  2409. -0.6333945,
  2410. -0.7674998
  2411. ],
  2412. "scale":[
  2413. 1,
  2414. 0.9999999,
  2415. 0.9999999
  2416. ]
  2417. },
  2418. "components":[],
  2419. "child":[
  2420. {
  2421. "type":"Sprite3D",
  2422. "instanceID":828,
  2423. "props":{
  2424. "name":"Bip001 R Finger31",
  2425. "active":true,
  2426. "isStatic":false,
  2427. "layer":0,
  2428. "position":[
  2429. 0.02815861,
  2430. -2.980232E-08,
  2431. 0
  2432. ],
  2433. "rotation":[
  2434. -5.412516E-09,
  2435. -5.120138E-09,
  2436. -0.6872134,
  2437. -0.7264556
  2438. ],
  2439. "scale":[
  2440. 1,
  2441. 1,
  2442. 1
  2443. ]
  2444. },
  2445. "components":[],
  2446. "child":[
  2447. {
  2448. "type":"Sprite3D",
  2449. "instanceID":829,
  2450. "props":{
  2451. "name":"Bip001 R Finger32",
  2452. "active":true,
  2453. "isStatic":false,
  2454. "layer":0,
  2455. "position":[
  2456. 0.02565229,
  2457. 0,
  2458. -1.490116E-08
  2459. ],
  2460. "rotation":[
  2461. -2.468388E-09,
  2462. -2.790134E-09,
  2463. -0.7489709,
  2464. -0.662603
  2465. ],
  2466. "scale":[
  2467. 0.9999999,
  2468. 1,
  2469. 1
  2470. ]
  2471. },
  2472. "components":[],
  2473. "child":[
  2474. {
  2475. "type":"Sprite3D",
  2476. "instanceID":830,
  2477. "props":{
  2478. "name":"Bip001 R Finger3Nub",
  2479. "active":true,
  2480. "isStatic":false,
  2481. "layer":0,
  2482. "position":[
  2483. 0.02478564,
  2484. 0,
  2485. 7.450581E-09
  2486. ],
  2487. "rotation":[
  2488. 3.72529E-09,
  2489. 3.72529E-09,
  2490. 1,
  2491. -1.490116E-08
  2492. ],
  2493. "scale":[
  2494. -1,
  2495. -1,
  2496. -1
  2497. ]
  2498. },
  2499. "components":[],
  2500. "child":[]
  2501. }
  2502. ]
  2503. }
  2504. ]
  2505. }
  2506. ]
  2507. },
  2508. {
  2509. "type":"Sprite3D",
  2510. "instanceID":831,
  2511. "props":{
  2512. "name":"Bip001 R Finger4",
  2513. "active":true,
  2514. "isStatic":false,
  2515. "layer":0,
  2516. "position":[
  2517. 0.07969743,
  2518. 0.004698932,
  2519. -0.03242943
  2520. ],
  2521. "rotation":[
  2522. -0.08276477,
  2523. -0.1064015,
  2524. -0.6061245,
  2525. -0.7838634
  2526. ],
  2527. "scale":[
  2528. 1,
  2529. 0.9999999,
  2530. 0.9999999
  2531. ]
  2532. },
  2533. "components":[],
  2534. "child":[
  2535. {
  2536. "type":"Sprite3D",
  2537. "instanceID":832,
  2538. "props":{
  2539. "name":"Bip001 R Finger41",
  2540. "active":true,
  2541. "isStatic":false,
  2542. "layer":0,
  2543. "position":[
  2544. 0.01974499,
  2545. -2.980232E-08,
  2546. -1.490116E-08
  2547. ],
  2548. "rotation":[
  2549. -1.043413E-08,
  2550. -1.063831E-08,
  2551. -0.7139247,
  2552. -0.7002226
  2553. ],
  2554. "scale":[
  2555. 1,
  2556. 1,
  2557. 0.9999999
  2558. ]
  2559. },
  2560. "components":[],
  2561. "child":[
  2562. {
  2563. "type":"Sprite3D",
  2564. "instanceID":833,
  2565. "props":{
  2566. "name":"Bip001 R Finger42",
  2567. "active":true,
  2568. "isStatic":false,
  2569. "layer":0,
  2570. "position":[
  2571. 0.0212419,
  2572. 5.960464E-08,
  2573. 0
  2574. ],
  2575. "rotation":[
  2576. 5.238004E-09,
  2577. 1.236829E-08,
  2578. -0.5498561,
  2579. -0.8352594
  2580. ],
  2581. "scale":[
  2582. 0.9999999,
  2583. 0.9999999,
  2584. 0.9999999
  2585. ]
  2586. },
  2587. "components":[],
  2588. "child":[
  2589. {
  2590. "type":"Sprite3D",
  2591. "instanceID":834,
  2592. "props":{
  2593. "name":"Bip001 R Finger4Nub",
  2594. "active":true,
  2595. "isStatic":false,
  2596. "layer":0,
  2597. "position":[
  2598. 0.02110851,
  2599. 2.980232E-08,
  2600. 0
  2601. ],
  2602. "rotation":[
  2603. -7.45058E-09,
  2604. -1.862645E-08,
  2605. 1,
  2606. -1.490116E-08
  2607. ],
  2608. "scale":[
  2609. -1,
  2610. -0.9999999,
  2611. -1
  2612. ]
  2613. },
  2614. "components":[],
  2615. "child":[]
  2616. }
  2617. ]
  2618. }
  2619. ]
  2620. }
  2621. ]
  2622. },
  2623. {
  2624. "type":"Sprite3D",
  2625. "instanceID":835,
  2626. "props":{
  2627. "name":"gunPos",
  2628. "active":true,
  2629. "isStatic":false,
  2630. "layer":0,
  2631. "position":[
  2632. 0,
  2633. 0,
  2634. 0
  2635. ],
  2636. "rotation":[
  2637. 0,
  2638. 0,
  2639. 0,
  2640. -1
  2641. ],
  2642. "scale":[
  2643. 1,
  2644. 1,
  2645. 1
  2646. ]
  2647. },
  2648. "components":[],
  2649. "child":[]
  2650. },
  2651. {
  2652. "type":"Sprite3D",
  2653. "instanceID":836,
  2654. "props":{
  2655. "name":"collider",
  2656. "active":true,
  2657. "isStatic":false,
  2658. "layer":0,
  2659. "position":[
  2660. 0.06770954,
  2661. 0.0105932,
  2662. 0.02978235
  2663. ],
  2664. "rotation":[
  2665. 8.94069E-08,
  2666. -4.097816E-07,
  2667. -1.788138E-07,
  2668. -1
  2669. ],
  2670. "scale":[
  2671. 1,
  2672. 1,
  2673. 1
  2674. ]
  2675. },
  2676. "components":[
  2677. {
  2678. "type":"PhysicsCollider",
  2679. "restitution":0,
  2680. "friction":0.5,
  2681. "rollingFriction":0,
  2682. "shapes":[
  2683. {
  2684. "type":"BoxColliderShape",
  2685. "center":[
  2686. -0.003480286,
  2687. 0.006029905,
  2688. -0.02930724
  2689. ],
  2690. "size":[
  2691. 0.07932636,
  2692. 0.05531985,
  2693. 0.08135739
  2694. ]
  2695. }
  2696. ],
  2697. "isTrigger":false
  2698. }
  2699. ],
  2700. "child":[]
  2701. }
  2702. ]
  2703. },
  2704. {
  2705. "type":"Sprite3D",
  2706. "instanceID":837,
  2707. "props":{
  2708. "name":"collider",
  2709. "active":true,
  2710. "isStatic":false,
  2711. "layer":0,
  2712. "position":[
  2713. 0.1199225,
  2714. 0.001456727,
  2715. 0.002222795
  2716. ],
  2717. "rotation":[
  2718. -6.145475E-08,
  2719. -1.695826E-07,
  2720. 0.7071071,
  2721. -0.7071065
  2722. ],
  2723. "scale":[
  2724. 1,
  2725. 1,
  2726. 1
  2727. ]
  2728. },
  2729. "components":[
  2730. {
  2731. "type":"PhysicsCollider",
  2732. "restitution":0,
  2733. "friction":0.5,
  2734. "rollingFriction":0,
  2735. "shapes":[
  2736. {
  2737. "type":"CapsuleColliderShape",
  2738. "center":[
  2739. 0.001976177,
  2740. 0.02514257,
  2741. 0.002894619
  2742. ],
  2743. "radius":0.03331672,
  2744. "height":0.3246627,
  2745. "orientation":1
  2746. }
  2747. ],
  2748. "isTrigger":false
  2749. }
  2750. ],
  2751. "child":[]
  2752. }
  2753. ]
  2754. },
  2755. {
  2756. "type":"Sprite3D",
  2757. "instanceID":838,
  2758. "props":{
  2759. "name":"collider",
  2760. "active":true,
  2761. "isStatic":false,
  2762. "layer":0,
  2763. "position":[
  2764. 0.1020326,
  2765. -0.0003537554,
  2766. -0.01077758
  2767. ],
  2768. "rotation":[
  2769. 7.450578E-09,
  2770. 2.384185E-07,
  2771. 0.7071067,
  2772. -0.7071069
  2773. ],
  2774. "scale":[
  2775. 1,
  2776. 1,
  2777. 1
  2778. ]
  2779. },
  2780. "components":[
  2781. {
  2782. "type":"PhysicsCollider",
  2783. "restitution":0,
  2784. "friction":0.5,
  2785. "rollingFriction":0,
  2786. "shapes":[
  2787. {
  2788. "type":"CapsuleColliderShape",
  2789. "center":[
  2790. -5.663768E-05,
  2791. 0.003780215,
  2792. 0.003314345
  2793. ],
  2794. "radius":0.04568683,
  2795. "height":0.3729745,
  2796. "orientation":1
  2797. }
  2798. ],
  2799. "isTrigger":false
  2800. }
  2801. ],
  2802. "child":[]
  2803. }
  2804. ]
  2805. }
  2806. ]
  2807. },
  2808. {
  2809. "type":"Sprite3D",
  2810. "instanceID":839,
  2811. "props":{
  2812. "name":"collider",
  2813. "active":true,
  2814. "isStatic":false,
  2815. "layer":0,
  2816. "position":[
  2817. -0.009041018,
  2818. -0.04329146,
  2819. -0.0007271108
  2820. ],
  2821. "rotation":[
  2822. 1.322478E-07,
  2823. 5.401669E-08,
  2824. 0.7071066,
  2825. -0.7071071
  2826. ],
  2827. "scale":[
  2828. 1,
  2829. 1,
  2830. 1
  2831. ]
  2832. },
  2833. "components":[
  2834. {
  2835. "type":"PhysicsCollider",
  2836. "restitution":0,
  2837. "friction":0.5,
  2838. "rollingFriction":0,
  2839. "shapes":[
  2840. {
  2841. "type":"CapsuleColliderShape",
  2842. "center":[
  2843. 0.0004788069,
  2844. 0.004258768,
  2845. -0.003552764
  2846. ],
  2847. "radius":0.05741175,
  2848. "height":0.2131524,
  2849. "orientation":1
  2850. }
  2851. ],
  2852. "isTrigger":false
  2853. }
  2854. ],
  2855. "child":[]
  2856. }
  2857. ]
  2858. }
  2859. ]
  2860. }
  2861. ]
  2862. }
  2863. ]
  2864. }
  2865. ]
  2866. }
  2867. ]
  2868. },
  2869. {
  2870. "type":"SkinnedMeshSprite3D",
  2871. "instanceID":840,
  2872. "props":{
  2873. "name":"female_accessory9",
  2874. "active":true,
  2875. "isStatic":false,
  2876. "layer":0,
  2877. "position":[
  2878. 0,
  2879. 0,
  2880. 0
  2881. ],
  2882. "rotation":[
  2883. -0.7071069,
  2884. 0,
  2885. 0,
  2886. -0.7071067
  2887. ],
  2888. "scale":[
  2889. 1,
  2890. 1,
  2891. 1
  2892. ],
  2893. "rootBone":780,
  2894. "boundBox":{
  2895. "min":[
  2896. 0.04990181,
  2897. -2.069771E-05,
  2898. -0.07763
  2899. ],
  2900. "max":[
  2901. 0.1099307,
  2902. 0.1328348,
  2903. 0.07764164
  2904. ]
  2905. },
  2906. "boundSphere":{
  2907. "center":[
  2908. 0.07991625,
  2909. 0.06640705,
  2910. 5.818903E-06
  2911. ],
  2912. "radius":0.1064933
  2913. },
  2914. "bones":[
  2915. 780
  2916. ],
  2917. "materials":[
  2918. {
  2919. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  2920. },
  2921. {
  2922. "path":"Assets/LatestRes/NPC/Materials/Glass.lmat"
  2923. }
  2924. ],
  2925. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_accessory9.lm"
  2926. },
  2927. "components":[],
  2928. "child":[]
  2929. },
  2930. {
  2931. "type":"SkinnedMeshSprite3D",
  2932. "instanceID":841,
  2933. "props":{
  2934. "name":"female_arm",
  2935. "active":true,
  2936. "isStatic":false,
  2937. "layer":0,
  2938. "position":[
  2939. 0,
  2940. -2.384186E-07,
  2941. 4.470341E-08
  2942. ],
  2943. "rotation":[
  2944. -2.185569E-08,
  2945. 0,
  2946. 0,
  2947. -1
  2948. ],
  2949. "scale":[
  2950. 1,
  2951. 1,
  2952. 1
  2953. ],
  2954. "rootBone":812,
  2955. "boundBox":{
  2956. "min":[
  2957. -0.02259952,
  2958. -0.09119463,
  2959. -0.03930642
  2960. ],
  2961. "max":[
  2962. 0.4323832,
  2963. 0.08916879,
  2964. 0.5054554
  2965. ]
  2966. },
  2967. "boundSphere":{
  2968. "center":[
  2969. 0.2048919,
  2970. -0.001012921,
  2971. 0.2330745
  2972. ],
  2973. "radius":0.3661645
  2974. },
  2975. "bones":[
  2976. 785,
  2977. 786,
  2978. 812,
  2979. 813
  2980. ],
  2981. "materials":[
  2982. {
  2983. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  2984. }
  2985. ],
  2986. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_arm.lm"
  2987. },
  2988. "components":[],
  2989. "child":[]
  2990. },
  2991. {
  2992. "type":"SkinnedMeshSprite3D",
  2993. "instanceID":842,
  2994. "props":{
  2995. "name":"female_chest",
  2996. "active":true,
  2997. "isStatic":false,
  2998. "layer":0,
  2999. "position":[
  3000. 0,
  3001. -2.384186E-07,
  3002. 4.470341E-08
  3003. ],
  3004. "rotation":[
  3005. -2.185569E-08,
  3006. 0,
  3007. 0,
  3008. -1
  3009. ],
  3010. "scale":[
  3011. 1,
  3012. 1,
  3013. 1
  3014. ],
  3015. "rootBone":777,
  3016. "boundBox":{
  3017. "min":[
  3018. 0.06653979,
  3019. -0.1516815,
  3020. -0.2562584
  3021. ],
  3022. "max":[
  3023. 0.3216584,
  3024. 0.08982036,
  3025. 0.236037
  3026. ]
  3027. },
  3028. "boundSphere":{
  3029. "center":[
  3030. 0.1940991,
  3031. -0.03093057,
  3032. -0.01011071
  3033. ],
  3034. "radius":0.3023919
  3035. },
  3036. "bones":[
  3037. 785,
  3038. 778,
  3039. 777,
  3040. 784,
  3041. 812
  3042. ],
  3043. "materials":[
  3044. {
  3045. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3046. }
  3047. ],
  3048. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_chest.lm"
  3049. },
  3050. "components":[],
  3051. "child":[]
  3052. },
  3053. {
  3054. "type":"SkinnedMeshSprite3D",
  3055. "instanceID":843,
  3056. "props":{
  3057. "name":"female_forearm",
  3058. "active":true,
  3059. "isStatic":false,
  3060. "layer":0,
  3061. "position":[
  3062. 0,
  3063. -2.384186E-07,
  3064. 4.470341E-08
  3065. ],
  3066. "rotation":[
  3067. -2.185569E-08,
  3068. 0,
  3069. 0,
  3070. -1
  3071. ],
  3072. "scale":[
  3073. 1,
  3074. 1,
  3075. 1
  3076. ],
  3077. "rootBone":813,
  3078. "boundBox":{
  3079. "min":[
  3080. -0.01664388,
  3081. -0.1618182,
  3082. -0.04586875
  3083. ],
  3084. "max":[
  3085. 0.4045952,
  3086. 0.05657257,
  3087. 0.6350341
  3088. ]
  3089. },
  3090. "boundSphere":{
  3091. "center":[
  3092. 0.1939756,
  3093. -0.0526228,
  3094. 0.2945827
  3095. ],
  3096. "radius":0.4149595
  3097. },
  3098. "bones":[
  3099. 786,
  3100. 806,
  3101. 805,
  3102. 804,
  3103. 787,
  3104. 800,
  3105. 802,
  3106. 801,
  3107. 796,
  3108. 798,
  3109. 797,
  3110. 792,
  3111. 794,
  3112. 793,
  3113. 790,
  3114. 789,
  3115. 788,
  3116. 813,
  3117. 833,
  3118. 832,
  3119. 831,
  3120. 814,
  3121. 827,
  3122. 829,
  3123. 828,
  3124. 823,
  3125. 825,
  3126. 824,
  3127. 819,
  3128. 821,
  3129. 820,
  3130. 817,
  3131. 816,
  3132. 815
  3133. ],
  3134. "materials":[
  3135. {
  3136. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3137. }
  3138. ],
  3139. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_forearm.lm"
  3140. },
  3141. "components":[],
  3142. "child":[]
  3143. },
  3144. {
  3145. "type":"SkinnedMeshSprite3D",
  3146. "instanceID":844,
  3147. "props":{
  3148. "name":"female_head9",
  3149. "active":true,
  3150. "isStatic":false,
  3151. "layer":0,
  3152. "position":[
  3153. 0,
  3154. -2.384186E-07,
  3155. 4.470341E-08
  3156. ],
  3157. "rotation":[
  3158. -0.7071069,
  3159. 0,
  3160. 0,
  3161. -0.7071067
  3162. ],
  3163. "scale":[
  3164. 1,
  3165. 1,
  3166. 1
  3167. ],
  3168. "rootBone":778,
  3169. "boundBox":{
  3170. "min":[
  3171. 0.05433249,
  3172. -0.1554114,
  3173. -0.1349251
  3174. ],
  3175. "max":[
  3176. 0.4596412,
  3177. 0.173299,
  3178. 0.1207033
  3179. ]
  3180. },
  3181. "boundSphere":{
  3182. "center":[
  3183. 0.2569869,
  3184. 0.008943781,
  3185. -0.00711086
  3186. ],
  3187. "radius":0.2905475
  3188. },
  3189. "bones":[
  3190. 778,
  3191. 779,
  3192. 780
  3193. ],
  3194. "materials":[
  3195. {
  3196. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3197. }
  3198. ],
  3199. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_head9.lm"
  3200. },
  3201. "components":[],
  3202. "child":[]
  3203. },
  3204. {
  3205. "type":"SkinnedMeshSprite3D",
  3206. "instanceID":845,
  3207. "props":{
  3208. "name":"female_legs",
  3209. "active":true,
  3210. "isStatic":false,
  3211. "layer":0,
  3212. "position":[
  3213. 0,
  3214. 0,
  3215. 0
  3216. ],
  3217. "rotation":[
  3218. -2.185569E-08,
  3219. 0,
  3220. 0,
  3221. -1
  3222. ],
  3223. "scale":[
  3224. 1,
  3225. 1,
  3226. 1
  3227. ],
  3228. "rootBone":769,
  3229. "boundBox":{
  3230. "min":[
  3231. 0.1964102,
  3232. -0.6726167,
  3233. -0.201069
  3234. ],
  3235. "max":[
  3236. 0.9252148,
  3237. 0.0902406,
  3238. 0.0574704
  3239. ]
  3240. },
  3241. "boundSphere":{
  3242. "center":[
  3243. 0.5608125,
  3244. -0.2911881,
  3245. -0.07179929
  3246. ],
  3247. "radius":0.5431275
  3248. },
  3249. "bones":[
  3250. 761,
  3251. 769,
  3252. 762,
  3253. 771,
  3254. 770
  3255. ],
  3256. "materials":[
  3257. {
  3258. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3259. }
  3260. ],
  3261. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_legs.lm"
  3262. },
  3263. "components":[],
  3264. "child":[]
  3265. },
  3266. {
  3267. "type":"SkinnedMeshSprite3D",
  3268. "instanceID":846,
  3269. "props":{
  3270. "name":"female_pants9",
  3271. "active":true,
  3272. "isStatic":false,
  3273. "layer":0,
  3274. "position":[
  3275. 0,
  3276. -2.384186E-07,
  3277. 4.470341E-08
  3278. ],
  3279. "rotation":[
  3280. -0.7071069,
  3281. 0,
  3282. 0,
  3283. -0.7071067
  3284. ],
  3285. "scale":[
  3286. 1,
  3287. 1,
  3288. 1
  3289. ],
  3290. "rootBone":757,
  3291. "boundBox":{
  3292. "min":[
  3293. -0.2679948,
  3294. -0.1764159,
  3295. -0.1968169
  3296. ],
  3297. "max":[
  3298. 0.1664424,
  3299. 0.224057,
  3300. 0.1959054
  3301. ]
  3302. },
  3303. "boundSphere":{
  3304. "center":[
  3305. -0.05077621,
  3306. 0.02382052,
  3307. -0.0004557073
  3308. ],
  3309. "radius":0.354734
  3310. },
  3311. "bones":[
  3312. 758,
  3313. 757,
  3314. 761,
  3315. 769,
  3316. 777
  3317. ],
  3318. "materials":[
  3319. {
  3320. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3321. }
  3322. ],
  3323. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_pants9.lm"
  3324. },
  3325. "components":[],
  3326. "child":[]
  3327. },
  3328. {
  3329. "type":"SkinnedMeshSprite3D",
  3330. "instanceID":847,
  3331. "props":{
  3332. "name":"female_pelvis",
  3333. "active":true,
  3334. "isStatic":false,
  3335. "layer":0,
  3336. "position":[
  3337. 0,
  3338. 0,
  3339. 0
  3340. ],
  3341. "rotation":[
  3342. -2.185569E-08,
  3343. 0,
  3344. 0,
  3345. -1
  3346. ],
  3347. "scale":[
  3348. 1,
  3349. 1,
  3350. 1
  3351. ],
  3352. "rootBone":757,
  3353. "boundBox":{
  3354. "min":[
  3355. -0.3039543,
  3356. -0.1151438,
  3357. -0.1614303
  3358. ],
  3359. "max":[
  3360. -0.02988225,
  3361. 0.2400071,
  3362. 0.164552
  3363. ]
  3364. },
  3365. "boundSphere":{
  3366. "center":[
  3367. -0.1669183,
  3368. 0.06243164,
  3369. 0.001560837
  3370. ],
  3371. "radius":0.2772689
  3372. },
  3373. "bones":[
  3374. 757,
  3375. 761,
  3376. 769
  3377. ],
  3378. "materials":[
  3379. {
  3380. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3381. }
  3382. ],
  3383. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_pelvis.lm"
  3384. },
  3385. "components":[],
  3386. "child":[]
  3387. },
  3388. {
  3389. "type":"SkinnedMeshSprite3D",
  3390. "instanceID":848,
  3391. "props":{
  3392. "name":"female_shirt9",
  3393. "active":true,
  3394. "isStatic":false,
  3395. "layer":0,
  3396. "position":[
  3397. 0,
  3398. 0,
  3399. 0
  3400. ],
  3401. "rotation":[
  3402. -0.7071069,
  3403. 0,
  3404. 0,
  3405. -0.7071067
  3406. ],
  3407. "scale":[
  3408. 1,
  3409. 1,
  3410. 1
  3411. ],
  3412. "rootBone":757,
  3413. "boundBox":{
  3414. "min":[
  3415. 0.04813147,
  3416. -0.2211536,
  3417. -0.2531846
  3418. ],
  3419. "max":[
  3420. 0.6272982,
  3421. 0.1976695,
  3422. 0.2428715
  3423. ]
  3424. },
  3425. "boundSphere":{
  3426. "center":[
  3427. 0.3377149,
  3428. -0.01174206,
  3429. -0.005156584
  3430. ],
  3431. "radius":0.4350054
  3432. },
  3433. "bones":[
  3434. 778,
  3435. 777,
  3436. 785,
  3437. 784,
  3438. 758,
  3439. 757,
  3440. 812
  3441. ],
  3442. "materials":[
  3443. {
  3444. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3445. }
  3446. ],
  3447. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_shirt9.lm"
  3448. },
  3449. "components":[],
  3450. "child":[]
  3451. },
  3452. {
  3453. "type":"SkinnedMeshSprite3D",
  3454. "instanceID":849,
  3455. "props":{
  3456. "name":"female_shoes9",
  3457. "active":true,
  3458. "isStatic":false,
  3459. "layer":0,
  3460. "position":[
  3461. 0,
  3462. -2.384186E-07,
  3463. 4.470341E-08
  3464. ],
  3465. "rotation":[
  3466. -0.7071069,
  3467. 0,
  3468. 0,
  3469. -0.7071067
  3470. ],
  3471. "scale":[
  3472. 1,
  3473. 1,
  3474. 1
  3475. ],
  3476. "rootBone":770,
  3477. "boundBox":{
  3478. "min":[
  3479. 0.1463497,
  3480. -0.8070045,
  3481. -0.1287192
  3482. ],
  3483. "max":[
  3484. 0.6213753,
  3485. 0.2098404,
  3486. 0.05931639
  3487. ]
  3488. },
  3489. "boundSphere":{
  3490. "center":[
  3491. 0.3838625,
  3492. -0.298582,
  3493. -0.0347014
  3494. ],
  3495. "radius":0.568986
  3496. },
  3497. "bones":[
  3498. 762,
  3499. 763,
  3500. 764,
  3501. 771,
  3502. 770,
  3503. 772
  3504. ],
  3505. "materials":[
  3506. {
  3507. "path":"Assets/LatestRes/NPC/Materials/Colors.lmat"
  3508. }
  3509. ],
  3510. "meshPath":"Assets/LatestRes/NPC/Model/fmale9-female_shoes9.lm"
  3511. },
  3512. "components":[],
  3513. "child":[]
  3514. }
  3515. ]
  3516. }
  3517. ]
  3518. }
  3519. }