123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157 |
- {
- "version":"LAYAHIERARCHY:02",
- "data":{
- "type":"Sprite3D",
- "instanceID":58,
- "props":{
- "name":"player",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0,
- 0,
- 0,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[
- {
- "type":"Animator",
- "layers":[
- {
- "name":"Base Layer",
- "weight":0,
- "blendingMode":0,
- "states":[
- {
- "name":"Idle",
- "clipPath":"Assets/ArcherAsset/Animator/Ragdoll/Ragdoll-Idle.lani"
- },
- {
- "name":"aimshoot",
- "clipPath":"Assets/ArcherAsset/Animator/Ragdoll/Ragdoll-aimshoot.lani"
- },
- {
- "name":"react",
- "clipPath":"Assets/ArcherAsset/Animator/Ragdoll/Ragdoll-react.lani"
- }
- ]
- }
- ],
- "cullingMode":0,
- "playOnWake":true
- }
- ],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":59,
- "props":{
- "name":"Ragdoll Root Player",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 1.25,
- 0
- ],
- "rotation":[
- 0,
- 0,
- 0,
- -1
- ],
- "scale":[
- 1.5,
- 1.5,
- 1.5
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":60,
- "props":{
- "name":"Ragdoll",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0,
- 0,
- 0,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":61,
- "props":{
- "name":"Bip001",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03211939,
- 0.5256209,
- -0.003688288
- ],
- "rotation":[
- -0.02383594,
- 0.7033803,
- 0.7103783,
- -0.007108491
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":62,
- "props":{
- "name":"Bip001 Footsteps",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- -0.5925218
- ],
- "rotation":[
- 0,
- 0,
- -0.7071063,
- -0.7071072
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- },
- {
- "type":"Sprite3D",
- "instanceID":63,
- "props":{
- "name":"Bip001 Pelvis",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.4999996,
- 0.5000005,
- 0.4999996,
- -0.5000005
- ],
- "scale":[
- 1,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":64,
- "props":{
- "name":"Bip001 Spine",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.06138724,
- -0.0001044242,
- 8.527657E-08
- ],
- "rotation":[
- 1.744982E-06,
- 8.733591E-07,
- -0.0003979351,
- -0.9999999
- ],
- "scale":[
- 1,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":65,
- "props":{
- "name":"Bip001 L Thigh",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.06138714,
- 0.000152996,
- 0.1218973
- ],
- "rotation":[
- 0.1658318,
- 0.8902063,
- 0.3390279,
- -0.2551326
- ],
- "scale":[
- 0.9999999,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":66,
- "props":{
- "name":"Bip001 L Calf",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2669007,
- -6.055832E-09,
- 0
- ],
- "rotation":[
- -0.09471888,
- 0.0174174,
- 0.3571242,
- -0.9290787
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":67,
- "props":{
- "name":"Bip001 L Foot",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2669007,
- -4.541874E-09,
- 0
- ],
- "rotation":[
- 0.03946762,
- 0.1844074,
- -0.147387,
- -0.9709343
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":68,
- "props":{
- "name":"Bip001 L Toe0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04889454,
- 0.1476999,
- 0
- ],
- "rotation":[
- -3.467385E-06,
- 3.953156E-06,
- -0.7183474,
- -0.6956847
- ],
- "scale":[
- 0.9999999,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":69,
- "props":{
- "name":"Bip001 L Toe0Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1585926,
- -1.513958E-09,
- 0
- ],
- "rotation":[
- 9.553415E-16,
- -5.849759E-32,
- 1,
- 6.123234E-17
- ],
- "scale":[
- -0.9999999,
- -1,
- -0.9999999
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":70,
- "props":{
- "name":"Bip001 R Thigh",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.06138714,
- 0.0001536722,
- -0.1218973
- ],
- "rotation":[
- 0.2918943,
- 0.9293789,
- -0.1471169,
- 0.1714912
- ],
- "scale":[
- 0.9999999,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":71,
- "props":{
- "name":"Bip001 R Calf",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2669007,
- 0,
- 0
- ],
- "rotation":[
- 0.1020497,
- 0.0176354,
- 0.2631173,
- -0.9591893
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":72,
- "props":{
- "name":"Bip001 R Foot",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2669007,
- 7.56979E-10,
- 0
- ],
- "rotation":[
- 0.1194566,
- -0.178935,
- -0.01084446,
- -0.9765218
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":73,
- "props":{
- "name":"Bip001 R Toe0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04889454,
- 0.1476999,
- 0
- ],
- "rotation":[
- -2.470355E-06,
- 2.395273E-06,
- -0.7071168,
- -0.7070967
- ],
- "scale":[
- 0.9999999,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":74,
- "props":{
- "name":"Bip001 R Toe0Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1585926,
- -1.513958E-09,
- 0
- ],
- "rotation":[
- 1.697032E-30,
- 9.553441E-16,
- 1.776357E-15,
- -1
- ],
- "scale":[
- 0.9999999,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":75,
- "props":{
- "name":"Bip001 Spine1",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1311772,
- -0.0001029974,
- -2.856735E-10
- ],
- "rotation":[
- 0.01608621,
- 0.069769,
- -0.04823335,
- -0.9962666
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":76,
- "props":{
- "name":"Bip001 Spine2",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.129349,
- -0.0001231012,
- -3.414332E-10
- ],
- "rotation":[
- 0.004612553,
- 0.009515943,
- -0.02422716,
- -0.9996505
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":77,
- "props":{
- "name":"Bip001 Neck",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2056219,
- -7.991134E-05,
- -2.216423E-10
- ],
- "rotation":[
- 0.004228941,
- 0.009591684,
- -0.02427853,
- -0.9996503
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":78,
- "props":{
- "name":"Bip001 Head",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.06709881,
- -1.414794E-05,
- -3.924094E-11
- ],
- "rotation":[
- -0.05647885,
- -0.03562917,
- 0.1048949,
- -0.9922388
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":79,
- "props":{
- "name":"Bip001 HeadNub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.4866897,
- 0,
- 5.507747E-21
- ],
- "rotation":[
- 4.117466E-20,
- -3.388132E-21,
- -1.395049E-40,
- -1
- ],
- "scale":[
- 1,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":80,
- "props":{
- "name":"Bip001 L Clavicle",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.05102547,
- 7.969428E-05,
- 0.07830243
- ],
- "rotation":[
- -0.7766105,
- -0.04911418,
- -0.6278816,
- 0.01512353
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":81,
- "props":{
- "name":"Bip001 L UpperArm",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.06939408,
- 5.775291E-15,
- 0
- ],
- "rotation":[
- 0.352417,
- 0.0005737874,
- -0.05250577,
- -0.9343688
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":82,
- "props":{
- "name":"Bip001 L Forearm",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2419441,
- 0,
- -9.689331E-08
- ],
- "rotation":[
- -0.0006770075,
- -0.001649284,
- 0.1130499,
- -0.9935877
- ],
- "scale":[
- 0.9999999,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":83,
- "props":{
- "name":"Bip001 L Hand",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2507243,
- 0,
- 9.689331E-08
- ],
- "rotation":[
- -0.9397844,
- -0.004192464,
- 0.01422862,
- 0.3414458
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":84,
- "props":{
- "name":"Bip001 L Finger0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03493406,
- 0.003497364,
- -0.05212575
- ],
- "rotation":[
- -0.7448797,
- -0.427285,
- -0.1193836,
- -0.4983266
- ],
- "scale":[
- 1,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":85,
- "props":{
- "name":"Bip001 L Finger01",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03459571,
- -4.844665E-08,
- -9.689331E-08
- ],
- "rotation":[
- 0.02710288,
- 0.1917016,
- -0.1894348,
- -0.9626164
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":86,
- "props":{
- "name":"Bip001 L Finger02",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.06115894,
- -4.844665E-08,
- 0
- ],
- "rotation":[
- 0.008249838,
- 0.3156098,
- -0.2403254,
- -0.917914
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":87,
- "props":{
- "name":"Bip001 L Finger0Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.0539002,
- -4.844665E-08,
- 0
- ],
- "rotation":[
- 1.490116E-08,
- -1.490116E-08,
- 7.450579E-09,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":88,
- "props":{
- "name":"Bip001 L Finger1",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1432866,
- -4.011383E-05,
- -0.05032036
- ],
- "rotation":[
- -0.06186019,
- 0.01452386,
- -0.5036864,
- -0.8615465
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":89,
- "props":{
- "name":"Bip001 L Finger11",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.0570549,
- -9.689331E-08,
- 0
- ],
- "rotation":[
- -0.003838273,
- 0.1009367,
- -0.6992345,
- -0.7077205
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":90,
- "props":{
- "name":"Bip001 L Finger12",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.02968021,
- 9.689331E-08,
- 0
- ],
- "rotation":[
- 0.007985365,
- 0.07485668,
- -0.3544075,
- -0.9320558
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":91,
- "props":{
- "name":"Bip001 L Finger1Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03668613,
- 0,
- 0
- ],
- "rotation":[
- -9.313227E-10,
- -1.391163E-08,
- 1.295622E-17,
- -1
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":92,
- "props":{
- "name":"Bip001 L Finger2",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1506886,
- -1.104584E-05,
- -0.01383829
- ],
- "rotation":[
- 0.01499982,
- -0.01272143,
- -0.521207,
- -0.8532037
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":93,
- "props":{
- "name":"Bip001 L Finger21",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.06380758,
- 0,
- 6.055832E-09
- ],
- "rotation":[
- 0.004101839,
- 0.1174794,
- -0.6788669,
- -0.7247907
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":94,
- "props":{
- "name":"Bip001 L Finger22",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03940631,
- 0,
- 9.083748E-09
- ],
- "rotation":[
- -0.002658738,
- 0.04760334,
- -0.3200572,
- -0.9461978
- ],
- "scale":[
- 0.9999998,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":95,
- "props":{
- "name":"Bip001 L Finger2Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04017948,
- 9.689331E-08,
- -3.027916E-09
- ],
- "rotation":[
- 0,
- 1.513399E-09,
- 0,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":96,
- "props":{
- "name":"Bip001 L Finger3",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1488944,
- 9.27269E-05,
- 0.021928
- ],
- "rotation":[
- 0.08722418,
- -0.002361762,
- -0.5126411,
- -0.8541577
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":97,
- "props":{
- "name":"Bip001 L Finger31",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.05413846,
- 9.689331E-08,
- 3.027916E-09
- ],
- "rotation":[
- -0.01624088,
- 0.1102109,
- -0.5425165,
- -0.8326257
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":98,
- "props":{
- "name":"Bip001 L Finger32",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.02864602,
- 0,
- 0
- ],
- "rotation":[
- 0.002930376,
- 0.1037541,
- -0.5691085,
- -0.815685
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":99,
- "props":{
- "name":"Bip001 L Finger3Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04180326,
- -9.689331E-08,
- 0
- ],
- "rotation":[
- -6.505211E-18,
- 8.731148E-10,
- -7.45058E-09,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":100,
- "props":{
- "name":"Bip001 L Finger4",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.137076,
- -0.0005242897,
- 0.05495664
- ],
- "rotation":[
- 0.1742762,
- 0.00888015,
- -0.4517271,
- -0.8749238
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":101,
- "props":{
- "name":"Bip001 L Finger41",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04698027,
- 0,
- -2.422333E-08
- ],
- "rotation":[
- -0.006119333,
- 0.1106773,
- -0.6656235,
- -0.7380098
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":102,
- "props":{
- "name":"Bip001 L Finger42",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.02962997,
- 9.689331E-08,
- 0
- ],
- "rotation":[
- 0.00371522,
- 0.08880893,
- -0.4886648,
- -0.867932
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":103,
- "props":{
- "name":"Bip001 L Finger4Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.0371067,
- 9.689331E-08,
- 1.211166E-08
- ],
- "rotation":[
- 2.328306E-10,
- 1.135049E-09,
- -3.72529E-09,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":104,
- "props":{
- "name":"Bip001 R Clavicle",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.05102547,
- 8.012859E-05,
- -0.07830243
- ],
- "rotation":[
- -0.8018134,
- 0.007867619,
- 0.5969435,
- 0.02630135
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":105,
- "props":{
- "name":"Bip001 R UpperArm",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.06939408,
- 1.155058E-14,
- 0
- ],
- "rotation":[
- -0.1880469,
- 0.1385516,
- 0.5324197,
- -0.813616
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":106,
- "props":{
- "name":"Bip001 R Forearm",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2419441,
- -7.56979E-10,
- 9.689331E-08
- ],
- "rotation":[
- 0.006932151,
- 0.004391902,
- 0.9082052,
- -0.4184448
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":107,
- "props":{
- "name":"Bip001 R Hand",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2507243,
- -3.027916E-09,
- -9.689331E-08
- ],
- "rotation":[
- -0.9644874,
- -0.2174422,
- -0.01053258,
- -0.149573
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":108,
- "props":{
- "name":"Bip001 R Finger0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03493401,
- 0.003497364,
- 0.05212576
- ],
- "rotation":[
- 0.5204717,
- 0.3463215,
- -0.04422885,
- -0.7792397
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":109,
- "props":{
- "name":"Bip001 R Finger01",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03459578,
- 0,
- 0
- ],
- "rotation":[
- -0.02775675,
- -0.2726228,
- -0.2787581,
- -0.9204348
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":110,
- "props":{
- "name":"Bip001 R Finger02",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.06115891,
- -4.844665E-08,
- 9.689331E-08
- ],
- "rotation":[
- -5.109169E-07,
- 0.07367184,
- 0.08211295,
- -0.9938964
- ],
- "scale":[
- 0.9999998,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":111,
- "props":{
- "name":"Bip001 R Finger0Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.0539002,
- -9.689331E-08,
- -9.689331E-08
- ],
- "rotation":[
- 1.490116E-08,
- 9.12433E-25,
- 1,
- -6.123234E-17
- ],
- "scale":[
- -1,
- -1,
- -1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":112,
- "props":{
- "name":"Bip001 R Finger1",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1432866,
- -4.011383E-05,
- 0.05032036
- ],
- "rotation":[
- 0.04622373,
- -0.07212769,
- -0.1155997,
- -0.9895948
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":113,
- "props":{
- "name":"Bip001 R Finger11",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.05705485,
- -9.689331E-08,
- -3.633499E-08
- ],
- "rotation":[
- 0.004254811,
- -0.1115278,
- -0.7671127,
- -0.631729
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":114,
- "props":{
- "name":"Bip001 R Finger12",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.02968012,
- 0,
- 6.055832E-08
- ],
- "rotation":[
- -0.0110955,
- -0.09637789,
- -0.5029864,
- -0.8588323
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":115,
- "props":{
- "name":"Bip001 R Finger1Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03668613,
- 9.689331E-08,
- -2.422333E-08
- ],
- "rotation":[
- -1.396984E-08,
- 9.313226E-10,
- 1,
- -4.822191E-17
- ],
- "scale":[
- -1,
- -1,
- -1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":116,
- "props":{
- "name":"Bip001 R Finger2",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1506887,
- -1.104584E-05,
- 0.01383829
- ],
- "rotation":[
- 0.0009558891,
- -0.05902618,
- -0.3763788,
- -0.9245831
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":117,
- "props":{
- "name":"Bip001 R Finger21",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.06380773,
- 0,
- -3.027916E-09
- ],
- "rotation":[
- -0.004396001,
- -0.1244025,
- -0.7224237,
- -0.6801534
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":118,
- "props":{
- "name":"Bip001 R Finger22",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03940622,
- -9.689331E-08,
- 3.027916E-09
- ],
- "rotation":[
- 0.005054635,
- -0.1070351,
- -0.6609015,
- -0.7427834
- ],
- "scale":[
- 0.9999999,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":119,
- "props":{
- "name":"Bip001 R Finger2Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04017948,
- 0,
- 0
- ],
- "rotation":[
- -2.386514E-09,
- 4.656613E-10,
- 1,
- -6.012104E-17
- ],
- "scale":[
- -0.9999999,
- -0.9999999,
- -1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":120,
- "props":{
- "name":"Bip001 R Finger3",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1488944,
- 9.27269E-05,
- -0.021928
- ],
- "rotation":[
- 0.00732694,
- -0.02722372,
- -0.5110829,
- -0.8590689
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":121,
- "props":{
- "name":"Bip001 R Finger31",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.05413836,
- 9.689331E-08,
- -3.027916E-09
- ],
- "rotation":[
- 0.004415338,
- -0.1148005,
- -0.6939394,
- -0.710809
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":122,
- "props":{
- "name":"Bip001 R Finger32",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.02864612,
- -9.689331E-08,
- 0
- ],
- "rotation":[
- -0.003849642,
- -0.1327873,
- -0.7400945,
- -0.6592517
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":123,
- "props":{
- "name":"Bip001 R Finger3Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04180331,
- -9.689331E-08,
- 3.027916E-09
- ],
- "rotation":[
- -1.862645E-09,
- -4.656613E-10,
- 1,
- -6.20997E-17
- ],
- "scale":[
- -1,
- -1,
- -0.9999999
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":124,
- "props":{
- "name":"Bip001 R Finger4",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1370761,
- -0.0005243866,
- -0.05495666
- ],
- "rotation":[
- -0.1249994,
- -0.1123301,
- -0.5624106,
- -0.8095996
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":125,
- "props":{
- "name":"Bip001 R Finger41",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04698018,
- 0,
- 1.211166E-08
- ],
- "rotation":[
- 0.007565784,
- -0.139664,
- -0.8203093,
- -0.5545534
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":126,
- "props":{
- "name":"Bip001 R Finger42",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.02962978,
- 0,
- -1.211166E-08
- ],
- "rotation":[
- -0.005005495,
- -0.1180234,
- -0.6676726,
- -0.735023
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":127,
- "props":{
- "name":"Bip001 R Finger4Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.03710684,
- -9.689331E-08,
- -1.211166E-08
- ],
- "rotation":[
- 1.135049E-09,
- 6.98492E-10,
- 1,
- -6.202517E-17
- ],
- "scale":[
- -1,
- -0.9999999,
- -1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"SkinnedMeshSprite3D",
- "instanceID":128,
- "props":{
- "name":"Whiteman",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.7071068,
- 0,
- 0,
- -0.7071068
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "rootBone":61,
- "boundBox":{
- "min":[
- -0.2248232,
- -0.4284698,
- -0.5316119
- ],
- "max":[
- 0.4414448,
- 0.8684764,
- 1.111351
- ]
- },
- "boundSphere":{
- "center":[
- 0.1083108,
- 0.2200033,
- 0.2898693
- ],
- "radius":1.098329
- },
- "bones":[
- 78,
- 80,
- 81,
- 64,
- 75,
- 76,
- 61,
- 77,
- 82,
- 83,
- 88,
- 92,
- 100,
- 96,
- 89,
- 97,
- 86,
- 84,
- 85,
- 101,
- 93,
- 94,
- 98,
- 90,
- 102,
- 66,
- 65,
- 63,
- 70,
- 71,
- 67,
- 72,
- 68,
- 73,
- 104,
- 105,
- 106,
- 107,
- 112,
- 116,
- 124,
- 120,
- 113,
- 121,
- 109,
- 110,
- 108,
- 125,
- 117,
- 118,
- 122,
- 114,
- 126
- ],
- "materials":[
- {
- "type":"Laya.BlinnPhongMaterial",
- "path":"Assets/ArcherAsset/Animator/Ragdoll/Materials/player.lmat"
- }
- ],
- "meshPath":"Assets/ArcherAsset/Animator/Ragdoll/Ragdoll-Whiteman.lm"
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- }
- }
|