fmale3.lh 101 KB

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