Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Rikr Poison.png.meta 96KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693
  1. fileFormatVersion: 2
  2. guid: cc7586140aa6bac4ab484e8dc1a41a4c
  3. TextureImporter:
  4. internalIDToNameTable:
  5. - first:
  6. 213: 21300000
  7. second: Rikr_Head
  8. - first:
  9. 213: 21300002
  10. second: Rikr_Arm_L
  11. - first:
  12. 213: 21300004
  13. second: Rikr_Leg_L
  14. - first:
  15. 213: 21300006
  16. second: Rikr_Body
  17. - first:
  18. 213: 21300008
  19. second: Rikr_Leg_R
  20. - first:
  21. 213: 21300010
  22. second: Rikr_Arm_R
  23. externalObjects: {}
  24. serializedVersion: 11
  25. mipmaps:
  26. mipMapMode: 0
  27. enableMipMap: 0
  28. sRGBTexture: 1
  29. linearTexture: 0
  30. fadeOut: 0
  31. borderMipMap: 0
  32. mipMapsPreserveCoverage: 0
  33. alphaTestReferenceValue: 0.5
  34. mipMapFadeDistanceStart: 1
  35. mipMapFadeDistanceEnd: 3
  36. bumpmap:
  37. convertToNormalMap: 0
  38. externalNormalMap: 0
  39. heightScale: 0.25
  40. normalMapFilter: 0
  41. isReadable: 0
  42. streamingMipmaps: 0
  43. streamingMipmapsPriority: 0
  44. vTOnly: 0
  45. grayScaleToAlpha: 0
  46. generateCubemap: 6
  47. cubemapConvolution: 0
  48. seamlessCubemap: 0
  49. textureFormat: 1
  50. maxTextureSize: 2048
  51. textureSettings:
  52. serializedVersion: 2
  53. filterMode: 1
  54. aniso: 1
  55. mipBias: 0
  56. wrapU: 1
  57. wrapV: 1
  58. wrapW: 0
  59. nPOTScale: 0
  60. lightmap: 0
  61. compressionQuality: 50
  62. spriteMode: 2
  63. spriteExtrude: 29
  64. spriteMeshType: 1
  65. alignment: 0
  66. spritePivot: {x: 0.5, y: 0.5}
  67. spritePixelsToUnits: 100
  68. spriteBorder: {x: 0, y: 0, z: 0, w: 0}
  69. spriteGenerateFallbackPhysicsShape: 1
  70. alphaUsage: 1
  71. alphaIsTransparency: 1
  72. spriteTessellationDetail: -1
  73. textureType: 8
  74. textureShape: 1
  75. singleChannelComponent: 0
  76. flipbookRows: 1
  77. flipbookColumns: 1
  78. maxTextureSizeSet: 0
  79. compressionQualitySet: 0
  80. textureFormatSet: 0
  81. ignorePngGamma: 0
  82. applyGammaDecoding: 1
  83. platformSettings:
  84. - serializedVersion: 3
  85. buildTarget: DefaultTexturePlatform
  86. maxTextureSize: 2048
  87. resizeAlgorithm: 0
  88. textureFormat: -1
  89. textureCompression: 1
  90. compressionQuality: 50
  91. crunchedCompression: 0
  92. allowsAlphaSplitting: 0
  93. overridden: 0
  94. androidETC2FallbackOverride: 0
  95. forceMaximumCompressionQuality_BC6H_BC7: 0
  96. - serializedVersion: 3
  97. buildTarget: Standalone
  98. maxTextureSize: 2048
  99. resizeAlgorithm: 0
  100. textureFormat: -1
  101. textureCompression: 1
  102. compressionQuality: 50
  103. crunchedCompression: 0
  104. allowsAlphaSplitting: 0
  105. overridden: 0
  106. androidETC2FallbackOverride: 0
  107. forceMaximumCompressionQuality_BC6H_BC7: 0
  108. - serializedVersion: 3
  109. buildTarget: Android
  110. maxTextureSize: 2048
  111. resizeAlgorithm: 0
  112. textureFormat: -1
  113. textureCompression: 1
  114. compressionQuality: 50
  115. crunchedCompression: 0
  116. allowsAlphaSplitting: 0
  117. overridden: 0
  118. androidETC2FallbackOverride: 0
  119. forceMaximumCompressionQuality_BC6H_BC7: 1
  120. spriteSheet:
  121. serializedVersion: 2
  122. sprites:
  123. - serializedVersion: 2
  124. name: Rikr_Head
  125. rect:
  126. serializedVersion: 2
  127. x: 524
  128. y: 979
  129. width: 615
  130. height: 725
  131. alignment: 9
  132. pivot: {x: 0.5592063, y: 0.27399516}
  133. border: {x: 0, y: 0, z: 0, w: 0}
  134. outline: []
  135. physicsShape: []
  136. tessellationDetail: 0
  137. bones:
  138. - name: bone_1
  139. guid:
  140. position: {x: 343.25964, y: 195.72815, z: 0}
  141. rotation: {x: 0, y: 0, z: 0.717398, w: 0.69666356}
  142. length: 344.99634
  143. parentId: -1
  144. color:
  145. serializedVersion: 2
  146. rgba: 0
  147. spriteID: 1fa14f0ecc1d047baba3c5787248de9a
  148. internalID: 21300000
  149. vertices:
  150. - {x: 366.09497, y: 21.713013}
  151. - {x: 409.226, y: 28.994019}
  152. - {x: 464.86902, y: 44.869995}
  153. - {x: 516.76294, y: 71}
  154. - {x: 549.319, y: 103.32007}
  155. - {x: 567, y: 140.08105}
  156. - {x: 568.10205, y: 168.89795}
  157. - {x: 553.152, y: 166.83105}
  158. - {x: 563.448, y: 207.98901}
  159. - {x: 561.121, y: 228.818}
  160. - {x: 547.48303, y: 247.13}
  161. - {x: 540.463, y: 244.03003}
  162. - {x: 508.66602, y: 208.35901}
  163. - {x: 502.24194, y: 232.32495}
  164. - {x: 494, y: 258.94702}
  165. - {x: 513.698, y: 282.37805}
  166. - {x: 520.65, y: 286.51904}
  167. - {x: 524.01807, y: 312.76794}
  168. - {x: 527.041, y: 357.95898}
  169. - {x: 518.65295, y: 406.21204}
  170. - {x: 534.73706, y: 451.38696}
  171. - {x: 559.026, y: 487.80896}
  172. - {x: 569, y: 533.64197}
  173. - {x: 558.14404, y: 581.28296}
  174. - {x: 532.29895, y: 626.69995}
  175. - {x: 492.167, y: 666.416}
  176. - {x: 441.148, y: 698.13306}
  177. - {x: 423.604, y: 699.203}
  178. - {x: 422.604, y: 689.78394}
  179. - {x: 451.235, y: 635.942}
  180. - {x: 460.32703, y: 580.87805}
  181. - {x: 445.794, y: 529.86206}
  182. - {x: 398.95, y: 545.324}
  183. - {x: 350.31702, y: 574.298}
  184. - {x: 337.562, y: 571.308}
  185. - {x: 281.58398, y: 557.42505}
  186. - {x: 227.75702, y: 551.59204}
  187. - {x: 174.58704, y: 565.41296}
  188. - {x: 151, y: 617.036}
  189. - {x: 177.599, y: 667.9761}
  190. - {x: 210, y: 707.975}
  191. - {x: 203.39099, y: 713}
  192. - {x: 161.86096, y: 706.31604}
  193. - {x: 110.11401, y: 680}
  194. - {x: 68.72803, y: 641.015}
  195. - {x: 47, y: 602.178}
  196. - {x: 44.839966, y: 565.73303}
  197. - {x: 52.889038, y: 523.223}
  198. - {x: 77.94299, y: 478.80603}
  199. - {x: 113.48804, y: 420.26794}
  200. - {x: 101.83899, y: 401.161}
  201. - {x: 84.73303, y: 352.33398}
  202. - {x: 79.90399, y: 322.78296}
  203. - {x: 78, y: 264.64404}
  204. - {x: 80.46399, y: 239.30505}
  205. - {x: 88.645996, y: 236.646}
  206. - {x: 110.89502, y: 250.74402}
  207. - {x: 128.18896, y: 239}
  208. - {x: 158.48901, y: 232.51196}
  209. - {x: 175.24902, y: 178.90796}
  210. - {x: 181.97803, y: 143.04602}
  211. - {x: 207.992, y: 87.00903}
  212. - {x: 239.85999, y: 53}
  213. - {x: 266.909, y: 34.09204}
  214. - {x: 313.17297, y: 28.546997}
  215. - {x: 364.414, y: 21}
  216. - {x: 340.67914, y: 206.94336}
  217. - {x: 310.0152, y: 375.20203}
  218. indices: 3700000036000000350000000100000042000000020000000c00000002000000420000000e0000000d00000042000000420000000d0000000c000000110000000f0000000e0000000c000000030000000200000043000000110000000e0000000c0000000700000004000000060000000500000007000000040000000700000005000000070000000c00000008000000090000000b0000000a0000000c0000000b0000000900000009000000080000000c00000042000000010000000000000004000000030000000c000000180000001d00000019000000180000001e0000001d0000001a0000001c0000001b0000001d0000001c0000001a0000001a000000190000001d000000160000001f0000001e00000013000000430000001f00000011000000430000001200000012000000430000001300000018000000170000001e0000001f000000150000001400000017000000160000001e00000016000000150000001f000000130000001f000000140000001f00000043000000200000000e00000042000000430000002100000020000000220000002300000022000000200000003a000000380000003400000038000000370000003500000034000000380000003500000034000000330000003a00000033000000320000003a000000380000003a000000390000003e0000003d000000420000003e000000400000003f000000400000003e00000042000000420000003b0000003a0000003a00000043000000420000003d0000003c000000420000002300000020000000430000003c0000003b0000004200000032000000430000003a000000420000000000000040000000310000004300000032000000290000002800000027000000270000002b0000002a00000029000000270000002a00000024000000430000003100000024000000230000004300000031000000250000002400000011000000100000000f0000002500000031000000300000002c0000002b0000002600000027000000260000002b000000260000002d0000002c0000002f00000025000000300000002e000000250000002f0000002e0000002600000025000000260000002e0000002d000000000000004100000040000000
  219. edges:
  220. - {x: 1, y: 0}
  221. - {x: 2, y: 1}
  222. - {x: 3, y: 2}
  223. - {x: 4, y: 3}
  224. - {x: 5, y: 4}
  225. - {x: 6, y: 5}
  226. - {x: 6, y: 7}
  227. - {x: 7, y: 8}
  228. - {x: 8, y: 9}
  229. - {x: 9, y: 10}
  230. - {x: 10, y: 11}
  231. - {x: 11, y: 12}
  232. - {x: 13, y: 12}
  233. - {x: 14, y: 13}
  234. - {x: 15, y: 14}
  235. - {x: 16, y: 15}
  236. - {x: 17, y: 16}
  237. - {x: 18, y: 17}
  238. - {x: 18, y: 19}
  239. - {x: 20, y: 19}
  240. - {x: 20, y: 21}
  241. - {x: 21, y: 22}
  242. - {x: 23, y: 22}
  243. - {x: 24, y: 23}
  244. - {x: 25, y: 24}
  245. - {x: 26, y: 25}
  246. - {x: 26, y: 27}
  247. - {x: 27, y: 28}
  248. - {x: 29, y: 28}
  249. - {x: 29, y: 30}
  250. - {x: 31, y: 30}
  251. - {x: 32, y: 31}
  252. - {x: 32, y: 33}
  253. - {x: 33, y: 34}
  254. - {x: 35, y: 34}
  255. - {x: 36, y: 35}
  256. - {x: 36, y: 37}
  257. - {x: 37, y: 38}
  258. - {x: 38, y: 39}
  259. - {x: 39, y: 40}
  260. - {x: 40, y: 41}
  261. - {x: 42, y: 41}
  262. - {x: 43, y: 42}
  263. - {x: 44, y: 43}
  264. - {x: 45, y: 44}
  265. - {x: 46, y: 45}
  266. - {x: 47, y: 46}
  267. - {x: 48, y: 47}
  268. - {x: 49, y: 48}
  269. - {x: 50, y: 49}
  270. - {x: 50, y: 51}
  271. - {x: 51, y: 52}
  272. - {x: 52, y: 53}
  273. - {x: 53, y: 54}
  274. - {x: 54, y: 55}
  275. - {x: 55, y: 56}
  276. - {x: 57, y: 56}
  277. - {x: 57, y: 58}
  278. - {x: 58, y: 59}
  279. - {x: 60, y: 59}
  280. - {x: 60, y: 61}
  281. - {x: 62, y: 61}
  282. - {x: 63, y: 62}
  283. - {x: 63, y: 64}
  284. - {x: 65, y: 64}
  285. - {x: 0, y: 65}
  286. weights:
  287. - weight[0]: 1
  288. weight[1]: 0
  289. weight[2]: 0
  290. weight[3]: 0
  291. boneIndex[0]: 0
  292. boneIndex[1]: 0
  293. boneIndex[2]: 0
  294. boneIndex[3]: 0
  295. - weight[0]: 1
  296. weight[1]: 0
  297. weight[2]: 0
  298. weight[3]: 0
  299. boneIndex[0]: 0
  300. boneIndex[1]: 0
  301. boneIndex[2]: 0
  302. boneIndex[3]: 0
  303. - weight[0]: 1
  304. weight[1]: 0
  305. weight[2]: 0
  306. weight[3]: 0
  307. boneIndex[0]: 0
  308. boneIndex[1]: 0
  309. boneIndex[2]: 0
  310. boneIndex[3]: 0
  311. - weight[0]: 1
  312. weight[1]: 0
  313. weight[2]: 0
  314. weight[3]: 0
  315. boneIndex[0]: 0
  316. boneIndex[1]: 0
  317. boneIndex[2]: 0
  318. boneIndex[3]: 0
  319. - weight[0]: 1
  320. weight[1]: 0
  321. weight[2]: 0
  322. weight[3]: 0
  323. boneIndex[0]: 0
  324. boneIndex[1]: 0
  325. boneIndex[2]: 0
  326. boneIndex[3]: 0
  327. - weight[0]: 1
  328. weight[1]: 0
  329. weight[2]: 0
  330. weight[3]: 0
  331. boneIndex[0]: 0
  332. boneIndex[1]: 0
  333. boneIndex[2]: 0
  334. boneIndex[3]: 0
  335. - weight[0]: 1
  336. weight[1]: 0
  337. weight[2]: 0
  338. weight[3]: 0
  339. boneIndex[0]: 0
  340. boneIndex[1]: 0
  341. boneIndex[2]: 0
  342. boneIndex[3]: 0
  343. - weight[0]: 1
  344. weight[1]: 0
  345. weight[2]: 0
  346. weight[3]: 0
  347. boneIndex[0]: 0
  348. boneIndex[1]: 0
  349. boneIndex[2]: 0
  350. boneIndex[3]: 0
  351. - weight[0]: 1
  352. weight[1]: 0
  353. weight[2]: 0
  354. weight[3]: 0
  355. boneIndex[0]: 0
  356. boneIndex[1]: 0
  357. boneIndex[2]: 0
  358. boneIndex[3]: 0
  359. - weight[0]: 1
  360. weight[1]: 0
  361. weight[2]: 0
  362. weight[3]: 0
  363. boneIndex[0]: 0
  364. boneIndex[1]: 0
  365. boneIndex[2]: 0
  366. boneIndex[3]: 0
  367. - weight[0]: 1
  368. weight[1]: 0
  369. weight[2]: 0
  370. weight[3]: 0
  371. boneIndex[0]: 0
  372. boneIndex[1]: 0
  373. boneIndex[2]: 0
  374. boneIndex[3]: 0
  375. - weight[0]: 1
  376. weight[1]: 0
  377. weight[2]: 0
  378. weight[3]: 0
  379. boneIndex[0]: 0
  380. boneIndex[1]: 0
  381. boneIndex[2]: 0
  382. boneIndex[3]: 0
  383. - weight[0]: 1
  384. weight[1]: 0
  385. weight[2]: 0
  386. weight[3]: 0
  387. boneIndex[0]: 0
  388. boneIndex[1]: 0
  389. boneIndex[2]: 0
  390. boneIndex[3]: 0
  391. - weight[0]: 1
  392. weight[1]: 0
  393. weight[2]: 0
  394. weight[3]: 0
  395. boneIndex[0]: 0
  396. boneIndex[1]: 0
  397. boneIndex[2]: 0
  398. boneIndex[3]: 0
  399. - weight[0]: 1
  400. weight[1]: 0
  401. weight[2]: 0
  402. weight[3]: 0
  403. boneIndex[0]: 0
  404. boneIndex[1]: 0
  405. boneIndex[2]: 0
  406. boneIndex[3]: 0
  407. - weight[0]: 1
  408. weight[1]: 0
  409. weight[2]: 0
  410. weight[3]: 0
  411. boneIndex[0]: 0
  412. boneIndex[1]: 0
  413. boneIndex[2]: 0
  414. boneIndex[3]: 0
  415. - weight[0]: 1
  416. weight[1]: 0
  417. weight[2]: 0
  418. weight[3]: 0
  419. boneIndex[0]: 0
  420. boneIndex[1]: 0
  421. boneIndex[2]: 0
  422. boneIndex[3]: 0
  423. - weight[0]: 1
  424. weight[1]: 0
  425. weight[2]: 0
  426. weight[3]: 0
  427. boneIndex[0]: 0
  428. boneIndex[1]: 0
  429. boneIndex[2]: 0
  430. boneIndex[3]: 0
  431. - weight[0]: 1
  432. weight[1]: 0
  433. weight[2]: 0
  434. weight[3]: 0
  435. boneIndex[0]: 0
  436. boneIndex[1]: 0
  437. boneIndex[2]: 0
  438. boneIndex[3]: 0
  439. - weight[0]: 1
  440. weight[1]: 0
  441. weight[2]: 0
  442. weight[3]: 0
  443. boneIndex[0]: 0
  444. boneIndex[1]: 0
  445. boneIndex[2]: 0
  446. boneIndex[3]: 0
  447. - weight[0]: 1
  448. weight[1]: 0
  449. weight[2]: 0
  450. weight[3]: 0
  451. boneIndex[0]: 0
  452. boneIndex[1]: 0
  453. boneIndex[2]: 0
  454. boneIndex[3]: 0
  455. - weight[0]: 1
  456. weight[1]: 0
  457. weight[2]: 0
  458. weight[3]: 0
  459. boneIndex[0]: 0
  460. boneIndex[1]: 0
  461. boneIndex[2]: 0
  462. boneIndex[3]: 0
  463. - weight[0]: 1
  464. weight[1]: 0
  465. weight[2]: 0
  466. weight[3]: 0
  467. boneIndex[0]: 0
  468. boneIndex[1]: 0
  469. boneIndex[2]: 0
  470. boneIndex[3]: 0
  471. - weight[0]: 1
  472. weight[1]: 0
  473. weight[2]: 0
  474. weight[3]: 0
  475. boneIndex[0]: 0
  476. boneIndex[1]: 0
  477. boneIndex[2]: 0
  478. boneIndex[3]: 0
  479. - weight[0]: 1
  480. weight[1]: 0
  481. weight[2]: 0
  482. weight[3]: 0
  483. boneIndex[0]: 0
  484. boneIndex[1]: 0
  485. boneIndex[2]: 0
  486. boneIndex[3]: 0
  487. - weight[0]: 1
  488. weight[1]: 0
  489. weight[2]: 0
  490. weight[3]: 0
  491. boneIndex[0]: 0
  492. boneIndex[1]: 0
  493. boneIndex[2]: 0
  494. boneIndex[3]: 0
  495. - weight[0]: 1
  496. weight[1]: 0
  497. weight[2]: 0
  498. weight[3]: 0
  499. boneIndex[0]: 0
  500. boneIndex[1]: 0
  501. boneIndex[2]: 0
  502. boneIndex[3]: 0
  503. - weight[0]: 1
  504. weight[1]: 0
  505. weight[2]: 0
  506. weight[3]: 0
  507. boneIndex[0]: 0
  508. boneIndex[1]: 0
  509. boneIndex[2]: 0
  510. boneIndex[3]: 0
  511. - weight[0]: 1
  512. weight[1]: 0
  513. weight[2]: 0
  514. weight[3]: 0
  515. boneIndex[0]: 0
  516. boneIndex[1]: 0
  517. boneIndex[2]: 0
  518. boneIndex[3]: 0
  519. - weight[0]: 1
  520. weight[1]: 0
  521. weight[2]: 0
  522. weight[3]: 0
  523. boneIndex[0]: 0
  524. boneIndex[1]: 0
  525. boneIndex[2]: 0
  526. boneIndex[3]: 0
  527. - weight[0]: 1
  528. weight[1]: 0
  529. weight[2]: 0
  530. weight[3]: 0
  531. boneIndex[0]: 0
  532. boneIndex[1]: 0
  533. boneIndex[2]: 0
  534. boneIndex[3]: 0
  535. - weight[0]: 1
  536. weight[1]: 0
  537. weight[2]: 0
  538. weight[3]: 0
  539. boneIndex[0]: 0
  540. boneIndex[1]: 0
  541. boneIndex[2]: 0
  542. boneIndex[3]: 0
  543. - weight[0]: 1
  544. weight[1]: 0
  545. weight[2]: 0
  546. weight[3]: 0
  547. boneIndex[0]: 0
  548. boneIndex[1]: 0
  549. boneIndex[2]: 0
  550. boneIndex[3]: 0
  551. - weight[0]: 1
  552. weight[1]: 0
  553. weight[2]: 0
  554. weight[3]: 0
  555. boneIndex[0]: 0
  556. boneIndex[1]: 0
  557. boneIndex[2]: 0
  558. boneIndex[3]: 0
  559. - weight[0]: 1
  560. weight[1]: 0
  561. weight[2]: 0
  562. weight[3]: 0
  563. boneIndex[0]: 0
  564. boneIndex[1]: 0
  565. boneIndex[2]: 0
  566. boneIndex[3]: 0
  567. - weight[0]: 1
  568. weight[1]: 0
  569. weight[2]: 0
  570. weight[3]: 0
  571. boneIndex[0]: 0
  572. boneIndex[1]: 0
  573. boneIndex[2]: 0
  574. boneIndex[3]: 0
  575. - weight[0]: 1
  576. weight[1]: 0
  577. weight[2]: 0
  578. weight[3]: 0
  579. boneIndex[0]: 0
  580. boneIndex[1]: 0
  581. boneIndex[2]: 0
  582. boneIndex[3]: 0
  583. - weight[0]: 1
  584. weight[1]: 0
  585. weight[2]: 0
  586. weight[3]: 0
  587. boneIndex[0]: 0
  588. boneIndex[1]: 0
  589. boneIndex[2]: 0
  590. boneIndex[3]: 0
  591. - weight[0]: 1
  592. weight[1]: 0
  593. weight[2]: 0
  594. weight[3]: 0
  595. boneIndex[0]: 0
  596. boneIndex[1]: 0
  597. boneIndex[2]: 0
  598. boneIndex[3]: 0
  599. - weight[0]: 1
  600. weight[1]: 0
  601. weight[2]: 0
  602. weight[3]: 0
  603. boneIndex[0]: 0
  604. boneIndex[1]: 0
  605. boneIndex[2]: 0
  606. boneIndex[3]: 0
  607. - weight[0]: 1
  608. weight[1]: 0
  609. weight[2]: 0
  610. weight[3]: 0
  611. boneIndex[0]: 0
  612. boneIndex[1]: 0
  613. boneIndex[2]: 0
  614. boneIndex[3]: 0
  615. - weight[0]: 1
  616. weight[1]: 0
  617. weight[2]: 0
  618. weight[3]: 0
  619. boneIndex[0]: 0
  620. boneIndex[1]: 0
  621. boneIndex[2]: 0
  622. boneIndex[3]: 0
  623. - weight[0]: 1
  624. weight[1]: 0
  625. weight[2]: 0
  626. weight[3]: 0
  627. boneIndex[0]: 0
  628. boneIndex[1]: 0
  629. boneIndex[2]: 0
  630. boneIndex[3]: 0
  631. - weight[0]: 1
  632. weight[1]: 0
  633. weight[2]: 0
  634. weight[3]: 0
  635. boneIndex[0]: 0
  636. boneIndex[1]: 0
  637. boneIndex[2]: 0
  638. boneIndex[3]: 0
  639. - weight[0]: 1
  640. weight[1]: 0
  641. weight[2]: 0
  642. weight[3]: 0
  643. boneIndex[0]: 0
  644. boneIndex[1]: 0
  645. boneIndex[2]: 0
  646. boneIndex[3]: 0
  647. - weight[0]: 1
  648. weight[1]: 0
  649. weight[2]: 0
  650. weight[3]: 0
  651. boneIndex[0]: 0
  652. boneIndex[1]: 0
  653. boneIndex[2]: 0
  654. boneIndex[3]: 0
  655. - weight[0]: 1
  656. weight[1]: 0
  657. weight[2]: 0
  658. weight[3]: 0
  659. boneIndex[0]: 0
  660. boneIndex[1]: 0
  661. boneIndex[2]: 0
  662. boneIndex[3]: 0
  663. - weight[0]: 1
  664. weight[1]: 0
  665. weight[2]: 0
  666. weight[3]: 0
  667. boneIndex[0]: 0
  668. boneIndex[1]: 0
  669. boneIndex[2]: 0
  670. boneIndex[3]: 0
  671. - weight[0]: 1
  672. weight[1]: 0
  673. weight[2]: 0
  674. weight[3]: 0
  675. boneIndex[0]: 0
  676. boneIndex[1]: 0
  677. boneIndex[2]: 0
  678. boneIndex[3]: 0
  679. - weight[0]: 1
  680. weight[1]: 0
  681. weight[2]: 0
  682. weight[3]: 0
  683. boneIndex[0]: 0
  684. boneIndex[1]: 0
  685. boneIndex[2]: 0
  686. boneIndex[3]: 0
  687. - weight[0]: 1
  688. weight[1]: 0
  689. weight[2]: 0
  690. weight[3]: 0
  691. boneIndex[0]: 0
  692. boneIndex[1]: 0
  693. boneIndex[2]: 0
  694. boneIndex[3]: 0
  695. - weight[0]: 1
  696. weight[1]: 0
  697. weight[2]: 0
  698. weight[3]: 0
  699. boneIndex[0]: 0
  700. boneIndex[1]: 0
  701. boneIndex[2]: 0
  702. boneIndex[3]: 0
  703. - weight[0]: 1
  704. weight[1]: 0
  705. weight[2]: 0
  706. weight[3]: 0
  707. boneIndex[0]: 0
  708. boneIndex[1]: 0
  709. boneIndex[2]: 0
  710. boneIndex[3]: 0
  711. - weight[0]: 1
  712. weight[1]: 0
  713. weight[2]: 0
  714. weight[3]: 0
  715. boneIndex[0]: 0
  716. boneIndex[1]: 0
  717. boneIndex[2]: 0
  718. boneIndex[3]: 0
  719. - weight[0]: 1
  720. weight[1]: 0
  721. weight[2]: 0
  722. weight[3]: 0
  723. boneIndex[0]: 0
  724. boneIndex[1]: 0
  725. boneIndex[2]: 0
  726. boneIndex[3]: 0
  727. - weight[0]: 1
  728. weight[1]: 0
  729. weight[2]: 0
  730. weight[3]: 0
  731. boneIndex[0]: 0
  732. boneIndex[1]: 0
  733. boneIndex[2]: 0
  734. boneIndex[3]: 0
  735. - weight[0]: 1
  736. weight[1]: 0
  737. weight[2]: 0
  738. weight[3]: 0
  739. boneIndex[0]: 0
  740. boneIndex[1]: 0
  741. boneIndex[2]: 0
  742. boneIndex[3]: 0
  743. - weight[0]: 1
  744. weight[1]: 0
  745. weight[2]: 0
  746. weight[3]: 0
  747. boneIndex[0]: 0
  748. boneIndex[1]: 0
  749. boneIndex[2]: 0
  750. boneIndex[3]: 0
  751. - weight[0]: 1
  752. weight[1]: 0
  753. weight[2]: 0
  754. weight[3]: 0
  755. boneIndex[0]: 0
  756. boneIndex[1]: 0
  757. boneIndex[2]: 0
  758. boneIndex[3]: 0
  759. - weight[0]: 1
  760. weight[1]: 0
  761. weight[2]: 0
  762. weight[3]: 0
  763. boneIndex[0]: 0
  764. boneIndex[1]: 0
  765. boneIndex[2]: 0
  766. boneIndex[3]: 0
  767. - weight[0]: 1
  768. weight[1]: 0
  769. weight[2]: 0
  770. weight[3]: 0
  771. boneIndex[0]: 0
  772. boneIndex[1]: 0
  773. boneIndex[2]: 0
  774. boneIndex[3]: 0
  775. - weight[0]: 1
  776. weight[1]: 0
  777. weight[2]: 0
  778. weight[3]: 0
  779. boneIndex[0]: 0
  780. boneIndex[1]: 0
  781. boneIndex[2]: 0
  782. boneIndex[3]: 0
  783. - weight[0]: 1
  784. weight[1]: 0
  785. weight[2]: 0
  786. weight[3]: 0
  787. boneIndex[0]: 0
  788. boneIndex[1]: 0
  789. boneIndex[2]: 0
  790. boneIndex[3]: 0
  791. - weight[0]: 1
  792. weight[1]: 0
  793. weight[2]: 0
  794. weight[3]: 0
  795. boneIndex[0]: 0
  796. boneIndex[1]: 0
  797. boneIndex[2]: 0
  798. boneIndex[3]: 0
  799. - weight[0]: 1
  800. weight[1]: 0
  801. weight[2]: 0
  802. weight[3]: 0
  803. boneIndex[0]: 0
  804. boneIndex[1]: 0
  805. boneIndex[2]: 0
  806. boneIndex[3]: 0
  807. - weight[0]: 1
  808. weight[1]: 0
  809. weight[2]: 0
  810. weight[3]: 0
  811. boneIndex[0]: 0
  812. boneIndex[1]: 0
  813. boneIndex[2]: 0
  814. boneIndex[3]: 0
  815. - weight[0]: 1
  816. weight[1]: 0
  817. weight[2]: 0
  818. weight[3]: 0
  819. boneIndex[0]: 0
  820. boneIndex[1]: 0
  821. boneIndex[2]: 0
  822. boneIndex[3]: 0
  823. - weight[0]: 1
  824. weight[1]: 0
  825. weight[2]: 0
  826. weight[3]: 0
  827. boneIndex[0]: 0
  828. boneIndex[1]: 0
  829. boneIndex[2]: 0
  830. boneIndex[3]: 0
  831. - serializedVersion: 2
  832. name: Rikr_Arm_L
  833. rect:
  834. serializedVersion: 2
  835. x: 1205
  836. y: 664
  837. width: 211
  838. height: 482
  839. alignment: 9
  840. pivot: {x: 0.3082576, y: 0.8231576}
  841. border: {x: 0, y: 0, z: 0, w: 0}
  842. outline:
  843. - - {x: -94.5, y: 207}
  844. - {x: -88.5, y: -99}
  845. - {x: -34.5, y: -221}
  846. - {x: 89.5, y: -221}
  847. - {x: 89.5, y: -24}
  848. - {x: 38.5, y: 206}
  849. physicsShape: []
  850. tessellationDetail: 0
  851. bones:
  852. - name: bone_1
  853. guid:
  854. position: {x: 53.393555, y: 406.6548, z: 0}
  855. rotation: {x: 0, y: 0, z: -0.5979257, w: 0.8015515}
  856. length: 153.35042
  857. parentId: -1
  858. color:
  859. serializedVersion: 2
  860. rgba: 0
  861. - name: bone_2
  862. guid:
  863. position: {x: 153.3504, y: 0.000007687646, z: 0}
  864. rotation: {x: 0, y: 0, z: -0.014819357, w: 0.9998902}
  865. length: 100.699715
  866. parentId: 0
  867. color:
  868. serializedVersion: 2
  869. rgba: 0
  870. - name: bone_3
  871. guid:
  872. position: {x: 100.69971, y: -0.000031853808, z: 0}
  873. rotation: {x: 0, y: 0, z: -0.0014031453, w: 0.99999905}
  874. length: 125.26791
  875. parentId: 1
  876. color:
  877. serializedVersion: 2
  878. rgba: 0
  879. spriteID: af3935f98099e483bb9eb69db9870e52
  880. internalID: 21300002
  881. vertices:
  882. - {x: 178.22095, y: 35.221985}
  883. - {x: 189, y: 46.84601}
  884. - {x: 193.05005, y: 62.42798}
  885. - {x: 189, y: 104.302}
  886. - {x: 179.61902, y: 134.823}
  887. - {x: 169.64697, y: 165.95502}
  888. - {x: 164.875, y: 196.98102}
  889. - {x: 162.14001, y: 218.86102}
  890. - {x: 162.00098, y: 248.73499}
  891. - {x: 157.36902, y: 280.79102}
  892. - {x: 142.505, y: 305.505}
  893. - {x: 151.16101, y: 320.425}
  894. - {x: 146.09302, y: 358.813}
  895. - {x: 135.83301, y: 389.64697}
  896. - {x: 123.99304, y: 420.68103}
  897. - {x: 98.26697, y: 440}
  898. - {x: 66.52197, y: 446.792}
  899. - {x: 37.811035, y: 437.81006}
  900. - {x: 26.61499, y: 405.896}
  901. - {x: 20.703003, y: 374.271}
  902. - {x: 18.592041, y: 341.40802}
  903. - {x: 26.864014, y: 309.901}
  904. - {x: 34.557983, y: 284.54102}
  905. - {x: 38, y: 254.39398}
  906. - {x: 40, y: 238.13501}
  907. - {x: 49.30896, y: 217.19702}
  908. - {x: 61.331055, y: 186.72601}
  909. - {x: 71.43005, y: 159.06598}
  910. - {x: 78.25598, y: 130.04199}
  911. - {x: 73.99194, y: 98.87097}
  912. - {x: 73.96106, y: 66.35498}
  913. - {x: 80.08801, y: 52.97101}
  914. - {x: 102.552, y: 50.448975}
  915. - {x: 111.956055, y: 31.044006}
  916. - {x: 132.17395, y: 23.353027}
  917. - {x: 149, y: 23}
  918. - {x: 73.52637, y: 300.52368}
  919. - {x: 149.41418, y: 75.305786}
  920. - {x: 120.684204, y: 170.89185}
  921. - {x: 100.09277, y: 372.95605}
  922. - {x: 112.94678, y: 94.89917}
  923. - {x: 135.30786, y: 128.20654}
  924. - {x: 69.78821, y: 399.39832}
  925. - {x: 80.791016, y: 251.70312}
  926. - {x: 94.703125, y: 205.29718}
  927. - {x: 123.6084, y: 229.70593}
  928. - {x: 113.61438, y: 276.46863}
  929. - {x: 61.882935, y: 348.69983}
  930. - {x: 106.00244, y: 329.09167}
  931. indices: 1a000000190000002c0000002500000020000000280000000300000025000000290000001c00000026000000290000002500000000000000230000001c00000029000000280000002500000002000000010000002500000003000000020000002900000005000000040000000400000003000000290000000000000025000000010000002600000005000000290000002e0000002d0000002b0000002900000025000000280000002e00000024000000300000002e000000300000000a000000270000000e0000000d0000000c000000270000000d0000000c000000300000002700000006000000260000002d0000002c0000002d00000026000000080000002e00000009000000070000002d000000080000000a000000300000000b0000000c0000000b000000300000000a000000090000002e000000060000002d000000070000002d0000002e0000000800000023000000220000002500000022000000210000002500000028000000200000001e00000018000000170000002b000000180000002b000000190000002c0000001b0000001a000000280000001e0000001d0000001f0000001e00000020000000280000001d0000001c000000190000002b0000002c0000001b000000260000001c0000002b000000240000002e000000260000001b0000002c0000002d0000002c0000002b000000160000002b0000001700000014000000130000002f00000015000000140000002f000000120000002a000000130000002a0000001200000011000000240000001600000015000000300000002f00000027000000150000002f000000240000002f00000030000000240000002a000000270000002f0000000f0000002a000000100000002a00000011000000100000002a0000000f0000000e0000000e000000270000002a0000002f000000130000002a000000240000002b00000016000000060000000500000026000000250000002100000020000000
  932. edges:
  933. - {x: 1, y: 0}
  934. - {x: 2, y: 1}
  935. - {x: 3, y: 2}
  936. - {x: 3, y: 4}
  937. - {x: 4, y: 5}
  938. - {x: 6, y: 5}
  939. - {x: 7, y: 6}
  940. - {x: 7, y: 8}
  941. - {x: 8, y: 9}
  942. - {x: 10, y: 9}
  943. - {x: 10, y: 11}
  944. - {x: 11, y: 12}
  945. - {x: 13, y: 12}
  946. - {x: 14, y: 13}
  947. - {x: 15, y: 14}
  948. - {x: 16, y: 15}
  949. - {x: 17, y: 16}
  950. - {x: 18, y: 17}
  951. - {x: 19, y: 18}
  952. - {x: 20, y: 19}
  953. - {x: 21, y: 20}
  954. - {x: 22, y: 21}
  955. - {x: 22, y: 23}
  956. - {x: 23, y: 24}
  957. - {x: 25, y: 24}
  958. - {x: 26, y: 25}
  959. - {x: 27, y: 26}
  960. - {x: 28, y: 27}
  961. - {x: 29, y: 28}
  962. - {x: 30, y: 29}
  963. - {x: 31, y: 30}
  964. - {x: 31, y: 32}
  965. - {x: 33, y: 32}
  966. - {x: 34, y: 33}
  967. - {x: 35, y: 34}
  968. - {x: 0, y: 35}
  969. weights:
  970. - weight[0]: 1
  971. weight[1]: 0
  972. weight[2]: 0
  973. weight[3]: 0
  974. boneIndex[0]: 2
  975. boneIndex[1]: 0
  976. boneIndex[2]: 0
  977. boneIndex[3]: 0
  978. - weight[0]: 1
  979. weight[1]: 0
  980. weight[2]: 0
  981. weight[3]: 0
  982. boneIndex[0]: 2
  983. boneIndex[1]: 0
  984. boneIndex[2]: 0
  985. boneIndex[3]: 0
  986. - weight[0]: 1
  987. weight[1]: 0
  988. weight[2]: 0
  989. weight[3]: 0
  990. boneIndex[0]: 2
  991. boneIndex[1]: 0
  992. boneIndex[2]: 0
  993. boneIndex[3]: 0
  994. - weight[0]: 1
  995. weight[1]: 0
  996. weight[2]: 0
  997. weight[3]: 0
  998. boneIndex[0]: 2
  999. boneIndex[1]: 0
  1000. boneIndex[2]: 0
  1001. boneIndex[3]: 0
  1002. - weight[0]: 0.99999994
  1003. weight[1]: 0
  1004. weight[2]: 0
  1005. weight[3]: 0
  1006. boneIndex[0]: 2
  1007. boneIndex[1]: 0
  1008. boneIndex[2]: 0
  1009. boneIndex[3]: 0
  1010. - weight[0]: 0.6564907
  1011. weight[1]: 0.34350932
  1012. weight[2]: 0
  1013. weight[3]: 0
  1014. boneIndex[0]: 2
  1015. boneIndex[1]: 1
  1016. boneIndex[2]: 0
  1017. boneIndex[3]: 0
  1018. - weight[0]: 0.88074964
  1019. weight[1]: 0.11925035
  1020. weight[2]: 0
  1021. weight[3]: 0
  1022. boneIndex[0]: 1
  1023. boneIndex[1]: 2
  1024. boneIndex[2]: 0
  1025. boneIndex[3]: 0
  1026. - weight[0]: 0.99999994
  1027. weight[1]: 0
  1028. weight[2]: 0
  1029. weight[3]: 0
  1030. boneIndex[0]: 1
  1031. boneIndex[1]: 0
  1032. boneIndex[2]: 0
  1033. boneIndex[3]: 0
  1034. - weight[0]: 0.88215935
  1035. weight[1]: 0.11784064
  1036. weight[2]: 0
  1037. weight[3]: 0
  1038. boneIndex[0]: 1
  1039. boneIndex[1]: 0
  1040. boneIndex[2]: 0
  1041. boneIndex[3]: 0
  1042. - weight[0]: 0.54394233
  1043. weight[1]: 0.45605764
  1044. weight[2]: 0
  1045. weight[3]: 0
  1046. boneIndex[0]: 1
  1047. boneIndex[1]: 0
  1048. boneIndex[2]: 0
  1049. boneIndex[3]: 0
  1050. - weight[0]: 0.8398887
  1051. weight[1]: 0.16011131
  1052. weight[2]: 0
  1053. weight[3]: 0
  1054. boneIndex[0]: 0
  1055. boneIndex[1]: 1
  1056. boneIndex[2]: 0
  1057. boneIndex[3]: 0
  1058. - weight[0]: 1
  1059. weight[1]: 0
  1060. weight[2]: 0
  1061. weight[3]: 0
  1062. boneIndex[0]: 0
  1063. boneIndex[1]: 0
  1064. boneIndex[2]: 0
  1065. boneIndex[3]: 0
  1066. - weight[0]: 1
  1067. weight[1]: 0
  1068. weight[2]: 0
  1069. weight[3]: 0
  1070. boneIndex[0]: 0
  1071. boneIndex[1]: 0
  1072. boneIndex[2]: 0
  1073. boneIndex[3]: 0
  1074. - weight[0]: 1
  1075. weight[1]: 0
  1076. weight[2]: 0
  1077. weight[3]: 0
  1078. boneIndex[0]: 0
  1079. boneIndex[1]: 0
  1080. boneIndex[2]: 0
  1081. boneIndex[3]: 0
  1082. - weight[0]: 1
  1083. weight[1]: 0
  1084. weight[2]: 0
  1085. weight[3]: 0
  1086. boneIndex[0]: 0
  1087. boneIndex[1]: 0
  1088. boneIndex[2]: 0
  1089. boneIndex[3]: 0
  1090. - weight[0]: 1
  1091. weight[1]: 0
  1092. weight[2]: 0
  1093. weight[3]: 0
  1094. boneIndex[0]: 0
  1095. boneIndex[1]: 0
  1096. boneIndex[2]: 0
  1097. boneIndex[3]: 0
  1098. - weight[0]: 1
  1099. weight[1]: 0
  1100. weight[2]: 0
  1101. weight[3]: 0
  1102. boneIndex[0]: 0
  1103. boneIndex[1]: 0
  1104. boneIndex[2]: 0
  1105. boneIndex[3]: 0
  1106. - weight[0]: 1
  1107. weight[1]: 0
  1108. weight[2]: 0
  1109. weight[3]: 0
  1110. boneIndex[0]: 0
  1111. boneIndex[1]: 0
  1112. boneIndex[2]: 0
  1113. boneIndex[3]: 0
  1114. - weight[0]: 1
  1115. weight[1]: 0
  1116. weight[2]: 0
  1117. weight[3]: 0
  1118. boneIndex[0]: 0
  1119. boneIndex[1]: 0
  1120. boneIndex[2]: 0
  1121. boneIndex[3]: 0
  1122. - weight[0]: 1
  1123. weight[1]: 0
  1124. weight[2]: 0
  1125. weight[3]: 0
  1126. boneIndex[0]: 0
  1127. boneIndex[1]: 0
  1128. boneIndex[2]: 0
  1129. boneIndex[3]: 0
  1130. - weight[0]: 1
  1131. weight[1]: 0
  1132. weight[2]: 0
  1133. weight[3]: 0
  1134. boneIndex[0]: 0
  1135. boneIndex[1]: 0
  1136. boneIndex[2]: 0
  1137. boneIndex[3]: 0
  1138. - weight[0]: 1
  1139. weight[1]: 0
  1140. weight[2]: 0
  1141. weight[3]: 0
  1142. boneIndex[0]: 0
  1143. boneIndex[1]: 0
  1144. boneIndex[2]: 0
  1145. boneIndex[3]: 0
  1146. - weight[0]: 1
  1147. weight[1]: 0
  1148. weight[2]: 0
  1149. weight[3]: 0
  1150. boneIndex[0]: 0
  1151. boneIndex[1]: 0
  1152. boneIndex[2]: 0
  1153. boneIndex[3]: 0
  1154. - weight[0]: 0.5555467
  1155. weight[1]: 0.4444533
  1156. weight[2]: 0
  1157. weight[3]: 0
  1158. boneIndex[0]: 0
  1159. boneIndex[1]: 1
  1160. boneIndex[2]: 0
  1161. boneIndex[3]: 0
  1162. - weight[0]: 0.6563941
  1163. weight[1]: 0.3436059
  1164. weight[2]: 0
  1165. weight[3]: 0
  1166. boneIndex[0]: 1
  1167. boneIndex[1]: 0
  1168. boneIndex[2]: 0
  1169. boneIndex[3]: 0
  1170. - weight[0]: 0.88602626
  1171. weight[1]: 0.11397372
  1172. weight[2]: 0
  1173. weight[3]: 0
  1174. boneIndex[0]: 1
  1175. boneIndex[1]: 0
  1176. boneIndex[2]: 0
  1177. boneIndex[3]: 0
  1178. - weight[0]: 1
  1179. weight[1]: 0
  1180. weight[2]: 0
  1181. weight[3]: 0
  1182. boneIndex[0]: 1
  1183. boneIndex[1]: 0
  1184. boneIndex[2]: 0
  1185. boneIndex[3]: 0
  1186. - weight[0]: 0.66530377
  1187. weight[1]: 0.3346962
  1188. weight[2]: 0
  1189. weight[3]: 0
  1190. boneIndex[0]: 1
  1191. boneIndex[1]: 2
  1192. boneIndex[2]: 0
  1193. boneIndex[3]: 0
  1194. - weight[0]: 0.849418
  1195. weight[1]: 0.15058202
  1196. weight[2]: 0
  1197. weight[3]: 0
  1198. boneIndex[0]: 2
  1199. boneIndex[1]: 1
  1200. boneIndex[2]: 0
  1201. boneIndex[3]: 0
  1202. - weight[0]: 1
  1203. weight[1]: 0
  1204. weight[2]: 0
  1205. weight[3]: 0
  1206. boneIndex[0]: 2
  1207. boneIndex[1]: 0
  1208. boneIndex[2]: 0
  1209. boneIndex[3]: 0
  1210. - weight[0]: 1
  1211. weight[1]: 0
  1212. weight[2]: 0
  1213. weight[3]: 0
  1214. boneIndex[0]: 2
  1215. boneIndex[1]: 0
  1216. boneIndex[2]: 0
  1217. boneIndex[3]: 0
  1218. - weight[0]: 1
  1219. weight[1]: 0
  1220. weight[2]: 0
  1221. weight[3]: 0
  1222. boneIndex[0]: 2
  1223. boneIndex[1]: 0
  1224. boneIndex[2]: 0
  1225. boneIndex[3]: 0
  1226. - weight[0]: 1
  1227. weight[1]: 0
  1228. weight[2]: 0
  1229. weight[3]: 0
  1230. boneIndex[0]: 2
  1231. boneIndex[1]: 0
  1232. boneIndex[2]: 0
  1233. boneIndex[3]: 0
  1234. - weight[0]: 1
  1235. weight[1]: 0
  1236. weight[2]: 0
  1237. weight[3]: 0
  1238. boneIndex[0]: 2
  1239. boneIndex[1]: 0
  1240. boneIndex[2]: 0
  1241. boneIndex[3]: 0
  1242. - weight[0]: 1
  1243. weight[1]: 0
  1244. weight[2]: 0
  1245. weight[3]: 0
  1246. boneIndex[0]: 2
  1247. boneIndex[1]: 0
  1248. boneIndex[2]: 0
  1249. boneIndex[3]: 0
  1250. - weight[0]: 1
  1251. weight[1]: 0
  1252. weight[2]: 0
  1253. weight[3]: 0
  1254. boneIndex[0]: 2
  1255. boneIndex[1]: 0
  1256. boneIndex[2]: 0
  1257. boneIndex[3]: 0
  1258. - weight[0]: 0.99999994
  1259. weight[1]: 0
  1260. weight[2]: 0
  1261. weight[3]: 0
  1262. boneIndex[0]: 0
  1263. boneIndex[1]: 0
  1264. boneIndex[2]: 0
  1265. boneIndex[3]: 0
  1266. - weight[0]: 1
  1267. weight[1]: 0
  1268. weight[2]: 0
  1269. weight[3]: 0
  1270. boneIndex[0]: 2
  1271. boneIndex[1]: 0
  1272. boneIndex[2]: 0
  1273. boneIndex[3]: 0
  1274. - weight[0]: 1
  1275. weight[1]: 0
  1276. weight[2]: 0
  1277. weight[3]: 0
  1278. boneIndex[0]: 1
  1279. boneIndex[1]: 0
  1280. boneIndex[2]: 0
  1281. boneIndex[3]: 0
  1282. - weight[0]: 1
  1283. weight[1]: 0
  1284. weight[2]: 0
  1285. weight[3]: 0
  1286. boneIndex[0]: 0
  1287. boneIndex[1]: 0
  1288. boneIndex[2]: 0
  1289. boneIndex[3]: 0
  1290. - weight[0]: 1
  1291. weight[1]: 0
  1292. weight[2]: 0
  1293. weight[3]: 0
  1294. boneIndex[0]: 2
  1295. boneIndex[1]: 0
  1296. boneIndex[2]: 0
  1297. boneIndex[3]: 0
  1298. - weight[0]: 1
  1299. weight[1]: 0
  1300. weight[2]: 0
  1301. weight[3]: 0
  1302. boneIndex[0]: 2
  1303. boneIndex[1]: 0
  1304. boneIndex[2]: 0
  1305. boneIndex[3]: 0
  1306. - weight[0]: 1
  1307. weight[1]: 0
  1308. weight[2]: 0
  1309. weight[3]: 0
  1310. boneIndex[0]: 0
  1311. boneIndex[1]: 0
  1312. boneIndex[2]: 0
  1313. boneIndex[3]: 0
  1314. - weight[0]: 0.68855774
  1315. weight[1]: 0.31144226
  1316. weight[2]: 0
  1317. weight[3]: 0
  1318. boneIndex[0]: 1
  1319. boneIndex[1]: 0
  1320. boneIndex[2]: 0
  1321. boneIndex[3]: 0
  1322. - weight[0]: 0.99999994
  1323. weight[1]: 0
  1324. weight[2]: 0
  1325. weight[3]: 0
  1326. boneIndex[0]: 1
  1327. boneIndex[1]: 0
  1328. boneIndex[2]: 0
  1329. boneIndex[3]: 0
  1330. - weight[0]: 1
  1331. weight[1]: 0
  1332. weight[2]: 0
  1333. weight[3]: 0
  1334. boneIndex[0]: 1
  1335. boneIndex[1]: 0
  1336. boneIndex[2]: 0
  1337. boneIndex[3]: 0
  1338. - weight[0]: 0.7394272
  1339. weight[1]: 0.2605728
  1340. weight[2]: 0
  1341. weight[3]: 0
  1342. boneIndex[0]: 0
  1343. boneIndex[1]: 1
  1344. boneIndex[2]: 0
  1345. boneIndex[3]: 0
  1346. - weight[0]: 1
  1347. weight[1]: 0
  1348. weight[2]: 0
  1349. weight[3]: 0
  1350. boneIndex[0]: 0
  1351. boneIndex[1]: 0
  1352. boneIndex[2]: 0
  1353. boneIndex[3]: 0
  1354. - weight[0]: 1
  1355. weight[1]: 0
  1356. weight[2]: 0
  1357. weight[3]: 0
  1358. boneIndex[0]: 0
  1359. boneIndex[1]: 0
  1360. boneIndex[2]: 0
  1361. boneIndex[3]: 0
  1362. - serializedVersion: 2
  1363. name: Rikr_Leg_L
  1364. rect:
  1365. serializedVersion: 2
  1366. x: 1068
  1367. y: 24
  1368. width: 267
  1369. height: 415
  1370. alignment: 9
  1371. pivot: {x: 0.5075761, y: 0.8509579}
  1372. border: {x: 0, y: 0, z: 0, w: 0}
  1373. outline:
  1374. - - {x: -133.5, y: 207.5}
  1375. - {x: -119.5, y: 108.5}
  1376. - {x: -65.5, y: 38.5}
  1377. - {x: -67.5, y: -98.5}
  1378. - {x: -27.5, y: -207.5}
  1379. - {x: 89.5, y: -207.5}
  1380. - {x: 124.5, y: 19.5}
  1381. - {x: 112.5, y: 207.5}
  1382. physicsShape: []
  1383. tessellationDetail: 0
  1384. bones:
  1385. - name: bone_1
  1386. guid:
  1387. position: {x: 114.911255, y: 387.1773, z: 0}
  1388. rotation: {x: 0, y: 0, z: -0.61983055, w: 0.78473574}
  1389. length: 128.63994
  1390. parentId: -1
  1391. color:
  1392. serializedVersion: 2
  1393. rgba: 0
  1394. - name: bone_2
  1395. guid:
  1396. position: {x: 128.63994, y: 0.000032295637, z: 0}
  1397. rotation: {x: 0, y: 0, z: -0.11660572, w: 0.9931783}
  1398. length: 143.01924
  1399. parentId: 0
  1400. color:
  1401. serializedVersion: 2
  1402. rgba: 0
  1403. - name: bone_3
  1404. guid:
  1405. position: {x: 143.01924, y: -0.000017809394, z: 0}
  1406. rotation: {x: 0, y: 0, z: -0.054108143, w: 0.9985351}
  1407. length: 91.91155
  1408. parentId: 1
  1409. color:
  1410. serializedVersion: 2
  1411. rgba: 0
  1412. - name: bone_4
  1413. guid:
  1414. position: {x: 91.911545, y: -0.00001807403, z: 0}
  1415. rotation: {x: 0, y: 0, z: 0.7537927, w: 0.65711236}
  1416. length: 69.55143
  1417. parentId: 2
  1418. color:
  1419. serializedVersion: 2
  1420. rgba: 0
  1421. spriteID: 1c11afada94984f5c82b6a1788a219a1
  1422. internalID: 21300004
  1423. vertices:
  1424. - {x: 201.96497, y: 17.966003}
  1425. - {x: 215.50403, y: 24.524994}
  1426. - {x: 217, y: 47.841003}
  1427. - {x: 208.02795, y: 61.977005}
  1428. - {x: 185.72803, y: 69}
  1429. - {x: 183.25, y: 86.848}
  1430. - {x: 191.02002, y: 114.035}
  1431. - {x: 197.53394, y: 140.94}
  1432. - {x: 208.92798, y: 159.745}
  1433. - {x: 222.58997, y: 182.32}
  1434. - {x: 235.469, y: 192.41}
  1435. - {x: 242.05505, y: 216.944}
  1436. - {x: 240.05396, y: 242.918}
  1437. - {x: 236.04395, y: 274.159}
  1438. - {x: 235.12402, y: 305.686}
  1439. - {x: 234.77698, y: 337.288}
  1440. - {x: 233.64099, y: 368.466}
  1441. - {x: 231.203, y: 398.247}
  1442. - {x: 227.18005, y: 409.163}
  1443. - {x: 192.66199, y: 407.366}
  1444. - {x: 161.09094, y: 406.499}
  1445. - {x: 130.68005, y: 404.65698}
  1446. - {x: 99.55505, y: 404.116}
  1447. - {x: 69.16699, y: 401.431}
  1448. - {x: 38.072998, y: 399.35498}
  1449. - {x: 17.496948, y: 396.496}
  1450. - {x: 16.881958, y: 384.229}
  1451. - {x: 24.369995, y: 353.57898}
  1452. - {x: 29.837036, y: 330.74402}
  1453. - {x: 43.077026, y: 301.923}
  1454. - {x: 62.250977, y: 278.626}
  1455. - {x: 78.79602, y: 255.34698}
  1456. - {x: 84.09302, y: 227.04199}
  1457. - {x: 85.47803, y: 195.935}
  1458. - {x: 84.99597, y: 164.746}
  1459. - {x: 84.73096, y: 138.38}
  1460. - {x: 93.44702, y: 110.72299}
  1461. - {x: 99.33496, y: 86.132}
  1462. - {x: 104.81299, y: 52.192993}
  1463. - {x: 106.13403, y: 23.093994}
  1464. - {x: 121.69702, y: 17.893005}
  1465. - {x: 151.81995, y: 14.75}
  1466. - {x: 171.95496, y: 14.735001}
  1467. - {x: 168.9148, y: 329.30103}
  1468. - {x: 106.22461, y: 328.47302}
  1469. - {x: 159.51782, y: 254.65237}
  1470. - {x: 149.03076, y: 180.50917}
  1471. indices: 2e00000023000000220000002e00000007000000060000002e00000008000000070000000000000004000000030000000500000024000000060000000300000002000000000000000100000000000000020000000b0000000a00000009000000080000002e000000090000002d000000090000002e000000100000002b000000130000002d0000002b0000000d00000011000000100000001300000015000000140000002b0000002b00000014000000130000001100000013000000120000002d0000002c0000002b0000000d0000000c0000002d0000000b0000002d0000000c000000100000000f0000002b0000000e0000002b0000000f0000002b0000000e0000000d0000002600000005000000040000000b000000090000002d00000004000000000000002a0000001e0000001d0000002c00000022000000210000002e00000021000000200000002e000000230000002e000000240000002800000027000000260000002900000028000000260000000500000026000000250000002500000024000000050000002e00000006000000240000002900000026000000040000002d000000200000001f0000001b00000018000000170000001b0000002c0000001c00000019000000180000001a0000001b0000001a000000180000002c0000001d0000001c0000002c0000001f0000001e0000001f0000002c0000002d0000001b000000170000002c00000017000000160000002c000000150000002c000000160000002b0000002c00000015000000200000002d0000002e000000040000002a00000029000000
  1472. edges:
  1473. - {x: 1, y: 0}
  1474. - {x: 1, y: 2}
  1475. - {x: 2, y: 3}
  1476. - {x: 4, y: 3}
  1477. - {x: 5, y: 4}
  1478. - {x: 6, y: 5}
  1479. - {x: 7, y: 6}
  1480. - {x: 7, y: 8}
  1481. - {x: 8, y: 9}
  1482. - {x: 10, y: 9}
  1483. - {x: 11, y: 10}
  1484. - {x: 12, y: 11}
  1485. - {x: 12, y: 13}
  1486. - {x: 14, y: 13}
  1487. - {x: 14, y: 15}
  1488. - {x: 15, y: 16}
  1489. - {x: 17, y: 16}
  1490. - {x: 18, y: 17}
  1491. - {x: 18, y: 19}
  1492. - {x: 19, y: 20}
  1493. - {x: 21, y: 20}
  1494. - {x: 21, y: 22}
  1495. - {x: 23, y: 22}
  1496. - {x: 23, y: 24}
  1497. - {x: 25, y: 24}
  1498. - {x: 26, y: 25}
  1499. - {x: 27, y: 26}
  1500. - {x: 28, y: 27}
  1501. - {x: 29, y: 28}
  1502. - {x: 30, y: 29}
  1503. - {x: 30, y: 31}
  1504. - {x: 32, y: 31}
  1505. - {x: 33, y: 32}
  1506. - {x: 34, y: 33}
  1507. - {x: 35, y: 34}
  1508. - {x: 36, y: 35}
  1509. - {x: 36, y: 37}
  1510. - {x: 37, y: 38}
  1511. - {x: 39, y: 38}
  1512. - {x: 40, y: 39}
  1513. - {x: 41, y: 40}
  1514. - {x: 42, y: 41}
  1515. - {x: 0, y: 42}
  1516. weights:
  1517. - weight[0]: 1
  1518. weight[1]: 0
  1519. weight[2]: 0
  1520. weight[3]: 0
  1521. boneIndex[0]: 3
  1522. boneIndex[1]: 0
  1523. boneIndex[2]: 0
  1524. boneIndex[3]: 0
  1525. - weight[0]: 1
  1526. weight[1]: 0
  1527. weight[2]: 0
  1528. weight[3]: 0
  1529. boneIndex[0]: 3
  1530. boneIndex[1]: 0
  1531. boneIndex[2]: 0
  1532. boneIndex[3]: 0
  1533. - weight[0]: 0.99999994
  1534. weight[1]: 0
  1535. weight[2]: 0
  1536. weight[3]: 0
  1537. boneIndex[0]: 3
  1538. boneIndex[1]: 0
  1539. boneIndex[2]: 0
  1540. boneIndex[3]: 0
  1541. - weight[0]: 0.8841283
  1542. weight[1]: 0.115871735
  1543. weight[2]: 0
  1544. weight[3]: 0
  1545. boneIndex[0]: 3
  1546. boneIndex[1]: 2
  1547. boneIndex[2]: 0
  1548. boneIndex[3]: 0
  1549. - weight[0]: 0.53153956
  1550. weight[1]: 0.46846047
  1551. weight[2]: 0
  1552. weight[3]: 0
  1553. boneIndex[0]: 3
  1554. boneIndex[1]: 2
  1555. boneIndex[2]: 0
  1556. boneIndex[3]: 0
  1557. - weight[0]: 0.8061043
  1558. weight[1]: 0.19389573
  1559. weight[2]: 0
  1560. weight[3]: 0
  1561. boneIndex[0]: 2
  1562. boneIndex[1]: 3
  1563. boneIndex[2]: 0
  1564. boneIndex[3]: 0
  1565. - weight[0]: 0.52057046
  1566. weight[1]: 0.47942957
  1567. weight[2]: 0
  1568. weight[3]: 0
  1569. boneIndex[0]: 2
  1570. boneIndex[1]: 1
  1571. boneIndex[2]: 0
  1572. boneIndex[3]: 0
  1573. - weight[0]: 0.8934319
  1574. weight[1]: 0.106568076
  1575. weight[2]: 0
  1576. weight[3]: 0
  1577. boneIndex[0]: 1
  1578. boneIndex[1]: 2
  1579. boneIndex[2]: 0
  1580. boneIndex[3]: 0
  1581. - weight[0]: 0.99999994
  1582. weight[1]: 0
  1583. weight[2]: 0
  1584. weight[3]: 0
  1585. boneIndex[0]: 1
  1586. boneIndex[1]: 0
  1587. boneIndex[2]: 0
  1588. boneIndex[3]: 0
  1589. - weight[0]: 0.99999994
  1590. weight[1]: 0
  1591. weight[2]: 0
  1592. weight[3]: 0
  1593. boneIndex[0]: 1
  1594. boneIndex[1]: 0
  1595. boneIndex[2]: 0
  1596. boneIndex[3]: 0
  1597. - weight[0]: 1
  1598. weight[1]: 0
  1599. weight[2]: 0
  1600. weight[3]: 0
  1601. boneIndex[0]: 1
  1602. boneIndex[1]: 0
  1603. boneIndex[2]: 0
  1604. boneIndex[3]: 0
  1605. - weight[0]: 0.88810754
  1606. weight[1]: 0.11189243
  1607. weight[2]: 0
  1608. weight[3]: 0
  1609. boneIndex[0]: 1
  1610. boneIndex[1]: 0
  1611. boneIndex[2]: 0
  1612. boneIndex[3]: 0
  1613. - weight[0]: 0.74286497
  1614. weight[1]: 0.257135
  1615. weight[2]: 0
  1616. weight[3]: 0
  1617. boneIndex[0]: 1
  1618. boneIndex[1]: 0
  1619. boneIndex[2]: 0
  1620. boneIndex[3]: 0
  1621. - weight[0]: 0.53458077
  1622. weight[1]: 0.46541923
  1623. weight[2]: 0
  1624. weight[3]: 0
  1625. boneIndex[0]: 0
  1626. boneIndex[1]: 1
  1627. boneIndex[2]: 0
  1628. boneIndex[3]: 0
  1629. - weight[0]: 0.8034561
  1630. weight[1]: 0.19654387
  1631. weight[2]: 0
  1632. weight[3]: 0
  1633. boneIndex[0]: 0
  1634. boneIndex[1]: 1
  1635. boneIndex[2]: 0
  1636. boneIndex[3]: 0
  1637. - weight[0]: 1
  1638. weight[1]: 0
  1639. weight[2]: 0
  1640. weight[3]: 0
  1641. boneIndex[0]: 0
  1642. boneIndex[1]: 0
  1643. boneIndex[2]: 0
  1644. boneIndex[3]: 0
  1645. - weight[0]: 1
  1646. weight[1]: 0
  1647. weight[2]: 0
  1648. weight[3]: 0
  1649. boneIndex[0]: 0
  1650. boneIndex[1]: 0
  1651. boneIndex[2]: 0
  1652. boneIndex[3]: 0
  1653. - weight[0]: 1
  1654. weight[1]: 0
  1655. weight[2]: 0
  1656. weight[3]: 0
  1657. boneIndex[0]: 0
  1658. boneIndex[1]: 0
  1659. boneIndex[2]: 0
  1660. boneIndex[3]: 0
  1661. - weight[0]: 1
  1662. weight[1]: 0
  1663. weight[2]: 0
  1664. weight[3]: 0
  1665. boneIndex[0]: 0
  1666. boneIndex[1]: 0
  1667. boneIndex[2]: 0
  1668. boneIndex[3]: 0
  1669. - weight[0]: 1
  1670. weight[1]: 0
  1671. weight[2]: 0
  1672. weight[3]: 0
  1673. boneIndex[0]: 0
  1674. boneIndex[1]: 0
  1675. boneIndex[2]: 0
  1676. boneIndex[3]: 0
  1677. - weight[0]: 1
  1678. weight[1]: 0
  1679. weight[2]: 0
  1680. weight[3]: 0
  1681. boneIndex[0]: 0
  1682. boneIndex[1]: 0
  1683. boneIndex[2]: 0
  1684. boneIndex[3]: 0
  1685. - weight[0]: 1
  1686. weight[1]: 0
  1687. weight[2]: 0
  1688. weight[3]: 0
  1689. boneIndex[0]: 0
  1690. boneIndex[1]: 0
  1691. boneIndex[2]: 0
  1692. boneIndex[3]: 0
  1693. - weight[0]: 1
  1694. weight[1]: 0
  1695. weight[2]: 0
  1696. weight[3]: 0
  1697. boneIndex[0]: 0
  1698. boneIndex[1]: 0
  1699. boneIndex[2]: 0
  1700. boneIndex[3]: 0
  1701. - weight[0]: 1
  1702. weight[1]: 0
  1703. weight[2]: 0
  1704. weight[3]: 0
  1705. boneIndex[0]: 0
  1706. boneIndex[1]: 0
  1707. boneIndex[2]: 0
  1708. boneIndex[3]: 0
  1709. - weight[0]: 1
  1710. weight[1]: 0
  1711. weight[2]: 0
  1712. weight[3]: 0
  1713. boneIndex[0]: 0
  1714. boneIndex[1]: 0
  1715. boneIndex[2]: 0
  1716. boneIndex[3]: 0
  1717. - weight[0]: 1
  1718. weight[1]: 0
  1719. weight[2]: 0
  1720. weight[3]: 0
  1721. boneIndex[0]: 0
  1722. boneIndex[1]: 0
  1723. boneIndex[2]: 0
  1724. boneIndex[3]: 0
  1725. - weight[0]: 1
  1726. weight[1]: 0
  1727. weight[2]: 0
  1728. weight[3]: 0
  1729. boneIndex[0]: 0
  1730. boneIndex[1]: 0
  1731. boneIndex[2]: 0
  1732. boneIndex[3]: 0
  1733. - weight[0]: 1
  1734. weight[1]: 0
  1735. weight[2]: 0
  1736. weight[3]: 0
  1737. boneIndex[0]: 0
  1738. boneIndex[1]: 0
  1739. boneIndex[2]: 0
  1740. boneIndex[3]: 0
  1741. - weight[0]: 1
  1742. weight[1]: 0
  1743. weight[2]: 0
  1744. weight[3]: 0
  1745. boneIndex[0]: 0
  1746. boneIndex[1]: 0
  1747. boneIndex[2]: 0
  1748. boneIndex[3]: 0
  1749. - weight[0]: 1
  1750. weight[1]: 0
  1751. weight[2]: 0
  1752. weight[3]: 0
  1753. boneIndex[0]: 0
  1754. boneIndex[1]: 0
  1755. boneIndex[2]: 0
  1756. boneIndex[3]: 0
  1757. - weight[0]: 0.8947976
  1758. weight[1]: 0.10520238
  1759. weight[2]: 0
  1760. weight[3]: 0
  1761. boneIndex[0]: 0
  1762. boneIndex[1]: 1
  1763. boneIndex[2]: 0
  1764. boneIndex[3]: 0
  1765. - weight[0]: 0.63047785
  1766. weight[1]: 0.36952215
  1767. weight[2]: 0
  1768. weight[3]: 0
  1769. boneIndex[0]: 0
  1770. boneIndex[1]: 1
  1771. boneIndex[2]: 0
  1772. boneIndex[3]: 0
  1773. - weight[0]: 0.792653
  1774. weight[1]: 0.20734699
  1775. weight[2]: 0
  1776. weight[3]: 0
  1777. boneIndex[0]: 1
  1778. boneIndex[1]: 0
  1779. boneIndex[2]: 0
  1780. boneIndex[3]: 0
  1781. - weight[0]: 1
  1782. weight[1]: 0
  1783. weight[2]: 0
  1784. weight[3]: 0
  1785. boneIndex[0]: 1
  1786. boneIndex[1]: 0
  1787. boneIndex[2]: 0
  1788. boneIndex[3]: 0
  1789. - weight[0]: 0.99999994
  1790. weight[1]: 0
  1791. weight[2]: 0
  1792. weight[3]: 0
  1793. boneIndex[0]: 1
  1794. boneIndex[1]: 0
  1795. boneIndex[2]: 0
  1796. boneIndex[3]: 0
  1797. - weight[0]: 0.84175795
  1798. weight[1]: 0.15824212
  1799. weight[2]: 0
  1800. weight[3]: 0
  1801. boneIndex[0]: 1
  1802. boneIndex[1]: 2
  1803. boneIndex[2]: 0
  1804. boneIndex[3]: 0
  1805. - weight[0]: 0.5664609
  1806. weight[1]: 0.43353915
  1807. weight[2]: 0
  1808. weight[3]: 0
  1809. boneIndex[0]: 2
  1810. boneIndex[1]: 1
  1811. boneIndex[2]: 0
  1812. boneIndex[3]: 0
  1813. - weight[0]: 1
  1814. weight[1]: 0
  1815. weight[2]: 0
  1816. weight[3]: 0
  1817. boneIndex[0]: 2
  1818. boneIndex[1]: 0
  1819. boneIndex[2]: 0
  1820. boneIndex[3]: 0
  1821. - weight[0]: 1
  1822. weight[1]: 0
  1823. weight[2]: 0
  1824. weight[3]: 0
  1825. boneIndex[0]: 2
  1826. boneIndex[1]: 0
  1827. boneIndex[2]: 0
  1828. boneIndex[3]: 0
  1829. - weight[0]: 0.88028646
  1830. weight[1]: 0.11971353
  1831. weight[2]: 0
  1832. weight[3]: 0
  1833. boneIndex[0]: 2
  1834. boneIndex[1]: 3
  1835. boneIndex[2]: 0
  1836. boneIndex[3]: 0
  1837. - weight[0]: 0.63404256
  1838. weight[1]: 0.36595747
  1839. weight[2]: 0
  1840. weight[3]: 0
  1841. boneIndex[0]: 2
  1842. boneIndex[1]: 3
  1843. boneIndex[2]: 0
  1844. boneIndex[3]: 0
  1845. - weight[0]: 0.99999994
  1846. weight[1]: 0
  1847. weight[2]: 0
  1848. weight[3]: 0
  1849. boneIndex[0]: 3
  1850. boneIndex[1]: 0
  1851. boneIndex[2]: 0
  1852. boneIndex[3]: 0
  1853. - weight[0]: 1
  1854. weight[1]: 0
  1855. weight[2]: 0
  1856. weight[3]: 0
  1857. boneIndex[0]: 3
  1858. boneIndex[1]: 0
  1859. boneIndex[2]: 0
  1860. boneIndex[3]: 0
  1861. - weight[0]: 1
  1862. weight[1]: 0
  1863. weight[2]: 0
  1864. weight[3]: 0
  1865. boneIndex[0]: 0
  1866. boneIndex[1]: 0
  1867. boneIndex[2]: 0
  1868. boneIndex[3]: 0
  1869. - weight[0]: 1
  1870. weight[1]: 0
  1871. weight[2]: 0
  1872. weight[3]: 0
  1873. boneIndex[0]: 0
  1874. boneIndex[1]: 0
  1875. boneIndex[2]: 0
  1876. boneIndex[3]: 0
  1877. - weight[0]: 0.792048
  1878. weight[1]: 0.207952
  1879. weight[2]: 0
  1880. weight[3]: 0
  1881. boneIndex[0]: 1
  1882. boneIndex[1]: 0
  1883. boneIndex[2]: 0
  1884. boneIndex[3]: 0
  1885. - weight[0]: 1
  1886. weight[1]: 0
  1887. weight[2]: 0
  1888. weight[3]: 0
  1889. boneIndex[0]: 1
  1890. boneIndex[1]: 0
  1891. boneIndex[2]: 0
  1892. boneIndex[3]: 0
  1893. - serializedVersion: 2
  1894. name: Rikr_Body
  1895. rect:
  1896. serializedVersion: 2
  1897. x: 576
  1898. y: 421
  1899. width: 563
  1900. height: 540
  1901. alignment: 9
  1902. pivot: {x: 0.54670954, y: 0.18532941}
  1903. border: {x: 0, y: 0, z: 0, w: 0}
  1904. outline:
  1905. - - {x: 144.5, y: -250}
  1906. - {x: 50.5, y: -270}
  1907. - {x: -55.5, y: -250}
  1908. - {x: -139.5, y: -207}
  1909. - {x: -230.5, y: -18}
  1910. - {x: -272.5, y: 36}
  1911. - {x: -281.5, y: 204}
  1912. - {x: -101.5, y: 270}
  1913. - {x: 195.5, y: 255}
  1914. - {x: 273.5, y: 180}
  1915. - {x: 272.5, y: 51}
  1916. - {x: 228.5, y: -12}
  1917. - {x: 202.5, y: -202}
  1918. physicsShape: []
  1919. tessellationDetail: 0
  1920. bones:
  1921. - name: bone_1
  1922. guid:
  1923. position: {x: 312.9273, y: 69.632416, z: -1}
  1924. rotation: {x: 0, y: 0, z: 0.7103728, w: 0.7038256}
  1925. length: 214.53824
  1926. parentId: -1
  1927. color:
  1928. serializedVersion: 2
  1929. rgba: 0
  1930. - name: bone_2
  1931. guid:
  1932. position: {x: 214.53824, y: 0.0000007020838, z: -1}
  1933. rotation: {x: 0, y: 0, z: -0.12969053, w: 0.99155456}
  1934. length: 139.58289
  1935. parentId: 0
  1936. color:
  1937. serializedVersion: 2
  1938. rgba: 0
  1939. spriteID: f8b2352dee29b40b0bff6df309cb5784
  1940. internalID: 21300006
  1941. vertices:
  1942. - {x: 332.03802, y: 8.865997}
  1943. - {x: 355.677, y: 13.118988}
  1944. - {x: 380.18597, y: 27.350006}
  1945. - {x: 414.14, y: 60.10498}
  1946. - {x: 451.891, y: 88.445984}
  1947. - {x: 459, y: 96.83099}
  1948. - {x: 473.11304, y: 157.47302}
  1949. - {x: 480.92603, y: 203.67297}
  1950. - {x: 487, y: 236.33203}
  1951. - {x: 490.64697, y: 284.117}
  1952. - {x: 494.005, y: 290.99402}
  1953. - {x: 500.07397, y: 289.07397}
  1954. - {x: 508.29895, y: 304.56702}
  1955. - {x: 526.095, y: 325.80902}
  1956. - {x: 529.515, y: 343.31598}
  1957. - {x: 537.81396, y: 365.453}
  1958. - {x: 546.0239, y: 399.388}
  1959. - {x: 528.30396, y: 430}
  1960. - {x: 536.87, y: 430.87}
  1961. - {x: 535, y: 442.93103}
  1962. - {x: 500.67505, y: 470.35602}
  1963. - {x: 483.62903, y: 489.815}
  1964. - {x: 459.17896, y: 508.547}
  1965. - {x: 451.94702, y: 508.86902}
  1966. - {x: 420.70703, y: 512.63403}
  1967. - {x: 406.015, y: 518.544}
  1968. - {x: 377.549, y: 519.813}
  1969. - {x: 358.73798, y: 522.88403}
  1970. - {x: 341.80402, y: 513}
  1971. - {x: 320.86298, y: 522.86304}
  1972. - {x: 297.77502, y: 516.48303}
  1973. - {x: 284.563, y: 526.651}
  1974. - {x: 253.42499, y: 505.575}
  1975. - {x: 252.344, y: 523.164}
  1976. - {x: 235.45502, y: 519.302}
  1977. - {x: 211.388, y: 518.029}
  1978. - {x: 193.784, y: 514.568}
  1979. - {x: 159.06097, y: 514.585}
  1980. - {x: 150.258, y: 515.394}
  1981. - {x: 118.64801, y: 498.016}
  1982. - {x: 87.69501, y: 495.69397}
  1983. - {x: 65.11401, y: 465.31897}
  1984. - {x: 38.932007, y: 446.127}
  1985. - {x: 28.91101, y: 429.526}
  1986. - {x: 22.412964, y: 412.78198}
  1987. - {x: 10, y: 382.97302}
  1988. - {x: 14.653992, y: 350.365}
  1989. - {x: 20.493042, y: 344.695}
  1990. - {x: 29.320007, y: 325.977}
  1991. - {x: 32.85498, y: 305.87402}
  1992. - {x: 41.536987, y: 296.292}
  1993. - {x: 63.96997, y: 312.93903}
  1994. - {x: 63.71698, y: 290.20703}
  1995. - {x: 75.99402, y: 278.404}
  1996. - {x: 92.41199, y: 270.588}
  1997. - {x: 97.35803, y: 226.62201}
  1998. - {x: 95.849976, y: 216.94397}
  1999. - {x: 111.04901, y: 176.43103}
  2000. - {x: 127.906006, y: 130.758}
  2001. - {x: 147.99097, y: 90.00299}
  2002. - {x: 160.943, y: 80.37201}
  2003. - {x: 206.98499, y: 63.273987}
  2004. - {x: 247.78601, y: 46.018982}
  2005. - {x: 287.263, y: 22.223999}
  2006. - {x: 304.90997, y: 12.059998}
  2007. - {x: 330.175, y: 8.457001}
  2008. - {x: 298.55298, y: 202.41449}
  2009. - {x: 362.2967, y: 355.12305}
  2010. - {x: 212.88141, y: 347.82416}
  2011. indices: 000000004100000040000000430000000c0000000a0000002c0000002f0000002d00000033000000290000004400000029000000330000002c0000000e0000000c000000430000000f0000000e000000110000002c0000002b00000029000000290000002b0000002a000000440000002700000025000000440000002000000043000000270000004400000029000000440000002500000024000000240000002000000044000000110000000e0000004300000043000000140000001100000011000000100000000f0000002900000028000000270000002200000021000000200000002500000027000000260000001d0000001c0000001e0000001a0000001c0000001b00000043000000200000001e0000001a0000001900000018000000430000001c0000001a0000001e0000001c000000430000001100000013000000120000001500000014000000430000001e000000200000001f00000014000000130000001100000018000000430000001a0000002200000020000000230000000c0000000e0000000d0000002d0000002f0000002e0000000a00000009000000430000003f0000003e000000420000003c0000003b0000003a000000420000003e0000003d0000003f00000002000000000000003a0000003d0000003c000000420000003d0000003a00000000000000400000003f000000060000000400000042000000420000000400000003000000020000003f000000420000000300000002000000420000000100000000000000020000002c000000330000002f00000042000000070000000600000039000000420000003a00000007000000420000000800000033000000300000002f0000003000000033000000310000003200000031000000330000000a0000000c0000000b000000440000003600000033000000090000000800000043000000420000003900000037000000330000003500000034000000360000003500000033000000370000003600000044000000080000004200000043000000420000003700000044000000390000003800000037000000420000004400000043000000180000001700000015000000230000002000000024000000060000000500000004000000150000004300000018000000150000001700000016000000
  2012. edges:
  2013. - {x: 0, y: 1}
  2014. - {x: 2, y: 1}
  2015. - {x: 3, y: 2}
  2016. - {x: 4, y: 3}
  2017. - {x: 5, y: 4}
  2018. - {x: 6, y: 5}
  2019. - {x: 6, y: 7}
  2020. - {x: 8, y: 7}
  2021. - {x: 9, y: 8}
  2022. - {x: 9, y: 10}
  2023. - {x: 11, y: 10}
  2024. - {x: 11, y: 12}
  2025. - {x: 13, y: 12}
  2026. - {x: 14, y: 13}
  2027. - {x: 14, y: 15}
  2028. - {x: 15, y: 16}
  2029. - {x: 17, y: 16}
  2030. - {x: 17, y: 18}
  2031. - {x: 19, y: 18}
  2032. - {x: 20, y: 19}
  2033. - {x: 20, y: 21}
  2034. - {x: 22, y: 21}
  2035. - {x: 22, y: 23}
  2036. - {x: 23, y: 24}
  2037. - {x: 25, y: 24}
  2038. - {x: 26, y: 25}
  2039. - {x: 27, y: 26}
  2040. - {x: 28, y: 27}
  2041. - {x: 29, y: 28}
  2042. - {x: 29, y: 30}
  2043. - {x: 30, y: 31}
  2044. - {x: 32, y: 31}
  2045. - {x: 32, y: 33}
  2046. - {x: 34, y: 33}
  2047. - {x: 35, y: 34}
  2048. - {x: 36, y: 35}
  2049. - {x: 36, y: 37}
  2050. - {x: 37, y: 38}
  2051. - {x: 38, y: 39}
  2052. - {x: 39, y: 40}
  2053. - {x: 41, y: 40}
  2054. - {x: 42, y: 41}
  2055. - {x: 43, y: 42}
  2056. - {x: 44, y: 43}
  2057. - {x: 44, y: 45}
  2058. - {x: 46, y: 45}
  2059. - {x: 46, y: 47}
  2060. - {x: 48, y: 47}
  2061. - {x: 48, y: 49}
  2062. - {x: 49, y: 50}
  2063. - {x: 50, y: 51}
  2064. - {x: 51, y: 52}
  2065. - {x: 52, y: 53}
  2066. - {x: 54, y: 53}
  2067. - {x: 55, y: 54}
  2068. - {x: 56, y: 55}
  2069. - {x: 56, y: 57}
  2070. - {x: 57, y: 58}
  2071. - {x: 59, y: 58}
  2072. - {x: 60, y: 59}
  2073. - {x: 61, y: 60}
  2074. - {x: 62, y: 61}
  2075. - {x: 63, y: 62}
  2076. - {x: 64, y: 63}
  2077. - {x: 64, y: 65}
  2078. - {x: 0, y: 65}
  2079. weights:
  2080. - weight[0]: 1
  2081. weight[1]: 0
  2082. weight[2]: 0
  2083. weight[3]: 0
  2084. boneIndex[0]: 0
  2085. boneIndex[1]: 0
  2086. boneIndex[2]: 0
  2087. boneIndex[3]: 0
  2088. - weight[0]: 1
  2089. weight[1]: 0
  2090. weight[2]: 0
  2091. weight[3]: 0
  2092. boneIndex[0]: 0
  2093. boneIndex[1]: 0
  2094. boneIndex[2]: 0
  2095. boneIndex[3]: 0
  2096. - weight[0]: 1
  2097. weight[1]: 0
  2098. weight[2]: 0
  2099. weight[3]: 0
  2100. boneIndex[0]: 0
  2101. boneIndex[1]: 0
  2102. boneIndex[2]: 0
  2103. boneIndex[3]: 0
  2104. - weight[0]: 1
  2105. weight[1]: 0
  2106. weight[2]: 0
  2107. weight[3]: 0
  2108. boneIndex[0]: 0
  2109. boneIndex[1]: 0
  2110. boneIndex[2]: 0
  2111. boneIndex[3]: 0
  2112. - weight[0]: 0.99999994
  2113. weight[1]: 0
  2114. weight[2]: 0
  2115. weight[3]: 0
  2116. boneIndex[0]: 0
  2117. boneIndex[1]: 0
  2118. boneIndex[2]: 0
  2119. boneIndex[3]: 0
  2120. - weight[0]: 0.99999994
  2121. weight[1]: 0
  2122. weight[2]: 0
  2123. weight[3]: 0
  2124. boneIndex[0]: 0
  2125. boneIndex[1]: 0
  2126. boneIndex[2]: 0
  2127. boneIndex[3]: 0
  2128. - weight[0]: 1
  2129. weight[1]: 0
  2130. weight[2]: 0
  2131. weight[3]: 0
  2132. boneIndex[0]: 0
  2133. boneIndex[1]: 0
  2134. boneIndex[2]: 0
  2135. boneIndex[3]: 0
  2136. - weight[0]: 0.79995376
  2137. weight[1]: 0.20004624
  2138. weight[2]: 0
  2139. weight[3]: 0
  2140. boneIndex[0]: 0
  2141. boneIndex[1]: 1
  2142. boneIndex[2]: 0
  2143. boneIndex[3]: 0
  2144. - weight[0]: 0.6611828
  2145. weight[1]: 0.33881718
  2146. weight[2]: 0
  2147. weight[3]: 0
  2148. boneIndex[0]: 0
  2149. boneIndex[1]: 1
  2150. boneIndex[2]: 0
  2151. boneIndex[3]: 0
  2152. - weight[0]: 0.5806031
  2153. weight[1]: 0.41939688
  2154. weight[2]: 0
  2155. weight[3]: 0
  2156. boneIndex[0]: 1
  2157. boneIndex[1]: 0
  2158. boneIndex[2]: 0
  2159. boneIndex[3]: 0
  2160. - weight[0]: 0.6346502
  2161. weight[1]: 0.36534983
  2162. weight[2]: 0
  2163. weight[3]: 0
  2164. boneIndex[0]: 1
  2165. boneIndex[1]: 0
  2166. boneIndex[2]: 0
  2167. boneIndex[3]: 0
  2168. - weight[0]: 0.6505586
  2169. weight[1]: 0.3494414
  2170. weight[2]: 0
  2171. weight[3]: 0
  2172. boneIndex[0]: 1
  2173. boneIndex[1]: 0
  2174. boneIndex[2]: 0
  2175. boneIndex[3]: 0
  2176. - weight[0]: 0.71007776
  2177. weight[1]: 0.28992224
  2178. weight[2]: 0
  2179. weight[3]: 0
  2180. boneIndex[0]: 1
  2181. boneIndex[1]: 0
  2182. boneIndex[2]: 0
  2183. boneIndex[3]: 0
  2184. - weight[0]: 0.7833567
  2185. weight[1]: 0.21664329
  2186. weight[2]: 0
  2187. weight[3]: 0
  2188. boneIndex[0]: 1
  2189. boneIndex[1]: 0
  2190. boneIndex[2]: 0
  2191. boneIndex[3]: 0
  2192. - weight[0]: 0.8181
  2193. weight[1]: 0.18190005
  2194. weight[2]: 0
  2195. weight[3]: 0
  2196. boneIndex[0]: 1
  2197. boneIndex[1]: 0
  2198. boneIndex[2]: 0
  2199. boneIndex[3]: 0
  2200. - weight[0]: 0.8639704
  2201. weight[1]: 0.1360296
  2202. weight[2]: 0
  2203. weight[3]: 0
  2204. boneIndex[0]: 1
  2205. boneIndex[1]: 0
  2206. boneIndex[2]: 0
  2207. boneIndex[3]: 0
  2208. - weight[0]: 1
  2209. weight[1]: 0
  2210. weight[2]: 0
  2211. weight[3]: 0
  2212. boneIndex[0]: 1
  2213. boneIndex[1]: 0
  2214. boneIndex[2]: 0
  2215. boneIndex[3]: 0
  2216. - weight[0]: 1
  2217. weight[1]: 0
  2218. weight[2]: 0
  2219. weight[3]: 0
  2220. boneIndex[0]: 1
  2221. boneIndex[1]: 0
  2222. boneIndex[2]: 0
  2223. boneIndex[3]: 0
  2224. - weight[0]: 1
  2225. weight[1]: 0
  2226. weight[2]: 0
  2227. weight[3]: 0
  2228. boneIndex[0]: 1
  2229. boneIndex[1]: 0
  2230. boneIndex[2]: 0
  2231. boneIndex[3]: 0
  2232. - weight[0]: 1
  2233. weight[1]: 0
  2234. weight[2]: 0
  2235. weight[3]: 0
  2236. boneIndex[0]: 1
  2237. boneIndex[1]: 0
  2238. boneIndex[2]: 0
  2239. boneIndex[3]: 0
  2240. - weight[0]: 1
  2241. weight[1]: 0
  2242. weight[2]: 0
  2243. weight[3]: 0
  2244. boneIndex[0]: 1
  2245. boneIndex[1]: 0
  2246. boneIndex[2]: 0
  2247. boneIndex[3]: 0
  2248. - weight[0]: 0.99999994
  2249. weight[1]: 0
  2250. weight[2]: 0
  2251. weight[3]: 0
  2252. boneIndex[0]: 1
  2253. boneIndex[1]: 0
  2254. boneIndex[2]: 0
  2255. boneIndex[3]: 0
  2256. - weight[0]: 0.99999994
  2257. weight[1]: 0
  2258. weight[2]: 0
  2259. weight[3]: 0
  2260. boneIndex[0]: 1
  2261. boneIndex[1]: 0
  2262. boneIndex[2]: 0
  2263. boneIndex[3]: 0
  2264. - weight[0]: 1
  2265. weight[1]: 0
  2266. weight[2]: 0
  2267. weight[3]: 0
  2268. boneIndex[0]: 1
  2269. boneIndex[1]: 0
  2270. boneIndex[2]: 0
  2271. boneIndex[3]: 0
  2272. - weight[0]: 0.99999994
  2273. weight[1]: 0
  2274. weight[2]: 0
  2275. weight[3]: 0
  2276. boneIndex[0]: 1
  2277. boneIndex[1]: 0
  2278. boneIndex[2]: 0
  2279. boneIndex[3]: 0
  2280. - weight[0]: 1
  2281. weight[1]: 0
  2282. weight[2]: 0
  2283. weight[3]: 0
  2284. boneIndex[0]: 1
  2285. boneIndex[1]: 0
  2286. boneIndex[2]: 0
  2287. boneIndex[3]: 0
  2288. - weight[0]: 1
  2289. weight[1]: 0
  2290. weight[2]: 0
  2291. weight[3]: 0
  2292. boneIndex[0]: 1
  2293. boneIndex[1]: 0
  2294. boneIndex[2]: 0
  2295. boneIndex[3]: 0
  2296. - weight[0]: 1
  2297. weight[1]: 0
  2298. weight[2]: 0
  2299. weight[3]: 0
  2300. boneIndex[0]: 1
  2301. boneIndex[1]: 0
  2302. boneIndex[2]: 0
  2303. boneIndex[3]: 0
  2304. - weight[0]: 1
  2305. weight[1]: 0
  2306. weight[2]: 0
  2307. weight[3]: 0
  2308. boneIndex[0]: 1
  2309. boneIndex[1]: 0
  2310. boneIndex[2]: 0
  2311. boneIndex[3]: 0
  2312. - weight[0]: 1
  2313. weight[1]: 0
  2314. weight[2]: 0
  2315. weight[3]: 0
  2316. boneIndex[0]: 1
  2317. boneIndex[1]: 0
  2318. boneIndex[2]: 0
  2319. boneIndex[3]: 0
  2320. - weight[0]: 1
  2321. weight[1]: 0
  2322. weight[2]: 0
  2323. weight[3]: 0
  2324. boneIndex[0]: 1
  2325. boneIndex[1]: 0
  2326. boneIndex[2]: 0
  2327. boneIndex[3]: 0
  2328. - weight[0]: 1
  2329. weight[1]: 0
  2330. weight[2]: 0
  2331. weight[3]: 0
  2332. boneIndex[0]: 1
  2333. boneIndex[1]: 0
  2334. boneIndex[2]: 0
  2335. boneIndex[3]: 0
  2336. - weight[0]: 1
  2337. weight[1]: 0
  2338. weight[2]: 0
  2339. weight[3]: 0
  2340. boneIndex[0]: 1
  2341. boneIndex[1]: 0
  2342. boneIndex[2]: 0
  2343. boneIndex[3]: 0
  2344. - weight[0]: 1
  2345. weight[1]: 0
  2346. weight[2]: 0
  2347. weight[3]: 0
  2348. boneIndex[0]: 1
  2349. boneIndex[1]: 0
  2350. boneIndex[2]: 0
  2351. boneIndex[3]: 0
  2352. - weight[0]: 1
  2353. weight[1]: 0
  2354. weight[2]: 0
  2355. weight[3]: 0
  2356. boneIndex[0]: 1
  2357. boneIndex[1]: 0
  2358. boneIndex[2]: 0
  2359. boneIndex[3]: 0
  2360. - weight[0]: 0.99999994
  2361. weight[1]: 0
  2362. weight[2]: 0
  2363. weight[3]: 0
  2364. boneIndex[0]: 1
  2365. boneIndex[1]: 0
  2366. boneIndex[2]: 0
  2367. boneIndex[3]: 0
  2368. - weight[0]: 0.99999994
  2369. weight[1]: 0
  2370. weight[2]: 0
  2371. weight[3]: 0
  2372. boneIndex[0]: 1
  2373. boneIndex[1]: 0
  2374. boneIndex[2]: 0
  2375. boneIndex[3]: 0
  2376. - weight[0]: 1
  2377. weight[1]: 0
  2378. weight[2]: 0
  2379. weight[3]: 0
  2380. boneIndex[0]: 1
  2381. boneIndex[1]: 0
  2382. boneIndex[2]: 0
  2383. boneIndex[3]: 0
  2384. - weight[0]: 1
  2385. weight[1]: 0
  2386. weight[2]: 0
  2387. weight[3]: 0
  2388. boneIndex[0]: 1
  2389. boneIndex[1]: 0
  2390. boneIndex[2]: 0
  2391. boneIndex[3]: 0
  2392. - weight[0]: 1
  2393. weight[1]: 0
  2394. weight[2]: 0
  2395. weight[3]: 0
  2396. boneIndex[0]: 1
  2397. boneIndex[1]: 0
  2398. boneIndex[2]: 0
  2399. boneIndex[3]: 0
  2400. - weight[0]: 1
  2401. weight[1]: 0
  2402. weight[2]: 0
  2403. weight[3]: 0
  2404. boneIndex[0]: 1
  2405. boneIndex[1]: 0
  2406. boneIndex[2]: 0
  2407. boneIndex[3]: 0
  2408. - weight[0]: 1
  2409. weight[1]: 0
  2410. weight[2]: 0
  2411. weight[3]: 0
  2412. boneIndex[0]: 1
  2413. boneIndex[1]: 0
  2414. boneIndex[2]: 0
  2415. boneIndex[3]: 0
  2416. - weight[0]: 0.87018615
  2417. weight[1]: 0.12981386
  2418. weight[2]: 0
  2419. weight[3]: 0
  2420. boneIndex[0]: 1
  2421. boneIndex[1]: 0
  2422. boneIndex[2]: 0
  2423. boneIndex[3]: 0
  2424. - weight[0]: 0.8532005
  2425. weight[1]: 0.14679949
  2426. weight[2]: 0
  2427. weight[3]: 0
  2428. boneIndex[0]: 1
  2429. boneIndex[1]: 0
  2430. boneIndex[2]: 0
  2431. boneIndex[3]: 0
  2432. - weight[0]: 0.83645856
  2433. weight[1]: 0.1635414
  2434. weight[2]: 0
  2435. weight[3]: 0
  2436. boneIndex[0]: 1
  2437. boneIndex[1]: 0
  2438. boneIndex[2]: 0
  2439. boneIndex[3]: 0
  2440. - weight[0]: 0.80309325
  2441. weight[1]: 0.19690673
  2442. weight[2]: 0
  2443. weight[3]: 0
  2444. boneIndex[0]: 1
  2445. boneIndex[1]: 0
  2446. boneIndex[2]: 0
  2447. boneIndex[3]: 0
  2448. - weight[0]: 0.77183056
  2449. weight[1]: 0.22816946
  2450. weight[2]: 0
  2451. weight[3]: 0
  2452. boneIndex[0]: 1
  2453. boneIndex[1]: 0
  2454. boneIndex[2]: 0
  2455. boneIndex[3]: 0
  2456. - weight[0]: 0.76391166
  2457. weight[1]: 0.23608834
  2458. weight[2]: 0
  2459. weight[3]: 0
  2460. boneIndex[0]: 1
  2461. boneIndex[1]: 0
  2462. boneIndex[2]: 0
  2463. boneIndex[3]: 0
  2464. - weight[0]: 0.73504174
  2465. weight[1]: 0.26495823
  2466. weight[2]: 0
  2467. weight[3]: 0
  2468. boneIndex[0]: 1
  2469. boneIndex[1]: 0
  2470. boneIndex[2]: 0
  2471. boneIndex[3]: 0
  2472. - weight[0]: 0.715835
  2473. weight[1]: 0.28416505
  2474. weight[2]: 0
  2475. weight[3]: 0
  2476. boneIndex[0]: 1
  2477. boneIndex[1]: 0
  2478. boneIndex[2]: 0
  2479. boneIndex[3]: 0
  2480. - weight[0]: 0.7166822
  2481. weight[1]: 0.28331783
  2482. weight[2]: 0
  2483. weight[3]: 0
  2484. boneIndex[0]: 1
  2485. boneIndex[1]: 0
  2486. boneIndex[2]: 0
  2487. boneIndex[3]: 0
  2488. - weight[0]: 0.68084145
  2489. weight[1]: 0.31915858
  2490. weight[2]: 0
  2491. weight[3]: 0
  2492. boneIndex[0]: 1
  2493. boneIndex[1]: 0
  2494. boneIndex[2]: 0
  2495. boneIndex[3]: 0
  2496. - weight[0]: 0.6134368
  2497. weight[1]: 0.38656318
  2498. weight[2]: 0
  2499. weight[3]: 0
  2500. boneIndex[0]: 1
  2501. boneIndex[1]: 0
  2502. boneIndex[2]: 0
  2503. boneIndex[3]: 0
  2504. - weight[0]: 0.5714451
  2505. weight[1]: 0.42855492
  2506. weight[2]: 0
  2507. weight[3]: 0
  2508. boneIndex[0]: 1
  2509. boneIndex[1]: 0
  2510. boneIndex[2]: 0
  2511. boneIndex[3]: 0
  2512. - weight[0]: 0.5014595
  2513. weight[1]: 0.49854052
  2514. weight[2]: 0
  2515. weight[3]: 0
  2516. boneIndex[0]: 1
  2517. boneIndex[1]: 0
  2518. boneIndex[2]: 0
  2519. boneIndex[3]: 0
  2520. - weight[0]: 0.69818556
  2521. weight[1]: 0.30181444
  2522. weight[2]: 0
  2523. weight[3]: 0
  2524. boneIndex[0]: 0
  2525. boneIndex[1]: 1
  2526. boneIndex[2]: 0
  2527. boneIndex[3]: 0
  2528. - weight[0]: 0.7251459
  2529. weight[1]: 0.27485412
  2530. weight[2]: 0
  2531. weight[3]: 0
  2532. boneIndex[0]: 0
  2533. boneIndex[1]: 1
  2534. boneIndex[2]: 0
  2535. boneIndex[3]: 0
  2536. - weight[0]: 0.84016836
  2537. weight[1]: 0.15983164
  2538. weight[2]: 0
  2539. weight[3]: 0
  2540. boneIndex[0]: 0
  2541. boneIndex[1]: 1
  2542. boneIndex[2]: 0
  2543. boneIndex[3]: 0
  2544. - weight[0]: 1
  2545. weight[1]: 0
  2546. weight[2]: 0
  2547. weight[3]: 0
  2548. boneIndex[0]: 0
  2549. boneIndex[1]: 0
  2550. boneIndex[2]: 0
  2551. boneIndex[3]: 0
  2552. - weight[0]: 1
  2553. weight[1]: 0
  2554. weight[2]: 0
  2555. weight[3]: 0
  2556. boneIndex[0]: 0
  2557. boneIndex[1]: 0
  2558. boneIndex[2]: 0
  2559. boneIndex[3]: 0
  2560. - weight[0]: 0.99999994
  2561. weight[1]: 0
  2562. weight[2]: 0
  2563. weight[3]: 0
  2564. boneIndex[0]: 0
  2565. boneIndex[1]: 0
  2566. boneIndex[2]: 0
  2567. boneIndex[3]: 0
  2568. - weight[0]: 1
  2569. weight[1]: 0
  2570. weight[2]: 0
  2571. weight[3]: 0
  2572. boneIndex[0]: 0
  2573. boneIndex[1]: 0
  2574. boneIndex[2]: 0
  2575. boneIndex[3]: 0
  2576. - weight[0]: 1
  2577. weight[1]: 0
  2578. weight[2]: 0
  2579. weight[3]: 0
  2580. boneIndex[0]: 0
  2581. boneIndex[1]: 0
  2582. boneIndex[2]: 0
  2583. boneIndex[3]: 0
  2584. - weight[0]: 1
  2585. weight[1]: 0
  2586. weight[2]: 0
  2587. weight[3]: 0
  2588. boneIndex[0]: 0
  2589. boneIndex[1]: 0
  2590. boneIndex[2]: 0
  2591. boneIndex[3]: 0
  2592. - weight[0]: 1
  2593. weight[1]: 0
  2594. weight[2]: 0
  2595. weight[3]: 0
  2596. boneIndex[0]: 0
  2597. boneIndex[1]: 0
  2598. boneIndex[2]: 0
  2599. boneIndex[3]: 0
  2600. - weight[0]: 1
  2601. weight[1]: 0
  2602. weight[2]: 0
  2603. weight[3]: 0
  2604. boneIndex[0]: 0
  2605. boneIndex[1]: 0
  2606. boneIndex[2]: 0
  2607. boneIndex[3]: 0
  2608. - weight[0]: 1
  2609. weight[1]: 0
  2610. weight[2]: 0
  2611. weight[3]: 0
  2612. boneIndex[0]: 0
  2613. boneIndex[1]: 0
  2614. boneIndex[2]: 0
  2615. boneIndex[3]: 0
  2616. - weight[0]: 1
  2617. weight[1]: 0
  2618. weight[2]: 0
  2619. weight[3]: 0
  2620. boneIndex[0]: 1
  2621. boneIndex[1]: 0
  2622. boneIndex[2]: 0
  2623. boneIndex[3]: 0
  2624. - weight[0]: 0.8071169
  2625. weight[1]: 0.19288306
  2626. weight[2]: 0
  2627. weight[3]: 0
  2628. boneIndex[0]: 1
  2629. boneIndex[1]: 0
  2630. boneIndex[2]: 0
  2631. boneIndex[3]: 0
  2632. - serializedVersion: 2
  2633. name: Rikr_Leg_R
  2634. rect:
  2635. serializedVersion: 2
  2636. x: 378
  2637. y: 18
  2638. width: 333
  2639. height: 437
  2640. alignment: 9
  2641. pivot: {x: 0.51214945, y: 0.82866055}
  2642. border: {x: 0, y: 0, z: 0, w: 0}
  2643. outline:
  2644. - - {x: -101.5, y: 209.5}
  2645. - {x: -136.5, y: 192.5}
  2646. - {x: -150.5, y: 45.5}
  2647. - {x: -150.5, y: -50.5}
  2648. - {x: -94.5, y: -183.5}
  2649. - {x: -57.5, y: -209.5}
  2650. - {x: 41.5, y: -208.5}
  2651. - {x: 40.5, y: -57.5}
  2652. - {x: 101.5, y: -2.5}
  2653. - {x: 161.5, y: 128.5}
  2654. - {x: 155.5, y: 206.5}
  2655. physicsShape: []
  2656. tessellationDetail: 0
  2657. bones:
  2658. - name: bone_1
  2659. guid:
  2660. position: {x: 175.24304, y: 375.2999, z: 0}
  2661. rotation: {x: 0, y: 0, z: -0.7716444, w: 0.63605416}
  2662. length: 145.6977
  2663. parentId: -1
  2664. color:
  2665. serializedVersion: 2
  2666. rgba: 0
  2667. - name: bone_2
  2668. guid:
  2669. position: {x: 145.69768, y: 0.0000042207785, z: 0}
  2670. rotation: {x: 0, y: 0, z: 0.025073493, w: 0.99968565}
  2671. length: 84.27492
  2672. parentId: 0
  2673. color:
  2674. serializedVersion: 2
  2675. rgba: 0
  2676. - name: bone_3
  2677. guid:
  2678. position: {x: 84.274925, y: 0.000029396499, z: 0}
  2679. rotation: {x: 0, y: 0, z: 0.03155134, w: 0.9995021}
  2680. length: 75.71715
  2681. parentId: 1
  2682. color:
  2683. serializedVersion: 2
  2684. rgba: 0
  2685. - name: bone_4
  2686. guid:
  2687. position: {x: 75.717125, y: -0.00010280788, z: 0}
  2688. rotation: {x: 0, y: 0, z: 0.44875783, w: 0.89365345}
  2689. length: 63.34646
  2690. parentId: 2
  2691. color:
  2692. serializedVersion: 2
  2693. rgba: 0
  2694. spriteID: 821eee5804162472a9843e1fd580b39f
  2695. internalID: 21300008
  2696. vertices:
  2697. - {x: 188.65503, y: 23.987}
  2698. - {x: 194, y: 42.110992}
  2699. - {x: 187.031, y: 60.860992}
  2700. - {x: 173.969, y: 87.981995}
  2701. - {x: 177.31897, y: 117.806}
  2702. - {x: 193.61401, y: 139.67}
  2703. - {x: 198, y: 173.442}
  2704. - {x: 224.099, y: 190.943}
  2705. - {x: 245.39398, y: 215.804}
  2706. - {x: 258.80603, y: 245.30301}
  2707. - {x: 272.18903, y: 272.56702}
  2708. - {x: 286.34802, y: 302.51898}
  2709. - {x: 298.498, y: 328.155}
  2710. - {x: 303.24, y: 335.935}
  2711. - {x: 312, y: 369.299}
  2712. - {x: 318.326, y: 401.063}
  2713. - {x: 312.38403, y: 413.615}
  2714. - {x: 277.24402, y: 415.263}
  2715. - {x: 245.29498, y: 411.022}
  2716. - {x: 211.01398, y: 407.72998}
  2717. - {x: 176.86401, y: 407.198}
  2718. - {x: 143.22998, y: 409.677}
  2719. - {x: 109.346985, y: 411.288}
  2720. - {x: 84.33099, y: 413.073}
  2721. - {x: 63.574005, y: 410.573}
  2722. - {x: 59.07199, y: 375.29602}
  2723. - {x: 54.99298, y: 341.8}
  2724. - {x: 50.673004, y: 308.34302}
  2725. - {x: 43.806, y: 276.07}
  2726. - {x: 29, y: 251.302}
  2727. - {x: 23, y: 233.382}
  2728. - {x: 28.695007, y: 204.459}
  2729. - {x: 50.746002, y: 185.506}
  2730. - {x: 62.227997, y: 164.358}
  2731. - {x: 66.858, y: 143.57}
  2732. - {x: 77.10101, y: 114.364}
  2733. - {x: 84.686005, y: 82.226}
  2734. - {x: 91, y: 49.891006}
  2735. - {x: 97.20999, y: 32.905}
  2736. - {x: 138.685, y: 21}
  2737. - {x: 162.953, y: 20.841003}
  2738. - {x: 135.19843, y: 226.97699}
  2739. - {x: 130.4177, y: 316.43524}
  2740. - {x: 204.22144, y: 310.89398}
  2741. indices: 290000002200000021000000060000000500000004000000060000000400000029000000020000000100000028000000010000000000000028000000290000000800000007000000080000002b00000009000000290000002b000000080000000a000000090000002b000000060000002900000007000000130000002b000000140000002b0000002a000000140000002b000000130000001200000012000000110000000e0000000c0000002b00000012000000120000000e0000000d0000000d0000000c0000001200000011000000100000000f0000000f0000000e000000110000000b0000002b0000000c0000002700000003000000020000000b0000000a0000002b000000020000002800000027000000160000001900000017000000290000002100000020000000200000001f0000001e0000000400000022000000290000002700000026000000250000002500000003000000270000000300000025000000240000000400000023000000220000002300000004000000240000002b000000290000002a00000029000000200000001d0000001c000000290000001d0000002a0000001c0000001b0000002a0000001b0000001a0000001d000000200000001e0000002a00000019000000160000001a000000190000002a0000002a0000001500000014000000150000002a00000016000000180000001700000019000000290000001c0000002a000000030000002400000004000000
  2742. edges:
  2743. - {x: 0, y: 1}
  2744. - {x: 1, y: 2}
  2745. - {x: 3, y: 2}
  2746. - {x: 4, y: 3}
  2747. - {x: 4, y: 5}
  2748. - {x: 5, y: 6}
  2749. - {x: 7, y: 6}
  2750. - {x: 8, y: 7}
  2751. - {x: 9, y: 8}
  2752. - {x: 10, y: 9}
  2753. - {x: 11, y: 10}
  2754. - {x: 11, y: 12}
  2755. - {x: 12, y: 13}
  2756. - {x: 14, y: 13}
  2757. - {x: 15, y: 14}
  2758. - {x: 16, y: 15}
  2759. - {x: 17, y: 16}
  2760. - {x: 18, y: 17}
  2761. - {x: 19, y: 18}
  2762. - {x: 19, y: 20}
  2763. - {x: 20, y: 21}
  2764. - {x: 21, y: 22}
  2765. - {x: 22, y: 23}
  2766. - {x: 24, y: 23}
  2767. - {x: 24, y: 25}
  2768. - {x: 25, y: 26}
  2769. - {x: 26, y: 27}
  2770. - {x: 28, y: 27}
  2771. - {x: 29, y: 28}
  2772. - {x: 29, y: 30}
  2773. - {x: 31, y: 30}
  2774. - {x: 31, y: 32}
  2775. - {x: 33, y: 32}
  2776. - {x: 33, y: 34}
  2777. - {x: 35, y: 34}
  2778. - {x: 36, y: 35}
  2779. - {x: 37, y: 36}
  2780. - {x: 37, y: 38}
  2781. - {x: 39, y: 38}
  2782. - {x: 40, y: 39}
  2783. - {x: 0, y: 40}
  2784. weights:
  2785. - weight[0]: 1
  2786. weight[1]: 0
  2787. weight[2]: 0
  2788. weight[3]: 0
  2789. boneIndex[0]: 3
  2790. boneIndex[1]: 0
  2791. boneIndex[2]: 0
  2792. boneIndex[3]: 0
  2793. - weight[0]: 1
  2794. weight[1]: 0
  2795. weight[2]: 0
  2796. weight[3]: 0
  2797. boneIndex[0]: 3
  2798. boneIndex[1]: 0
  2799. boneIndex[2]: 0
  2800. boneIndex[3]: 0
  2801. - weight[0]: 1
  2802. weight[1]: 0
  2803. weight[2]: 0
  2804. weight[3]: 0
  2805. boneIndex[0]: 3
  2806. boneIndex[1]: 0
  2807. boneIndex[2]: 0
  2808. boneIndex[3]: 0
  2809. - weight[0]: 0.5415241
  2810. weight[1]: 0.45847592
  2811. weight[2]: 0
  2812. weight[3]: 0
  2813. boneIndex[0]: 3
  2814. boneIndex[1]: 2
  2815. boneIndex[2]: 0
  2816. boneIndex[3]: 0
  2817. - weight[0]: 0.87024015
  2818. weight[1]: 0.12975983
  2819. weight[2]: 0
  2820. weight[3]: 0
  2821. boneIndex[0]: 2
  2822. boneIndex[1]: 1
  2823. boneIndex[2]: 0
  2824. boneIndex[3]: 0
  2825. - weight[0]: 0.5575059
  2826. weight[1]: 0.44249406
  2827. weight[2]: 0
  2828. weight[3]: 0
  2829. boneIndex[0]: 2
  2830. boneIndex[1]: 1
  2831. boneIndex[2]: 0
  2832. boneIndex[3]: 0
  2833. - weight[0]: 0.8788121
  2834. weight[1]: 0.12118794
  2835. weight[2]: 0
  2836. weight[3]: 0
  2837. boneIndex[0]: 1
  2838. boneIndex[1]: 2
  2839. boneIndex[2]: 0
  2840. boneIndex[3]: 0
  2841. - weight[0]: 0.70187676
  2842. weight[1]: 0.29812327
  2843. weight[2]: 0
  2844. weight[3]: 0
  2845. boneIndex[0]: 1
  2846. boneIndex[1]: 0
  2847. boneIndex[2]: 0
  2848. boneIndex[3]: 0
  2849. - weight[0]: 0.53708416
  2850. weight[1]: 0.46291584
  2851. weight[2]: 0
  2852. weight[3]: 0
  2853. boneIndex[0]: 0
  2854. boneIndex[1]: 1
  2855. boneIndex[2]: 0
  2856. boneIndex[3]: 0
  2857. - weight[0]: 0.7391891
  2858. weight[1]: 0.2608109
  2859. weight[2]: 0
  2860. weight[3]: 0
  2861. boneIndex[0]: 0
  2862. boneIndex[1]: 1
  2863. boneIndex[2]: 0
  2864. boneIndex[3]: 0
  2865. - weight[0]: 0.8725055
  2866. weight[1]: 0.12749451
  2867. weight[2]: 0
  2868. weight[3]: 0
  2869. boneIndex[0]: 0
  2870. boneIndex[1]: 1
  2871. boneIndex[2]: 0
  2872. boneIndex[3]: 0
  2873. - weight[0]: 1
  2874. weight[1]: 0
  2875. weight[2]: 0
  2876. weight[3]: 0
  2877. boneIndex[0]: 0
  2878. boneIndex[1]: 0
  2879. boneIndex[2]: 0
  2880. boneIndex[3]: 0
  2881. - weight[0]: 1
  2882. weight[1]: 0
  2883. weight[2]: 0
  2884. weight[3]: 0
  2885. boneIndex[0]: 0
  2886. boneIndex[1]: 0
  2887. boneIndex[2]: 0
  2888. boneIndex[3]: 0
  2889. - weight[0]: 1
  2890. weight[1]: 0
  2891. weight[2]: 0
  2892. weight[3]: 0
  2893. boneIndex[0]: 0
  2894. boneIndex[1]: 0
  2895. boneIndex[2]: 0
  2896. boneIndex[3]: 0
  2897. - weight[0]: 1
  2898. weight[1]: 0
  2899. weight[2]: 0
  2900. weight[3]: 0
  2901. boneIndex[0]: 0
  2902. boneIndex[1]: 0
  2903. boneIndex[2]: 0
  2904. boneIndex[3]: 0
  2905. - weight[0]: 1
  2906. weight[1]: 0
  2907. weight[2]: 0
  2908. weight[3]: 0
  2909. boneIndex[0]: 0
  2910. boneIndex[1]: 0
  2911. boneIndex[2]: 0
  2912. boneIndex[3]: 0
  2913. - weight[0]: 1
  2914. weight[1]: 0
  2915. weight[2]: 0
  2916. weight[3]: 0
  2917. boneIndex[0]: 0
  2918. boneIndex[1]: 0
  2919. boneIndex[2]: 0
  2920. boneIndex[3]: 0
  2921. - weight[0]: 1
  2922. weight[1]: 0
  2923. weight[2]: 0
  2924. weight[3]: 0
  2925. boneIndex[0]: 0
  2926. boneIndex[1]: 0
  2927. boneIndex[2]: 0
  2928. boneIndex[3]: 0
  2929. - weight[0]: 1
  2930. weight[1]: 0
  2931. weight[2]: 0
  2932. weight[3]: 0
  2933. boneIndex[0]: 0
  2934. boneIndex[1]: 0
  2935. boneIndex[2]: 0
  2936. boneIndex[3]: 0
  2937. - weight[0]: 1
  2938. weight[1]: 0
  2939. weight[2]: 0
  2940. weight[3]: 0
  2941. boneIndex[0]: 0
  2942. boneIndex[1]: 0
  2943. boneIndex[2]: 0
  2944. boneIndex[3]: 0
  2945. - weight[0]: 1
  2946. weight[1]: 0
  2947. weight[2]: 0
  2948. weight[3]: 0
  2949. boneIndex[0]: 0
  2950. boneIndex[1]: 0
  2951. boneIndex[2]: 0
  2952. boneIndex[3]: 0
  2953. - weight[0]: 1
  2954. weight[1]: 0
  2955. weight[2]: 0
  2956. weight[3]: 0
  2957. boneIndex[0]: 0
  2958. boneIndex[1]: 0
  2959. boneIndex[2]: 0
  2960. boneIndex[3]: 0
  2961. - weight[0]: 1
  2962. weight[1]: 0
  2963. weight[2]: 0
  2964. weight[3]: 0
  2965. boneIndex[0]: 0
  2966. boneIndex[1]: 0
  2967. boneIndex[2]: 0
  2968. boneIndex[3]: 0
  2969. - weight[0]: 1
  2970. weight[1]: 0
  2971. weight[2]: 0
  2972. weight[3]: 0
  2973. boneIndex[0]: 0
  2974. boneIndex[1]: 0
  2975. boneIndex[2]: 0
  2976. boneIndex[3]: 0
  2977. - weight[0]: 1
  2978. weight[1]: 0
  2979. weight[2]: 0
  2980. weight[3]: 0
  2981. boneIndex[0]: 0
  2982. boneIndex[1]: 0
  2983. boneIndex[2]: 0
  2984. boneIndex[3]: 0
  2985. - weight[0]: 1
  2986. weight[1]: 0
  2987. weight[2]: 0
  2988. weight[3]: 0
  2989. boneIndex[0]: 0
  2990. boneIndex[1]: 0
  2991. boneIndex[2]: 0
  2992. boneIndex[3]: 0
  2993. - weight[0]: 0.99999994
  2994. weight[1]: 0
  2995. weight[2]: 0
  2996. weight[3]: 0
  2997. boneIndex[0]: 0
  2998. boneIndex[1]: 0
  2999. boneIndex[2]: 0
  3000. boneIndex[3]: 0
  3001. - weight[0]: 0.7960988
  3002. weight[1]: 0.20390117
  3003. weight[2]: 0
  3004. weight[3]: 0
  3005. boneIndex[0]: 0
  3006. boneIndex[1]: 1
  3007. boneIndex[2]: 0
  3008. boneIndex[3]: 0
  3009. - weight[0]: 0.5563912
  3010. weight[1]: 0.44360882
  3011. weight[2]: 0
  3012. weight[3]: 0
  3013. boneIndex[0]: 0
  3014. boneIndex[1]: 1
  3015. boneIndex[2]: 0
  3016. boneIndex[3]: 0
  3017. - weight[0]: 0.6399494
  3018. weight[1]: 0.36005062
  3019. weight[2]: 0
  3020. weight[3]: 0
  3021. boneIndex[0]: 1
  3022. boneIndex[1]: 0
  3023. boneIndex[2]: 0
  3024. boneIndex[3]: 0
  3025. - weight[0]: 0.7184399
  3026. weight[1]: 0.28156012
  3027. weight[2]: 0
  3028. weight[3]: 0
  3029. boneIndex[0]: 1
  3030. boneIndex[1]: 0
  3031. boneIndex[2]: 0
  3032. boneIndex[3]: 0
  3033. - weight[0]: 0.81100184
  3034. weight[1]: 0.18899815
  3035. weight[2]: 0
  3036. weight[3]: 0
  3037. boneIndex[0]: 1
  3038. boneIndex[1]: 0
  3039. boneIndex[2]: 0
  3040. boneIndex[3]: 0
  3041. - weight[0]: 0.8282963
  3042. weight[1]: 0.17170365
  3043. weight[2]: 0
  3044. weight[3]: 0
  3045. boneIndex[0]: 1
  3046. boneIndex[1]: 2
  3047. boneIndex[2]: 0
  3048. boneIndex[3]: 0
  3049. - weight[0]: 0.63149273
  3050. weight[1]: 0.3685073
  3051. weight[2]: 0
  3052. weight[3]: 0
  3053. boneIndex[0]: 1
  3054. boneIndex[1]: 2
  3055. boneIndex[2]: 0
  3056. boneIndex[3]: 0
  3057. - weight[0]: 0.5926647
  3058. weight[1]: 0.40733534
  3059. weight[2]: 0
  3060. weight[3]: 0
  3061. boneIndex[0]: 2
  3062. boneIndex[1]: 1
  3063. boneIndex[2]: 0
  3064. boneIndex[3]: 0
  3065. - weight[0]: 0.99999994
  3066. weight[1]: 0
  3067. weight[2]: 0
  3068. weight[3]: 0
  3069. boneIndex[0]: 2
  3070. boneIndex[1]: 0
  3071. boneIndex[2]: 0
  3072. boneIndex[3]: 0
  3073. - weight[0]: 0.82922274
  3074. weight[1]: 0.17077726
  3075. weight[2]: 0
  3076. weight[3]: 0
  3077. boneIndex[0]: 2
  3078. boneIndex[1]: 3
  3079. boneIndex[2]: 0
  3080. boneIndex[3]: 0
  3081. - weight[0]: 0.78109705
  3082. weight[1]: 0.21890296
  3083. weight[2]: 0
  3084. weight[3]: 0
  3085. boneIndex[0]: 3
  3086. boneIndex[1]: 2
  3087. boneIndex[2]: 0
  3088. boneIndex[3]: 0
  3089. - weight[0]: 1
  3090. weight[1]: 0
  3091. weight[2]: 0
  3092. weight[3]: 0
  3093. boneIndex[0]: 3
  3094. boneIndex[1]: 0
  3095. boneIndex[2]: 0
  3096. boneIndex[3]: 0
  3097. - weight[0]: 1
  3098. weight[1]: 0
  3099. weight[2]: 0
  3100. weight[3]: 0
  3101. boneIndex[0]: 3
  3102. boneIndex[1]: 0
  3103. boneIndex[2]: 0
  3104. boneIndex[3]: 0
  3105. - weight[0]: 1
  3106. weight[1]: 0
  3107. weight[2]: 0
  3108. weight[3]: 0
  3109. boneIndex[0]: 3
  3110. boneIndex[1]: 0
  3111. boneIndex[2]: 0
  3112. boneIndex[3]: 0
  3113. - weight[0]: 0.8949552
  3114. weight[1]: 0.10504479
  3115. weight[2]: 0
  3116. weight[3]: 0
  3117. boneIndex[0]: 1
  3118. boneIndex[1]: 0
  3119. boneIndex[2]: 0
  3120. boneIndex[3]: 0
  3121. - weight[0]: 0.99999994
  3122. weight[1]: 0
  3123. weight[2]: 0
  3124. weight[3]: 0
  3125. boneIndex[0]: 0
  3126. boneIndex[1]: 0
  3127. boneIndex[2]: 0
  3128. boneIndex[3]: 0
  3129. - weight[0]: 1
  3130. weight[1]: 0
  3131. weight[2]: 0
  3132. weight[3]: 0
  3133. boneIndex[0]: 0
  3134. boneIndex[1]: 0
  3135. boneIndex[2]: 0
  3136. boneIndex[3]: 0
  3137. - serializedVersion: 2
  3138. name: Rikr_Arm_R
  3139. rect:
  3140. serializedVersion: 2
  3141. x: 223
  3142. y: 646
  3143. width: 277
  3144. height: 538
  3145. alignment: 9
  3146. pivot: {x: 0.6971763, y: 0.8083206}
  3147. border: {x: 0, y: 0, z: 0, w: 0}
  3148. outline:
  3149. - - {x: 73.5, y: 245}
  3150. - {x: -19.5, y: 229}
  3151. - {x: -102.5, y: 5}
  3152. - {x: -102.5, y: -231}
  3153. - {x: -4.5, y: -231}
  3154. - {x: 34.5, y: -164}
  3155. - {x: 124.5, y: 95}
  3156. - {x: 124.5, y: 211}
  3157. physicsShape: []
  3158. tessellationDetail: 0
  3159. bones:
  3160. - name: bone_1
  3161. guid:
  3162. position: {x: 201.11484, y: 456.4369, z: 0}
  3163. rotation: {x: 0, y: 0, z: -0.8362793, w: 0.5483037}
  3164. length: 149.45438
  3165. parentId: -1
  3166. color:
  3167. serializedVersion: 2
  3168. rgba: 0
  3169. - name: bone_2
  3170. guid:
  3171. position: {x: 149.45436, y: -0.000024087683, z: 0}
  3172. rotation: {x: 0, y: 0, z: 0.032556865, w: 0.9994699}
  3173. length: 135.08847
  3174. parentId: 0
  3175. color:
  3176. serializedVersion: 2
  3177. rgba: 0
  3178. - name: bone_3
  3179. guid:
  3180. position: {x: 135.08852, y: 0.000014844314, z: 0}
  3181. rotation: {x: 0, y: 0, z: 0.09485969, w: 0.9954907}
  3182. length: 128.67067
  3183. parentId: 1
  3184. color:
  3185. serializedVersion: 2
  3186. rgba: 0
  3187. spriteID: 7cfa198bfe26c468bac71e8143c1b197
  3188. internalID: 21300010
  3189. vertices:
  3190. - {x: 97.08301, y: 40.797974}
  3191. - {x: 116.836, y: 43.335022}
  3192. - {x: 127.54999, y: 53.872986}
  3193. - {x: 132, y: 91.856995}
  3194. - {x: 147.88, y: 89.29401}
  3195. - {x: 159.125, y: 104.25098}
  3196. - {x: 160.23499, y: 134.58301}
  3197. - {x: 145.561, y: 172.87701}
  3198. - {x: 156.86899, y: 194.48602}
  3199. - {x: 176.35101, y: 231.96002}
  3200. - {x: 184.04498, y: 243.77899}
  3201. - {x: 196.996, y: 277.13098}
  3202. - {x: 220.013, y: 304.23102}
  3203. - {x: 232.21802, y: 315.21802}
  3204. - {x: 244.92902, y: 351.201}
  3205. - {x: 258.453, y: 386.62903}
  3206. - {x: 262, y: 424.07996}
  3207. - {x: 252.39499, y: 457.833}
  3208. - {x: 235.229, y: 482.79602}
  3209. - {x: 201.906, y: 497}
  3210. - {x: 170.34698, y: 491.82104}
  3211. - {x: 138.888, y: 465.50403}
  3212. - {x: 116.951996, y: 432.77295}
  3213. - {x: 98.03699, y: 399.82104}
  3214. - {x: 82.634, y: 365.266}
  3215. - {x: 82.92801, y: 344.69598}
  3216. - {x: 81.68298, y: 311.404}
  3217. - {x: 67.77301, y: 282.22498}
  3218. - {x: 61.807007, y: 246.56201}
  3219. - {x: 57.052002, y: 235.245}
  3220. - {x: 48.856018, y: 182.466}
  3221. - {x: 43.315002, y: 146.74097}
  3222. - {x: 39.036987, y: 109.69}
  3223. - {x: 37.89801, y: 71.71997}
  3224. - {x: 44.752014, y: 57.286987}
  3225. - {x: 67.68701, y: 42.208984}
  3226. - {x: 96.24399, y: 40.494995}
  3227. - {x: 133.75217, y: 278.16364}
  3228. - {x: 141.05264, y: 372.03546}
  3229. - {x: 96.756714, y: 193.03699}
  3230. - {x: 100.138245, y: 141.39197}
  3231. - {x: 116.44623, y: 236.61389}
  3232. - {x: 170.32755, y: 317.00317}
  3233. - {x: 192.20163, y: 359.46082}
  3234. - {x: 126.295044, y: 327.76068}
  3235. - {x: 84.525116, y: 93.93396}
  3236. - {x: 197.77316, y: 448.01953}
  3237. - {x: 163.72073, y: 413.765}
  3238. - {x: 214.15958, y: 402.7356}
  3239. indices: 22000000210000002d000000080000000700000027000000250000000900000029000000030000000500000004000000250000000b0000000a0000002a0000000b000000250000000c0000002a0000002b0000000b0000002a0000000c0000000d0000000c0000002b00000009000000250000000a0000002c000000260000002a0000002f0000002b000000260000002a000000260000002b000000290000000900000008000000300000002f0000002e000000140000002e000000150000002f000000150000002e000000130000002e00000014000000300000002b0000002f0000002f00000026000000160000000f0000000e000000300000002b000000300000000e000000100000000f0000003000000013000000120000002e00000012000000110000002e00000011000000100000003000000011000000300000002e00000016000000150000002f0000000e0000000d0000002b00000028000000070000000600000003000000280000000600000023000000220000002d0000001f0000002d0000002000000021000000200000002d000000280000002d0000001f0000002d0000002400000023000000020000000100000000000000000000002d000000020000002d000000280000000300000003000000020000002d00000028000000270000000700000000000000240000002d0000001e000000280000001f0000000300000006000000050000001c000000290000001d0000001a000000250000001b0000001e0000001d000000270000002c000000250000001a00000027000000290000000800000025000000290000001b000000190000002c0000001a00000018000000170000002600000026000000170000001600000019000000180000002c0000002c0000001800000026000000270000001d0000002900000027000000280000001e0000001c0000001b000000290000002a000000250000002c000000
  3240. edges:
  3241. - {x: 1, y: 0}
  3242. - {x: 2, y: 1}
  3243. - {x: 2, y: 3}
  3244. - {x: 4, y: 3}
  3245. - {x: 5, y: 4}
  3246. - {x: 5, y: 6}
  3247. - {x: 6, y: 7}
  3248. - {x: 8, y: 7}
  3249. - {x: 9, y: 8}
  3250. - {x: 10, y: 9}
  3251. - {x: 11, y: 10}
  3252. - {x: 12, y: 11}
  3253. - {x: 13, y: 12}
  3254. - {x: 14, y: 13}
  3255. - {x: 14, y: 15}
  3256. - {x: 16, y: 15}
  3257. - {x: 17, y: 16}
  3258. - {x: 18, y: 17}
  3259. - {x: 19, y: 18}
  3260. - {x: 20, y: 19}
  3261. - {x: 21, y: 20}
  3262. - {x: 22, y: 21}
  3263. - {x: 23, y: 22}
  3264. - {x: 24, y: 23}
  3265. - {x: 25, y: 24}
  3266. - {x: 26, y: 25}
  3267. - {x: 27, y: 26}
  3268. - {x: 28, y: 27}
  3269. - {x: 29, y: 28}
  3270. - {x: 30, y: 29}
  3271. - {x: 31, y: 30}
  3272. - {x: 32, y: 31}
  3273. - {x: 33, y: 32}
  3274. - {x: 34, y: 33}
  3275. - {x: 35, y: 34}
  3276. - {x: 36, y: 35}
  3277. - {x: 0, y: 36}
  3278. weights:
  3279. - weight[0]: 1
  3280. weight[1]: 0
  3281. weight[2]: 0
  3282. weight[3]: 0
  3283. boneIndex[0]: 2
  3284. boneIndex[1]: 0
  3285. boneIndex[2]: 0
  3286. boneIndex[3]: 0
  3287. - weight[0]: 1
  3288. weight[1]: 0
  3289. weight[2]: 0
  3290. weight[3]: 0
  3291. boneIndex[0]: 2
  3292. boneIndex[1]: 0
  3293. boneIndex[2]: 0
  3294. boneIndex[3]: 0
  3295. - weight[0]: 1
  3296. weight[1]: 0
  3297. weight[2]: 0
  3298. weight[3]: 0
  3299. boneIndex[0]: 2
  3300. boneIndex[1]: 0
  3301. boneIndex[2]: 0
  3302. boneIndex[3]: 0
  3303. - weight[0]: 1
  3304. weight[1]: 0
  3305. weight[2]: 0
  3306. weight[3]: 0
  3307. boneIndex[0]: 2
  3308. boneIndex[1]: 0
  3309. boneIndex[2]: 0
  3310. boneIndex[3]: 0
  3311. - weight[0]: 1
  3312. weight[1]: 0
  3313. weight[2]: 0
  3314. weight[3]: 0
  3315. boneIndex[0]: 2
  3316. boneIndex[1]: 0
  3317. boneIndex[2]: 0
  3318. boneIndex[3]: 0
  3319. - weight[0]: 1
  3320. weight[1]: 0
  3321. weight[2]: 0
  3322. weight[3]: 0
  3323. boneIndex[0]: 2
  3324. boneIndex[1]: 0
  3325. boneIndex[2]: 0
  3326. boneIndex[3]: 0
  3327. - weight[0]: 1
  3328. weight[1]: 0
  3329. weight[2]: 0
  3330. weight[3]: 0
  3331. boneIndex[0]: 2
  3332. boneIndex[1]: 0
  3333. boneIndex[2]: 0
  3334. boneIndex[3]: 0
  3335. - weight[0]: 0.615667
  3336. weight[1]: 0.384333
  3337. weight[2]: 0
  3338. weight[3]: 0
  3339. boneIndex[0]: 2
  3340. boneIndex[1]: 1
  3341. boneIndex[2]: 0
  3342. boneIndex[3]: 0
  3343. - weight[0]: 0.7923613
  3344. weight[1]: 0.20763871
  3345. weight[2]: 0
  3346. weight[3]: 0
  3347. boneIndex[0]: 1
  3348. boneIndex[1]: 2
  3349. boneIndex[2]: 0
  3350. boneIndex[3]: 0
  3351. - weight[0]: 0.99999994
  3352. weight[1]: 0
  3353. weight[2]: 0
  3354. weight[3]: 0
  3355. boneIndex[0]: 1
  3356. boneIndex[1]: 0
  3357. boneIndex[2]: 0
  3358. boneIndex[3]: 0
  3359. - weight[0]: 1
  3360. weight[1]: 0
  3361. weight[2]: 0
  3362. weight[3]: 0
  3363. boneIndex[0]: 1
  3364. boneIndex[1]: 0
  3365. boneIndex[2]: 0
  3366. boneIndex[3]: 0
  3367. - weight[0]: 0.70461655
  3368. weight[1]: 0.29538345
  3369. weight[2]: 0
  3370. weight[3]: 0
  3371. boneIndex[0]: 1
  3372. boneIndex[1]: 0
  3373. boneIndex[2]: 0
  3374. boneIndex[3]: 0
  3375. - weight[0]: 0.741556
  3376. weight[1]: 0.258444
  3377. weight[2]: 0
  3378. weight[3]: 0
  3379. boneIndex[0]: 0
  3380. boneIndex[1]: 1
  3381. boneIndex[2]: 0
  3382. boneIndex[3]: 0
  3383. - weight[0]: 0.8459161
  3384. weight[1]: 0.15408391
  3385. weight[2]: 0
  3386. weight[3]: 0
  3387. boneIndex[0]: 0
  3388. boneIndex[1]: 1
  3389. boneIndex[2]: 0
  3390. boneIndex[3]: 0
  3391. - weight[0]: 0.99999994
  3392. weight[1]: 0
  3393. weight[2]: 0
  3394. weight[3]: 0
  3395. boneIndex[0]: 0
  3396. boneIndex[1]: 0
  3397. boneIndex[2]: 0
  3398. boneIndex[3]: 0
  3399. - weight[0]: 1
  3400. weight[1]: 0
  3401. weight[2]: 0
  3402. weight[3]: 0
  3403. boneIndex[0]: 0
  3404. boneIndex[1]: 0
  3405. boneIndex[2]: 0
  3406. boneIndex[3]: 0
  3407. - weight[0]: 0.99999994
  3408. weight[1]: 0
  3409. weight[2]: 0
  3410. weight[3]: 0
  3411. boneIndex[0]: 0
  3412. boneIndex[1]: 0
  3413. boneIndex[2]: 0
  3414. boneIndex[3]: 0
  3415. - weight[0]: 1
  3416. weight[1]: 0
  3417. weight[2]: 0
  3418. weight[3]: 0
  3419. boneIndex[0]: 0
  3420. boneIndex[1]: 0
  3421. boneIndex[2]: 0
  3422. boneIndex[3]: 0
  3423. - weight[0]: 1
  3424. weight[1]: 0
  3425. weight[2]: 0
  3426. weight[3]: 0
  3427. boneIndex[0]: 0
  3428. boneIndex[1]: 0
  3429. boneIndex[2]: 0
  3430. boneIndex[3]: 0
  3431. - weight[0]: 1
  3432. weight[1]: 0
  3433. weight[2]: 0
  3434. weight[3]: 0
  3435. boneIndex[0]: 0
  3436. boneIndex[1]: 0
  3437. boneIndex[2]: 0
  3438. boneIndex[3]: 0
  3439. - weight[0]: 1
  3440. weight[1]: 0
  3441. weight[2]: 0
  3442. weight[3]: 0
  3443. boneIndex[0]: 0
  3444. boneIndex[1]: 0
  3445. boneIndex[2]: 0
  3446. boneIndex[3]: 0
  3447. - weight[0]: 1
  3448. weight[1]: 0
  3449. weight[2]: 0
  3450. weight[3]: 0
  3451. boneIndex[0]: 0
  3452. boneIndex[1]: 0
  3453. boneIndex[2]: 0
  3454. boneIndex[3]: 0
  3455. - weight[0]: 1
  3456. weight[1]: 0
  3457. weight[2]: 0
  3458. weight[3]: 0
  3459. boneIndex[0]: 0
  3460. boneIndex[1]: 0
  3461. boneIndex[2]: 0
  3462. boneIndex[3]: 0
  3463. - weight[0]: 0.99999994
  3464. weight[1]: 0
  3465. weight[2]: 0
  3466. weight[3]: 0
  3467. boneIndex[0]: 0
  3468. boneIndex[1]: 0
  3469. boneIndex[2]: 0
  3470. boneIndex[3]: 0
  3471. - weight[0]: 0.82501173
  3472. weight[1]: 0.17498827
  3473. weight[2]: 0
  3474. weight[3]: 0
  3475. boneIndex[0]: 0
  3476. boneIndex[1]: 1
  3477. boneIndex[2]: 0
  3478. boneIndex[3]: 0
  3479. - weight[0]: 0.60903716
  3480. weight[1]: 0.39096284
  3481. weight[2]: 0
  3482. weight[3]: 0
  3483. boneIndex[0]: 0
  3484. boneIndex[1]: 1
  3485. boneIndex[2]: 0
  3486. boneIndex[3]: 0
  3487. - weight[0]: 0.826313
  3488. weight[1]: 0.173687
  3489. weight[2]: 0
  3490. weight[3]: 0
  3491. boneIndex[0]: 1
  3492. boneIndex[1]: 0
  3493. boneIndex[2]: 0
  3494. boneIndex[3]: 0
  3495. - weight[0]: 1
  3496. weight[1]: 0
  3497. weight[2]: 0
  3498. weight[3]: 0
  3499. boneIndex[0]: 1
  3500. boneIndex[1]: 0
  3501. boneIndex[2]: 0
  3502. boneIndex[3]: 0
  3503. - weight[0]: 1
  3504. weight[1]: 0
  3505. weight[2]: 0
  3506. weight[3]: 0
  3507. boneIndex[0]: 1
  3508. boneIndex[1]: 0
  3509. boneIndex[2]: 0
  3510. boneIndex[3]: 0
  3511. - weight[0]: 1
  3512. weight[1]: 0
  3513. weight[2]: 0
  3514. weight[3]: 0
  3515. boneIndex[0]: 1
  3516. boneIndex[1]: 0
  3517. boneIndex[2]: 0
  3518. boneIndex[3]: 0
  3519. - weight[0]: 1
  3520. weight[1]: 0
  3521. weight[2]: 0
  3522. weight[3]: 0
  3523. boneIndex[0]: 2
  3524. boneIndex[1]: 0
  3525. boneIndex[2]: 0
  3526. boneIndex[3]: 0
  3527. - weight[0]: 1
  3528. weight[1]: 0
  3529. weight[2]: 0
  3530. weight[3]: 0
  3531. boneIndex[0]: 2
  3532. boneIndex[1]: 0
  3533. boneIndex[2]: 0
  3534. boneIndex[3]: 0
  3535. - weight[0]: 1
  3536. weight[1]: 0
  3537. weight[2]: 0
  3538. weight[3]: 0
  3539. boneIndex[0]: 2
  3540. boneIndex[1]: 0
  3541. boneIndex[2]: 0
  3542. boneIndex[3]: 0
  3543. - weight[0]: 1
  3544. weight[1]: 0
  3545. weight[2]: 0
  3546. weight[3]: 0
  3547. boneIndex[0]: 2
  3548. boneIndex[1]: 0
  3549. boneIndex[2]: 0
  3550. boneIndex[3]: 0
  3551. - weight[0]: 1
  3552. weight[1]: 0
  3553. weight[2]: 0
  3554. weight[3]: 0
  3555. boneIndex[0]: 2
  3556. boneIndex[1]: 0
  3557. boneIndex[2]: 0
  3558. boneIndex[3]: 0
  3559. - weight[0]: 1
  3560. weight[1]: 0
  3561. weight[2]: 0
  3562. weight[3]: 0
  3563. boneIndex[0]: 2
  3564. boneIndex[1]: 0
  3565. boneIndex[2]: 0
  3566. boneIndex[3]: 0
  3567. - weight[0]: 1
  3568. weight[1]: 0
  3569. weight[2]: 0
  3570. weight[3]: 0
  3571. boneIndex[0]: 2
  3572. boneIndex[1]: 0
  3573. boneIndex[2]: 0
  3574. boneIndex[3]: 0
  3575. - weight[0]: 1
  3576. weight[1]: 0
  3577. weight[2]: 0
  3578. weight[3]: 0
  3579. boneIndex[0]: 1
  3580. boneIndex[1]: 0
  3581. boneIndex[2]: 0
  3582. boneIndex[3]: 0
  3583. - weight[0]: 0.99999994
  3584. weight[1]: 0
  3585. weight[2]: 0
  3586. weight[3]: 0
  3587. boneIndex[0]: 0
  3588. boneIndex[1]: 0
  3589. boneIndex[2]: 0
  3590. boneIndex[3]: 0
  3591. - weight[0]: 0.6059397
  3592. weight[1]: 0.3940603
  3593. weight[2]: 0
  3594. weight[3]: 0
  3595. boneIndex[0]: 1
  3596. boneIndex[1]: 2
  3597. boneIndex[2]: 0
  3598. boneIndex[3]: 0
  3599. - weight[0]: 1
  3600. weight[1]: 0
  3601. weight[2]: 0
  3602. weight[3]: 0
  3603. boneIndex[0]: 2
  3604. boneIndex[1]: 0
  3605. boneIndex[2]: 0
  3606. boneIndex[3]: 0
  3607. - weight[0]: 1
  3608. weight[1]: 0
  3609. weight[2]: 0
  3610. weight[3]: 0
  3611. boneIndex[0]: 1
  3612. boneIndex[1]: 0
  3613. boneIndex[2]: 0
  3614. boneIndex[3]: 0
  3615. - weight[0]: 0.67047906
  3616. weight[1]: 0.32952094
  3617. weight[2]: 0
  3618. weight[3]: 0
  3619. boneIndex[0]: 0
  3620. boneIndex[1]: 1
  3621. boneIndex[2]: 0
  3622. boneIndex[3]: 0
  3623. - weight[0]: 0.99999994
  3624. weight[1]: 0
  3625. weight[2]: 0
  3626. weight[3]: 0
  3627. boneIndex[0]: 0
  3628. boneIndex[1]: 0
  3629. boneIndex[2]: 0
  3630. boneIndex[3]: 0
  3631. - weight[0]: 0.54285324
  3632. weight[1]: 0.45714676
  3633. weight[2]: 0
  3634. weight[3]: 0
  3635. boneIndex[0]: 0
  3636. boneIndex[1]: 1
  3637. boneIndex[2]: 0
  3638. boneIndex[3]: 0
  3639. - weight[0]: 1
  3640. weight[1]: 0
  3641. weight[2]: 0
  3642. weight[3]: 0
  3643. boneIndex[0]: 2
  3644. boneIndex[1]: 0
  3645. boneIndex[2]: 0
  3646. boneIndex[3]: 0
  3647. - weight[0]: 1
  3648. weight[1]: 0
  3649. weight[2]: 0
  3650. weight[3]: 0
  3651. boneIndex[0]: 0
  3652. boneIndex[1]: 0
  3653. boneIndex[2]: 0
  3654. boneIndex[3]: 0
  3655. - weight[0]: 1
  3656. weight[1]: 0
  3657. weight[2]: 0
  3658. weight[3]: 0
  3659. boneIndex[0]: 0
  3660. boneIndex[1]: 0
  3661. boneIndex[2]: 0
  3662. boneIndex[3]: 0
  3663. - weight[0]: 1
  3664. weight[1]: 0
  3665. weight[2]: 0
  3666. weight[3]: 0
  3667. boneIndex[0]: 0
  3668. boneIndex[1]: 0
  3669. boneIndex[2]: 0
  3670. boneIndex[3]: 0
  3671. outline: []
  3672. physicsShape: []
  3673. bones: []
  3674. spriteID: 3c0a1b2701b2a45a0be7927d5e8185a7
  3675. internalID: 0
  3676. vertices: []
  3677. indices:
  3678. edges: []
  3679. weights: []
  3680. secondaryTextures: []
  3681. nameFileIdTable:
  3682. Rikr_Body: 21300006
  3683. Rikr_Arm_R: 21300010
  3684. Rikr_Leg_L: 21300004
  3685. Rikr_Head: 21300000
  3686. Rikr_Leg_R: 21300008
  3687. Rikr_Arm_L: 21300002
  3688. spritePackingTag:
  3689. pSDRemoveMatte: 0
  3690. pSDShowRemoveMatteOption: 0
  3691. userData:
  3692. assetBundleName: rikrpoison
  3693. assetBundleVariant: