Prop.lh 288 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171
  1. {
  2. "version":"LAYAHIERARCHY:02",
  3. "data":{
  4. "type":"Sprite3D",
  5. "instanceID":0,
  6. "props":{
  7. "name":"Prop",
  8. "active":true,
  9. "position":[
  10. 0,
  11. 0,
  12. 0
  13. ],
  14. "rotation":[
  15. 0,
  16. 0,
  17. 0,
  18. -1
  19. ],
  20. "scale":[
  21. 1,
  22. 1,
  23. 1
  24. ]
  25. },
  26. "child":[
  27. {
  28. "type":"Sprite3D",
  29. "instanceID":1,
  30. "props":{
  31. "name":"Tree",
  32. "active":true,
  33. "isStatic":false,
  34. "layer":0,
  35. "position":[
  36. -3.396284,
  37. -14.39692,
  38. -43.35
  39. ],
  40. "rotation":[
  41. 0,
  42. 0,
  43. 0,
  44. -1
  45. ],
  46. "scale":[
  47. 1,
  48. 1,
  49. 1
  50. ]
  51. },
  52. "components":[],
  53. "child":[
  54. {
  55. "type":"Sprite3D",
  56. "instanceID":2,
  57. "props":{
  58. "name":"tree1",
  59. "active":true,
  60. "isStatic":false,
  61. "layer":0,
  62. "position":[
  63. 3.396284,
  64. 14.39692,
  65. 36.98278
  66. ],
  67. "rotation":[
  68. 0,
  69. 0,
  70. 0,
  71. -1
  72. ],
  73. "scale":[
  74. 1,
  75. 1,
  76. 1
  77. ]
  78. },
  79. "components":[],
  80. "child":[
  81. {
  82. "type":"MeshSprite3D",
  83. "instanceID":3,
  84. "props":{
  85. "name":"tree-beech_0",
  86. "active":true,
  87. "isStatic":false,
  88. "layer":0,
  89. "position":[
  90. 0,
  91. 0,
  92. 0
  93. ],
  94. "rotation":[
  95. 0,
  96. 0,
  97. 0,
  98. -1
  99. ],
  100. "scale":[
  101. 1,
  102. 1,
  103. 1
  104. ],
  105. "meshPath":"Assets/new_model/tree-beech-tree-beech_0.lm",
  106. "enableRender":true,
  107. "materials":[
  108. {
  109. "path":"Assets/new_model/Materials/Tree-Beech.lmat"
  110. }
  111. ]
  112. },
  113. "components":[],
  114. "child":[]
  115. }
  116. ]
  117. },
  118. {
  119. "type":"Sprite3D",
  120. "instanceID":4,
  121. "props":{
  122. "name":"tree2",
  123. "active":true,
  124. "isStatic":false,
  125. "layer":0,
  126. "position":[
  127. 3.396284,
  128. 14.39692,
  129. 32.70279
  130. ],
  131. "rotation":[
  132. 0,
  133. 0,
  134. 0,
  135. -1
  136. ],
  137. "scale":[
  138. 1,
  139. 1,
  140. 1
  141. ]
  142. },
  143. "components":[],
  144. "child":[
  145. {
  146. "type":"MeshSprite3D",
  147. "instanceID":5,
  148. "props":{
  149. "name":"tree-bonsai_0",
  150. "active":true,
  151. "isStatic":false,
  152. "layer":0,
  153. "position":[
  154. 0,
  155. 0,
  156. 0
  157. ],
  158. "rotation":[
  159. 0,
  160. 0,
  161. 0,
  162. -1
  163. ],
  164. "scale":[
  165. 1,
  166. 1,
  167. 1
  168. ],
  169. "meshPath":"Assets/new_model/tree-bonsai-tree-bonsai_0.lm",
  170. "enableRender":true,
  171. "materials":[
  172. {
  173. "path":"Assets/new_model/Materials/Tree_Bonsai.lmat"
  174. }
  175. ]
  176. },
  177. "components":[],
  178. "child":[]
  179. }
  180. ]
  181. },
  182. {
  183. "type":"Sprite3D",
  184. "instanceID":6,
  185. "props":{
  186. "name":"tree3",
  187. "active":true,
  188. "isStatic":false,
  189. "layer":0,
  190. "position":[
  191. 3.396284,
  192. 14.39692,
  193. 26.75278
  194. ],
  195. "rotation":[
  196. 0,
  197. 0,
  198. 0,
  199. -1
  200. ],
  201. "scale":[
  202. 1,
  203. 1,
  204. 1
  205. ]
  206. },
  207. "components":[],
  208. "child":[
  209. {
  210. "type":"MeshSprite3D",
  211. "instanceID":7,
  212. "props":{
  213. "name":"tree-lime_0",
  214. "active":true,
  215. "isStatic":false,
  216. "layer":0,
  217. "position":[
  218. 0,
  219. 0,
  220. 0
  221. ],
  222. "rotation":[
  223. 0,
  224. 0,
  225. 0,
  226. -1
  227. ],
  228. "scale":[
  229. 1,
  230. 1,
  231. 1
  232. ],
  233. "meshPath":"Assets/new_model/tree-lime-tree-lime_0.lm",
  234. "enableRender":true,
  235. "materials":[
  236. {
  237. "path":"Assets/new_model/Materials/Tree_Lime.lmat"
  238. }
  239. ]
  240. },
  241. "components":[],
  242. "child":[]
  243. }
  244. ]
  245. },
  246. {
  247. "type":"Sprite3D",
  248. "instanceID":8,
  249. "props":{
  250. "name":"tree4",
  251. "active":true,
  252. "isStatic":false,
  253. "layer":0,
  254. "position":[
  255. 3.396284,
  256. 14.39692,
  257. 40.12278
  258. ],
  259. "rotation":[
  260. 0,
  261. 0,
  262. 0,
  263. -1
  264. ],
  265. "scale":[
  266. 1,
  267. 1,
  268. 1
  269. ]
  270. },
  271. "components":[],
  272. "child":[
  273. {
  274. "type":"MeshSprite3D",
  275. "instanceID":9,
  276. "props":{
  277. "name":"tree-oak_0",
  278. "active":true,
  279. "isStatic":false,
  280. "layer":0,
  281. "position":[
  282. 0,
  283. 0,
  284. 0
  285. ],
  286. "rotation":[
  287. 0,
  288. 0,
  289. 0,
  290. -1
  291. ],
  292. "scale":[
  293. 1,
  294. 1,
  295. 1
  296. ],
  297. "meshPath":"Assets/new_model/tree-oak-tree-oak_0.lm",
  298. "enableRender":true,
  299. "materials":[
  300. {
  301. "path":"Assets/new_model/Materials/Tree_Oak.lmat"
  302. }
  303. ]
  304. },
  305. "components":[],
  306. "child":[]
  307. }
  308. ]
  309. }
  310. ]
  311. },
  312. {
  313. "type":"Sprite3D",
  314. "instanceID":10,
  315. "props":{
  316. "name":"plane",
  317. "active":true,
  318. "isStatic":false,
  319. "layer":0,
  320. "position":[
  321. 0,
  322. 0,
  323. 0
  324. ],
  325. "rotation":[
  326. 0,
  327. 0,
  328. 0,
  329. -1
  330. ],
  331. "scale":[
  332. 1,
  333. 1,
  334. 1
  335. ]
  336. },
  337. "components":[
  338. {
  339. "type":"Animator",
  340. "layers":[],
  341. "cullingMode":0,
  342. "playOnWake":true
  343. }
  344. ],
  345. "child":[
  346. {
  347. "type":"MeshSprite3D",
  348. "instanceID":11,
  349. "props":{
  350. "name":"PlateElementWide_0",
  351. "active":true,
  352. "isStatic":false,
  353. "layer":0,
  354. "position":[
  355. 4.812,
  356. 0,
  357. -0.05
  358. ],
  359. "rotation":[
  360. 0,
  361. 0,
  362. 0,
  363. -1
  364. ],
  365. "scale":[
  366. 0.1471175,
  367. 0.2,
  368. 0.8
  369. ],
  370. "meshPath":"Assets/new_model/PlateElementWide-PlateElementWide_0.lm",
  371. "enableRender":false,
  372. "materials":[
  373. {
  374. "path":"Assets/new_model/Materials/plane.lmat"
  375. }
  376. ]
  377. },
  378. "components":[
  379. {
  380. "type":"PhysicsCollider",
  381. "restitution":0,
  382. "friction":0.5,
  383. "rollingFriction":0,
  384. "shapes":[
  385. {
  386. "type":"BoxColliderShape",
  387. "center":[
  388. -3.576279E-06,
  389. -0.2499993,
  390. 6
  391. ],
  392. "size":[
  393. 12.00001,
  394. 0.5000013,
  395. 12.00001
  396. ]
  397. }
  398. ],
  399. "isTrigger":false
  400. }
  401. ],
  402. "child":[]
  403. }
  404. ]
  405. },
  406. {
  407. "type":"Sprite3D",
  408. "instanceID":12,
  409. "props":{
  410. "name":"small_fence",
  411. "active":true,
  412. "isStatic":false,
  413. "layer":0,
  414. "position":[
  415. 0.489,
  416. 0.815,
  417. 0.683
  418. ],
  419. "rotation":[
  420. 0,
  421. -0.7071068,
  422. 0,
  423. -0.7071068
  424. ],
  425. "scale":[
  426. 1,
  427. 1,
  428. 1
  429. ]
  430. },
  431. "components":[],
  432. "child":[
  433. {
  434. "type":"MeshSprite3D",
  435. "instanceID":13,
  436. "props":{
  437. "name":"fence_0",
  438. "active":true,
  439. "isStatic":false,
  440. "layer":0,
  441. "position":[
  442. 0,
  443. 0,
  444. 0
  445. ],
  446. "rotation":[
  447. 0,
  448. 0,
  449. 0,
  450. -1
  451. ],
  452. "scale":[
  453. 1,
  454. 1,
  455. 1
  456. ],
  457. "meshPath":"Assets/new_model/fence-fence_0.lm",
  458. "enableRender":true,
  459. "materials":[
  460. {
  461. "path":"Assets/new_model/Materials/Fence_Classic.lmat"
  462. }
  463. ]
  464. },
  465. "components":[],
  466. "child":[]
  467. }
  468. ]
  469. },
  470. {
  471. "type":"Sprite3D",
  472. "instanceID":14,
  473. "props":{
  474. "name":"Prop",
  475. "active":true,
  476. "isStatic":false,
  477. "layer":0,
  478. "position":[
  479. 0,
  480. 0,
  481. 0
  482. ],
  483. "rotation":[
  484. 0,
  485. 0,
  486. 0,
  487. -1
  488. ],
  489. "scale":[
  490. 1,
  491. 1,
  492. 1
  493. ]
  494. },
  495. "components":[],
  496. "child":[
  497. {
  498. "type":"Sprite3D",
  499. "instanceID":15,
  500. "props":{
  501. "name":"big_fence",
  502. "active":true,
  503. "isStatic":false,
  504. "layer":0,
  505. "position":[
  506. 0,
  507. 0,
  508. 0
  509. ],
  510. "rotation":[
  511. 0,
  512. 0,
  513. 0,
  514. -1
  515. ],
  516. "scale":[
  517. 1,
  518. 1,
  519. 1
  520. ]
  521. },
  522. "components":[],
  523. "child":[
  524. {
  525. "type":"MeshSprite3D",
  526. "instanceID":16,
  527. "props":{
  528. "name":"big_fence",
  529. "active":true,
  530. "isStatic":false,
  531. "layer":0,
  532. "position":[
  533. 0,
  534. 0,
  535. 0
  536. ],
  537. "rotation":[
  538. 0,
  539. 0,
  540. 0,
  541. -1
  542. ],
  543. "scale":[
  544. 1.1,
  545. 1,
  546. 1
  547. ],
  548. "meshPath":"Assets/new_model/fence_classic 1-fence_classic_0.lm",
  549. "enableRender":true,
  550. "materials":[
  551. {
  552. "path":"Assets/new_model/Materials/fence_classic_tex.lmat"
  553. }
  554. ]
  555. },
  556. "components":[
  557. {
  558. "type":"PhysicsCollider",
  559. "restitution":0,
  560. "friction":0.5,
  561. "rollingFriction":0,
  562. "shapes":[
  563. {
  564. "type":"BoxColliderShape",
  565. "center":[
  566. -0.01652622,
  567. 1.303953,
  568. 0.01033849
  569. ],
  570. "size":[
  571. 1.5,
  572. 2.528385,
  573. 0.1922449
  574. ]
  575. }
  576. ],
  577. "isTrigger":false
  578. },
  579. {
  580. "type":"Animator",
  581. "layers":[],
  582. "cullingMode":0,
  583. "playOnWake":true
  584. }
  585. ],
  586. "child":[]
  587. }
  588. ]
  589. },
  590. {
  591. "type":"Sprite3D",
  592. "instanceID":17,
  593. "props":{
  594. "name":"bonfire",
  595. "active":true,
  596. "isStatic":false,
  597. "layer":0,
  598. "position":[
  599. -4.61,
  600. 0,
  601. 0
  602. ],
  603. "rotation":[
  604. 0,
  605. 0,
  606. 0,
  607. -1
  608. ],
  609. "scale":[
  610. 1,
  611. 1,
  612. 1
  613. ]
  614. },
  615. "components":[],
  616. "child":[
  617. {
  618. "type":"MeshSprite3D",
  619. "instanceID":18,
  620. "props":{
  621. "name":"barricade-tank_0",
  622. "active":true,
  623. "isStatic":false,
  624. "layer":0,
  625. "position":[
  626. 0,
  627. 0,
  628. 0
  629. ],
  630. "rotation":[
  631. 0,
  632. 0,
  633. 0,
  634. -1
  635. ],
  636. "scale":[
  637. 1,
  638. 1,
  639. 1
  640. ],
  641. "meshPath":"Assets/new_model/barricade-tank-barricade-tank_0.lm",
  642. "enableRender":true,
  643. "materials":[
  644. {
  645. "path":"Assets/new_model/Materials/barrIcade_Tank.lmat"
  646. }
  647. ]
  648. },
  649. "components":[
  650. {
  651. "type":"PhysicsCollider",
  652. "restitution":0,
  653. "friction":0.5,
  654. "rollingFriction":0,
  655. "shapes":[
  656. {
  657. "type":"BoxColliderShape",
  658. "center":[
  659. 0.01217121,
  660. 0.7683171,
  661. -0.2330167
  662. ],
  663. "size":[
  664. 1.701345,
  665. 1.544772,
  666. 0.2932161
  667. ]
  668. }
  669. ],
  670. "isTrigger":false
  671. }
  672. ],
  673. "child":[]
  674. },
  675. {
  676. "type":"ShuriKenParticle3D",
  677. "instanceID":19,
  678. "props":{
  679. "name":"huo",
  680. "active":true,
  681. "isStatic":false,
  682. "layer":0,
  683. "position":[
  684. -0.007,
  685. 0.89,
  686. -0.08
  687. ],
  688. "rotation":[
  689. 0.7071068,
  690. 0,
  691. 0,
  692. -0.7071068
  693. ],
  694. "scale":[
  695. 1.5,
  696. 1.5,
  697. 1.5
  698. ],
  699. "isPerformanceMode":true,
  700. "duration":5,
  701. "looping":true,
  702. "prewarm":false,
  703. "startDelayType":0,
  704. "startDelay":0,
  705. "startDelayMin":0,
  706. "startDelayMax":0,
  707. "startLifetimeType":2,
  708. "startLifetimeConstant":0.8,
  709. "startLifetimeConstantMin":0.6,
  710. "startLifetimeConstantMax":0.8,
  711. "startLifetimeGradient":{
  712. "startLifetimes":[]
  713. },
  714. "startLifetimeGradientMin":{
  715. "startLifetimes":[]
  716. },
  717. "startLifetimeGradientMax":{
  718. "startLifetimes":[]
  719. },
  720. "startSpeedType":0,
  721. "startSpeedConstant":2,
  722. "startSpeedConstantMin":0,
  723. "startSpeedConstantMax":2,
  724. "threeDStartSize":false,
  725. "startSizeType":0,
  726. "startSizeConstant":0.5,
  727. "startSizeConstantMin":0,
  728. "startSizeConstantMax":0.5,
  729. "startSizeConstantSeparate":[
  730. 0.5,
  731. 1,
  732. 1
  733. ],
  734. "startSizeConstantMinSeparate":[
  735. 0,
  736. 0,
  737. 0
  738. ],
  739. "startSizeConstantMaxSeparate":[
  740. 0.5,
  741. 1,
  742. 1
  743. ],
  744. "threeDStartRotation":false,
  745. "startRotationType":2,
  746. "startRotationConstant":180,
  747. "startRotationConstantMin":-180,
  748. "startRotationConstantMax":180,
  749. "startRotationConstantSeparate":[
  750. 0,
  751. 0,
  752. -180
  753. ],
  754. "startRotationConstantMinSeparate":[
  755. 0,
  756. 0,
  757. 180
  758. ],
  759. "startRotationConstantMaxSeparate":[
  760. 0,
  761. 0,
  762. -180
  763. ],
  764. "randomizeRotationDirection":0,
  765. "startColorType":0,
  766. "startColorConstant":[
  767. 1,
  768. 1,
  769. 1,
  770. 1
  771. ],
  772. "startColorConstantMin":[
  773. 0,
  774. 0,
  775. 0,
  776. 0
  777. ],
  778. "startColorConstantMax":[
  779. 1,
  780. 1,
  781. 1,
  782. 1
  783. ],
  784. "gravity":[
  785. 0,
  786. -9.81,
  787. 0
  788. ],
  789. "gravityModifier":0.1,
  790. "simulationSpace":1,
  791. "simulationSpeed":1,
  792. "scaleMode":0,
  793. "playOnAwake":true,
  794. "maxParticles":100,
  795. "autoRandomSeed":true,
  796. "randomSeed":3.589968E+09,
  797. "emission":{
  798. "enable":true,
  799. "emissionRate":36,
  800. "emissionRateTip":"Time",
  801. "bursts":[]
  802. },
  803. "shape":{
  804. "enable":true,
  805. "shapeType":2,
  806. "sphereRadius":0.2,
  807. "sphereEmitFromShell":false,
  808. "sphereRandomDirection":0,
  809. "hemiSphereRadius":0.2,
  810. "hemiSphereEmitFromShell":false,
  811. "hemiSphereRandomDirection":0,
  812. "coneAngle":0,
  813. "coneRadius":0.2,
  814. "coneLength":5,
  815. "coneEmitType":0,
  816. "coneRandomDirection":0,
  817. "boxX":1,
  818. "boxY":1,
  819. "boxZ":1,
  820. "boxRandomDirection":0,
  821. "circleRadius":0.2,
  822. "circleArc":360,
  823. "circleEmitFromEdge":false,
  824. "circleRandomDirection":0
  825. },
  826. "colorOverLifetime":{
  827. "enable":true,
  828. "color":{
  829. "type":1,
  830. "constant":[
  831. 0,
  832. 0,
  833. 0,
  834. 0
  835. ],
  836. "gradient":{
  837. "alphas":[
  838. {
  839. "key":0,
  840. "value":0
  841. },
  842. {
  843. "key":0.1499962,
  844. "value":0.9215686
  845. },
  846. {
  847. "key":0.4852979,
  848. "value":1
  849. },
  850. {
  851. "key":1,
  852. "value":0
  853. }
  854. ],
  855. "rgbs":[
  856. {
  857. "key":0,
  858. "value":[
  859. 1,
  860. 0.9878296,
  861. 0.8897059
  862. ]
  863. },
  864. {
  865. "key":0.03529412,
  866. "value":[
  867. 1,
  868. 0.9878296,
  869. 0.8897059
  870. ]
  871. },
  872. {
  873. "key":0.1117723,
  874. "value":[
  875. 0.7352941,
  876. 0.3803245,
  877. 0
  878. ]
  879. },
  880. {
  881. "key":0.5088273,
  882. "value":[
  883. 0.875,
  884. 0.05431033,
  885. 0
  886. ]
  887. },
  888. {
  889. "key":1,
  890. "value":[
  891. 0.875,
  892. 0.05431033,
  893. 0
  894. ]
  895. }
  896. ]
  897. },
  898. "constantMin":[
  899. 0,
  900. 0,
  901. 0,
  902. 0
  903. ],
  904. "constantMax":[
  905. 0,
  906. 0,
  907. 0,
  908. 0
  909. ],
  910. "gradientMax":{
  911. "alphas":[
  912. {
  913. "key":0,
  914. "value":0
  915. },
  916. {
  917. "key":0.1499962,
  918. "value":0.9215686
  919. },
  920. {
  921. "key":0.4852979,
  922. "value":1
  923. },
  924. {
  925. "key":1,
  926. "value":0
  927. }
  928. ],
  929. "rgbs":[
  930. {
  931. "key":0,
  932. "value":[
  933. 1,
  934. 0.9878296,
  935. 0.8897059
  936. ]
  937. },
  938. {
  939. "key":0.03529412,
  940. "value":[
  941. 1,
  942. 0.9878296,
  943. 0.8897059
  944. ]
  945. },
  946. {
  947. "key":0.1117723,
  948. "value":[
  949. 0.7352941,
  950. 0.3803245,
  951. 0
  952. ]
  953. },
  954. {
  955. "key":0.5088273,
  956. "value":[
  957. 0.875,
  958. 0.05431033,
  959. 0
  960. ]
  961. },
  962. {
  963. "key":1,
  964. "value":[
  965. 0.875,
  966. 0.05431033,
  967. 0
  968. ]
  969. }
  970. ]
  971. }
  972. }
  973. },
  974. "sizeOverLifetime":{
  975. "enable":true,
  976. "size":{
  977. "type":0,
  978. "separateAxes":false,
  979. "gradient":{
  980. "sizes":[
  981. {
  982. "key":0,
  983. "value":0
  984. },
  985. {
  986. "key":0.1744642,
  987. "value":0.9695622
  988. },
  989. {
  990. "key":1,
  991. "value":0
  992. }
  993. ]
  994. },
  995. "gradientX":{
  996. "sizes":[
  997. {
  998. "key":0,
  999. "value":0
  1000. },
  1001. {
  1002. "key":0.1744642,
  1003. "value":0.9695622
  1004. },
  1005. {
  1006. "key":1,
  1007. "value":0
  1008. }
  1009. ]
  1010. },
  1011. "gradientY":{
  1012. "sizes":[
  1013. {
  1014. "key":0,
  1015. "value":1
  1016. },
  1017. {
  1018. "key":1,
  1019. "value":1
  1020. }
  1021. ]
  1022. },
  1023. "gradientZ":{
  1024. "sizes":[
  1025. {
  1026. "key":0,
  1027. "value":1
  1028. },
  1029. {
  1030. "key":1,
  1031. "value":1
  1032. }
  1033. ]
  1034. },
  1035. "constantMin":0,
  1036. "constantMax":0,
  1037. "constantMinSeparate":[
  1038. 0,
  1039. 0,
  1040. 0
  1041. ],
  1042. "constantMaxSeparate":[
  1043. 0,
  1044. 0,
  1045. 0
  1046. ],
  1047. "gradientMin":{
  1048. "sizes":[]
  1049. },
  1050. "gradientMax":{
  1051. "sizes":[
  1052. {
  1053. "key":0,
  1054. "value":0
  1055. },
  1056. {
  1057. "key":0.1744642,
  1058. "value":0.9695622
  1059. },
  1060. {
  1061. "key":1,
  1062. "value":0
  1063. }
  1064. ]
  1065. },
  1066. "gradientXMin":{
  1067. "sizes":[]
  1068. },
  1069. "gradientXMax":{
  1070. "sizes":[
  1071. {
  1072. "key":0,
  1073. "value":0
  1074. },
  1075. {
  1076. "key":0.1744642,
  1077. "value":0.9695622
  1078. },
  1079. {
  1080. "key":1,
  1081. "value":0
  1082. }
  1083. ]
  1084. },
  1085. "gradientYMin":{
  1086. "sizes":[]
  1087. },
  1088. "gradientYMax":{
  1089. "sizes":[
  1090. {
  1091. "key":0,
  1092. "value":1
  1093. },
  1094. {
  1095. "key":1,
  1096. "value":1
  1097. }
  1098. ]
  1099. },
  1100. "gradientZMin":{
  1101. "sizes":[]
  1102. },
  1103. "gradientZMax":{
  1104. "sizes":[
  1105. {
  1106. "key":0,
  1107. "value":1
  1108. },
  1109. {
  1110. "key":1,
  1111. "value":1
  1112. }
  1113. ]
  1114. }
  1115. }
  1116. },
  1117. "rotationOverLifetime":{
  1118. "enable":true,
  1119. "angularVelocity":{
  1120. "type":2,
  1121. "separateAxes":false,
  1122. "constant":40,
  1123. "constantMin":-40,
  1124. "constantMax":40,
  1125. "constantSeparate":[
  1126. 0,
  1127. 0,
  1128. -40
  1129. ],
  1130. "constantMinSeparate":[
  1131. 0,
  1132. 0,
  1133. -40
  1134. ],
  1135. "constantMaxSeparate":[
  1136. 0,
  1137. 0,
  1138. 40
  1139. ],
  1140. "gradient":{
  1141. "angularVelocitys":[]
  1142. },
  1143. "gradientX":{
  1144. "angularVelocitys":[]
  1145. },
  1146. "gradientY":{
  1147. "angularVelocitys":[]
  1148. },
  1149. "gradientZ":{
  1150. "angularVelocitys":[]
  1151. },
  1152. "gradientMin":{
  1153. "angularVelocitys":[]
  1154. },
  1155. "gradientMax":{
  1156. "angularVelocitys":[]
  1157. },
  1158. "gradientXMin":{
  1159. "angularVelocitys":[]
  1160. },
  1161. "gradientXMax":{
  1162. "angularVelocitys":[]
  1163. },
  1164. "gradientYMin":{
  1165. "angularVelocitys":[]
  1166. },
  1167. "gradientYMax":{
  1168. "angularVelocitys":[]
  1169. },
  1170. "gradientZMin":{
  1171. "angularVelocitys":[]
  1172. },
  1173. "gradientZMax":{
  1174. "angularVelocitys":[]
  1175. }
  1176. }
  1177. },
  1178. "renderMode":0,
  1179. "stretchedBillboardCameraSpeedScale":0,
  1180. "stretchedBillboardSpeedScale":0,
  1181. "stretchedBillboardLengthScale":2,
  1182. "sortingFudge":0,
  1183. "material":{
  1184. "type":"Laya.ShurikenParticleMaterial",
  1185. "path":"Assets/FX/Materials/huohuo2.lmat"
  1186. }
  1187. },
  1188. "components":[],
  1189. "child":[]
  1190. }
  1191. ]
  1192. },
  1193. {
  1194. "type":"Sprite3D",
  1195. "instanceID":20,
  1196. "props":{
  1197. "name":"stone",
  1198. "active":true,
  1199. "isStatic":false,
  1200. "layer":0,
  1201. "position":[
  1202. 0,
  1203. 0,
  1204. 0
  1205. ],
  1206. "rotation":[
  1207. 0,
  1208. 0,
  1209. 0,
  1210. -1
  1211. ],
  1212. "scale":[
  1213. 1,
  1214. 1,
  1215. 1
  1216. ]
  1217. },
  1218. "components":[],
  1219. "child":[
  1220. {
  1221. "type":"MeshSprite3D",
  1222. "instanceID":21,
  1223. "props":{
  1224. "name":"stone-small",
  1225. "active":true,
  1226. "isStatic":false,
  1227. "layer":0,
  1228. "position":[
  1229. 0,
  1230. 0,
  1231. 0
  1232. ],
  1233. "rotation":[
  1234. 0.7071068,
  1235. 0,
  1236. 0,
  1237. -0.7071068
  1238. ],
  1239. "scale":[
  1240. 1,
  1241. 1,
  1242. 1
  1243. ],
  1244. "meshPath":"Assets/new_model/stone-small-stone-small.lm",
  1245. "enableRender":true,
  1246. "materials":[
  1247. {
  1248. "path":"Assets/new_model/Materials/Stone.lmat"
  1249. }
  1250. ]
  1251. },
  1252. "components":[
  1253. {
  1254. "type":"PhysicsCollider",
  1255. "restitution":0,
  1256. "friction":0.5,
  1257. "rollingFriction":0,
  1258. "shapes":[
  1259. {
  1260. "type":"BoxColliderShape",
  1261. "center":[
  1262. -0.0125606,
  1263. -0.01424956,
  1264. 0.1298739
  1265. ],
  1266. "size":[
  1267. 0.3179452,
  1268. 0.291828,
  1269. 0.2534264
  1270. ]
  1271. }
  1272. ],
  1273. "isTrigger":false
  1274. },
  1275. {
  1276. "type":"Animator",
  1277. "layers":[],
  1278. "cullingMode":0,
  1279. "playOnWake":true
  1280. }
  1281. ],
  1282. "child":[]
  1283. }
  1284. ]
  1285. },
  1286. {
  1287. "type":"Sprite3D",
  1288. "instanceID":22,
  1289. "props":{
  1290. "name":"stone",
  1291. "active":true,
  1292. "isStatic":false,
  1293. "layer":0,
  1294. "position":[
  1295. 0,
  1296. 0,
  1297. 0
  1298. ],
  1299. "rotation":[
  1300. 0,
  1301. 0,
  1302. 0,
  1303. -1
  1304. ],
  1305. "scale":[
  1306. 1,
  1307. 1,
  1308. 1
  1309. ]
  1310. },
  1311. "components":[],
  1312. "child":[
  1313. {
  1314. "type":"MeshSprite3D",
  1315. "instanceID":23,
  1316. "props":{
  1317. "name":"stone-diamond_winter",
  1318. "active":true,
  1319. "isStatic":false,
  1320. "layer":0,
  1321. "position":[
  1322. 0,
  1323. 0,
  1324. 0
  1325. ],
  1326. "rotation":[
  1327. 0.7071068,
  1328. 0,
  1329. 0,
  1330. -0.7071068
  1331. ],
  1332. "scale":[
  1333. 1,
  1334. 1,
  1335. 1
  1336. ],
  1337. "meshPath":"Assets/new_model/stone-diamond_winter-stone-diamond_winter.lm",
  1338. "enableRender":true,
  1339. "materials":[
  1340. {
  1341. "path":"Assets/new_model/Materials/Stone.lmat"
  1342. }
  1343. ]
  1344. },
  1345. "components":[
  1346. {
  1347. "type":"PhysicsCollider",
  1348. "restitution":0,
  1349. "friction":0.5,
  1350. "rollingFriction":0,
  1351. "shapes":[
  1352. {
  1353. "type":"BoxColliderShape",
  1354. "center":[
  1355. 0.02720173,
  1356. 0.01413376,
  1357. -0.01838959
  1358. ],
  1359. "size":[
  1360. 0.90707,
  1361. 0.6907927,
  1362. 0.5015293
  1363. ]
  1364. }
  1365. ],
  1366. "isTrigger":false
  1367. },
  1368. {
  1369. "type":"Animator",
  1370. "layers":[],
  1371. "cullingMode":0,
  1372. "playOnWake":true
  1373. }
  1374. ],
  1375. "child":[]
  1376. }
  1377. ]
  1378. },
  1379. {
  1380. "type":"Sprite3D",
  1381. "instanceID":24,
  1382. "props":{
  1383. "name":"stone",
  1384. "active":true,
  1385. "isStatic":false,
  1386. "layer":0,
  1387. "position":[
  1388. 0,
  1389. 0,
  1390. 0
  1391. ],
  1392. "rotation":[
  1393. 0,
  1394. 0,
  1395. 0,
  1396. -1
  1397. ],
  1398. "scale":[
  1399. 1,
  1400. 1,
  1401. 1
  1402. ]
  1403. },
  1404. "components":[],
  1405. "child":[
  1406. {
  1407. "type":"MeshSprite3D",
  1408. "instanceID":25,
  1409. "props":{
  1410. "name":"stone-diamond",
  1411. "active":true,
  1412. "isStatic":false,
  1413. "layer":0,
  1414. "position":[
  1415. 0,
  1416. 0,
  1417. 0
  1418. ],
  1419. "rotation":[
  1420. 0.7071068,
  1421. 0,
  1422. 0,
  1423. -0.7071068
  1424. ],
  1425. "scale":[
  1426. 1,
  1427. 1,
  1428. 1
  1429. ],
  1430. "meshPath":"Assets/new_model/stone-diamond-stone-diamond.lm",
  1431. "enableRender":true,
  1432. "materials":[
  1433. {
  1434. "path":"Assets/new_model/Materials/Stone.lmat"
  1435. }
  1436. ]
  1437. },
  1438. "components":[
  1439. {
  1440. "type":"PhysicsCollider",
  1441. "restitution":0,
  1442. "friction":0.5,
  1443. "rollingFriction":0,
  1444. "shapes":[
  1445. {
  1446. "type":"BoxColliderShape",
  1447. "center":[
  1448. 0.02720173,
  1449. 0.01413232,
  1450. -0.01838749
  1451. ],
  1452. "size":[
  1453. 0.90707,
  1454. 0.6907927,
  1455. 0.5015293
  1456. ]
  1457. }
  1458. ],
  1459. "isTrigger":false
  1460. },
  1461. {
  1462. "type":"Animator",
  1463. "layers":[],
  1464. "cullingMode":0,
  1465. "playOnWake":true
  1466. }
  1467. ],
  1468. "child":[]
  1469. }
  1470. ]
  1471. },
  1472. {
  1473. "type":"Sprite3D",
  1474. "instanceID":26,
  1475. "props":{
  1476. "name":"stone",
  1477. "active":true,
  1478. "isStatic":false,
  1479. "layer":0,
  1480. "position":[
  1481. 0,
  1482. 0,
  1483. 0
  1484. ],
  1485. "rotation":[
  1486. 0,
  1487. 0,
  1488. 0,
  1489. -1
  1490. ],
  1491. "scale":[
  1492. 1,
  1493. 1,
  1494. 1
  1495. ]
  1496. },
  1497. "components":[],
  1498. "child":[
  1499. {
  1500. "type":"MeshSprite3D",
  1501. "instanceID":27,
  1502. "props":{
  1503. "name":"stone-snow",
  1504. "active":true,
  1505. "isStatic":false,
  1506. "layer":0,
  1507. "position":[
  1508. 0,
  1509. 0,
  1510. 0
  1511. ],
  1512. "rotation":[
  1513. 0,
  1514. 0,
  1515. 0,
  1516. -1
  1517. ],
  1518. "scale":[
  1519. 1,
  1520. 1,
  1521. 1
  1522. ],
  1523. "meshPath":"Assets/new_model/stone-snow-stone-snow.lm",
  1524. "enableRender":true,
  1525. "materials":[
  1526. {
  1527. "path":"Assets/new_model/Materials/Stone.lmat"
  1528. }
  1529. ]
  1530. },
  1531. "components":[
  1532. {
  1533. "type":"PhysicsCollider",
  1534. "restitution":0,
  1535. "friction":0.5,
  1536. "rollingFriction":0,
  1537. "shapes":[
  1538. {
  1539. "type":"BoxColliderShape",
  1540. "center":[
  1541. 0.006396502,
  1542. 0.00312762,
  1543. 0.2435953
  1544. ],
  1545. "size":[
  1546. 0.8405181,
  1547. 0.7283206,
  1548. 0.5223623
  1549. ]
  1550. }
  1551. ],
  1552. "isTrigger":false
  1553. },
  1554. {
  1555. "type":"Animator",
  1556. "layers":[],
  1557. "cullingMode":0,
  1558. "playOnWake":true
  1559. }
  1560. ],
  1561. "child":[]
  1562. }
  1563. ]
  1564. },
  1565. {
  1566. "type":"Sprite3D",
  1567. "instanceID":28,
  1568. "props":{
  1569. "name":"stone",
  1570. "active":true,
  1571. "isStatic":false,
  1572. "layer":0,
  1573. "position":[
  1574. 0,
  1575. 0,
  1576. 0
  1577. ],
  1578. "rotation":[
  1579. 0,
  1580. 0,
  1581. 0,
  1582. -1
  1583. ],
  1584. "scale":[
  1585. 1,
  1586. 1,
  1587. 1
  1588. ]
  1589. },
  1590. "components":[],
  1591. "child":[
  1592. {
  1593. "type":"MeshSprite3D",
  1594. "instanceID":29,
  1595. "props":{
  1596. "name":"stone-pointy",
  1597. "active":true,
  1598. "isStatic":false,
  1599. "layer":0,
  1600. "position":[
  1601. 0,
  1602. 0,
  1603. 0
  1604. ],
  1605. "rotation":[
  1606. 0.7071068,
  1607. 0,
  1608. 0,
  1609. -0.7071068
  1610. ],
  1611. "scale":[
  1612. 1,
  1613. 1,
  1614. 1
  1615. ],
  1616. "meshPath":"Assets/new_model/stone-pointy-stone-pointy.lm",
  1617. "enableRender":true,
  1618. "materials":[
  1619. {
  1620. "path":"Assets/new_model/Materials/Stone.lmat"
  1621. }
  1622. ]
  1623. },
  1624. "components":[
  1625. {
  1626. "type":"PhysicsCollider",
  1627. "restitution":0,
  1628. "friction":0.5,
  1629. "rollingFriction":0,
  1630. "shapes":[
  1631. {
  1632. "type":"BoxColliderShape",
  1633. "center":[
  1634. 0.01318964,
  1635. -0.01002646,
  1636. 0.2232884
  1637. ],
  1638. "size":[
  1639. 0.9758297,
  1640. 0.8416777,
  1641. 0.5084871
  1642. ]
  1643. }
  1644. ],
  1645. "isTrigger":false
  1646. },
  1647. {
  1648. "type":"Animator",
  1649. "layers":[],
  1650. "cullingMode":0,
  1651. "playOnWake":true
  1652. }
  1653. ],
  1654. "child":[]
  1655. }
  1656. ]
  1657. },
  1658. {
  1659. "type":"Sprite3D",
  1660. "instanceID":30,
  1661. "props":{
  1662. "name":"stone",
  1663. "active":true,
  1664. "isStatic":false,
  1665. "layer":0,
  1666. "position":[
  1667. 0,
  1668. 0,
  1669. 0
  1670. ],
  1671. "rotation":[
  1672. 0,
  1673. 0,
  1674. 0,
  1675. -1
  1676. ],
  1677. "scale":[
  1678. 1,
  1679. 1,
  1680. 1
  1681. ]
  1682. },
  1683. "components":[],
  1684. "child":[
  1685. {
  1686. "type":"MeshSprite3D",
  1687. "instanceID":31,
  1688. "props":{
  1689. "name":"stone-flat_winter",
  1690. "active":true,
  1691. "isStatic":false,
  1692. "layer":0,
  1693. "position":[
  1694. 0,
  1695. 0,
  1696. 0
  1697. ],
  1698. "rotation":[
  1699. 0.7071068,
  1700. 0,
  1701. 0,
  1702. -0.7071068
  1703. ],
  1704. "scale":[
  1705. 1,
  1706. 1,
  1707. 1
  1708. ],
  1709. "meshPath":"Assets/new_model/stone-flat_winter-stone-flat_winter.lm",
  1710. "enableRender":true,
  1711. "materials":[
  1712. {
  1713. "path":"Assets/new_model/Materials/Stone.lmat"
  1714. }
  1715. ]
  1716. },
  1717. "components":[
  1718. {
  1719. "type":"PhysicsCollider",
  1720. "restitution":0,
  1721. "friction":0.5,
  1722. "rollingFriction":0,
  1723. "shapes":[
  1724. {
  1725. "type":"BoxColliderShape",
  1726. "center":[
  1727. 0,
  1728. -1.907349E-06,
  1729. 0.1731215
  1730. ],
  1731. "size":[
  1732. 1.162265,
  1733. 1.130382,
  1734. 0.4411525
  1735. ]
  1736. }
  1737. ],
  1738. "isTrigger":false
  1739. },
  1740. {
  1741. "type":"Animator",
  1742. "layers":[],
  1743. "cullingMode":0,
  1744. "playOnWake":true
  1745. }
  1746. ],
  1747. "child":[]
  1748. }
  1749. ]
  1750. },
  1751. {
  1752. "type":"Sprite3D",
  1753. "instanceID":32,
  1754. "props":{
  1755. "name":"stone",
  1756. "active":true,
  1757. "isStatic":false,
  1758. "layer":0,
  1759. "position":[
  1760. 0,
  1761. 0,
  1762. 0
  1763. ],
  1764. "rotation":[
  1765. 0,
  1766. 0,
  1767. 0,
  1768. -1
  1769. ],
  1770. "scale":[
  1771. 1,
  1772. 1,
  1773. 1
  1774. ]
  1775. },
  1776. "components":[],
  1777. "child":[
  1778. {
  1779. "type":"MeshSprite3D",
  1780. "instanceID":33,
  1781. "props":{
  1782. "name":"stone-flat",
  1783. "active":true,
  1784. "isStatic":false,
  1785. "layer":0,
  1786. "position":[
  1787. 0,
  1788. 0,
  1789. 0
  1790. ],
  1791. "rotation":[
  1792. 0.7071068,
  1793. 0,
  1794. 0,
  1795. -0.7071068
  1796. ],
  1797. "scale":[
  1798. 1,
  1799. 1,
  1800. 1
  1801. ],
  1802. "meshPath":"Assets/new_model/stone-flat-stone-flat.lm",
  1803. "enableRender":true,
  1804. "materials":[
  1805. {
  1806. "path":"Assets/new_model/Materials/Stone.lmat"
  1807. }
  1808. ]
  1809. },
  1810. "components":[
  1811. {
  1812. "type":"PhysicsCollider",
  1813. "restitution":0,
  1814. "friction":0.5,
  1815. "rollingFriction":0,
  1816. "shapes":[
  1817. {
  1818. "type":"BoxColliderShape",
  1819. "center":[
  1820. 0,
  1821. -1.907349E-06,
  1822. 0.1731212
  1823. ],
  1824. "size":[
  1825. 1.162265,
  1826. 1.130382,
  1827. 0.4411525
  1828. ]
  1829. }
  1830. ],
  1831. "isTrigger":false
  1832. },
  1833. {
  1834. "type":"Animator",
  1835. "layers":[],
  1836. "cullingMode":0,
  1837. "playOnWake":true
  1838. }
  1839. ],
  1840. "child":[]
  1841. }
  1842. ]
  1843. },
  1844. {
  1845. "type":"Sprite3D",
  1846. "instanceID":34,
  1847. "props":{
  1848. "name":"stone",
  1849. "active":true,
  1850. "isStatic":false,
  1851. "layer":0,
  1852. "position":[
  1853. -2.468,
  1854. 0,
  1855. 9.621
  1856. ],
  1857. "rotation":[
  1858. 0,
  1859. 0,
  1860. 0,
  1861. -1
  1862. ],
  1863. "scale":[
  1864. 1,
  1865. 1,
  1866. 1
  1867. ]
  1868. },
  1869. "components":[],
  1870. "child":[
  1871. {
  1872. "type":"MeshSprite3D",
  1873. "instanceID":35,
  1874. "props":{
  1875. "name":"stone-round_orange",
  1876. "active":true,
  1877. "isStatic":false,
  1878. "layer":0,
  1879. "position":[
  1880. 0,
  1881. 0,
  1882. 0
  1883. ],
  1884. "rotation":[
  1885. 0.7071068,
  1886. 0,
  1887. 0,
  1888. -0.7071068
  1889. ],
  1890. "scale":[
  1891. 1,
  1892. 1,
  1893. 1
  1894. ],
  1895. "meshPath":"Assets/new_model/stone-round_orange-stone-round_orange.lm",
  1896. "enableRender":true,
  1897. "materials":[
  1898. {
  1899. "path":"Assets/new_model/Materials/Stone.lmat"
  1900. }
  1901. ]
  1902. },
  1903. "components":[
  1904. {
  1905. "type":"PhysicsCollider",
  1906. "restitution":0,
  1907. "friction":0.5,
  1908. "rollingFriction":0,
  1909. "shapes":[
  1910. {
  1911. "type":"BoxColliderShape",
  1912. "center":[
  1913. 0.1682616,
  1914. -0.0870598,
  1915. 0.1729195
  1916. ],
  1917. "size":[
  1918. 0.7065065,
  1919. 0.8502957,
  1920. 0.8938286
  1921. ]
  1922. }
  1923. ],
  1924. "isTrigger":false
  1925. },
  1926. {
  1927. "type":"Animator",
  1928. "layers":[],
  1929. "cullingMode":0,
  1930. "playOnWake":true
  1931. }
  1932. ],
  1933. "child":[]
  1934. }
  1935. ]
  1936. },
  1937. {
  1938. "type":"Sprite3D",
  1939. "instanceID":36,
  1940. "props":{
  1941. "name":"stone",
  1942. "active":true,
  1943. "isStatic":false,
  1944. "layer":0,
  1945. "position":[
  1946. 0,
  1947. 0,
  1948. 12.899
  1949. ],
  1950. "rotation":[
  1951. 0,
  1952. 0,
  1953. 0,
  1954. -1
  1955. ],
  1956. "scale":[
  1957. 1,
  1958. 1,
  1959. 1
  1960. ]
  1961. },
  1962. "components":[],
  1963. "child":[
  1964. {
  1965. "type":"MeshSprite3D",
  1966. "instanceID":37,
  1967. "props":{
  1968. "name":"stone-round",
  1969. "active":true,
  1970. "isStatic":false,
  1971. "layer":0,
  1972. "position":[
  1973. 0,
  1974. 0,
  1975. 0
  1976. ],
  1977. "rotation":[
  1978. 0.7071068,
  1979. 0,
  1980. 0,
  1981. -0.7071068
  1982. ],
  1983. "scale":[
  1984. 1,
  1985. 1,
  1986. 1
  1987. ],
  1988. "meshPath":"Assets/new_model/stone-round-stone-round.lm",
  1989. "enableRender":true,
  1990. "materials":[
  1991. {
  1992. "path":"Assets/new_model/Materials/Stone.lmat"
  1993. }
  1994. ]
  1995. },
  1996. "components":[
  1997. {
  1998. "type":"PhysicsCollider",
  1999. "restitution":0,
  2000. "friction":0.5,
  2001. "rollingFriction":0,
  2002. "shapes":[
  2003. {
  2004. "type":"BoxColliderShape",
  2005. "center":[
  2006. 0.1757376,
  2007. -0.05329031,
  2008. 0.11527
  2009. ],
  2010. "size":[
  2011. 0.6459224,
  2012. 0.98453,
  2013. 0.8779501
  2014. ]
  2015. }
  2016. ],
  2017. "isTrigger":false
  2018. },
  2019. {
  2020. "type":"Animator",
  2021. "layers":[],
  2022. "cullingMode":0,
  2023. "playOnWake":true
  2024. }
  2025. ],
  2026. "child":[]
  2027. }
  2028. ]
  2029. },
  2030. {
  2031. "type":"Sprite3D",
  2032. "instanceID":38,
  2033. "props":{
  2034. "name":"wood_Cylinder",
  2035. "active":true,
  2036. "isStatic":false,
  2037. "layer":0,
  2038. "position":[
  2039. -4.079,
  2040. 0,
  2041. -5.35
  2042. ],
  2043. "rotation":[
  2044. 0,
  2045. 0,
  2046. 0,
  2047. -1
  2048. ],
  2049. "scale":[
  2050. 1,
  2051. 1,
  2052. 1
  2053. ]
  2054. },
  2055. "components":[],
  2056. "child":[
  2057. {
  2058. "type":"MeshSprite3D",
  2059. "instanceID":39,
  2060. "props":{
  2061. "name":"logs_0",
  2062. "active":true,
  2063. "isStatic":false,
  2064. "layer":0,
  2065. "position":[
  2066. 0,
  2067. 0,
  2068. 0
  2069. ],
  2070. "rotation":[
  2071. 0,
  2072. 0,
  2073. 0,
  2074. -1
  2075. ],
  2076. "scale":[
  2077. 1,
  2078. 1,
  2079. 1
  2080. ],
  2081. "meshPath":"Assets/new_model/logs-logs_0.lm",
  2082. "enableRender":true,
  2083. "materials":[
  2084. {
  2085. "path":"Assets/new_model/Materials/Logs.lmat"
  2086. }
  2087. ]
  2088. },
  2089. "components":[
  2090. {
  2091. "type":"PhysicsCollider",
  2092. "restitution":0,
  2093. "friction":0.5,
  2094. "rollingFriction":0,
  2095. "shapes":[
  2096. {
  2097. "type":"BoxColliderShape",
  2098. "center":[
  2099. 0.03818011,
  2100. 0.4757541,
  2101. -0.08750176
  2102. ],
  2103. "size":[
  2104. 0.8865066,
  2105. 0.95942,
  2106. 0.970655
  2107. ]
  2108. }
  2109. ],
  2110. "isTrigger":false
  2111. }
  2112. ],
  2113. "child":[]
  2114. }
  2115. ]
  2116. },
  2117. {
  2118. "type":"Sprite3D",
  2119. "instanceID":40,
  2120. "props":{
  2121. "name":"npc",
  2122. "active":true,
  2123. "isStatic":false,
  2124. "layer":0,
  2125. "position":[
  2126. 0,
  2127. 0,
  2128. -1.93
  2129. ],
  2130. "rotation":[
  2131. 0,
  2132. 0,
  2133. 0,
  2134. -1
  2135. ],
  2136. "scale":[
  2137. 0.8,
  2138. 0.8,
  2139. 0.8
  2140. ]
  2141. },
  2142. "components":[
  2143. {
  2144. "type":"Animator",
  2145. "layers":[
  2146. {
  2147. "name":"Base Layer",
  2148. "weight":0,
  2149. "blendingMode":0,
  2150. "states":[
  2151. {
  2152. "name":"idle",
  2153. "clipPath":"Assets/new_model/npc-idle.lani"
  2154. },
  2155. {
  2156. "name":"atk",
  2157. "clipPath":"Assets/new_model/npc-atk.lani"
  2158. },
  2159. {
  2160. "name":"diefront",
  2161. "clipPath":"Assets/new_model/npc-diefront.lani"
  2162. },
  2163. {
  2164. "name":"dierear",
  2165. "clipPath":"Assets/new_model/npc-dierear.lani"
  2166. },
  2167. {
  2168. "name":"run",
  2169. "clipPath":"Assets/new_model/npc-run.lani"
  2170. },
  2171. {
  2172. "name":"thank",
  2173. "clipPath":"Assets/new_model/npc-thank.lani"
  2174. },
  2175. {
  2176. "name":"win",
  2177. "clipPath":"Assets/new_model/npc-win.lani"
  2178. }
  2179. ]
  2180. }
  2181. ],
  2182. "cullingMode":0,
  2183. "playOnWake":true
  2184. }
  2185. ],
  2186. "child":[
  2187. {
  2188. "type":"Sprite3D",
  2189. "instanceID":41,
  2190. "props":{
  2191. "name":"Bip001",
  2192. "active":true,
  2193. "isStatic":false,
  2194. "layer":0,
  2195. "position":[
  2196. 0.01054461,
  2197. 0.7479606,
  2198. -0.02780217
  2199. ],
  2200. "rotation":[
  2201. -0.5799491,
  2202. 0.5799491,
  2203. 0.404548,
  2204. 0.404548
  2205. ],
  2206. "scale":[
  2207. 1,
  2208. 1,
  2209. 1
  2210. ]
  2211. },
  2212. "components":[],
  2213. "child":[
  2214. {
  2215. "type":"Sprite3D",
  2216. "instanceID":42,
  2217. "props":{
  2218. "name":"Bip001 Footsteps",
  2219. "active":true,
  2220. "isStatic":false,
  2221. "layer":0,
  2222. "position":[
  2223. 0.256558,
  2224. 2.142042E-08,
  2225. -0.697163
  2226. ],
  2227. "rotation":[
  2228. 0.1240258,
  2229. 0.124026,
  2230. -0.6961445,
  2231. -0.6961452
  2232. ],
  2233. "scale":[
  2234. 0.9999999,
  2235. 0.9999998,
  2236. 0.9999999
  2237. ]
  2238. },
  2239. "components":[],
  2240. "child":[]
  2241. },
  2242. {
  2243. "type":"Sprite3D",
  2244. "instanceID":43,
  2245. "props":{
  2246. "name":"Bip001 Pelvis",
  2247. "active":true,
  2248. "isStatic":false,
  2249. "layer":0,
  2250. "position":[
  2251. 0,
  2252. 0,
  2253. 0
  2254. ],
  2255. "rotation":[
  2256. 0.4496907,
  2257. 0.5287219,
  2258. 0.3427418,
  2259. -0.6330557
  2260. ],
  2261. "scale":[
  2262. 0.9999999,
  2263. 0.9999999,
  2264. 1
  2265. ]
  2266. },
  2267. "components":[],
  2268. "child":[
  2269. {
  2270. "type":"Sprite3D",
  2271. "instanceID":44,
  2272. "props":{
  2273. "name":"Bip001 Spine",
  2274. "active":true,
  2275. "isStatic":false,
  2276. "layer":0,
  2277. "position":[
  2278. 0.09213704,
  2279. -0.03048739,
  2280. 0.007708102
  2281. ],
  2282. "rotation":[
  2283. 0.2684437,
  2284. -0.02074438,
  2285. 0.02158226,
  2286. -0.9628302
  2287. ],
  2288. "scale":[
  2289. 1,
  2290. 1,
  2291. 1
  2292. ]
  2293. },
  2294. "components":[],
  2295. "child":[
  2296. {
  2297. "type":"Sprite3D",
  2298. "instanceID":45,
  2299. "props":{
  2300. "name":"Bip001 L Thigh",
  2301. "active":true,
  2302. "isStatic":false,
  2303. "layer":0,
  2304. "position":[
  2305. -0.09754831,
  2306. -0.04921928,
  2307. 0.130663
  2308. ],
  2309. "rotation":[
  2310. -0.1801985,
  2311. 0.969772,
  2312. 0.1627335,
  2313. -0.02426215
  2314. ],
  2315. "scale":[
  2316. 0.9999998,
  2317. 1,
  2318. 1
  2319. ]
  2320. },
  2321. "components":[],
  2322. "child":[
  2323. {
  2324. "type":"Sprite3D",
  2325. "instanceID":46,
  2326. "props":{
  2327. "name":"Bip001 L Calf",
  2328. "active":true,
  2329. "isStatic":false,
  2330. "layer":0,
  2331. "position":[
  2332. 0.2654103,
  2333. 0,
  2334. 0
  2335. ],
  2336. "rotation":[
  2337. -8.907162E-09,
  2338. -5.628923E-09,
  2339. 0.2199988,
  2340. -0.9755002
  2341. ],
  2342. "scale":[
  2343. 1,
  2344. 0.9999999,
  2345. 1
  2346. ]
  2347. },
  2348. "components":[],
  2349. "child":[
  2350. {
  2351. "type":"Sprite3D",
  2352. "instanceID":47,
  2353. "props":{
  2354. "name":"Bip001 L Foot",
  2355. "active":true,
  2356. "isStatic":false,
  2357. "layer":0,
  2358. "position":[
  2359. 0.3190145,
  2360. 5.960464E-08,
  2361. 2.980232E-08
  2362. ],
  2363. "rotation":[
  2364. -0.01994075,
  2365. 0.02733877,
  2366. 0.3338319,
  2367. -0.9420251
  2368. ],
  2369. "scale":[
  2370. 0.9999999,
  2371. 1,
  2372. 1
  2373. ]
  2374. },
  2375. "components":[],
  2376. "child":[
  2377. {
  2378. "type":"Sprite3D",
  2379. "instanceID":48,
  2380. "props":{
  2381. "name":"Bip001 L Toe0",
  2382. "active":true,
  2383. "isStatic":false,
  2384. "layer":0,
  2385. "position":[
  2386. 0.1564382,
  2387. 0.1532346,
  2388. 2.980232E-08
  2389. ],
  2390. "rotation":[
  2391. -0.0227783,
  2392. -0.02363283,
  2393. -0.7151085,
  2394. -0.6982424
  2395. ],
  2396. "scale":[
  2397. 0.9999999,
  2398. 0.9999999,
  2399. 0.9999999
  2400. ]
  2401. },
  2402. "components":[],
  2403. "child":[
  2404. {
  2405. "type":"Sprite3D",
  2406. "instanceID":49,
  2407. "props":{
  2408. "name":"Bip001 L Toe0Nub",
  2409. "active":true,
  2410. "isStatic":false,
  2411. "layer":0,
  2412. "position":[
  2413. 0.2260934,
  2414. -5.960464E-08,
  2415. -1.490116E-08
  2416. ],
  2417. "rotation":[
  2418. -5.551115E-17,
  2419. -3.72529E-09,
  2420. 1,
  2421. 1.490116E-08
  2422. ],
  2423. "scale":[
  2424. -1,
  2425. -1,
  2426. -1
  2427. ]
  2428. },
  2429. "components":[],
  2430. "child":[]
  2431. }
  2432. ]
  2433. }
  2434. ]
  2435. }
  2436. ]
  2437. }
  2438. ]
  2439. },
  2440. {
  2441. "type":"Sprite3D",
  2442. "instanceID":50,
  2443. "props":{
  2444. "name":"Bip001 R Thigh",
  2445. "active":true,
  2446. "isStatic":false,
  2447. "layer":0,
  2448. "position":[
  2449. -0.08917165,
  2450. 0.1037262,
  2451. -0.1218753
  2452. ],
  2453. "rotation":[
  2454. 0.5281463,
  2455. 0.847366,
  2456. 0.03983953,
  2457. -0.03801443
  2458. ],
  2459. "scale":[
  2460. 0.9999999,
  2461. 0.9999999,
  2462. 1
  2463. ]
  2464. },
  2465. "components":[],
  2466. "child":[
  2467. {
  2468. "type":"Sprite3D",
  2469. "instanceID":51,
  2470. "props":{
  2471. "name":"Bip001 R Calf",
  2472. "active":true,
  2473. "isStatic":false,
  2474. "layer":0,
  2475. "position":[
  2476. 0.2654103,
  2477. 0,
  2478. 0
  2479. ],
  2480. "rotation":[
  2481. 1.716272E-09,
  2482. 7.603084E-10,
  2483. 0.1019511,
  2484. -0.9947894
  2485. ],
  2486. "scale":[
  2487. 1,
  2488. 1,
  2489. 1
  2490. ]
  2491. },
  2492. "components":[],
  2493. "child":[
  2494. {
  2495. "type":"Sprite3D",
  2496. "instanceID":52,
  2497. "props":{
  2498. "name":"Bip001 R Foot",
  2499. "active":true,
  2500. "isStatic":false,
  2501. "layer":0,
  2502. "position":[
  2503. 0.3190145,
  2504. -5.960464E-08,
  2505. 0
  2506. ],
  2507. "rotation":[
  2508. -0.01509951,
  2509. -0.02511084,
  2510. -0.1003526,
  2511. -0.9945204
  2512. ],
  2513. "scale":[
  2514. 1,
  2515. 1,
  2516. 1
  2517. ]
  2518. },
  2519. "components":[],
  2520. "child":[
  2521. {
  2522. "type":"Sprite3D",
  2523. "instanceID":53,
  2524. "props":{
  2525. "name":"Bip001 R Toe0",
  2526. "active":true,
  2527. "isStatic":false,
  2528. "layer":0,
  2529. "position":[
  2530. 0.1564382,
  2531. 0.1532346,
  2532. -7.450581E-09
  2533. ],
  2534. "rotation":[
  2535. 0.02400545,
  2536. -0.05428703,
  2537. -0.7346516,
  2538. -0.6758429
  2539. ],
  2540. "scale":[
  2541. 1,
  2542. 1,
  2543. 1
  2544. ]
  2545. },
  2546. "components":[],
  2547. "child":[
  2548. {
  2549. "type":"Sprite3D",
  2550. "instanceID":54,
  2551. "props":{
  2552. "name":"Bip001 R Toe0Nub",
  2553. "active":true,
  2554. "isStatic":false,
  2555. "layer":0,
  2556. "position":[
  2557. 0.2260934,
  2558. 2.980232E-08,
  2559. 0
  2560. ],
  2561. "rotation":[
  2562. -4.656613E-10,
  2563. -1.862645E-09,
  2564. 8.673619E-19,
  2565. -1
  2566. ],
  2567. "scale":[
  2568. 0.9999999,
  2569. 0.9999999,
  2570. 0.9999999
  2571. ]
  2572. },
  2573. "components":[],
  2574. "child":[]
  2575. }
  2576. ]
  2577. }
  2578. ]
  2579. }
  2580. ]
  2581. }
  2582. ]
  2583. },
  2584. {
  2585. "type":"Sprite3D",
  2586. "instanceID":55,
  2587. "props":{
  2588. "name":"Bip001 Spine1",
  2589. "active":true,
  2590. "isStatic":false,
  2591. "layer":0,
  2592. "position":[
  2593. 0.1352492,
  2594. -0.0002736747,
  2595. 1.21519E-05
  2596. ],
  2597. "rotation":[
  2598. 0.02216193,
  2599. -0.001473627,
  2600. 0.009752541,
  2601. -0.9997058
  2602. ],
  2603. "scale":[
  2604. 1,
  2605. 1,
  2606. 1
  2607. ]
  2608. },
  2609. "components":[],
  2610. "child":[
  2611. {
  2612. "type":"Sprite3D",
  2613. "instanceID":56,
  2614. "props":{
  2615. "name":"Bip001 Spine2",
  2616. "active":true,
  2617. "isStatic":false,
  2618. "layer":0,
  2619. "position":[
  2620. 0.344098,
  2621. -0.0001448393,
  2622. 1.291186E-05
  2623. ],
  2624. "rotation":[
  2625. 0.04431078,
  2626. -0.002946366,
  2627. 0.01949922,
  2628. -0.9988232
  2629. ],
  2630. "scale":[
  2631. 0.9999999,
  2632. 0.9999999,
  2633. 0.9999999
  2634. ]
  2635. },
  2636. "components":[],
  2637. "child":[
  2638. {
  2639. "type":"Sprite3D",
  2640. "instanceID":57,
  2641. "props":{
  2642. "name":"Bip001 Neck",
  2643. "active":true,
  2644. "isStatic":false,
  2645. "layer":0,
  2646. "position":[
  2647. 0.1828258,
  2648. -0.01429462,
  2649. -1.490116E-08
  2650. ],
  2651. "rotation":[
  2652. 2.245982E-09,
  2653. 4.568707E-07,
  2654. -0.1582245,
  2655. -0.9874032
  2656. ],
  2657. "scale":[
  2658. 0.9999999,
  2659. 1,
  2660. 1
  2661. ]
  2662. },
  2663. "components":[],
  2664. "child":[
  2665. {
  2666. "type":"Sprite3D",
  2667. "instanceID":58,
  2668. "props":{
  2669. "name":"Bip001 Head",
  2670. "active":true,
  2671. "isStatic":false,
  2672. "layer":0,
  2673. "position":[
  2674. 0.020051,
  2675. 9.477139E-05,
  2676. 1.490116E-08
  2677. ],
  2678. "rotation":[
  2679. -0.152795,
  2680. -0.004219283,
  2681. 0.3302348,
  2682. -0.9314402
  2683. ],
  2684. "scale":[
  2685. 0.9999999,
  2686. 0.9999999,
  2687. 1
  2688. ]
  2689. },
  2690. "components":[],
  2691. "child":[
  2692. {
  2693. "type":"Sprite3D",
  2694. "instanceID":59,
  2695. "props":{
  2696. "name":"Bip001 HeadNub",
  2697. "active":true,
  2698. "isStatic":false,
  2699. "layer":0,
  2700. "position":[
  2701. 0.6516703,
  2702. 0,
  2703. 9.313226E-10
  2704. ],
  2705. "rotation":[
  2706. -7.371881E-14,
  2707. 0,
  2708. 0,
  2709. -1
  2710. ],
  2711. "scale":[
  2712. 1,
  2713. 1,
  2714. 1
  2715. ]
  2716. },
  2717. "components":[],
  2718. "child":[]
  2719. }
  2720. ]
  2721. },
  2722. {
  2723. "type":"Sprite3D",
  2724. "instanceID":60,
  2725. "props":{
  2726. "name":"Bip001 L Clavicle",
  2727. "active":true,
  2728. "isStatic":false,
  2729. "layer":0,
  2730. "position":[
  2731. -0.09689116,
  2732. 0.03726137,
  2733. 0.1011698
  2734. ],
  2735. "rotation":[
  2736. -0.7124803,
  2737. -0.02262725,
  2738. -0.6571091,
  2739. -0.2450867
  2740. ],
  2741. "scale":[
  2742. 1,
  2743. 0.9999999,
  2744. 1
  2745. ]
  2746. },
  2747. "components":[],
  2748. "child":[
  2749. {
  2750. "type":"Sprite3D",
  2751. "instanceID":61,
  2752. "props":{
  2753. "name":"Bip001 L UpperArm",
  2754. "active":true,
  2755. "isStatic":false,
  2756. "layer":0,
  2757. "position":[
  2758. 0.113277,
  2759. 2.980232E-08,
  2760. 1.192093E-07
  2761. ],
  2762. "rotation":[
  2763. 0.2657749,
  2764. -0.395118,
  2765. 0.181732,
  2766. -0.8603598
  2767. ],
  2768. "scale":[
  2769. 1,
  2770. 1,
  2771. 1
  2772. ]
  2773. },
  2774. "components":[],
  2775. "child":[
  2776. {
  2777. "type":"Sprite3D",
  2778. "instanceID":62,
  2779. "props":{
  2780. "name":"Bip001 L Forearm",
  2781. "active":true,
  2782. "isStatic":false,
  2783. "layer":0,
  2784. "position":[
  2785. 0.3160065,
  2786. 5.960464E-08,
  2787. 0
  2788. ],
  2789. "rotation":[
  2790. -1.793112E-08,
  2791. -3.589287E-08,
  2792. 0.7471825,
  2793. -0.664619
  2794. ],
  2795. "scale":[
  2796. 1,
  2797. 1,
  2798. 0.9999999
  2799. ]
  2800. },
  2801. "components":[],
  2802. "child":[
  2803. {
  2804. "type":"Sprite3D",
  2805. "instanceID":63,
  2806. "props":{
  2807. "name":"Bip001 L Hand",
  2808. "active":true,
  2809. "isStatic":false,
  2810. "layer":0,
  2811. "position":[
  2812. 0.2746009,
  2813. 5.960464E-08,
  2814. 0
  2815. ],
  2816. "rotation":[
  2817. 0.7068252,
  2818. 5.262063E-09,
  2819. -1.580717E-08,
  2820. -0.7073883
  2821. ],
  2822. "scale":[
  2823. 1,
  2824. 0.9999999,
  2825. 1
  2826. ]
  2827. },
  2828. "components":[],
  2829. "child":[
  2830. {
  2831. "type":"Sprite3D",
  2832. "instanceID":64,
  2833. "props":{
  2834. "name":"Bip001 L Finger0",
  2835. "active":true,
  2836. "isStatic":false,
  2837. "layer":0,
  2838. "position":[
  2839. 0.02885044,
  2840. 0.0009403229,
  2841. -0.03778708
  2842. ],
  2843. "rotation":[
  2844. -0.6717315,
  2845. -0.3701369,
  2846. 0.2708145,
  2847. -0.5817517
  2848. ],
  2849. "scale":[
  2850. 0.9999998,
  2851. 1,
  2852. 0.9999994
  2853. ]
  2854. },
  2855. "components":[],
  2856. "child":[
  2857. {
  2858. "type":"Sprite3D",
  2859. "instanceID":65,
  2860. "props":{
  2861. "name":"Bip001 L Finger01",
  2862. "active":true,
  2863. "isStatic":false,
  2864. "layer":0,
  2865. "position":[
  2866. 0.02723002,
  2867. -2.980232E-08,
  2868. 0
  2869. ],
  2870. "rotation":[
  2871. 4.742372E-09,
  2872. 1.597077E-08,
  2873. -0.1741081,
  2874. -0.9847265
  2875. ],
  2876. "scale":[
  2877. 1,
  2878. 1,
  2879. 1
  2880. ]
  2881. },
  2882. "components":[],
  2883. "child":[
  2884. {
  2885. "type":"Sprite3D",
  2886. "instanceID":66,
  2887. "props":{
  2888. "name":"Bip001 L Finger02",
  2889. "active":true,
  2890. "isStatic":false,
  2891. "layer":0,
  2892. "position":[
  2893. 0.07730472,
  2894. -8.940697E-08,
  2895. 5.960464E-08
  2896. ],
  2897. "rotation":[
  2898. 1.479987E-08,
  2899. 1.734528E-09,
  2900. -0.1164022,
  2901. -0.9932022
  2902. ],
  2903. "scale":[
  2904. 0.9999999,
  2905. 1,
  2906. 1
  2907. ]
  2908. },
  2909. "components":[],
  2910. "child":[
  2911. {
  2912. "type":"Sprite3D",
  2913. "instanceID":67,
  2914. "props":{
  2915. "name":"Bip001 L Finger0Nub",
  2916. "active":true,
  2917. "isStatic":false,
  2918. "layer":0,
  2919. "position":[
  2920. 0.1223716,
  2921. 0,
  2922. 5.960464E-08
  2923. ],
  2924. "rotation":[
  2925. 1.490116E-08,
  2926. 4.440893E-16,
  2927. -2.980233E-08,
  2928. -1
  2929. ],
  2930. "scale":[
  2931. 0.9999999,
  2932. 0.9999999,
  2933. 1
  2934. ]
  2935. },
  2936. "components":[],
  2937. "child":[]
  2938. }
  2939. ]
  2940. }
  2941. ]
  2942. }
  2943. ]
  2944. },
  2945. {
  2946. "type":"Sprite3D",
  2947. "instanceID":68,
  2948. "props":{
  2949. "name":"Bip001 L Finger1",
  2950. "active":true,
  2951. "isStatic":false,
  2952. "layer":0,
  2953. "position":[
  2954. 0.2226498,
  2955. -0.000413239,
  2956. -0.06442451
  2957. ],
  2958. "rotation":[
  2959. -0.002133192,
  2960. -0.07797194,
  2961. 0.008282667,
  2962. -0.9969189
  2963. ],
  2964. "scale":[
  2965. 0.9999999,
  2966. 0.9999996,
  2967. 1
  2968. ]
  2969. },
  2970. "components":[],
  2971. "child":[
  2972. {
  2973. "type":"Sprite3D",
  2974. "instanceID":69,
  2975. "props":{
  2976. "name":"Bip001 L Finger11",
  2977. "active":true,
  2978. "isStatic":false,
  2979. "layer":0,
  2980. "position":[
  2981. 0.05149055,
  2982. 5.960464E-08,
  2983. -1.192093E-07
  2984. ],
  2985. "rotation":[
  2986. -3.453597E-08,
  2987. 2.415831E-08,
  2988. -0.1741082,
  2989. -0.9847265
  2990. ],
  2991. "scale":[
  2992. 1,
  2993. 1,
  2994. 1
  2995. ]
  2996. },
  2997. "components":[],
  2998. "child":[
  2999. {
  3000. "type":"Sprite3D",
  3001. "instanceID":70,
  3002. "props":{
  3003. "name":"Bip001 L Finger12",
  3004. "active":true,
  3005. "isStatic":false,
  3006. "layer":0,
  3007. "position":[
  3008. 0.04397237,
  3009. 0,
  3010. 1.192093E-07
  3011. ],
  3012. "rotation":[
  3013. 1.65344E-08,
  3014. -1.306534E-08,
  3015. -0.1164022,
  3016. -0.9932022
  3017. ],
  3018. "scale":[
  3019. 0.9999999,
  3020. 0.9999999,
  3021. 0.9999999
  3022. ]
  3023. },
  3024. "components":[],
  3025. "child":[
  3026. {
  3027. "type":"Sprite3D",
  3028. "instanceID":71,
  3029. "props":{
  3030. "name":"Bip001 L Finger1Nub",
  3031. "active":true,
  3032. "isStatic":false,
  3033. "layer":0,
  3034. "position":[
  3035. 0.06096715,
  3036. 0,
  3037. -5.960464E-08
  3038. ],
  3039. "rotation":[
  3040. 1.490116E-08,
  3041. 7.450581E-09,
  3042. 1.490116E-08,
  3043. -1
  3044. ],
  3045. "scale":[
  3046. 0.9999999,
  3047. 1,
  3048. 1
  3049. ]
  3050. },
  3051. "components":[],
  3052. "child":[]
  3053. }
  3054. ]
  3055. }
  3056. ]
  3057. }
  3058. ]
  3059. },
  3060. {
  3061. "type":"Sprite3D",
  3062. "instanceID":72,
  3063. "props":{
  3064. "name":"Bip001 L Finger2",
  3065. "active":true,
  3066. "isStatic":false,
  3067. "layer":0,
  3068. "position":[
  3069. 0.2236202,
  3070. -0.001942813,
  3071. -0.00995332
  3072. ],
  3073. "rotation":[
  3074. -0.01002071,
  3075. 0.01804494,
  3076. 0.0007388251,
  3077. -0.9997867
  3078. ],
  3079. "scale":[
  3080. 1,
  3081. 1,
  3082. 1
  3083. ]
  3084. },
  3085. "components":[],
  3086. "child":[
  3087. {
  3088. "type":"Sprite3D",
  3089. "instanceID":73,
  3090. "props":{
  3091. "name":"Bip001 L Finger21",
  3092. "active":true,
  3093. "isStatic":false,
  3094. "layer":0,
  3095. "position":[
  3096. 0.05735981,
  3097. 0,
  3098. 5.960464E-08
  3099. ],
  3100. "rotation":[
  3101. 1.65344E-08,
  3102. -1.306534E-08,
  3103. -0.1164022,
  3104. -0.9932022
  3105. ],
  3106. "scale":[
  3107. 1,
  3108. 1,
  3109. 0.9999999
  3110. ]
  3111. },
  3112. "components":[],
  3113. "child":[
  3114. {
  3115. "type":"Sprite3D",
  3116. "instanceID":74,
  3117. "props":{
  3118. "name":"Bip001 L Finger22",
  3119. "active":true,
  3120. "isStatic":false,
  3121. "layer":0,
  3122. "position":[
  3123. 0.0525375,
  3124. 0,
  3125. 0
  3126. ],
  3127. "rotation":[
  3128. -4.483323E-08,
  3129. -1.503616E-09,
  3130. -0.1164022,
  3131. -0.9932022
  3132. ],
  3133. "scale":[
  3134. 0.9999999,
  3135. 1,
  3136. 1
  3137. ]
  3138. },
  3139. "components":[],
  3140. "child":[
  3141. {
  3142. "type":"Sprite3D",
  3143. "instanceID":75,
  3144. "props":{
  3145. "name":"Bip001 L Finger2Nub",
  3146. "active":true,
  3147. "isStatic":false,
  3148. "layer":0,
  3149. "position":[
  3150. 0.06924373,
  3151. 0,
  3152. 5.960464E-08
  3153. ],
  3154. "rotation":[
  3155. 0,
  3156. 0,
  3157. -2.235174E-08,
  3158. -1
  3159. ],
  3160. "scale":[
  3161. 1,
  3162. 1,
  3163. 0.9999999
  3164. ]
  3165. },
  3166. "components":[],
  3167. "child":[]
  3168. }
  3169. ]
  3170. }
  3171. ]
  3172. }
  3173. ]
  3174. },
  3175. {
  3176. "type":"Sprite3D",
  3177. "instanceID":76,
  3178. "props":{
  3179. "name":"Bip001 L Finger3",
  3180. "active":true,
  3181. "isStatic":false,
  3182. "layer":0,
  3183. "position":[
  3184. 0.2230928,
  3185. -0.0008814335,
  3186. 0.03677016
  3187. ],
  3188. "rotation":[
  3189. 0.005199604,
  3190. 0.06550496,
  3191. -0.008302352,
  3192. -0.9978042
  3193. ],
  3194. "scale":[
  3195. 1,
  3196. 0.9999996,
  3197. 1
  3198. ]
  3199. },
  3200. "components":[],
  3201. "child":[
  3202. {
  3203. "type":"Sprite3D",
  3204. "instanceID":77,
  3205. "props":{
  3206. "name":"Bip001 L Finger31",
  3207. "active":true,
  3208. "isStatic":false,
  3209. "layer":0,
  3210. "position":[
  3211. 0.0504303,
  3212. 0,
  3213. 0
  3214. ],
  3215. "rotation":[
  3216. -1.566713E-08,
  3217. 5.665405E-09,
  3218. -0.1164022,
  3219. -0.9932022
  3220. ],
  3221. "scale":[
  3222. 1,
  3223. 1,
  3224. 1
  3225. ]
  3226. },
  3227. "components":[],
  3228. "child":[
  3229. {
  3230. "type":"Sprite3D",
  3231. "instanceID":78,
  3232. "props":{
  3233. "name":"Bip001 L Finger32",
  3234. "active":true,
  3235. "isStatic":false,
  3236. "layer":0,
  3237. "position":[
  3238. 0.04569608,
  3239. 0,
  3240. -5.960464E-08
  3241. ],
  3242. "rotation":[
  3243. -1.263171E-08,
  3244. -2.023436E-08,
  3245. -0.1164022,
  3246. -0.9932022
  3247. ],
  3248. "scale":[
  3249. 1,
  3250. 0.9999999,
  3251. 1
  3252. ]
  3253. },
  3254. "components":[],
  3255. "child":[
  3256. {
  3257. "type":"Sprite3D",
  3258. "instanceID":79,
  3259. "props":{
  3260. "name":"Bip001 L Finger3Nub",
  3261. "active":true,
  3262. "isStatic":false,
  3263. "layer":0,
  3264. "position":[
  3265. 0.06172347,
  3266. -1.192093E-07,
  3267. -5.960464E-08
  3268. ],
  3269. "rotation":[
  3270. 0,
  3271. 0,
  3272. -2.04891E-08,
  3273. -1
  3274. ],
  3275. "scale":[
  3276. 1,
  3277. 0.9999999,
  3278. 0.9999999
  3279. ]
  3280. },
  3281. "components":[],
  3282. "child":[]
  3283. }
  3284. ]
  3285. }
  3286. ]
  3287. }
  3288. ]
  3289. },
  3290. {
  3291. "type":"Sprite3D",
  3292. "instanceID":80,
  3293. "props":{
  3294. "name":"Bip001 L Finger4",
  3295. "active":true,
  3296. "isStatic":false,
  3297. "layer":0,
  3298. "position":[
  3299. 0.2133557,
  3300. 0.0007683635,
  3301. 0.08542845
  3302. ],
  3303. "rotation":[
  3304. 0.01230792,
  3305. 0.1268301,
  3306. 0.001679718,
  3307. -0.9918467
  3308. ],
  3309. "scale":[
  3310. 0.9999998,
  3311. 1,
  3312. 0.9999998
  3313. ]
  3314. },
  3315. "components":[],
  3316. "child":[
  3317. {
  3318. "type":"Sprite3D",
  3319. "instanceID":81,
  3320. "props":{
  3321. "name":"Bip001 L Finger41",
  3322. "active":true,
  3323. "isStatic":false,
  3324. "layer":0,
  3325. "position":[
  3326. 0.04679644,
  3327. -5.960464E-08,
  3328. 1.192093E-07
  3329. ],
  3330. "rotation":[
  3331. -2.168159E-09,
  3332. 1.849983E-08,
  3333. -0.1164022,
  3334. -0.9932022
  3335. ],
  3336. "scale":[
  3337. 1,
  3338. 1,
  3339. 1
  3340. ]
  3341. },
  3342. "components":[],
  3343. "child":[
  3344. {
  3345. "type":"Sprite3D",
  3346. "instanceID":82,
  3347. "props":{
  3348. "name":"Bip001 L Finger42",
  3349. "active":true,
  3350. "isStatic":false,
  3351. "layer":0,
  3352. "position":[
  3353. 0.0382843,
  3354. 0,
  3355. 1.192093E-07
  3356. ],
  3357. "rotation":[
  3358. -1.138284E-09,
  3359. 9.712413E-09,
  3360. -0.1164022,
  3361. -0.9932022
  3362. ],
  3363. "scale":[
  3364. 0.9999999,
  3365. 1,
  3366. 1
  3367. ]
  3368. },
  3369. "components":[],
  3370. "child":[
  3371. {
  3372. "type":"Sprite3D",
  3373. "instanceID":83,
  3374. "props":{
  3375. "name":"Bip001 L Finger4Nub",
  3376. "active":true,
  3377. "isStatic":false,
  3378. "layer":0,
  3379. "position":[
  3380. 0.05352724,
  3381. 0,
  3382. 0
  3383. ],
  3384. "rotation":[
  3385. -3.632078E-17,
  3386. 2.328307E-09,
  3387. -1.559965E-08,
  3388. -1
  3389. ],
  3390. "scale":[
  3391. 0.9999999,
  3392. 1,
  3393. 1
  3394. ]
  3395. },
  3396. "components":[],
  3397. "child":[]
  3398. }
  3399. ]
  3400. }
  3401. ]
  3402. }
  3403. ]
  3404. }
  3405. ]
  3406. }
  3407. ]
  3408. }
  3409. ]
  3410. }
  3411. ]
  3412. },
  3413. {
  3414. "type":"Sprite3D",
  3415. "instanceID":84,
  3416. "props":{
  3417. "name":"Bip001 R Clavicle",
  3418. "active":true,
  3419. "isStatic":false,
  3420. "layer":0,
  3421. "position":[
  3422. -0.09689105,
  3423. 0.03726184,
  3424. -0.1011696
  3425. ],
  3426. "rotation":[
  3427. -0.6703139,
  3428. 0.2258211,
  3429. 0.7068682,
  3430. -0.004654289
  3431. ],
  3432. "scale":[
  3433. 0.9999999,
  3434. 0.9999999,
  3435. 0.9999999
  3436. ]
  3437. },
  3438. "components":[],
  3439. "child":[
  3440. {
  3441. "type":"Sprite3D",
  3442. "instanceID":85,
  3443. "props":{
  3444. "name":"Bip001 R UpperArm",
  3445. "active":true,
  3446. "isStatic":false,
  3447. "layer":0,
  3448. "position":[
  3449. 0.113277,
  3450. 0,
  3451. 1.192093E-07
  3452. ],
  3453. "rotation":[
  3454. 0.4104671,
  3455. 0.3897051,
  3456. -0.1565066,
  3457. -0.8094149
  3458. ],
  3459. "scale":[
  3460. 1,
  3461. 1,
  3462. 1
  3463. ]
  3464. },
  3465. "components":[],
  3466. "child":[
  3467. {
  3468. "type":"Sprite3D",
  3469. "instanceID":86,
  3470. "props":{
  3471. "name":"Bip001 R Forearm",
  3472. "active":true,
  3473. "isStatic":false,
  3474. "layer":0,
  3475. "position":[
  3476. 0.3160065,
  3477. 0,
  3478. 0
  3479. ],
  3480. "rotation":[
  3481. 2.022149E-09,
  3482. 7.170918E-09,
  3483. 0.2714082,
  3484. -0.9624643
  3485. ],
  3486. "scale":[
  3487. 1,
  3488. 0.9999999,
  3489. 1
  3490. ]
  3491. },
  3492. "components":[],
  3493. "child":[
  3494. {
  3495. "type":"Sprite3D",
  3496. "instanceID":87,
  3497. "props":{
  3498. "name":"Bip001 R Hand",
  3499. "active":true,
  3500. "isStatic":false,
  3501. "layer":0,
  3502. "position":[
  3503. 0.2746009,
  3504. 0,
  3505. 0
  3506. ],
  3507. "rotation":[
  3508. -0.7068252,
  3509. 8.390228E-12,
  3510. -2.107342E-08,
  3511. -0.7073883
  3512. ],
  3513. "scale":[
  3514. 1,
  3515. 0.9999999,
  3516. 1
  3517. ]
  3518. },
  3519. "components":[],
  3520. "child":[
  3521. {
  3522. "type":"Sprite3D",
  3523. "instanceID":88,
  3524. "props":{
  3525. "name":"Bip001 R Finger0",
  3526. "active":true,
  3527. "isStatic":false,
  3528. "layer":0,
  3529. "position":[
  3530. 0.02885038,
  3531. 0.0009403825,
  3532. 0.03778708
  3533. ],
  3534. "rotation":[
  3535. 0.6717314,
  3536. 0.3701369,
  3537. 0.2708144,
  3538. -0.5817518
  3539. ],
  3540. "scale":[
  3541. 0.9999999,
  3542. 1,
  3543. 0.9999995
  3544. ]
  3545. },
  3546. "components":[],
  3547. "child":[
  3548. {
  3549. "type":"Sprite3D",
  3550. "instanceID":89,
  3551. "props":{
  3552. "name":"Bip001 R Finger01",
  3553. "active":true,
  3554. "isStatic":false,
  3555. "layer":0,
  3556. "position":[
  3557. 0.02722991,
  3558. -2.980232E-08,
  3559. -5.960464E-08
  3560. ],
  3561. "rotation":[
  3562. -0.01178011,
  3563. 0.176757,
  3564. -0.2752487,
  3565. -0.9449108
  3566. ],
  3567. "scale":[
  3568. 1,
  3569. 0.9999999,
  3570. 1
  3571. ]
  3572. },
  3573. "components":[],
  3574. "child":[
  3575. {
  3576. "type":"Sprite3D",
  3577. "instanceID":90,
  3578. "props":{
  3579. "name":"Bip001 R Finger02",
  3580. "active":true,
  3581. "isStatic":false,
  3582. "layer":0,
  3583. "position":[
  3584. 0.07730478,
  3585. 0,
  3586. 2.980232E-08
  3587. ],
  3588. "rotation":[
  3589. 2.176617E-08,
  3590. 6.301759E-09,
  3591. -0.1164022,
  3592. -0.9932022
  3593. ],
  3594. "scale":[
  3595. 0.9999999,
  3596. 1,
  3597. 1
  3598. ]
  3599. },
  3600. "components":[],
  3601. "child":[
  3602. {
  3603. "type":"Sprite3D",
  3604. "instanceID":91,
  3605. "props":{
  3606. "name":"Bip001 R Finger0Nub",
  3607. "active":true,
  3608. "isStatic":false,
  3609. "layer":0,
  3610. "position":[
  3611. 0.1223716,
  3612. 0,
  3613. 0
  3614. ],
  3615. "rotation":[
  3616. -3.725291E-09,
  3617. 7.450581E-09,
  3618. 1,
  3619. -3.347676E-17
  3620. ],
  3621. "scale":[
  3622. -0.9999999,
  3623. -0.9999999,
  3624. -1
  3625. ]
  3626. },
  3627. "components":[],
  3628. "child":[]
  3629. }
  3630. ]
  3631. }
  3632. ]
  3633. }
  3634. ]
  3635. },
  3636. {
  3637. "type":"Sprite3D",
  3638. "instanceID":92,
  3639. "props":{
  3640. "name":"Bip001 R Finger1",
  3641. "active":true,
  3642. "isStatic":false,
  3643. "layer":0,
  3644. "position":[
  3645. 0.2226498,
  3646. -0.0004131794,
  3647. 0.06442463
  3648. ],
  3649. "rotation":[
  3650. 0.03685484,
  3651. 0.06874511,
  3652. -0.439426,
  3653. -0.8948858
  3654. ],
  3655. "scale":[
  3656. 1,
  3657. 0.9999996,
  3658. 1
  3659. ]
  3660. },
  3661. "components":[],
  3662. "child":[
  3663. {
  3664. "type":"Sprite3D",
  3665. "instanceID":93,
  3666. "props":{
  3667. "name":"Bip001 R Finger11",
  3668. "active":true,
  3669. "isStatic":false,
  3670. "layer":0,
  3671. "position":[
  3672. 0.0514906,
  3673. -5.960464E-08,
  3674. 0
  3675. ],
  3676. "rotation":[
  3677. 8.341677E-10,
  3678. 2.38389E-08,
  3679. -0.5970056,
  3680. -0.8022371
  3681. ],
  3682. "scale":[
  3683. 1,
  3684. 1,
  3685. 1
  3686. ]
  3687. },
  3688. "components":[],
  3689. "child":[
  3690. {
  3691. "type":"Sprite3D",
  3692. "instanceID":94,
  3693. "props":{
  3694. "name":"Bip001 R Finger12",
  3695. "active":true,
  3696. "isStatic":false,
  3697. "layer":0,
  3698. "position":[
  3699. 0.0439724,
  3700. 5.960464E-08,
  3701. 0
  3702. ],
  3703. "rotation":[
  3704. -4.011774E-08,
  3705. 2.712771E-08,
  3706. -0.5492194,
  3707. -0.8356782
  3708. ],
  3709. "scale":[
  3710. 1,
  3711. 1,
  3712. 1
  3713. ]
  3714. },
  3715. "components":[],
  3716. "child":[
  3717. {
  3718. "type":"Sprite3D",
  3719. "instanceID":95,
  3720. "props":{
  3721. "name":"Bip001 R Finger1Nub",
  3722. "active":true,
  3723. "isStatic":false,
  3724. "layer":0,
  3725. "position":[
  3726. 0.06096715,
  3727. 0,
  3728. 1.192093E-07
  3729. ],
  3730. "rotation":[
  3731. -1.490116E-08,
  3732. -7.450581E-09,
  3733. 1,
  3734. -1.722547E-16
  3735. ],
  3736. "scale":[
  3737. -0.9999999,
  3738. -1,
  3739. -0.9999999
  3740. ]
  3741. },
  3742. "components":[],
  3743. "child":[]
  3744. }
  3745. ]
  3746. }
  3747. ]
  3748. }
  3749. ]
  3750. },
  3751. {
  3752. "type":"Sprite3D",
  3753. "instanceID":96,
  3754. "props":{
  3755. "name":"Bip001 R Finger2",
  3756. "active":true,
  3757. "isStatic":false,
  3758. "layer":0,
  3759. "position":[
  3760. 0.2236202,
  3761. -0.001942813,
  3762. 0.00995338
  3763. ],
  3764. "rotation":[
  3765. 0.0008698087,
  3766. -0.0206223,
  3767. -0.4474551,
  3768. -0.8940682
  3769. ],
  3770. "scale":[
  3771. 1,
  3772. 1,
  3773. 1
  3774. ]
  3775. },
  3776. "components":[],
  3777. "child":[
  3778. {
  3779. "type":"Sprite3D",
  3780. "instanceID":97,
  3781. "props":{
  3782. "name":"Bip001 R Finger21",
  3783. "active":true,
  3784. "isStatic":false,
  3785. "layer":0,
  3786. "position":[
  3787. 0.05735999,
  3788. 0,
  3789. 1.192093E-07
  3790. ],
  3791. "rotation":[
  3792. -2.891797E-08,
  3793. -3.739374E-08,
  3794. -0.5492194,
  3795. -0.8356782
  3796. ],
  3797. "scale":[
  3798. 0.9999999,
  3799. 1,
  3800. 1
  3801. ]
  3802. },
  3803. "components":[],
  3804. "child":[
  3805. {
  3806. "type":"Sprite3D",
  3807. "instanceID":98,
  3808. "props":{
  3809. "name":"Bip001 R Finger22",
  3810. "active":true,
  3811. "isStatic":false,
  3812. "layer":0,
  3813. "position":[
  3814. 0.05253759,
  3815. -2.980232E-08,
  3816. -1.192093E-07
  3817. ],
  3818. "rotation":[
  3819. 1.44103E-08,
  3820. -8.360571E-09,
  3821. -0.5492195,
  3822. -0.8356782
  3823. ],
  3824. "scale":[
  3825. 1,
  3826. 1,
  3827. 0.9999999
  3828. ]
  3829. },
  3830. "components":[],
  3831. "child":[
  3832. {
  3833. "type":"Sprite3D",
  3834. "instanceID":99,
  3835. "props":{
  3836. "name":"Bip001 R Finger2Nub",
  3837. "active":true,
  3838. "isStatic":false,
  3839. "layer":0,
  3840. "position":[
  3841. 0.06924385,
  3842. 0,
  3843. 0
  3844. ],
  3845. "rotation":[
  3846. -1.490116E-08,
  3847. 1.110223E-16,
  3848. 1,
  3849. 7.450581E-09
  3850. ],
  3851. "scale":[
  3852. -1,
  3853. -1,
  3854. -1
  3855. ]
  3856. },
  3857. "components":[],
  3858. "child":[]
  3859. }
  3860. ]
  3861. }
  3862. ]
  3863. }
  3864. ]
  3865. },
  3866. {
  3867. "type":"Sprite3D",
  3868. "instanceID":100,
  3869. "props":{
  3870. "name":"Bip001 R Finger3",
  3871. "active":true,
  3872. "isStatic":false,
  3873. "layer":0,
  3874. "position":[
  3875. 0.2230928,
  3876. -0.0008814335,
  3877. -0.03677011
  3878. ],
  3879. "rotation":[
  3880. -0.03400819,
  3881. -0.05622619,
  3882. -0.4546486,
  3883. -0.8882437
  3884. ],
  3885. "scale":[
  3886. 1,
  3887. 1,
  3888. 1
  3889. ]
  3890. },
  3891. "components":[],
  3892. "child":[
  3893. {
  3894. "type":"Sprite3D",
  3895. "instanceID":101,
  3896. "props":{
  3897. "name":"Bip001 R Finger31",
  3898. "active":true,
  3899. "isStatic":false,
  3900. "layer":0,
  3901. "position":[
  3902. 0.05043024,
  3903. 0,
  3904. 0
  3905. ],
  3906. "rotation":[
  3907. -1.672114E-08,
  3908. -2.88206E-08,
  3909. -0.5492195,
  3910. -0.8356782
  3911. ],
  3912. "scale":[
  3913. 0.9999999,
  3914. 0.9999999,
  3915. 0.9999999
  3916. ]
  3917. },
  3918. "components":[],
  3919. "child":[
  3920. {
  3921. "type":"Sprite3D",
  3922. "instanceID":102,
  3923. "props":{
  3924. "name":"Bip001 R Finger32",
  3925. "active":true,
  3926. "isStatic":false,
  3927. "layer":0,
  3928. "position":[
  3929. 0.04569602,
  3930. 0,
  3931. 0
  3932. ],
  3933. "rotation":[
  3934. 1.95772E-09,
  3935. -1.654458E-08,
  3936. -0.5492195,
  3937. -0.8356782
  3938. ],
  3939. "scale":[
  3940. 1,
  3941. 1,
  3942. 1
  3943. ]
  3944. },
  3945. "components":[],
  3946. "child":[
  3947. {
  3948. "type":"Sprite3D",
  3949. "instanceID":103,
  3950. "props":{
  3951. "name":"Bip001 R Finger3Nub",
  3952. "active":true,
  3953. "isStatic":false,
  3954. "layer":0,
  3955. "position":[
  3956. 0.06172356,
  3957. 0,
  3958. 0
  3959. ],
  3960. "rotation":[
  3961. -1.490116E-08,
  3962. -7.450581E-09,
  3963. 1,
  3964. -1.490116E-08
  3965. ],
  3966. "scale":[
  3967. -1,
  3968. -1,
  3969. -1
  3970. ]
  3971. },
  3972. "components":[],
  3973. "child":[]
  3974. }
  3975. ]
  3976. }
  3977. ]
  3978. }
  3979. ]
  3980. },
  3981. {
  3982. "type":"Sprite3D",
  3983. "instanceID":104,
  3984. "props":{
  3985. "name":"Bip001 R Finger4",
  3986. "active":true,
  3987. "isStatic":false,
  3988. "layer":0,
  3989. "position":[
  3990. 0.2133557,
  3991. 0.0007683635,
  3992. -0.08542836
  3993. ],
  3994. "rotation":[
  3995. -0.06784911,
  3996. -0.1078604,
  3997. -0.4430553,
  3998. -0.887392
  3999. ],
  4000. "scale":[
  4001. 1,
  4002. 0.9999999,
  4003. 0.9999998
  4004. ]
  4005. },
  4006. "components":[],
  4007. "child":[
  4008. {
  4009. "type":"Sprite3D",
  4010. "instanceID":105,
  4011. "props":{
  4012. "name":"Bip001 R Finger41",
  4013. "active":true,
  4014. "isStatic":false,
  4015. "layer":0,
  4016. "position":[
  4017. 0.0467965,
  4018. -5.960464E-08,
  4019. 0
  4020. ],
  4021. "rotation":[
  4022. 2.695115E-08,
  4023. 1.325487E-08,
  4024. -0.5492194,
  4025. -0.8356782
  4026. ],
  4027. "scale":[
  4028. 1,
  4029. 1,
  4030. 1
  4031. ]
  4032. },
  4033. "components":[],
  4034. "child":[
  4035. {
  4036. "type":"Sprite3D",
  4037. "instanceID":106,
  4038. "props":{
  4039. "name":"Bip001 R Finger42",
  4040. "active":true,
  4041. "isStatic":false,
  4042. "layer":0,
  4043. "position":[
  4044. 0.03828436,
  4045. 5.960464E-08,
  4046. -1.192093E-07
  4047. ],
  4048. "rotation":[
  4049. -8.184008E-09,
  4050. 1.245257E-08,
  4051. -0.5492195,
  4052. -0.8356782
  4053. ],
  4054. "scale":[
  4055. 1,
  4056. 1,
  4057. 1
  4058. ]
  4059. },
  4060. "components":[],
  4061. "child":[
  4062. {
  4063. "type":"Sprite3D",
  4064. "instanceID":107,
  4065. "props":{
  4066. "name":"Bip001 R Finger4Nub",
  4067. "active":true,
  4068. "isStatic":false,
  4069. "layer":0,
  4070. "position":[
  4071. 0.05352727,
  4072. 0,
  4073. 1.192093E-07
  4074. ],
  4075. "rotation":[
  4076. -1.490116E-08,
  4077. -9.12433E-25,
  4078. 1,
  4079. -6.123234E-17
  4080. ],
  4081. "scale":[
  4082. -1,
  4083. -1,
  4084. -1
  4085. ]
  4086. },
  4087. "components":[],
  4088. "child":[]
  4089. }
  4090. ]
  4091. }
  4092. ]
  4093. }
  4094. ]
  4095. }
  4096. ]
  4097. }
  4098. ]
  4099. }
  4100. ]
  4101. }
  4102. ]
  4103. }
  4104. ]
  4105. }
  4106. ]
  4107. }
  4108. ]
  4109. }
  4110. ]
  4111. }
  4112. ]
  4113. }
  4114. ]
  4115. },
  4116. {
  4117. "type":"SkinnedMeshSprite3D",
  4118. "instanceID":108,
  4119. "props":{
  4120. "name":"Character",
  4121. "active":true,
  4122. "isStatic":false,
  4123. "layer":0,
  4124. "position":[
  4125. 0,
  4126. 0,
  4127. 0
  4128. ],
  4129. "rotation":[
  4130. 0,
  4131. 0,
  4132. 0,
  4133. -1
  4134. ],
  4135. "scale":[
  4136. 10,
  4137. 10,
  4138. 10
  4139. ],
  4140. "rootBone":43,
  4141. "boundBox":{
  4142. "min":[
  4143. -0.8974966,
  4144. -0.8234307,
  4145. -0.5896069
  4146. ],
  4147. "max":[
  4148. 1.564654,
  4149. 0.7560636,
  4150. 0.5385629
  4151. ]
  4152. },
  4153. "boundSphere":{
  4154. "center":[
  4155. 0.3335785,
  4156. -0.03368351,
  4157. -0.02552196
  4158. ],
  4159. "radius":1.567622
  4160. },
  4161. "bones":[
  4162. 56,
  4163. 61,
  4164. 60,
  4165. 62,
  4166. 63,
  4167. 65,
  4168. 55,
  4169. 43,
  4170. 44,
  4171. 45,
  4172. 80,
  4173. 76,
  4174. 72,
  4175. 66,
  4176. 68,
  4177. 82,
  4178. 70,
  4179. 46,
  4180. 47,
  4181. 48,
  4182. 58,
  4183. 74,
  4184. 78,
  4185. 69,
  4186. 73,
  4187. 77,
  4188. 81,
  4189. 86,
  4190. 85,
  4191. 84,
  4192. 87,
  4193. 89,
  4194. 50,
  4195. 104,
  4196. 100,
  4197. 90,
  4198. 92,
  4199. 96,
  4200. 105,
  4201. 106,
  4202. 93,
  4203. 94,
  4204. 51,
  4205. 52,
  4206. 53,
  4207. 97,
  4208. 98,
  4209. 102,
  4210. 101
  4211. ],
  4212. "materials":[
  4213. {
  4214. "path":"Assets/ArcherAsset/Animator/Ragdoll _5741/Materials/ragdoll.lmat"
  4215. }
  4216. ],
  4217. "meshPath":"Assets/new_model/npc-Character.lm"
  4218. },
  4219. "components":[],
  4220. "child":[]
  4221. },
  4222. {
  4223. "type":"Sprite3D",
  4224. "instanceID":109,
  4225. "props":{
  4226. "name":"npcfrontcollider",
  4227. "active":true,
  4228. "isStatic":false,
  4229. "layer":0,
  4230. "position":[
  4231. 0,
  4232. -0.052,
  4233. -0.2
  4234. ],
  4235. "rotation":[
  4236. 0,
  4237. 0,
  4238. 0,
  4239. -1
  4240. ],
  4241. "scale":[
  4242. 1,
  4243. 1,
  4244. 1
  4245. ]
  4246. },
  4247. "components":[
  4248. {
  4249. "type":"PhysicsCollider",
  4250. "restitution":0,
  4251. "friction":0.5,
  4252. "rollingFriction":0,
  4253. "shapes":[
  4254. {
  4255. "type":"BoxColliderShape",
  4256. "center":[
  4257. 0.116143,
  4258. 0.8955178,
  4259. 0.4447083
  4260. ],
  4261. "size":[
  4262. 1.973724,
  4263. 1.466246,
  4264. 0.1207981
  4265. ]
  4266. }
  4267. ],
  4268. "isTrigger":true
  4269. }
  4270. ],
  4271. "child":[]
  4272. },
  4273. {
  4274. "type":"Sprite3D",
  4275. "instanceID":110,
  4276. "props":{
  4277. "name":"npcrearcollider",
  4278. "active":true,
  4279. "isStatic":false,
  4280. "layer":0,
  4281. "position":[
  4282. 0.035,
  4283. 0.177,
  4284. -0.979
  4285. ],
  4286. "rotation":[
  4287. 0,
  4288. 0,
  4289. 0,
  4290. -1
  4291. ],
  4292. "scale":[
  4293. 1,
  4294. 1,
  4295. 1
  4296. ]
  4297. },
  4298. "components":[
  4299. {
  4300. "type":"PhysicsCollider",
  4301. "restitution":0,
  4302. "friction":0.5,
  4303. "rollingFriction":0,
  4304. "shapes":[
  4305. {
  4306. "type":"BoxColliderShape",
  4307. "center":[
  4308. -0.06352987,
  4309. 0.5922219,
  4310. 0.4447083
  4311. ],
  4312. "size":[
  4313. 2.125101,
  4314. 1.64784,
  4315. 0.1207981
  4316. ]
  4317. }
  4318. ],
  4319. "isTrigger":true
  4320. }
  4321. ],
  4322. "child":[]
  4323. },
  4324. {
  4325. "type":"Sprite3D",
  4326. "instanceID":111,
  4327. "props":{
  4328. "name":"UIPos",
  4329. "active":true,
  4330. "isStatic":false,
  4331. "layer":0,
  4332. "position":[
  4333. 0,
  4334. 2.5,
  4335. 0
  4336. ],
  4337. "rotation":[
  4338. 0,
  4339. 0,
  4340. 0,
  4341. -1
  4342. ],
  4343. "scale":[
  4344. 1,
  4345. 1,
  4346. 1
  4347. ]
  4348. },
  4349. "components":[],
  4350. "child":[]
  4351. }
  4352. ]
  4353. },
  4354. {
  4355. "type":"Sprite3D",
  4356. "instanceID":112,
  4357. "props":{
  4358. "name":"pursue",
  4359. "active":true,
  4360. "isStatic":false,
  4361. "layer":0,
  4362. "position":[
  4363. -4.538,
  4364. 0,
  4365. 0
  4366. ],
  4367. "rotation":[
  4368. 0,
  4369. 0,
  4370. 0,
  4371. -1
  4372. ],
  4373. "scale":[
  4374. 1,
  4375. 1,
  4376. 1
  4377. ]
  4378. },
  4379. "components":[],
  4380. "child":[
  4381. {
  4382. "type":"Sprite3D",
  4383. "instanceID":113,
  4384. "props":{
  4385. "name":"player",
  4386. "active":true,
  4387. "isStatic":false,
  4388. "layer":0,
  4389. "position":[
  4390. 0,
  4391. 0,
  4392. 0
  4393. ],
  4394. "rotation":[
  4395. 0,
  4396. 0,
  4397. 0,
  4398. -1
  4399. ],
  4400. "scale":[
  4401. 1,
  4402. 1,
  4403. 1
  4404. ]
  4405. },
  4406. "components":[],
  4407. "child":[
  4408. {
  4409. "type":"Sprite3D",
  4410. "instanceID":114,
  4411. "props":{
  4412. "name":"hostage",
  4413. "active":true,
  4414. "isStatic":false,
  4415. "layer":0,
  4416. "position":[
  4417. 0,
  4418. 0,
  4419. 0
  4420. ],
  4421. "rotation":[
  4422. 0,
  4423. 0,
  4424. 0,
  4425. -1
  4426. ],
  4427. "scale":[
  4428. 0.8,
  4429. 0.8,
  4430. 0.8
  4431. ]
  4432. },
  4433. "components":[
  4434. {
  4435. "type":"Animator",
  4436. "layers":[
  4437. {
  4438. "name":"Base Layer",
  4439. "weight":0,
  4440. "blendingMode":0,
  4441. "states":[
  4442. {
  4443. "name":"idle",
  4444. "clipPath":"Assets/new_model/npc-idle.lani"
  4445. },
  4446. {
  4447. "name":"atk",
  4448. "clipPath":"Assets/new_model/npc-atk.lani"
  4449. },
  4450. {
  4451. "name":"diefront",
  4452. "clipPath":"Assets/new_model/npc-diefront.lani"
  4453. },
  4454. {
  4455. "name":"dierear",
  4456. "clipPath":"Assets/new_model/npc-dierear.lani"
  4457. },
  4458. {
  4459. "name":"run",
  4460. "clipPath":"Assets/new_model/npc-run.lani"
  4461. },
  4462. {
  4463. "name":"thank",
  4464. "clipPath":"Assets/new_model/npc-thank.lani"
  4465. },
  4466. {
  4467. "name":"win",
  4468. "clipPath":"Assets/new_model/npc-win.lani"
  4469. }
  4470. ]
  4471. }
  4472. ],
  4473. "cullingMode":0,
  4474. "playOnWake":true
  4475. }
  4476. ],
  4477. "child":[
  4478. {
  4479. "type":"Sprite3D",
  4480. "instanceID":115,
  4481. "props":{
  4482. "name":"Bip001",
  4483. "active":true,
  4484. "isStatic":false,
  4485. "layer":0,
  4486. "position":[
  4487. 0.01054461,
  4488. 0.7479606,
  4489. -0.02780217
  4490. ],
  4491. "rotation":[
  4492. -0.5799491,
  4493. 0.5799491,
  4494. 0.404548,
  4495. 0.404548
  4496. ],
  4497. "scale":[
  4498. 1,
  4499. 1,
  4500. 1
  4501. ]
  4502. },
  4503. "components":[],
  4504. "child":[
  4505. {
  4506. "type":"Sprite3D",
  4507. "instanceID":116,
  4508. "props":{
  4509. "name":"Bip001 Footsteps",
  4510. "active":true,
  4511. "isStatic":false,
  4512. "layer":0,
  4513. "position":[
  4514. 0.256558,
  4515. 2.142042E-08,
  4516. -0.697163
  4517. ],
  4518. "rotation":[
  4519. 0.1240258,
  4520. 0.124026,
  4521. -0.6961445,
  4522. -0.6961452
  4523. ],
  4524. "scale":[
  4525. 0.9999999,
  4526. 0.9999998,
  4527. 0.9999999
  4528. ]
  4529. },
  4530. "components":[],
  4531. "child":[]
  4532. },
  4533. {
  4534. "type":"Sprite3D",
  4535. "instanceID":117,
  4536. "props":{
  4537. "name":"Bip001 Pelvis",
  4538. "active":true,
  4539. "isStatic":false,
  4540. "layer":0,
  4541. "position":[
  4542. 0,
  4543. 0,
  4544. 0
  4545. ],
  4546. "rotation":[
  4547. 0.4496907,
  4548. 0.5287219,
  4549. 0.3427418,
  4550. -0.6330557
  4551. ],
  4552. "scale":[
  4553. 0.9999999,
  4554. 0.9999999,
  4555. 1
  4556. ]
  4557. },
  4558. "components":[],
  4559. "child":[
  4560. {
  4561. "type":"Sprite3D",
  4562. "instanceID":118,
  4563. "props":{
  4564. "name":"Bip001 Spine",
  4565. "active":true,
  4566. "isStatic":false,
  4567. "layer":0,
  4568. "position":[
  4569. 0.09213704,
  4570. -0.03048739,
  4571. 0.007708102
  4572. ],
  4573. "rotation":[
  4574. 0.2684437,
  4575. -0.02074438,
  4576. 0.02158226,
  4577. -0.9628302
  4578. ],
  4579. "scale":[
  4580. 1,
  4581. 1,
  4582. 1
  4583. ]
  4584. },
  4585. "components":[],
  4586. "child":[
  4587. {
  4588. "type":"Sprite3D",
  4589. "instanceID":119,
  4590. "props":{
  4591. "name":"Bip001 L Thigh",
  4592. "active":true,
  4593. "isStatic":false,
  4594. "layer":0,
  4595. "position":[
  4596. -0.09754831,
  4597. -0.04921928,
  4598. 0.130663
  4599. ],
  4600. "rotation":[
  4601. -0.1801985,
  4602. 0.969772,
  4603. 0.1627335,
  4604. -0.02426215
  4605. ],
  4606. "scale":[
  4607. 0.9999998,
  4608. 1,
  4609. 1
  4610. ]
  4611. },
  4612. "components":[],
  4613. "child":[
  4614. {
  4615. "type":"Sprite3D",
  4616. "instanceID":120,
  4617. "props":{
  4618. "name":"Bip001 L Calf",
  4619. "active":true,
  4620. "isStatic":false,
  4621. "layer":0,
  4622. "position":[
  4623. 0.2654103,
  4624. 0,
  4625. 0
  4626. ],
  4627. "rotation":[
  4628. -8.907162E-09,
  4629. -5.628923E-09,
  4630. 0.2199988,
  4631. -0.9755002
  4632. ],
  4633. "scale":[
  4634. 1,
  4635. 0.9999999,
  4636. 1
  4637. ]
  4638. },
  4639. "components":[],
  4640. "child":[
  4641. {
  4642. "type":"Sprite3D",
  4643. "instanceID":121,
  4644. "props":{
  4645. "name":"Bip001 L Foot",
  4646. "active":true,
  4647. "isStatic":false,
  4648. "layer":0,
  4649. "position":[
  4650. 0.3190145,
  4651. 5.960464E-08,
  4652. 2.980232E-08
  4653. ],
  4654. "rotation":[
  4655. -0.01994075,
  4656. 0.02733877,
  4657. 0.3338319,
  4658. -0.9420251
  4659. ],
  4660. "scale":[
  4661. 0.9999999,
  4662. 1,
  4663. 1
  4664. ]
  4665. },
  4666. "components":[],
  4667. "child":[
  4668. {
  4669. "type":"Sprite3D",
  4670. "instanceID":122,
  4671. "props":{
  4672. "name":"Bip001 L Toe0",
  4673. "active":true,
  4674. "isStatic":false,
  4675. "layer":0,
  4676. "position":[
  4677. 0.1564382,
  4678. 0.1532346,
  4679. 2.980232E-08
  4680. ],
  4681. "rotation":[
  4682. -0.0227783,
  4683. -0.02363283,
  4684. -0.7151085,
  4685. -0.6982424
  4686. ],
  4687. "scale":[
  4688. 0.9999999,
  4689. 0.9999999,
  4690. 0.9999999
  4691. ]
  4692. },
  4693. "components":[],
  4694. "child":[
  4695. {
  4696. "type":"Sprite3D",
  4697. "instanceID":123,
  4698. "props":{
  4699. "name":"Bip001 L Toe0Nub",
  4700. "active":true,
  4701. "isStatic":false,
  4702. "layer":0,
  4703. "position":[
  4704. 0.2260934,
  4705. -5.960464E-08,
  4706. -1.490116E-08
  4707. ],
  4708. "rotation":[
  4709. -5.551115E-17,
  4710. -3.72529E-09,
  4711. 1,
  4712. 1.490116E-08
  4713. ],
  4714. "scale":[
  4715. -1,
  4716. -1,
  4717. -1
  4718. ]
  4719. },
  4720. "components":[],
  4721. "child":[]
  4722. }
  4723. ]
  4724. }
  4725. ]
  4726. }
  4727. ]
  4728. }
  4729. ]
  4730. },
  4731. {
  4732. "type":"Sprite3D",
  4733. "instanceID":124,
  4734. "props":{
  4735. "name":"Bip001 R Thigh",
  4736. "active":true,
  4737. "isStatic":false,
  4738. "layer":0,
  4739. "position":[
  4740. -0.08917165,
  4741. 0.1037262,
  4742. -0.1218753
  4743. ],
  4744. "rotation":[
  4745. 0.5281463,
  4746. 0.847366,
  4747. 0.03983953,
  4748. -0.03801443
  4749. ],
  4750. "scale":[
  4751. 0.9999999,
  4752. 0.9999999,
  4753. 1
  4754. ]
  4755. },
  4756. "components":[],
  4757. "child":[
  4758. {
  4759. "type":"Sprite3D",
  4760. "instanceID":125,
  4761. "props":{
  4762. "name":"Bip001 R Calf",
  4763. "active":true,
  4764. "isStatic":false,
  4765. "layer":0,
  4766. "position":[
  4767. 0.2654103,
  4768. 0,
  4769. 0
  4770. ],
  4771. "rotation":[
  4772. 1.716272E-09,
  4773. 7.603084E-10,
  4774. 0.1019511,
  4775. -0.9947894
  4776. ],
  4777. "scale":[
  4778. 1,
  4779. 1,
  4780. 1
  4781. ]
  4782. },
  4783. "components":[],
  4784. "child":[
  4785. {
  4786. "type":"Sprite3D",
  4787. "instanceID":126,
  4788. "props":{
  4789. "name":"Bip001 R Foot",
  4790. "active":true,
  4791. "isStatic":false,
  4792. "layer":0,
  4793. "position":[
  4794. 0.3190145,
  4795. -5.960464E-08,
  4796. 0
  4797. ],
  4798. "rotation":[
  4799. -0.01509951,
  4800. -0.02511084,
  4801. -0.1003526,
  4802. -0.9945204
  4803. ],
  4804. "scale":[
  4805. 1,
  4806. 1,
  4807. 1
  4808. ]
  4809. },
  4810. "components":[],
  4811. "child":[
  4812. {
  4813. "type":"Sprite3D",
  4814. "instanceID":127,
  4815. "props":{
  4816. "name":"Bip001 R Toe0",
  4817. "active":true,
  4818. "isStatic":false,
  4819. "layer":0,
  4820. "position":[
  4821. 0.1564382,
  4822. 0.1532346,
  4823. -7.450581E-09
  4824. ],
  4825. "rotation":[
  4826. 0.02400545,
  4827. -0.05428703,
  4828. -0.7346516,
  4829. -0.6758429
  4830. ],
  4831. "scale":[
  4832. 1,
  4833. 1,
  4834. 1
  4835. ]
  4836. },
  4837. "components":[],
  4838. "child":[
  4839. {
  4840. "type":"Sprite3D",
  4841. "instanceID":128,
  4842. "props":{
  4843. "name":"Bip001 R Toe0Nub",
  4844. "active":true,
  4845. "isStatic":false,
  4846. "layer":0,
  4847. "position":[
  4848. 0.2260934,
  4849. 2.980232E-08,
  4850. 0
  4851. ],
  4852. "rotation":[
  4853. -4.656613E-10,
  4854. -1.862645E-09,
  4855. 8.673619E-19,
  4856. -1
  4857. ],
  4858. "scale":[
  4859. 0.9999999,
  4860. 0.9999999,
  4861. 0.9999999
  4862. ]
  4863. },
  4864. "components":[],
  4865. "child":[]
  4866. }
  4867. ]
  4868. }
  4869. ]
  4870. }
  4871. ]
  4872. }
  4873. ]
  4874. },
  4875. {
  4876. "type":"Sprite3D",
  4877. "instanceID":129,
  4878. "props":{
  4879. "name":"Bip001 Spine1",
  4880. "active":true,
  4881. "isStatic":false,
  4882. "layer":0,
  4883. "position":[
  4884. 0.1352492,
  4885. -0.0002736747,
  4886. 1.21519E-05
  4887. ],
  4888. "rotation":[
  4889. 0.02216193,
  4890. -0.001473627,
  4891. 0.009752541,
  4892. -0.9997058
  4893. ],
  4894. "scale":[
  4895. 1,
  4896. 1,
  4897. 1
  4898. ]
  4899. },
  4900. "components":[],
  4901. "child":[
  4902. {
  4903. "type":"Sprite3D",
  4904. "instanceID":130,
  4905. "props":{
  4906. "name":"Bip001 Spine2",
  4907. "active":true,
  4908. "isStatic":false,
  4909. "layer":0,
  4910. "position":[
  4911. 0.344098,
  4912. -0.0001448393,
  4913. 1.291186E-05
  4914. ],
  4915. "rotation":[
  4916. 0.04431078,
  4917. -0.002946366,
  4918. 0.01949922,
  4919. -0.9988232
  4920. ],
  4921. "scale":[
  4922. 0.9999999,
  4923. 0.9999999,
  4924. 0.9999999
  4925. ]
  4926. },
  4927. "components":[],
  4928. "child":[
  4929. {
  4930. "type":"Sprite3D",
  4931. "instanceID":131,
  4932. "props":{
  4933. "name":"Bip001 Neck",
  4934. "active":true,
  4935. "isStatic":false,
  4936. "layer":0,
  4937. "position":[
  4938. 0.1828258,
  4939. -0.01429462,
  4940. -1.490116E-08
  4941. ],
  4942. "rotation":[
  4943. 2.245982E-09,
  4944. 4.568707E-07,
  4945. -0.1582245,
  4946. -0.9874032
  4947. ],
  4948. "scale":[
  4949. 0.9999999,
  4950. 1,
  4951. 1
  4952. ]
  4953. },
  4954. "components":[],
  4955. "child":[
  4956. {
  4957. "type":"Sprite3D",
  4958. "instanceID":132,
  4959. "props":{
  4960. "name":"Bip001 Head",
  4961. "active":true,
  4962. "isStatic":false,
  4963. "layer":0,
  4964. "position":[
  4965. 0.020051,
  4966. 9.477139E-05,
  4967. 1.490116E-08
  4968. ],
  4969. "rotation":[
  4970. -0.152795,
  4971. -0.004219283,
  4972. 0.3302348,
  4973. -0.9314402
  4974. ],
  4975. "scale":[
  4976. 0.9999999,
  4977. 0.9999999,
  4978. 1
  4979. ]
  4980. },
  4981. "components":[],
  4982. "child":[
  4983. {
  4984. "type":"Sprite3D",
  4985. "instanceID":133,
  4986. "props":{
  4987. "name":"Bip001 HeadNub",
  4988. "active":true,
  4989. "isStatic":false,
  4990. "layer":0,
  4991. "position":[
  4992. 0.6516703,
  4993. 0,
  4994. 9.313226E-10
  4995. ],
  4996. "rotation":[
  4997. -7.371881E-14,
  4998. 0,
  4999. 0,
  5000. -1
  5001. ],
  5002. "scale":[
  5003. 1,
  5004. 1,
  5005. 1
  5006. ]
  5007. },
  5008. "components":[],
  5009. "child":[]
  5010. }
  5011. ]
  5012. },
  5013. {
  5014. "type":"Sprite3D",
  5015. "instanceID":134,
  5016. "props":{
  5017. "name":"Bip001 L Clavicle",
  5018. "active":true,
  5019. "isStatic":false,
  5020. "layer":0,
  5021. "position":[
  5022. -0.09689116,
  5023. 0.03726137,
  5024. 0.1011698
  5025. ],
  5026. "rotation":[
  5027. -0.7124803,
  5028. -0.02262725,
  5029. -0.6571091,
  5030. -0.2450867
  5031. ],
  5032. "scale":[
  5033. 1,
  5034. 0.9999999,
  5035. 1
  5036. ]
  5037. },
  5038. "components":[],
  5039. "child":[
  5040. {
  5041. "type":"Sprite3D",
  5042. "instanceID":135,
  5043. "props":{
  5044. "name":"Bip001 L UpperArm",
  5045. "active":true,
  5046. "isStatic":false,
  5047. "layer":0,
  5048. "position":[
  5049. 0.113277,
  5050. 2.980232E-08,
  5051. 1.192093E-07
  5052. ],
  5053. "rotation":[
  5054. 0.2657749,
  5055. -0.395118,
  5056. 0.181732,
  5057. -0.8603598
  5058. ],
  5059. "scale":[
  5060. 1,
  5061. 1,
  5062. 1
  5063. ]
  5064. },
  5065. "components":[],
  5066. "child":[
  5067. {
  5068. "type":"Sprite3D",
  5069. "instanceID":136,
  5070. "props":{
  5071. "name":"Bip001 L Forearm",
  5072. "active":true,
  5073. "isStatic":false,
  5074. "layer":0,
  5075. "position":[
  5076. 0.3160065,
  5077. 5.960464E-08,
  5078. 0
  5079. ],
  5080. "rotation":[
  5081. -1.793112E-08,
  5082. -3.589287E-08,
  5083. 0.7471825,
  5084. -0.664619
  5085. ],
  5086. "scale":[
  5087. 1,
  5088. 1,
  5089. 0.9999999
  5090. ]
  5091. },
  5092. "components":[],
  5093. "child":[
  5094. {
  5095. "type":"Sprite3D",
  5096. "instanceID":137,
  5097. "props":{
  5098. "name":"Bip001 L Hand",
  5099. "active":true,
  5100. "isStatic":false,
  5101. "layer":0,
  5102. "position":[
  5103. 0.2746009,
  5104. 5.960464E-08,
  5105. 0
  5106. ],
  5107. "rotation":[
  5108. 0.7068252,
  5109. 5.262063E-09,
  5110. -1.580717E-08,
  5111. -0.7073883
  5112. ],
  5113. "scale":[
  5114. 1,
  5115. 0.9999999,
  5116. 1
  5117. ]
  5118. },
  5119. "components":[],
  5120. "child":[
  5121. {
  5122. "type":"Sprite3D",
  5123. "instanceID":138,
  5124. "props":{
  5125. "name":"Bip001 L Finger0",
  5126. "active":true,
  5127. "isStatic":false,
  5128. "layer":0,
  5129. "position":[
  5130. 0.02885044,
  5131. 0.0009403229,
  5132. -0.03778708
  5133. ],
  5134. "rotation":[
  5135. -0.6717315,
  5136. -0.3701369,
  5137. 0.2708145,
  5138. -0.5817517
  5139. ],
  5140. "scale":[
  5141. 0.9999998,
  5142. 1,
  5143. 0.9999994
  5144. ]
  5145. },
  5146. "components":[],
  5147. "child":[
  5148. {
  5149. "type":"Sprite3D",
  5150. "instanceID":139,
  5151. "props":{
  5152. "name":"Bip001 L Finger01",
  5153. "active":true,
  5154. "isStatic":false,
  5155. "layer":0,
  5156. "position":[
  5157. 0.02723002,
  5158. -2.980232E-08,
  5159. 0
  5160. ],
  5161. "rotation":[
  5162. 4.742372E-09,
  5163. 1.597077E-08,
  5164. -0.1741081,
  5165. -0.9847265
  5166. ],
  5167. "scale":[
  5168. 1,
  5169. 1,
  5170. 1
  5171. ]
  5172. },
  5173. "components":[],
  5174. "child":[
  5175. {
  5176. "type":"Sprite3D",
  5177. "instanceID":140,
  5178. "props":{
  5179. "name":"Bip001 L Finger02",
  5180. "active":true,
  5181. "isStatic":false,
  5182. "layer":0,
  5183. "position":[
  5184. 0.07730472,
  5185. -8.940697E-08,
  5186. 5.960464E-08
  5187. ],
  5188. "rotation":[
  5189. 1.479987E-08,
  5190. 1.734528E-09,
  5191. -0.1164022,
  5192. -0.9932022
  5193. ],
  5194. "scale":[
  5195. 0.9999999,
  5196. 1,
  5197. 1
  5198. ]
  5199. },
  5200. "components":[],
  5201. "child":[
  5202. {
  5203. "type":"Sprite3D",
  5204. "instanceID":141,
  5205. "props":{
  5206. "name":"Bip001 L Finger0Nub",
  5207. "active":true,
  5208. "isStatic":false,
  5209. "layer":0,
  5210. "position":[
  5211. 0.1223716,
  5212. 0,
  5213. 5.960464E-08
  5214. ],
  5215. "rotation":[
  5216. 1.490116E-08,
  5217. 4.440893E-16,
  5218. -2.980233E-08,
  5219. -1
  5220. ],
  5221. "scale":[
  5222. 0.9999999,
  5223. 0.9999999,
  5224. 1
  5225. ]
  5226. },
  5227. "components":[],
  5228. "child":[]
  5229. }
  5230. ]
  5231. }
  5232. ]
  5233. }
  5234. ]
  5235. },
  5236. {
  5237. "type":"Sprite3D",
  5238. "instanceID":142,
  5239. "props":{
  5240. "name":"Bip001 L Finger1",
  5241. "active":true,
  5242. "isStatic":false,
  5243. "layer":0,
  5244. "position":[
  5245. 0.2226498,
  5246. -0.000413239,
  5247. -0.06442451
  5248. ],
  5249. "rotation":[
  5250. -0.002133192,
  5251. -0.07797194,
  5252. 0.008282667,
  5253. -0.9969189
  5254. ],
  5255. "scale":[
  5256. 0.9999999,
  5257. 0.9999996,
  5258. 1
  5259. ]
  5260. },
  5261. "components":[],
  5262. "child":[
  5263. {
  5264. "type":"Sprite3D",
  5265. "instanceID":143,
  5266. "props":{
  5267. "name":"Bip001 L Finger11",
  5268. "active":true,
  5269. "isStatic":false,
  5270. "layer":0,
  5271. "position":[
  5272. 0.05149055,
  5273. 5.960464E-08,
  5274. -1.192093E-07
  5275. ],
  5276. "rotation":[
  5277. -3.453597E-08,
  5278. 2.415831E-08,
  5279. -0.1741082,
  5280. -0.9847265
  5281. ],
  5282. "scale":[
  5283. 1,
  5284. 1,
  5285. 1
  5286. ]
  5287. },
  5288. "components":[],
  5289. "child":[
  5290. {
  5291. "type":"Sprite3D",
  5292. "instanceID":144,
  5293. "props":{
  5294. "name":"Bip001 L Finger12",
  5295. "active":true,
  5296. "isStatic":false,
  5297. "layer":0,
  5298. "position":[
  5299. 0.04397237,
  5300. 0,
  5301. 1.192093E-07
  5302. ],
  5303. "rotation":[
  5304. 1.65344E-08,
  5305. -1.306534E-08,
  5306. -0.1164022,
  5307. -0.9932022
  5308. ],
  5309. "scale":[
  5310. 0.9999999,
  5311. 0.9999999,
  5312. 0.9999999
  5313. ]
  5314. },
  5315. "components":[],
  5316. "child":[
  5317. {
  5318. "type":"Sprite3D",
  5319. "instanceID":145,
  5320. "props":{
  5321. "name":"Bip001 L Finger1Nub",
  5322. "active":true,
  5323. "isStatic":false,
  5324. "layer":0,
  5325. "position":[
  5326. 0.06096715,
  5327. 0,
  5328. -5.960464E-08
  5329. ],
  5330. "rotation":[
  5331. 1.490116E-08,
  5332. 7.450581E-09,
  5333. 1.490116E-08,
  5334. -1
  5335. ],
  5336. "scale":[
  5337. 0.9999999,
  5338. 1,
  5339. 1
  5340. ]
  5341. },
  5342. "components":[],
  5343. "child":[]
  5344. }
  5345. ]
  5346. }
  5347. ]
  5348. }
  5349. ]
  5350. },
  5351. {
  5352. "type":"Sprite3D",
  5353. "instanceID":146,
  5354. "props":{
  5355. "name":"Bip001 L Finger2",
  5356. "active":true,
  5357. "isStatic":false,
  5358. "layer":0,
  5359. "position":[
  5360. 0.2236202,
  5361. -0.001942813,
  5362. -0.00995332
  5363. ],
  5364. "rotation":[
  5365. -0.01002071,
  5366. 0.01804494,
  5367. 0.0007388251,
  5368. -0.9997867
  5369. ],
  5370. "scale":[
  5371. 1,
  5372. 1,
  5373. 1
  5374. ]
  5375. },
  5376. "components":[],
  5377. "child":[
  5378. {
  5379. "type":"Sprite3D",
  5380. "instanceID":147,
  5381. "props":{
  5382. "name":"Bip001 L Finger21",
  5383. "active":true,
  5384. "isStatic":false,
  5385. "layer":0,
  5386. "position":[
  5387. 0.05735981,
  5388. 0,
  5389. 5.960464E-08
  5390. ],
  5391. "rotation":[
  5392. 1.65344E-08,
  5393. -1.306534E-08,
  5394. -0.1164022,
  5395. -0.9932022
  5396. ],
  5397. "scale":[
  5398. 1,
  5399. 1,
  5400. 0.9999999
  5401. ]
  5402. },
  5403. "components":[],
  5404. "child":[
  5405. {
  5406. "type":"Sprite3D",
  5407. "instanceID":148,
  5408. "props":{
  5409. "name":"Bip001 L Finger22",
  5410. "active":true,
  5411. "isStatic":false,
  5412. "layer":0,
  5413. "position":[
  5414. 0.0525375,
  5415. 0,
  5416. 0
  5417. ],
  5418. "rotation":[
  5419. -4.483323E-08,
  5420. -1.503616E-09,
  5421. -0.1164022,
  5422. -0.9932022
  5423. ],
  5424. "scale":[
  5425. 0.9999999,
  5426. 1,
  5427. 1
  5428. ]
  5429. },
  5430. "components":[],
  5431. "child":[
  5432. {
  5433. "type":"Sprite3D",
  5434. "instanceID":149,
  5435. "props":{
  5436. "name":"Bip001 L Finger2Nub",
  5437. "active":true,
  5438. "isStatic":false,
  5439. "layer":0,
  5440. "position":[
  5441. 0.06924373,
  5442. 0,
  5443. 5.960464E-08
  5444. ],
  5445. "rotation":[
  5446. 0,
  5447. 0,
  5448. -2.235174E-08,
  5449. -1
  5450. ],
  5451. "scale":[
  5452. 1,
  5453. 1,
  5454. 0.9999999
  5455. ]
  5456. },
  5457. "components":[],
  5458. "child":[]
  5459. }
  5460. ]
  5461. }
  5462. ]
  5463. }
  5464. ]
  5465. },
  5466. {
  5467. "type":"Sprite3D",
  5468. "instanceID":150,
  5469. "props":{
  5470. "name":"Bip001 L Finger3",
  5471. "active":true,
  5472. "isStatic":false,
  5473. "layer":0,
  5474. "position":[
  5475. 0.2230928,
  5476. -0.0008814335,
  5477. 0.03677016
  5478. ],
  5479. "rotation":[
  5480. 0.005199604,
  5481. 0.06550496,
  5482. -0.008302352,
  5483. -0.9978042
  5484. ],
  5485. "scale":[
  5486. 1,
  5487. 0.9999996,
  5488. 1
  5489. ]
  5490. },
  5491. "components":[],
  5492. "child":[
  5493. {
  5494. "type":"Sprite3D",
  5495. "instanceID":151,
  5496. "props":{
  5497. "name":"Bip001 L Finger31",
  5498. "active":true,
  5499. "isStatic":false,
  5500. "layer":0,
  5501. "position":[
  5502. 0.0504303,
  5503. 0,
  5504. 0
  5505. ],
  5506. "rotation":[
  5507. -1.566713E-08,
  5508. 5.665405E-09,
  5509. -0.1164022,
  5510. -0.9932022
  5511. ],
  5512. "scale":[
  5513. 1,
  5514. 1,
  5515. 1
  5516. ]
  5517. },
  5518. "components":[],
  5519. "child":[
  5520. {
  5521. "type":"Sprite3D",
  5522. "instanceID":152,
  5523. "props":{
  5524. "name":"Bip001 L Finger32",
  5525. "active":true,
  5526. "isStatic":false,
  5527. "layer":0,
  5528. "position":[
  5529. 0.04569608,
  5530. 0,
  5531. -5.960464E-08
  5532. ],
  5533. "rotation":[
  5534. -1.263171E-08,
  5535. -2.023436E-08,
  5536. -0.1164022,
  5537. -0.9932022
  5538. ],
  5539. "scale":[
  5540. 1,
  5541. 0.9999999,
  5542. 1
  5543. ]
  5544. },
  5545. "components":[],
  5546. "child":[
  5547. {
  5548. "type":"Sprite3D",
  5549. "instanceID":153,
  5550. "props":{
  5551. "name":"Bip001 L Finger3Nub",
  5552. "active":true,
  5553. "isStatic":false,
  5554. "layer":0,
  5555. "position":[
  5556. 0.06172347,
  5557. -1.192093E-07,
  5558. -5.960464E-08
  5559. ],
  5560. "rotation":[
  5561. 0,
  5562. 0,
  5563. -2.04891E-08,
  5564. -1
  5565. ],
  5566. "scale":[
  5567. 1,
  5568. 0.9999999,
  5569. 0.9999999
  5570. ]
  5571. },
  5572. "components":[],
  5573. "child":[]
  5574. }
  5575. ]
  5576. }
  5577. ]
  5578. }
  5579. ]
  5580. },
  5581. {
  5582. "type":"Sprite3D",
  5583. "instanceID":154,
  5584. "props":{
  5585. "name":"Bip001 L Finger4",
  5586. "active":true,
  5587. "isStatic":false,
  5588. "layer":0,
  5589. "position":[
  5590. 0.2133557,
  5591. 0.0007683635,
  5592. 0.08542845
  5593. ],
  5594. "rotation":[
  5595. 0.01230792,
  5596. 0.1268301,
  5597. 0.001679718,
  5598. -0.9918467
  5599. ],
  5600. "scale":[
  5601. 0.9999998,
  5602. 1,
  5603. 0.9999998
  5604. ]
  5605. },
  5606. "components":[],
  5607. "child":[
  5608. {
  5609. "type":"Sprite3D",
  5610. "instanceID":155,
  5611. "props":{
  5612. "name":"Bip001 L Finger41",
  5613. "active":true,
  5614. "isStatic":false,
  5615. "layer":0,
  5616. "position":[
  5617. 0.04679644,
  5618. -5.960464E-08,
  5619. 1.192093E-07
  5620. ],
  5621. "rotation":[
  5622. -2.168159E-09,
  5623. 1.849983E-08,
  5624. -0.1164022,
  5625. -0.9932022
  5626. ],
  5627. "scale":[
  5628. 1,
  5629. 1,
  5630. 1
  5631. ]
  5632. },
  5633. "components":[],
  5634. "child":[
  5635. {
  5636. "type":"Sprite3D",
  5637. "instanceID":156,
  5638. "props":{
  5639. "name":"Bip001 L Finger42",
  5640. "active":true,
  5641. "isStatic":false,
  5642. "layer":0,
  5643. "position":[
  5644. 0.0382843,
  5645. 0,
  5646. 1.192093E-07
  5647. ],
  5648. "rotation":[
  5649. -1.138284E-09,
  5650. 9.712413E-09,
  5651. -0.1164022,
  5652. -0.9932022
  5653. ],
  5654. "scale":[
  5655. 0.9999999,
  5656. 1,
  5657. 1
  5658. ]
  5659. },
  5660. "components":[],
  5661. "child":[
  5662. {
  5663. "type":"Sprite3D",
  5664. "instanceID":157,
  5665. "props":{
  5666. "name":"Bip001 L Finger4Nub",
  5667. "active":true,
  5668. "isStatic":false,
  5669. "layer":0,
  5670. "position":[
  5671. 0.05352724,
  5672. 0,
  5673. 0
  5674. ],
  5675. "rotation":[
  5676. -3.632078E-17,
  5677. 2.328307E-09,
  5678. -1.559965E-08,
  5679. -1
  5680. ],
  5681. "scale":[
  5682. 0.9999999,
  5683. 1,
  5684. 1
  5685. ]
  5686. },
  5687. "components":[],
  5688. "child":[]
  5689. }
  5690. ]
  5691. }
  5692. ]
  5693. }
  5694. ]
  5695. }
  5696. ]
  5697. }
  5698. ]
  5699. }
  5700. ]
  5701. }
  5702. ]
  5703. },
  5704. {
  5705. "type":"Sprite3D",
  5706. "instanceID":158,
  5707. "props":{
  5708. "name":"Bip001 R Clavicle",
  5709. "active":true,
  5710. "isStatic":false,
  5711. "layer":0,
  5712. "position":[
  5713. -0.09689105,
  5714. 0.03726184,
  5715. -0.1011696
  5716. ],
  5717. "rotation":[
  5718. -0.6703139,
  5719. 0.2258211,
  5720. 0.7068682,
  5721. -0.004654289
  5722. ],
  5723. "scale":[
  5724. 0.9999999,
  5725. 0.9999999,
  5726. 0.9999999
  5727. ]
  5728. },
  5729. "components":[],
  5730. "child":[
  5731. {
  5732. "type":"Sprite3D",
  5733. "instanceID":159,
  5734. "props":{
  5735. "name":"Bip001 R UpperArm",
  5736. "active":true,
  5737. "isStatic":false,
  5738. "layer":0,
  5739. "position":[
  5740. 0.113277,
  5741. 0,
  5742. 1.192093E-07
  5743. ],
  5744. "rotation":[
  5745. 0.4104671,
  5746. 0.3897051,
  5747. -0.1565066,
  5748. -0.8094149
  5749. ],
  5750. "scale":[
  5751. 1,
  5752. 1,
  5753. 1
  5754. ]
  5755. },
  5756. "components":[],
  5757. "child":[
  5758. {
  5759. "type":"Sprite3D",
  5760. "instanceID":160,
  5761. "props":{
  5762. "name":"Bip001 R Forearm",
  5763. "active":true,
  5764. "isStatic":false,
  5765. "layer":0,
  5766. "position":[
  5767. 0.3160065,
  5768. 0,
  5769. 0
  5770. ],
  5771. "rotation":[
  5772. 2.022149E-09,
  5773. 7.170918E-09,
  5774. 0.2714082,
  5775. -0.9624643
  5776. ],
  5777. "scale":[
  5778. 1,
  5779. 0.9999999,
  5780. 1
  5781. ]
  5782. },
  5783. "components":[],
  5784. "child":[
  5785. {
  5786. "type":"Sprite3D",
  5787. "instanceID":161,
  5788. "props":{
  5789. "name":"Bip001 R Hand",
  5790. "active":true,
  5791. "isStatic":false,
  5792. "layer":0,
  5793. "position":[
  5794. 0.2746009,
  5795. 0,
  5796. 0
  5797. ],
  5798. "rotation":[
  5799. -0.7068252,
  5800. 8.390228E-12,
  5801. -2.107342E-08,
  5802. -0.7073883
  5803. ],
  5804. "scale":[
  5805. 1,
  5806. 0.9999999,
  5807. 1
  5808. ]
  5809. },
  5810. "components":[],
  5811. "child":[
  5812. {
  5813. "type":"Sprite3D",
  5814. "instanceID":162,
  5815. "props":{
  5816. "name":"Bip001 R Finger0",
  5817. "active":true,
  5818. "isStatic":false,
  5819. "layer":0,
  5820. "position":[
  5821. 0.02885038,
  5822. 0.0009403825,
  5823. 0.03778708
  5824. ],
  5825. "rotation":[
  5826. 0.6717314,
  5827. 0.3701369,
  5828. 0.2708144,
  5829. -0.5817518
  5830. ],
  5831. "scale":[
  5832. 0.9999999,
  5833. 1,
  5834. 0.9999995
  5835. ]
  5836. },
  5837. "components":[],
  5838. "child":[
  5839. {
  5840. "type":"Sprite3D",
  5841. "instanceID":163,
  5842. "props":{
  5843. "name":"Bip001 R Finger01",
  5844. "active":true,
  5845. "isStatic":false,
  5846. "layer":0,
  5847. "position":[
  5848. 0.02722991,
  5849. -2.980232E-08,
  5850. -5.960464E-08
  5851. ],
  5852. "rotation":[
  5853. -0.01178011,
  5854. 0.176757,
  5855. -0.2752487,
  5856. -0.9449108
  5857. ],
  5858. "scale":[
  5859. 1,
  5860. 0.9999999,
  5861. 1
  5862. ]
  5863. },
  5864. "components":[],
  5865. "child":[
  5866. {
  5867. "type":"Sprite3D",
  5868. "instanceID":164,
  5869. "props":{
  5870. "name":"Bip001 R Finger02",
  5871. "active":true,
  5872. "isStatic":false,
  5873. "layer":0,
  5874. "position":[
  5875. 0.07730478,
  5876. 0,
  5877. 2.980232E-08
  5878. ],
  5879. "rotation":[
  5880. 2.176617E-08,
  5881. 6.301759E-09,
  5882. -0.1164022,
  5883. -0.9932022
  5884. ],
  5885. "scale":[
  5886. 0.9999999,
  5887. 1,
  5888. 1
  5889. ]
  5890. },
  5891. "components":[],
  5892. "child":[
  5893. {
  5894. "type":"Sprite3D",
  5895. "instanceID":165,
  5896. "props":{
  5897. "name":"Bip001 R Finger0Nub",
  5898. "active":true,
  5899. "isStatic":false,
  5900. "layer":0,
  5901. "position":[
  5902. 0.1223716,
  5903. 0,
  5904. 0
  5905. ],
  5906. "rotation":[
  5907. -3.725291E-09,
  5908. 7.450581E-09,
  5909. 1,
  5910. -3.347676E-17
  5911. ],
  5912. "scale":[
  5913. -0.9999999,
  5914. -0.9999999,
  5915. -1
  5916. ]
  5917. },
  5918. "components":[],
  5919. "child":[]
  5920. }
  5921. ]
  5922. }
  5923. ]
  5924. }
  5925. ]
  5926. },
  5927. {
  5928. "type":"Sprite3D",
  5929. "instanceID":166,
  5930. "props":{
  5931. "name":"Bip001 R Finger1",
  5932. "active":true,
  5933. "isStatic":false,
  5934. "layer":0,
  5935. "position":[
  5936. 0.2226498,
  5937. -0.0004131794,
  5938. 0.06442463
  5939. ],
  5940. "rotation":[
  5941. 0.03685484,
  5942. 0.06874511,
  5943. -0.439426,
  5944. -0.8948858
  5945. ],
  5946. "scale":[
  5947. 1,
  5948. 0.9999996,
  5949. 1
  5950. ]
  5951. },
  5952. "components":[],
  5953. "child":[
  5954. {
  5955. "type":"Sprite3D",
  5956. "instanceID":167,
  5957. "props":{
  5958. "name":"Bip001 R Finger11",
  5959. "active":true,
  5960. "isStatic":false,
  5961. "layer":0,
  5962. "position":[
  5963. 0.0514906,
  5964. -5.960464E-08,
  5965. 0
  5966. ],
  5967. "rotation":[
  5968. 8.341677E-10,
  5969. 2.38389E-08,
  5970. -0.5970056,
  5971. -0.8022371
  5972. ],
  5973. "scale":[
  5974. 1,
  5975. 1,
  5976. 1
  5977. ]
  5978. },
  5979. "components":[],
  5980. "child":[
  5981. {
  5982. "type":"Sprite3D",
  5983. "instanceID":168,
  5984. "props":{
  5985. "name":"Bip001 R Finger12",
  5986. "active":true,
  5987. "isStatic":false,
  5988. "layer":0,
  5989. "position":[
  5990. 0.0439724,
  5991. 5.960464E-08,
  5992. 0
  5993. ],
  5994. "rotation":[
  5995. -4.011774E-08,
  5996. 2.712771E-08,
  5997. -0.5492194,
  5998. -0.8356782
  5999. ],
  6000. "scale":[
  6001. 1,
  6002. 1,
  6003. 1
  6004. ]
  6005. },
  6006. "components":[],
  6007. "child":[
  6008. {
  6009. "type":"Sprite3D",
  6010. "instanceID":169,
  6011. "props":{
  6012. "name":"Bip001 R Finger1Nub",
  6013. "active":true,
  6014. "isStatic":false,
  6015. "layer":0,
  6016. "position":[
  6017. 0.06096715,
  6018. 0,
  6019. 1.192093E-07
  6020. ],
  6021. "rotation":[
  6022. -1.490116E-08,
  6023. -7.450581E-09,
  6024. 1,
  6025. -1.722547E-16
  6026. ],
  6027. "scale":[
  6028. -0.9999999,
  6029. -1,
  6030. -0.9999999
  6031. ]
  6032. },
  6033. "components":[],
  6034. "child":[]
  6035. }
  6036. ]
  6037. }
  6038. ]
  6039. }
  6040. ]
  6041. },
  6042. {
  6043. "type":"Sprite3D",
  6044. "instanceID":170,
  6045. "props":{
  6046. "name":"Bip001 R Finger2",
  6047. "active":true,
  6048. "isStatic":false,
  6049. "layer":0,
  6050. "position":[
  6051. 0.2236202,
  6052. -0.001942813,
  6053. 0.00995338
  6054. ],
  6055. "rotation":[
  6056. 0.0008698087,
  6057. -0.0206223,
  6058. -0.4474551,
  6059. -0.8940682
  6060. ],
  6061. "scale":[
  6062. 1,
  6063. 1,
  6064. 1
  6065. ]
  6066. },
  6067. "components":[],
  6068. "child":[
  6069. {
  6070. "type":"Sprite3D",
  6071. "instanceID":171,
  6072. "props":{
  6073. "name":"Bip001 R Finger21",
  6074. "active":true,
  6075. "isStatic":false,
  6076. "layer":0,
  6077. "position":[
  6078. 0.05735999,
  6079. 0,
  6080. 1.192093E-07
  6081. ],
  6082. "rotation":[
  6083. -2.891797E-08,
  6084. -3.739374E-08,
  6085. -0.5492194,
  6086. -0.8356782
  6087. ],
  6088. "scale":[
  6089. 0.9999999,
  6090. 1,
  6091. 1
  6092. ]
  6093. },
  6094. "components":[],
  6095. "child":[
  6096. {
  6097. "type":"Sprite3D",
  6098. "instanceID":172,
  6099. "props":{
  6100. "name":"Bip001 R Finger22",
  6101. "active":true,
  6102. "isStatic":false,
  6103. "layer":0,
  6104. "position":[
  6105. 0.05253759,
  6106. -2.980232E-08,
  6107. -1.192093E-07
  6108. ],
  6109. "rotation":[
  6110. 1.44103E-08,
  6111. -8.360571E-09,
  6112. -0.5492195,
  6113. -0.8356782
  6114. ],
  6115. "scale":[
  6116. 1,
  6117. 1,
  6118. 0.9999999
  6119. ]
  6120. },
  6121. "components":[],
  6122. "child":[
  6123. {
  6124. "type":"Sprite3D",
  6125. "instanceID":173,
  6126. "props":{
  6127. "name":"Bip001 R Finger2Nub",
  6128. "active":true,
  6129. "isStatic":false,
  6130. "layer":0,
  6131. "position":[
  6132. 0.06924385,
  6133. 0,
  6134. 0
  6135. ],
  6136. "rotation":[
  6137. -1.490116E-08,
  6138. 1.110223E-16,
  6139. 1,
  6140. 7.450581E-09
  6141. ],
  6142. "scale":[
  6143. -1,
  6144. -1,
  6145. -1
  6146. ]
  6147. },
  6148. "components":[],
  6149. "child":[]
  6150. }
  6151. ]
  6152. }
  6153. ]
  6154. }
  6155. ]
  6156. },
  6157. {
  6158. "type":"Sprite3D",
  6159. "instanceID":174,
  6160. "props":{
  6161. "name":"Bip001 R Finger3",
  6162. "active":true,
  6163. "isStatic":false,
  6164. "layer":0,
  6165. "position":[
  6166. 0.2230928,
  6167. -0.0008814335,
  6168. -0.03677011
  6169. ],
  6170. "rotation":[
  6171. -0.03400819,
  6172. -0.05622619,
  6173. -0.4546486,
  6174. -0.8882437
  6175. ],
  6176. "scale":[
  6177. 1,
  6178. 1,
  6179. 1
  6180. ]
  6181. },
  6182. "components":[],
  6183. "child":[
  6184. {
  6185. "type":"Sprite3D",
  6186. "instanceID":175,
  6187. "props":{
  6188. "name":"Bip001 R Finger31",
  6189. "active":true,
  6190. "isStatic":false,
  6191. "layer":0,
  6192. "position":[
  6193. 0.05043024,
  6194. 0,
  6195. 0
  6196. ],
  6197. "rotation":[
  6198. -1.672114E-08,
  6199. -2.88206E-08,
  6200. -0.5492195,
  6201. -0.8356782
  6202. ],
  6203. "scale":[
  6204. 0.9999999,
  6205. 0.9999999,
  6206. 0.9999999
  6207. ]
  6208. },
  6209. "components":[],
  6210. "child":[
  6211. {
  6212. "type":"Sprite3D",
  6213. "instanceID":176,
  6214. "props":{
  6215. "name":"Bip001 R Finger32",
  6216. "active":true,
  6217. "isStatic":false,
  6218. "layer":0,
  6219. "position":[
  6220. 0.04569602,
  6221. 0,
  6222. 0
  6223. ],
  6224. "rotation":[
  6225. 1.95772E-09,
  6226. -1.654458E-08,
  6227. -0.5492195,
  6228. -0.8356782
  6229. ],
  6230. "scale":[
  6231. 1,
  6232. 1,
  6233. 1
  6234. ]
  6235. },
  6236. "components":[],
  6237. "child":[
  6238. {
  6239. "type":"Sprite3D",
  6240. "instanceID":177,
  6241. "props":{
  6242. "name":"Bip001 R Finger3Nub",
  6243. "active":true,
  6244. "isStatic":false,
  6245. "layer":0,
  6246. "position":[
  6247. 0.06172356,
  6248. 0,
  6249. 0
  6250. ],
  6251. "rotation":[
  6252. -1.490116E-08,
  6253. -7.450581E-09,
  6254. 1,
  6255. -1.490116E-08
  6256. ],
  6257. "scale":[
  6258. -1,
  6259. -1,
  6260. -1
  6261. ]
  6262. },
  6263. "components":[],
  6264. "child":[]
  6265. }
  6266. ]
  6267. }
  6268. ]
  6269. }
  6270. ]
  6271. },
  6272. {
  6273. "type":"Sprite3D",
  6274. "instanceID":178,
  6275. "props":{
  6276. "name":"Bip001 R Finger4",
  6277. "active":true,
  6278. "isStatic":false,
  6279. "layer":0,
  6280. "position":[
  6281. 0.2133557,
  6282. 0.0007683635,
  6283. -0.08542836
  6284. ],
  6285. "rotation":[
  6286. -0.06784911,
  6287. -0.1078604,
  6288. -0.4430553,
  6289. -0.887392
  6290. ],
  6291. "scale":[
  6292. 1,
  6293. 0.9999999,
  6294. 0.9999998
  6295. ]
  6296. },
  6297. "components":[],
  6298. "child":[
  6299. {
  6300. "type":"Sprite3D",
  6301. "instanceID":179,
  6302. "props":{
  6303. "name":"Bip001 R Finger41",
  6304. "active":true,
  6305. "isStatic":false,
  6306. "layer":0,
  6307. "position":[
  6308. 0.0467965,
  6309. -5.960464E-08,
  6310. 0
  6311. ],
  6312. "rotation":[
  6313. 2.695115E-08,
  6314. 1.325487E-08,
  6315. -0.5492194,
  6316. -0.8356782
  6317. ],
  6318. "scale":[
  6319. 1,
  6320. 1,
  6321. 1
  6322. ]
  6323. },
  6324. "components":[],
  6325. "child":[
  6326. {
  6327. "type":"Sprite3D",
  6328. "instanceID":180,
  6329. "props":{
  6330. "name":"Bip001 R Finger42",
  6331. "active":true,
  6332. "isStatic":false,
  6333. "layer":0,
  6334. "position":[
  6335. 0.03828436,
  6336. 5.960464E-08,
  6337. -1.192093E-07
  6338. ],
  6339. "rotation":[
  6340. -8.184008E-09,
  6341. 1.245257E-08,
  6342. -0.5492195,
  6343. -0.8356782
  6344. ],
  6345. "scale":[
  6346. 1,
  6347. 1,
  6348. 1
  6349. ]
  6350. },
  6351. "components":[],
  6352. "child":[
  6353. {
  6354. "type":"Sprite3D",
  6355. "instanceID":181,
  6356. "props":{
  6357. "name":"Bip001 R Finger4Nub",
  6358. "active":true,
  6359. "isStatic":false,
  6360. "layer":0,
  6361. "position":[
  6362. 0.05352727,
  6363. 0,
  6364. 1.192093E-07
  6365. ],
  6366. "rotation":[
  6367. -1.490116E-08,
  6368. -9.12433E-25,
  6369. 1,
  6370. -6.123234E-17
  6371. ],
  6372. "scale":[
  6373. -1,
  6374. -1,
  6375. -1
  6376. ]
  6377. },
  6378. "components":[],
  6379. "child":[]
  6380. }
  6381. ]
  6382. }
  6383. ]
  6384. }
  6385. ]
  6386. }
  6387. ]
  6388. }
  6389. ]
  6390. }
  6391. ]
  6392. }
  6393. ]
  6394. }
  6395. ]
  6396. }
  6397. ]
  6398. }
  6399. ]
  6400. }
  6401. ]
  6402. }
  6403. ]
  6404. }
  6405. ]
  6406. },
  6407. {
  6408. "type":"SkinnedMeshSprite3D",
  6409. "instanceID":182,
  6410. "props":{
  6411. "name":"Character",
  6412. "active":true,
  6413. "isStatic":false,
  6414. "layer":0,
  6415. "position":[
  6416. 0,
  6417. 0,
  6418. 0
  6419. ],
  6420. "rotation":[
  6421. 0,
  6422. 0,
  6423. 0,
  6424. -1
  6425. ],
  6426. "scale":[
  6427. 10,
  6428. 10,
  6429. 10
  6430. ],
  6431. "rootBone":117,
  6432. "boundBox":{
  6433. "min":[
  6434. -0.8974966,
  6435. -0.8234307,
  6436. -0.5896069
  6437. ],
  6438. "max":[
  6439. 1.564654,
  6440. 0.7560636,
  6441. 0.5385629
  6442. ]
  6443. },
  6444. "boundSphere":{
  6445. "center":[
  6446. 0.3335785,
  6447. -0.03368351,
  6448. -0.02552196
  6449. ],
  6450. "radius":1.567622
  6451. },
  6452. "bones":[
  6453. 130,
  6454. 135,
  6455. 134,
  6456. 136,
  6457. 137,
  6458. 139,
  6459. 129,
  6460. 117,
  6461. 118,
  6462. 119,
  6463. 154,
  6464. 150,
  6465. 146,
  6466. 140,
  6467. 142,
  6468. 156,
  6469. 144,
  6470. 120,
  6471. 121,
  6472. 122,
  6473. 132,
  6474. 148,
  6475. 152,
  6476. 143,
  6477. 147,
  6478. 151,
  6479. 155,
  6480. 160,
  6481. 159,
  6482. 158,
  6483. 161,
  6484. 163,
  6485. 124,
  6486. 178,
  6487. 174,
  6488. 164,
  6489. 166,
  6490. 170,
  6491. 179,
  6492. 180,
  6493. 167,
  6494. 168,
  6495. 125,
  6496. 126,
  6497. 127,
  6498. 171,
  6499. 172,
  6500. 176,
  6501. 175
  6502. ],
  6503. "materials":[
  6504. {
  6505. "path":"Assets/ArcherAsset/Animator/Ragdoll/Materials/player.lmat"
  6506. }
  6507. ],
  6508. "meshPath":"Assets/new_model/npc-Character.lm"
  6509. },
  6510. "components":[],
  6511. "child":[]
  6512. },
  6513. {
  6514. "type":"Sprite3D",
  6515. "instanceID":183,
  6516. "props":{
  6517. "name":"hostagecollider",
  6518. "active":true,
  6519. "isStatic":false,
  6520. "layer":0,
  6521. "position":[
  6522. 0,
  6523. 0,
  6524. -0.111
  6525. ],
  6526. "rotation":[
  6527. 0,
  6528. 0,
  6529. 0,
  6530. -1
  6531. ],
  6532. "scale":[
  6533. 1,
  6534. 1,
  6535. 1
  6536. ]
  6537. },
  6538. "components":[
  6539. {
  6540. "type":"PhysicsCollider",
  6541. "restitution":0,
  6542. "friction":0.5,
  6543. "rollingFriction":0,
  6544. "shapes":[
  6545. {
  6546. "type":"CapsuleColliderShape",
  6547. "center":[
  6548. 0,
  6549. 1.059293,
  6550. -0.1636213
  6551. ],
  6552. "radius":0.3478986,
  6553. "height":2.208164,
  6554. "orientation":1
  6555. }
  6556. ],
  6557. "isTrigger":false
  6558. }
  6559. ],
  6560. "child":[]
  6561. },
  6562. {
  6563. "type":"Sprite3D",
  6564. "instanceID":184,
  6565. "props":{
  6566. "name":"UIPos",
  6567. "active":true,
  6568. "isStatic":false,
  6569. "layer":0,
  6570. "position":[
  6571. 0,
  6572. 2.5,
  6573. 0
  6574. ],
  6575. "rotation":[
  6576. 0,
  6577. 0,
  6578. 0,
  6579. -1
  6580. ],
  6581. "scale":[
  6582. 1,
  6583. 1,
  6584. 1
  6585. ]
  6586. },
  6587. "components":[],
  6588. "child":[]
  6589. }
  6590. ]
  6591. }
  6592. ]
  6593. },
  6594. {
  6595. "type":"Sprite3D",
  6596. "instanceID":185,
  6597. "props":{
  6598. "name":"enemy",
  6599. "active":true,
  6600. "isStatic":false,
  6601. "layer":0,
  6602. "position":[
  6603. 0,
  6604. 0,
  6605. 0
  6606. ],
  6607. "rotation":[
  6608. 0,
  6609. 0,
  6610. 0,
  6611. -1
  6612. ],
  6613. "scale":[
  6614. 1,
  6615. 1,
  6616. 1
  6617. ]
  6618. },
  6619. "components":[],
  6620. "child":[
  6621. {
  6622. "type":"Sprite3D",
  6623. "instanceID":186,
  6624. "props":{
  6625. "name":"npc",
  6626. "active":true,
  6627. "isStatic":false,
  6628. "layer":0,
  6629. "position":[
  6630. 0,
  6631. 0,
  6632. -2.347
  6633. ],
  6634. "rotation":[
  6635. 0,
  6636. 0,
  6637. 0,
  6638. -1
  6639. ],
  6640. "scale":[
  6641. 0.8,
  6642. 0.8,
  6643. 0.8
  6644. ]
  6645. },
  6646. "components":[
  6647. {
  6648. "type":"Animator",
  6649. "layers":[
  6650. {
  6651. "name":"Base Layer",
  6652. "weight":0,
  6653. "blendingMode":0,
  6654. "states":[
  6655. {
  6656. "name":"idle",
  6657. "clipPath":"Assets/new_model/npc-idle.lani"
  6658. },
  6659. {
  6660. "name":"atk",
  6661. "clipPath":"Assets/new_model/npc-atk.lani"
  6662. },
  6663. {
  6664. "name":"diefront",
  6665. "clipPath":"Assets/new_model/npc-diefront.lani"
  6666. },
  6667. {
  6668. "name":"dierear",
  6669. "clipPath":"Assets/new_model/npc-dierear.lani"
  6670. },
  6671. {
  6672. "name":"run",
  6673. "clipPath":"Assets/new_model/npc-run.lani"
  6674. },
  6675. {
  6676. "name":"thank",
  6677. "clipPath":"Assets/new_model/npc-thank.lani"
  6678. },
  6679. {
  6680. "name":"win",
  6681. "clipPath":"Assets/new_model/npc-win.lani"
  6682. }
  6683. ]
  6684. }
  6685. ],
  6686. "cullingMode":0,
  6687. "playOnWake":true
  6688. }
  6689. ],
  6690. "child":[
  6691. {
  6692. "type":"Sprite3D",
  6693. "instanceID":187,
  6694. "props":{
  6695. "name":"Bip001",
  6696. "active":true,
  6697. "isStatic":false,
  6698. "layer":0,
  6699. "position":[
  6700. 0.01054461,
  6701. 0.7479606,
  6702. -0.02780217
  6703. ],
  6704. "rotation":[
  6705. -0.5799491,
  6706. 0.5799491,
  6707. 0.404548,
  6708. 0.404548
  6709. ],
  6710. "scale":[
  6711. 1,
  6712. 1,
  6713. 1
  6714. ]
  6715. },
  6716. "components":[],
  6717. "child":[
  6718. {
  6719. "type":"Sprite3D",
  6720. "instanceID":188,
  6721. "props":{
  6722. "name":"Bip001 Footsteps",
  6723. "active":true,
  6724. "isStatic":false,
  6725. "layer":0,
  6726. "position":[
  6727. 0.256558,
  6728. 2.142042E-08,
  6729. -0.697163
  6730. ],
  6731. "rotation":[
  6732. 0.1240258,
  6733. 0.124026,
  6734. -0.6961445,
  6735. -0.6961452
  6736. ],
  6737. "scale":[
  6738. 0.9999999,
  6739. 0.9999998,
  6740. 0.9999999
  6741. ]
  6742. },
  6743. "components":[],
  6744. "child":[]
  6745. },
  6746. {
  6747. "type":"Sprite3D",
  6748. "instanceID":189,
  6749. "props":{
  6750. "name":"Bip001 Pelvis",
  6751. "active":true,
  6752. "isStatic":false,
  6753. "layer":0,
  6754. "position":[
  6755. 0,
  6756. 0,
  6757. 0
  6758. ],
  6759. "rotation":[
  6760. 0.4496907,
  6761. 0.5287219,
  6762. 0.3427418,
  6763. -0.6330557
  6764. ],
  6765. "scale":[
  6766. 0.9999999,
  6767. 0.9999999,
  6768. 1
  6769. ]
  6770. },
  6771. "components":[],
  6772. "child":[
  6773. {
  6774. "type":"Sprite3D",
  6775. "instanceID":190,
  6776. "props":{
  6777. "name":"Bip001 Spine",
  6778. "active":true,
  6779. "isStatic":false,
  6780. "layer":0,
  6781. "position":[
  6782. 0.09213704,
  6783. -0.03048739,
  6784. 0.007708102
  6785. ],
  6786. "rotation":[
  6787. 0.2684437,
  6788. -0.02074438,
  6789. 0.02158226,
  6790. -0.9628302
  6791. ],
  6792. "scale":[
  6793. 1,
  6794. 1,
  6795. 1
  6796. ]
  6797. },
  6798. "components":[],
  6799. "child":[
  6800. {
  6801. "type":"Sprite3D",
  6802. "instanceID":191,
  6803. "props":{
  6804. "name":"Bip001 L Thigh",
  6805. "active":true,
  6806. "isStatic":false,
  6807. "layer":0,
  6808. "position":[
  6809. -0.09754831,
  6810. -0.04921928,
  6811. 0.130663
  6812. ],
  6813. "rotation":[
  6814. -0.1801985,
  6815. 0.969772,
  6816. 0.1627335,
  6817. -0.02426215
  6818. ],
  6819. "scale":[
  6820. 0.9999998,
  6821. 1,
  6822. 1
  6823. ]
  6824. },
  6825. "components":[],
  6826. "child":[
  6827. {
  6828. "type":"Sprite3D",
  6829. "instanceID":192,
  6830. "props":{
  6831. "name":"Bip001 L Calf",
  6832. "active":true,
  6833. "isStatic":false,
  6834. "layer":0,
  6835. "position":[
  6836. 0.2654103,
  6837. 0,
  6838. 0
  6839. ],
  6840. "rotation":[
  6841. -8.907162E-09,
  6842. -5.628923E-09,
  6843. 0.2199988,
  6844. -0.9755002
  6845. ],
  6846. "scale":[
  6847. 1,
  6848. 0.9999999,
  6849. 1
  6850. ]
  6851. },
  6852. "components":[],
  6853. "child":[
  6854. {
  6855. "type":"Sprite3D",
  6856. "instanceID":193,
  6857. "props":{
  6858. "name":"Bip001 L Foot",
  6859. "active":true,
  6860. "isStatic":false,
  6861. "layer":0,
  6862. "position":[
  6863. 0.3190145,
  6864. 5.960464E-08,
  6865. 2.980232E-08
  6866. ],
  6867. "rotation":[
  6868. -0.01994075,
  6869. 0.02733877,
  6870. 0.3338319,
  6871. -0.9420251
  6872. ],
  6873. "scale":[
  6874. 0.9999999,
  6875. 1,
  6876. 1
  6877. ]
  6878. },
  6879. "components":[],
  6880. "child":[
  6881. {
  6882. "type":"Sprite3D",
  6883. "instanceID":194,
  6884. "props":{
  6885. "name":"Bip001 L Toe0",
  6886. "active":true,
  6887. "isStatic":false,
  6888. "layer":0,
  6889. "position":[
  6890. 0.1564382,
  6891. 0.1532346,
  6892. 2.980232E-08
  6893. ],
  6894. "rotation":[
  6895. -0.0227783,
  6896. -0.02363283,
  6897. -0.7151085,
  6898. -0.6982424
  6899. ],
  6900. "scale":[
  6901. 0.9999999,
  6902. 0.9999999,
  6903. 0.9999999
  6904. ]
  6905. },
  6906. "components":[],
  6907. "child":[
  6908. {
  6909. "type":"Sprite3D",
  6910. "instanceID":195,
  6911. "props":{
  6912. "name":"Bip001 L Toe0Nub",
  6913. "active":true,
  6914. "isStatic":false,
  6915. "layer":0,
  6916. "position":[
  6917. 0.2260934,
  6918. -5.960464E-08,
  6919. -1.490116E-08
  6920. ],
  6921. "rotation":[
  6922. -5.551115E-17,
  6923. -3.72529E-09,
  6924. 1,
  6925. 1.490116E-08
  6926. ],
  6927. "scale":[
  6928. -1,
  6929. -1,
  6930. -1
  6931. ]
  6932. },
  6933. "components":[],
  6934. "child":[]
  6935. }
  6936. ]
  6937. }
  6938. ]
  6939. }
  6940. ]
  6941. }
  6942. ]
  6943. },
  6944. {
  6945. "type":"Sprite3D",
  6946. "instanceID":196,
  6947. "props":{
  6948. "name":"Bip001 R Thigh",
  6949. "active":true,
  6950. "isStatic":false,
  6951. "layer":0,
  6952. "position":[
  6953. -0.08917165,
  6954. 0.1037262,
  6955. -0.1218753
  6956. ],
  6957. "rotation":[
  6958. 0.5281463,
  6959. 0.847366,
  6960. 0.03983953,
  6961. -0.03801443
  6962. ],
  6963. "scale":[
  6964. 0.9999999,
  6965. 0.9999999,
  6966. 1
  6967. ]
  6968. },
  6969. "components":[],
  6970. "child":[
  6971. {
  6972. "type":"Sprite3D",
  6973. "instanceID":197,
  6974. "props":{
  6975. "name":"Bip001 R Calf",
  6976. "active":true,
  6977. "isStatic":false,
  6978. "layer":0,
  6979. "position":[
  6980. 0.2654103,
  6981. 0,
  6982. 0
  6983. ],
  6984. "rotation":[
  6985. 1.716272E-09,
  6986. 7.603084E-10,
  6987. 0.1019511,
  6988. -0.9947894
  6989. ],
  6990. "scale":[
  6991. 1,
  6992. 1,
  6993. 1
  6994. ]
  6995. },
  6996. "components":[],
  6997. "child":[
  6998. {
  6999. "type":"Sprite3D",
  7000. "instanceID":198,
  7001. "props":{
  7002. "name":"Bip001 R Foot",
  7003. "active":true,
  7004. "isStatic":false,
  7005. "layer":0,
  7006. "position":[
  7007. 0.3190145,
  7008. -5.960464E-08,
  7009. 0
  7010. ],
  7011. "rotation":[
  7012. -0.01509951,
  7013. -0.02511084,
  7014. -0.1003526,
  7015. -0.9945204
  7016. ],
  7017. "scale":[
  7018. 1,
  7019. 1,
  7020. 1
  7021. ]
  7022. },
  7023. "components":[],
  7024. "child":[
  7025. {
  7026. "type":"Sprite3D",
  7027. "instanceID":199,
  7028. "props":{
  7029. "name":"Bip001 R Toe0",
  7030. "active":true,
  7031. "isStatic":false,
  7032. "layer":0,
  7033. "position":[
  7034. 0.1564382,
  7035. 0.1532346,
  7036. -7.450581E-09
  7037. ],
  7038. "rotation":[
  7039. 0.02400545,
  7040. -0.05428703,
  7041. -0.7346516,
  7042. -0.6758429
  7043. ],
  7044. "scale":[
  7045. 1,
  7046. 1,
  7047. 1
  7048. ]
  7049. },
  7050. "components":[],
  7051. "child":[
  7052. {
  7053. "type":"Sprite3D",
  7054. "instanceID":200,
  7055. "props":{
  7056. "name":"Bip001 R Toe0Nub",
  7057. "active":true,
  7058. "isStatic":false,
  7059. "layer":0,
  7060. "position":[
  7061. 0.2260934,
  7062. 2.980232E-08,
  7063. 0
  7064. ],
  7065. "rotation":[
  7066. -4.656613E-10,
  7067. -1.862645E-09,
  7068. 8.673619E-19,
  7069. -1
  7070. ],
  7071. "scale":[
  7072. 0.9999999,
  7073. 0.9999999,
  7074. 0.9999999
  7075. ]
  7076. },
  7077. "components":[],
  7078. "child":[]
  7079. }
  7080. ]
  7081. }
  7082. ]
  7083. }
  7084. ]
  7085. }
  7086. ]
  7087. },
  7088. {
  7089. "type":"Sprite3D",
  7090. "instanceID":201,
  7091. "props":{
  7092. "name":"Bip001 Spine1",
  7093. "active":true,
  7094. "isStatic":false,
  7095. "layer":0,
  7096. "position":[
  7097. 0.1352492,
  7098. -0.0002736747,
  7099. 1.21519E-05
  7100. ],
  7101. "rotation":[
  7102. 0.02216193,
  7103. -0.001473627,
  7104. 0.009752541,
  7105. -0.9997058
  7106. ],
  7107. "scale":[
  7108. 1,
  7109. 1,
  7110. 1
  7111. ]
  7112. },
  7113. "components":[],
  7114. "child":[
  7115. {
  7116. "type":"Sprite3D",
  7117. "instanceID":202,
  7118. "props":{
  7119. "name":"Bip001 Spine2",
  7120. "active":true,
  7121. "isStatic":false,
  7122. "layer":0,
  7123. "position":[
  7124. 0.344098,
  7125. -0.0001448393,
  7126. 1.291186E-05
  7127. ],
  7128. "rotation":[
  7129. 0.04431078,
  7130. -0.002946366,
  7131. 0.01949922,
  7132. -0.9988232
  7133. ],
  7134. "scale":[
  7135. 0.9999999,
  7136. 0.9999999,
  7137. 0.9999999
  7138. ]
  7139. },
  7140. "components":[],
  7141. "child":[
  7142. {
  7143. "type":"Sprite3D",
  7144. "instanceID":203,
  7145. "props":{
  7146. "name":"Bip001 Neck",
  7147. "active":true,
  7148. "isStatic":false,
  7149. "layer":0,
  7150. "position":[
  7151. 0.1828258,
  7152. -0.01429462,
  7153. -1.490116E-08
  7154. ],
  7155. "rotation":[
  7156. 2.245982E-09,
  7157. 4.568707E-07,
  7158. -0.1582245,
  7159. -0.9874032
  7160. ],
  7161. "scale":[
  7162. 0.9999999,
  7163. 1,
  7164. 1
  7165. ]
  7166. },
  7167. "components":[],
  7168. "child":[
  7169. {
  7170. "type":"Sprite3D",
  7171. "instanceID":204,
  7172. "props":{
  7173. "name":"Bip001 Head",
  7174. "active":true,
  7175. "isStatic":false,
  7176. "layer":0,
  7177. "position":[
  7178. 0.020051,
  7179. 9.477139E-05,
  7180. 1.490116E-08
  7181. ],
  7182. "rotation":[
  7183. -0.152795,
  7184. -0.004219283,
  7185. 0.3302348,
  7186. -0.9314402
  7187. ],
  7188. "scale":[
  7189. 0.9999999,
  7190. 0.9999999,
  7191. 1
  7192. ]
  7193. },
  7194. "components":[],
  7195. "child":[
  7196. {
  7197. "type":"Sprite3D",
  7198. "instanceID":205,
  7199. "props":{
  7200. "name":"Bip001 HeadNub",
  7201. "active":true,
  7202. "isStatic":false,
  7203. "layer":0,
  7204. "position":[
  7205. 0.6516703,
  7206. 0,
  7207. 9.313226E-10
  7208. ],
  7209. "rotation":[
  7210. -7.371881E-14,
  7211. 0,
  7212. 0,
  7213. -1
  7214. ],
  7215. "scale":[
  7216. 1,
  7217. 1,
  7218. 1
  7219. ]
  7220. },
  7221. "components":[],
  7222. "child":[]
  7223. }
  7224. ]
  7225. },
  7226. {
  7227. "type":"Sprite3D",
  7228. "instanceID":206,
  7229. "props":{
  7230. "name":"Bip001 L Clavicle",
  7231. "active":true,
  7232. "isStatic":false,
  7233. "layer":0,
  7234. "position":[
  7235. -0.09689116,
  7236. 0.03726137,
  7237. 0.1011698
  7238. ],
  7239. "rotation":[
  7240. -0.7124803,
  7241. -0.02262725,
  7242. -0.6571091,
  7243. -0.2450867
  7244. ],
  7245. "scale":[
  7246. 1,
  7247. 0.9999999,
  7248. 1
  7249. ]
  7250. },
  7251. "components":[],
  7252. "child":[
  7253. {
  7254. "type":"Sprite3D",
  7255. "instanceID":207,
  7256. "props":{
  7257. "name":"Bip001 L UpperArm",
  7258. "active":true,
  7259. "isStatic":false,
  7260. "layer":0,
  7261. "position":[
  7262. 0.113277,
  7263. 2.980232E-08,
  7264. 1.192093E-07
  7265. ],
  7266. "rotation":[
  7267. 0.2657749,
  7268. -0.395118,
  7269. 0.181732,
  7270. -0.8603598
  7271. ],
  7272. "scale":[
  7273. 1,
  7274. 1,
  7275. 1
  7276. ]
  7277. },
  7278. "components":[],
  7279. "child":[
  7280. {
  7281. "type":"Sprite3D",
  7282. "instanceID":208,
  7283. "props":{
  7284. "name":"Bip001 L Forearm",
  7285. "active":true,
  7286. "isStatic":false,
  7287. "layer":0,
  7288. "position":[
  7289. 0.3160065,
  7290. 5.960464E-08,
  7291. 0
  7292. ],
  7293. "rotation":[
  7294. -1.793112E-08,
  7295. -3.589287E-08,
  7296. 0.7471825,
  7297. -0.664619
  7298. ],
  7299. "scale":[
  7300. 1,
  7301. 1,
  7302. 0.9999999
  7303. ]
  7304. },
  7305. "components":[],
  7306. "child":[
  7307. {
  7308. "type":"Sprite3D",
  7309. "instanceID":209,
  7310. "props":{
  7311. "name":"Bip001 L Hand",
  7312. "active":true,
  7313. "isStatic":false,
  7314. "layer":0,
  7315. "position":[
  7316. 0.2746009,
  7317. 5.960464E-08,
  7318. 0
  7319. ],
  7320. "rotation":[
  7321. 0.7068252,
  7322. 5.262063E-09,
  7323. -1.580717E-08,
  7324. -0.7073883
  7325. ],
  7326. "scale":[
  7327. 1,
  7328. 0.9999999,
  7329. 1
  7330. ]
  7331. },
  7332. "components":[],
  7333. "child":[
  7334. {
  7335. "type":"Sprite3D",
  7336. "instanceID":210,
  7337. "props":{
  7338. "name":"Bip001 L Finger0",
  7339. "active":true,
  7340. "isStatic":false,
  7341. "layer":0,
  7342. "position":[
  7343. 0.02885044,
  7344. 0.0009403229,
  7345. -0.03778708
  7346. ],
  7347. "rotation":[
  7348. -0.6717315,
  7349. -0.3701369,
  7350. 0.2708145,
  7351. -0.5817517
  7352. ],
  7353. "scale":[
  7354. 0.9999998,
  7355. 1,
  7356. 0.9999994
  7357. ]
  7358. },
  7359. "components":[],
  7360. "child":[
  7361. {
  7362. "type":"Sprite3D",
  7363. "instanceID":211,
  7364. "props":{
  7365. "name":"Bip001 L Finger01",
  7366. "active":true,
  7367. "isStatic":false,
  7368. "layer":0,
  7369. "position":[
  7370. 0.02723002,
  7371. -2.980232E-08,
  7372. 0
  7373. ],
  7374. "rotation":[
  7375. 4.742372E-09,
  7376. 1.597077E-08,
  7377. -0.1741081,
  7378. -0.9847265
  7379. ],
  7380. "scale":[
  7381. 1,
  7382. 1,
  7383. 1
  7384. ]
  7385. },
  7386. "components":[],
  7387. "child":[
  7388. {
  7389. "type":"Sprite3D",
  7390. "instanceID":212,
  7391. "props":{
  7392. "name":"Bip001 L Finger02",
  7393. "active":true,
  7394. "isStatic":false,
  7395. "layer":0,
  7396. "position":[
  7397. 0.07730472,
  7398. -8.940697E-08,
  7399. 5.960464E-08
  7400. ],
  7401. "rotation":[
  7402. 1.479987E-08,
  7403. 1.734528E-09,
  7404. -0.1164022,
  7405. -0.9932022
  7406. ],
  7407. "scale":[
  7408. 0.9999999,
  7409. 1,
  7410. 1
  7411. ]
  7412. },
  7413. "components":[],
  7414. "child":[
  7415. {
  7416. "type":"Sprite3D",
  7417. "instanceID":213,
  7418. "props":{
  7419. "name":"Bip001 L Finger0Nub",
  7420. "active":true,
  7421. "isStatic":false,
  7422. "layer":0,
  7423. "position":[
  7424. 0.1223716,
  7425. 0,
  7426. 5.960464E-08
  7427. ],
  7428. "rotation":[
  7429. 1.490116E-08,
  7430. 4.440893E-16,
  7431. -2.980233E-08,
  7432. -1
  7433. ],
  7434. "scale":[
  7435. 0.9999999,
  7436. 0.9999999,
  7437. 1
  7438. ]
  7439. },
  7440. "components":[],
  7441. "child":[]
  7442. }
  7443. ]
  7444. }
  7445. ]
  7446. }
  7447. ]
  7448. },
  7449. {
  7450. "type":"Sprite3D",
  7451. "instanceID":214,
  7452. "props":{
  7453. "name":"Bip001 L Finger1",
  7454. "active":true,
  7455. "isStatic":false,
  7456. "layer":0,
  7457. "position":[
  7458. 0.2226498,
  7459. -0.000413239,
  7460. -0.06442451
  7461. ],
  7462. "rotation":[
  7463. -0.002133192,
  7464. -0.07797194,
  7465. 0.008282667,
  7466. -0.9969189
  7467. ],
  7468. "scale":[
  7469. 0.9999999,
  7470. 0.9999996,
  7471. 1
  7472. ]
  7473. },
  7474. "components":[],
  7475. "child":[
  7476. {
  7477. "type":"Sprite3D",
  7478. "instanceID":215,
  7479. "props":{
  7480. "name":"Bip001 L Finger11",
  7481. "active":true,
  7482. "isStatic":false,
  7483. "layer":0,
  7484. "position":[
  7485. 0.05149055,
  7486. 5.960464E-08,
  7487. -1.192093E-07
  7488. ],
  7489. "rotation":[
  7490. -3.453597E-08,
  7491. 2.415831E-08,
  7492. -0.1741082,
  7493. -0.9847265
  7494. ],
  7495. "scale":[
  7496. 1,
  7497. 1,
  7498. 1
  7499. ]
  7500. },
  7501. "components":[],
  7502. "child":[
  7503. {
  7504. "type":"Sprite3D",
  7505. "instanceID":216,
  7506. "props":{
  7507. "name":"Bip001 L Finger12",
  7508. "active":true,
  7509. "isStatic":false,
  7510. "layer":0,
  7511. "position":[
  7512. 0.04397237,
  7513. 0,
  7514. 1.192093E-07
  7515. ],
  7516. "rotation":[
  7517. 1.65344E-08,
  7518. -1.306534E-08,
  7519. -0.1164022,
  7520. -0.9932022
  7521. ],
  7522. "scale":[
  7523. 0.9999999,
  7524. 0.9999999,
  7525. 0.9999999
  7526. ]
  7527. },
  7528. "components":[],
  7529. "child":[
  7530. {
  7531. "type":"Sprite3D",
  7532. "instanceID":217,
  7533. "props":{
  7534. "name":"Bip001 L Finger1Nub",
  7535. "active":true,
  7536. "isStatic":false,
  7537. "layer":0,
  7538. "position":[
  7539. 0.06096715,
  7540. 0,
  7541. -5.960464E-08
  7542. ],
  7543. "rotation":[
  7544. 1.490116E-08,
  7545. 7.450581E-09,
  7546. 1.490116E-08,
  7547. -1
  7548. ],
  7549. "scale":[
  7550. 0.9999999,
  7551. 1,
  7552. 1
  7553. ]
  7554. },
  7555. "components":[],
  7556. "child":[]
  7557. }
  7558. ]
  7559. }
  7560. ]
  7561. }
  7562. ]
  7563. },
  7564. {
  7565. "type":"Sprite3D",
  7566. "instanceID":218,
  7567. "props":{
  7568. "name":"Bip001 L Finger2",
  7569. "active":true,
  7570. "isStatic":false,
  7571. "layer":0,
  7572. "position":[
  7573. 0.2236202,
  7574. -0.001942813,
  7575. -0.00995332
  7576. ],
  7577. "rotation":[
  7578. -0.01002071,
  7579. 0.01804494,
  7580. 0.0007388251,
  7581. -0.9997867
  7582. ],
  7583. "scale":[
  7584. 1,
  7585. 1,
  7586. 1
  7587. ]
  7588. },
  7589. "components":[],
  7590. "child":[
  7591. {
  7592. "type":"Sprite3D",
  7593. "instanceID":219,
  7594. "props":{
  7595. "name":"Bip001 L Finger21",
  7596. "active":true,
  7597. "isStatic":false,
  7598. "layer":0,
  7599. "position":[
  7600. 0.05735981,
  7601. 0,
  7602. 5.960464E-08
  7603. ],
  7604. "rotation":[
  7605. 1.65344E-08,
  7606. -1.306534E-08,
  7607. -0.1164022,
  7608. -0.9932022
  7609. ],
  7610. "scale":[
  7611. 1,
  7612. 1,
  7613. 0.9999999
  7614. ]
  7615. },
  7616. "components":[],
  7617. "child":[
  7618. {
  7619. "type":"Sprite3D",
  7620. "instanceID":220,
  7621. "props":{
  7622. "name":"Bip001 L Finger22",
  7623. "active":true,
  7624. "isStatic":false,
  7625. "layer":0,
  7626. "position":[
  7627. 0.0525375,
  7628. 0,
  7629. 0
  7630. ],
  7631. "rotation":[
  7632. -4.483323E-08,
  7633. -1.503616E-09,
  7634. -0.1164022,
  7635. -0.9932022
  7636. ],
  7637. "scale":[
  7638. 0.9999999,
  7639. 1,
  7640. 1
  7641. ]
  7642. },
  7643. "components":[],
  7644. "child":[
  7645. {
  7646. "type":"Sprite3D",
  7647. "instanceID":221,
  7648. "props":{
  7649. "name":"Bip001 L Finger2Nub",
  7650. "active":true,
  7651. "isStatic":false,
  7652. "layer":0,
  7653. "position":[
  7654. 0.06924373,
  7655. 0,
  7656. 5.960464E-08
  7657. ],
  7658. "rotation":[
  7659. 0,
  7660. 0,
  7661. -2.235174E-08,
  7662. -1
  7663. ],
  7664. "scale":[
  7665. 1,
  7666. 1,
  7667. 0.9999999
  7668. ]
  7669. },
  7670. "components":[],
  7671. "child":[]
  7672. }
  7673. ]
  7674. }
  7675. ]
  7676. }
  7677. ]
  7678. },
  7679. {
  7680. "type":"Sprite3D",
  7681. "instanceID":222,
  7682. "props":{
  7683. "name":"Bip001 L Finger3",
  7684. "active":true,
  7685. "isStatic":false,
  7686. "layer":0,
  7687. "position":[
  7688. 0.2230928,
  7689. -0.0008814335,
  7690. 0.03677016
  7691. ],
  7692. "rotation":[
  7693. 0.005199604,
  7694. 0.06550496,
  7695. -0.008302352,
  7696. -0.9978042
  7697. ],
  7698. "scale":[
  7699. 1,
  7700. 0.9999996,
  7701. 1
  7702. ]
  7703. },
  7704. "components":[],
  7705. "child":[
  7706. {
  7707. "type":"Sprite3D",
  7708. "instanceID":223,
  7709. "props":{
  7710. "name":"Bip001 L Finger31",
  7711. "active":true,
  7712. "isStatic":false,
  7713. "layer":0,
  7714. "position":[
  7715. 0.0504303,
  7716. 0,
  7717. 0
  7718. ],
  7719. "rotation":[
  7720. -1.566713E-08,
  7721. 5.665405E-09,
  7722. -0.1164022,
  7723. -0.9932022
  7724. ],
  7725. "scale":[
  7726. 1,
  7727. 1,
  7728. 1
  7729. ]
  7730. },
  7731. "components":[],
  7732. "child":[
  7733. {
  7734. "type":"Sprite3D",
  7735. "instanceID":224,
  7736. "props":{
  7737. "name":"Bip001 L Finger32",
  7738. "active":true,
  7739. "isStatic":false,
  7740. "layer":0,
  7741. "position":[
  7742. 0.04569608,
  7743. 0,
  7744. -5.960464E-08
  7745. ],
  7746. "rotation":[
  7747. -1.263171E-08,
  7748. -2.023436E-08,
  7749. -0.1164022,
  7750. -0.9932022
  7751. ],
  7752. "scale":[
  7753. 1,
  7754. 0.9999999,
  7755. 1
  7756. ]
  7757. },
  7758. "components":[],
  7759. "child":[
  7760. {
  7761. "type":"Sprite3D",
  7762. "instanceID":225,
  7763. "props":{
  7764. "name":"Bip001 L Finger3Nub",
  7765. "active":true,
  7766. "isStatic":false,
  7767. "layer":0,
  7768. "position":[
  7769. 0.06172347,
  7770. -1.192093E-07,
  7771. -5.960464E-08
  7772. ],
  7773. "rotation":[
  7774. 0,
  7775. 0,
  7776. -2.04891E-08,
  7777. -1
  7778. ],
  7779. "scale":[
  7780. 1,
  7781. 0.9999999,
  7782. 0.9999999
  7783. ]
  7784. },
  7785. "components":[],
  7786. "child":[]
  7787. }
  7788. ]
  7789. }
  7790. ]
  7791. }
  7792. ]
  7793. },
  7794. {
  7795. "type":"Sprite3D",
  7796. "instanceID":226,
  7797. "props":{
  7798. "name":"Bip001 L Finger4",
  7799. "active":true,
  7800. "isStatic":false,
  7801. "layer":0,
  7802. "position":[
  7803. 0.2133557,
  7804. 0.0007683635,
  7805. 0.08542845
  7806. ],
  7807. "rotation":[
  7808. 0.01230792,
  7809. 0.1268301,
  7810. 0.001679718,
  7811. -0.9918467
  7812. ],
  7813. "scale":[
  7814. 0.9999998,
  7815. 1,
  7816. 0.9999998
  7817. ]
  7818. },
  7819. "components":[],
  7820. "child":[
  7821. {
  7822. "type":"Sprite3D",
  7823. "instanceID":227,
  7824. "props":{
  7825. "name":"Bip001 L Finger41",
  7826. "active":true,
  7827. "isStatic":false,
  7828. "layer":0,
  7829. "position":[
  7830. 0.04679644,
  7831. -5.960464E-08,
  7832. 1.192093E-07
  7833. ],
  7834. "rotation":[
  7835. -2.168159E-09,
  7836. 1.849983E-08,
  7837. -0.1164022,
  7838. -0.9932022
  7839. ],
  7840. "scale":[
  7841. 1,
  7842. 1,
  7843. 1
  7844. ]
  7845. },
  7846. "components":[],
  7847. "child":[
  7848. {
  7849. "type":"Sprite3D",
  7850. "instanceID":228,
  7851. "props":{
  7852. "name":"Bip001 L Finger42",
  7853. "active":true,
  7854. "isStatic":false,
  7855. "layer":0,
  7856. "position":[
  7857. 0.0382843,
  7858. 0,
  7859. 1.192093E-07
  7860. ],
  7861. "rotation":[
  7862. -1.138284E-09,
  7863. 9.712413E-09,
  7864. -0.1164022,
  7865. -0.9932022
  7866. ],
  7867. "scale":[
  7868. 0.9999999,
  7869. 1,
  7870. 1
  7871. ]
  7872. },
  7873. "components":[],
  7874. "child":[
  7875. {
  7876. "type":"Sprite3D",
  7877. "instanceID":229,
  7878. "props":{
  7879. "name":"Bip001 L Finger4Nub",
  7880. "active":true,
  7881. "isStatic":false,
  7882. "layer":0,
  7883. "position":[
  7884. 0.05352724,
  7885. 0,
  7886. 0
  7887. ],
  7888. "rotation":[
  7889. -3.632078E-17,
  7890. 2.328307E-09,
  7891. -1.559965E-08,
  7892. -1
  7893. ],
  7894. "scale":[
  7895. 0.9999999,
  7896. 1,
  7897. 1
  7898. ]
  7899. },
  7900. "components":[],
  7901. "child":[]
  7902. }
  7903. ]
  7904. }
  7905. ]
  7906. }
  7907. ]
  7908. }
  7909. ]
  7910. }
  7911. ]
  7912. }
  7913. ]
  7914. }
  7915. ]
  7916. },
  7917. {
  7918. "type":"Sprite3D",
  7919. "instanceID":230,
  7920. "props":{
  7921. "name":"Bip001 R Clavicle",
  7922. "active":true,
  7923. "isStatic":false,
  7924. "layer":0,
  7925. "position":[
  7926. -0.09689105,
  7927. 0.03726184,
  7928. -0.1011696
  7929. ],
  7930. "rotation":[
  7931. -0.6703139,
  7932. 0.2258211,
  7933. 0.7068682,
  7934. -0.004654289
  7935. ],
  7936. "scale":[
  7937. 0.9999999,
  7938. 0.9999999,
  7939. 0.9999999
  7940. ]
  7941. },
  7942. "components":[],
  7943. "child":[
  7944. {
  7945. "type":"Sprite3D",
  7946. "instanceID":231,
  7947. "props":{
  7948. "name":"Bip001 R UpperArm",
  7949. "active":true,
  7950. "isStatic":false,
  7951. "layer":0,
  7952. "position":[
  7953. 0.113277,
  7954. 0,
  7955. 1.192093E-07
  7956. ],
  7957. "rotation":[
  7958. 0.4104671,
  7959. 0.3897051,
  7960. -0.1565066,
  7961. -0.8094149
  7962. ],
  7963. "scale":[
  7964. 1,
  7965. 1,
  7966. 1
  7967. ]
  7968. },
  7969. "components":[],
  7970. "child":[
  7971. {
  7972. "type":"Sprite3D",
  7973. "instanceID":232,
  7974. "props":{
  7975. "name":"Bip001 R Forearm",
  7976. "active":true,
  7977. "isStatic":false,
  7978. "layer":0,
  7979. "position":[
  7980. 0.3160065,
  7981. 0,
  7982. 0
  7983. ],
  7984. "rotation":[
  7985. 2.022149E-09,
  7986. 7.170918E-09,
  7987. 0.2714082,
  7988. -0.9624643
  7989. ],
  7990. "scale":[
  7991. 1,
  7992. 0.9999999,
  7993. 1
  7994. ]
  7995. },
  7996. "components":[],
  7997. "child":[
  7998. {
  7999. "type":"Sprite3D",
  8000. "instanceID":233,
  8001. "props":{
  8002. "name":"Bip001 R Hand",
  8003. "active":true,
  8004. "isStatic":false,
  8005. "layer":0,
  8006. "position":[
  8007. 0.2746009,
  8008. 0,
  8009. 0
  8010. ],
  8011. "rotation":[
  8012. -0.7068252,
  8013. 8.390228E-12,
  8014. -2.107342E-08,
  8015. -0.7073883
  8016. ],
  8017. "scale":[
  8018. 1,
  8019. 0.9999999,
  8020. 1
  8021. ]
  8022. },
  8023. "components":[],
  8024. "child":[
  8025. {
  8026. "type":"Sprite3D",
  8027. "instanceID":234,
  8028. "props":{
  8029. "name":"Bip001 R Finger0",
  8030. "active":true,
  8031. "isStatic":false,
  8032. "layer":0,
  8033. "position":[
  8034. 0.02885038,
  8035. 0.0009403825,
  8036. 0.03778708
  8037. ],
  8038. "rotation":[
  8039. 0.6717314,
  8040. 0.3701369,
  8041. 0.2708144,
  8042. -0.5817518
  8043. ],
  8044. "scale":[
  8045. 0.9999999,
  8046. 1,
  8047. 0.9999995
  8048. ]
  8049. },
  8050. "components":[],
  8051. "child":[
  8052. {
  8053. "type":"Sprite3D",
  8054. "instanceID":235,
  8055. "props":{
  8056. "name":"Bip001 R Finger01",
  8057. "active":true,
  8058. "isStatic":false,
  8059. "layer":0,
  8060. "position":[
  8061. 0.02722991,
  8062. -2.980232E-08,
  8063. -5.960464E-08
  8064. ],
  8065. "rotation":[
  8066. -0.01178011,
  8067. 0.176757,
  8068. -0.2752487,
  8069. -0.9449108
  8070. ],
  8071. "scale":[
  8072. 1,
  8073. 0.9999999,
  8074. 1
  8075. ]
  8076. },
  8077. "components":[],
  8078. "child":[
  8079. {
  8080. "type":"Sprite3D",
  8081. "instanceID":236,
  8082. "props":{
  8083. "name":"Bip001 R Finger02",
  8084. "active":true,
  8085. "isStatic":false,
  8086. "layer":0,
  8087. "position":[
  8088. 0.07730478,
  8089. 0,
  8090. 2.980232E-08
  8091. ],
  8092. "rotation":[
  8093. 2.176617E-08,
  8094. 6.301759E-09,
  8095. -0.1164022,
  8096. -0.9932022
  8097. ],
  8098. "scale":[
  8099. 0.9999999,
  8100. 1,
  8101. 1
  8102. ]
  8103. },
  8104. "components":[],
  8105. "child":[
  8106. {
  8107. "type":"Sprite3D",
  8108. "instanceID":237,
  8109. "props":{
  8110. "name":"Bip001 R Finger0Nub",
  8111. "active":true,
  8112. "isStatic":false,
  8113. "layer":0,
  8114. "position":[
  8115. 0.1223716,
  8116. 0,
  8117. 0
  8118. ],
  8119. "rotation":[
  8120. -3.725291E-09,
  8121. 7.450581E-09,
  8122. 1,
  8123. -3.347676E-17
  8124. ],
  8125. "scale":[
  8126. -0.9999999,
  8127. -0.9999999,
  8128. -1
  8129. ]
  8130. },
  8131. "components":[],
  8132. "child":[]
  8133. }
  8134. ]
  8135. }
  8136. ]
  8137. }
  8138. ]
  8139. },
  8140. {
  8141. "type":"Sprite3D",
  8142. "instanceID":238,
  8143. "props":{
  8144. "name":"Bip001 R Finger1",
  8145. "active":true,
  8146. "isStatic":false,
  8147. "layer":0,
  8148. "position":[
  8149. 0.2226498,
  8150. -0.0004131794,
  8151. 0.06442463
  8152. ],
  8153. "rotation":[
  8154. 0.03685484,
  8155. 0.06874511,
  8156. -0.439426,
  8157. -0.8948858
  8158. ],
  8159. "scale":[
  8160. 1,
  8161. 0.9999996,
  8162. 1
  8163. ]
  8164. },
  8165. "components":[],
  8166. "child":[
  8167. {
  8168. "type":"Sprite3D",
  8169. "instanceID":239,
  8170. "props":{
  8171. "name":"Bip001 R Finger11",
  8172. "active":true,
  8173. "isStatic":false,
  8174. "layer":0,
  8175. "position":[
  8176. 0.0514906,
  8177. -5.960464E-08,
  8178. 0
  8179. ],
  8180. "rotation":[
  8181. 8.341677E-10,
  8182. 2.38389E-08,
  8183. -0.5970056,
  8184. -0.8022371
  8185. ],
  8186. "scale":[
  8187. 1,
  8188. 1,
  8189. 1
  8190. ]
  8191. },
  8192. "components":[],
  8193. "child":[
  8194. {
  8195. "type":"Sprite3D",
  8196. "instanceID":240,
  8197. "props":{
  8198. "name":"Bip001 R Finger12",
  8199. "active":true,
  8200. "isStatic":false,
  8201. "layer":0,
  8202. "position":[
  8203. 0.0439724,
  8204. 5.960464E-08,
  8205. 0
  8206. ],
  8207. "rotation":[
  8208. -4.011774E-08,
  8209. 2.712771E-08,
  8210. -0.5492194,
  8211. -0.8356782
  8212. ],
  8213. "scale":[
  8214. 1,
  8215. 1,
  8216. 1
  8217. ]
  8218. },
  8219. "components":[],
  8220. "child":[
  8221. {
  8222. "type":"Sprite3D",
  8223. "instanceID":241,
  8224. "props":{
  8225. "name":"Bip001 R Finger1Nub",
  8226. "active":true,
  8227. "isStatic":false,
  8228. "layer":0,
  8229. "position":[
  8230. 0.06096715,
  8231. 0,
  8232. 1.192093E-07
  8233. ],
  8234. "rotation":[
  8235. -1.490116E-08,
  8236. -7.450581E-09,
  8237. 1,
  8238. -1.722547E-16
  8239. ],
  8240. "scale":[
  8241. -0.9999999,
  8242. -1,
  8243. -0.9999999
  8244. ]
  8245. },
  8246. "components":[],
  8247. "child":[]
  8248. }
  8249. ]
  8250. }
  8251. ]
  8252. }
  8253. ]
  8254. },
  8255. {
  8256. "type":"Sprite3D",
  8257. "instanceID":242,
  8258. "props":{
  8259. "name":"Bip001 R Finger2",
  8260. "active":true,
  8261. "isStatic":false,
  8262. "layer":0,
  8263. "position":[
  8264. 0.2236202,
  8265. -0.001942813,
  8266. 0.00995338
  8267. ],
  8268. "rotation":[
  8269. 0.0008698087,
  8270. -0.0206223,
  8271. -0.4474551,
  8272. -0.8940682
  8273. ],
  8274. "scale":[
  8275. 1,
  8276. 1,
  8277. 1
  8278. ]
  8279. },
  8280. "components":[],
  8281. "child":[
  8282. {
  8283. "type":"Sprite3D",
  8284. "instanceID":243,
  8285. "props":{
  8286. "name":"Bip001 R Finger21",
  8287. "active":true,
  8288. "isStatic":false,
  8289. "layer":0,
  8290. "position":[
  8291. 0.05735999,
  8292. 0,
  8293. 1.192093E-07
  8294. ],
  8295. "rotation":[
  8296. -2.891797E-08,
  8297. -3.739374E-08,
  8298. -0.5492194,
  8299. -0.8356782
  8300. ],
  8301. "scale":[
  8302. 0.9999999,
  8303. 1,
  8304. 1
  8305. ]
  8306. },
  8307. "components":[],
  8308. "child":[
  8309. {
  8310. "type":"Sprite3D",
  8311. "instanceID":244,
  8312. "props":{
  8313. "name":"Bip001 R Finger22",
  8314. "active":true,
  8315. "isStatic":false,
  8316. "layer":0,
  8317. "position":[
  8318. 0.05253759,
  8319. -2.980232E-08,
  8320. -1.192093E-07
  8321. ],
  8322. "rotation":[
  8323. 1.44103E-08,
  8324. -8.360571E-09,
  8325. -0.5492195,
  8326. -0.8356782
  8327. ],
  8328. "scale":[
  8329. 1,
  8330. 1,
  8331. 0.9999999
  8332. ]
  8333. },
  8334. "components":[],
  8335. "child":[
  8336. {
  8337. "type":"Sprite3D",
  8338. "instanceID":245,
  8339. "props":{
  8340. "name":"Bip001 R Finger2Nub",
  8341. "active":true,
  8342. "isStatic":false,
  8343. "layer":0,
  8344. "position":[
  8345. 0.06924385,
  8346. 0,
  8347. 0
  8348. ],
  8349. "rotation":[
  8350. -1.490116E-08,
  8351. 1.110223E-16,
  8352. 1,
  8353. 7.450581E-09
  8354. ],
  8355. "scale":[
  8356. -1,
  8357. -1,
  8358. -1
  8359. ]
  8360. },
  8361. "components":[],
  8362. "child":[]
  8363. }
  8364. ]
  8365. }
  8366. ]
  8367. }
  8368. ]
  8369. },
  8370. {
  8371. "type":"Sprite3D",
  8372. "instanceID":246,
  8373. "props":{
  8374. "name":"Bip001 R Finger3",
  8375. "active":true,
  8376. "isStatic":false,
  8377. "layer":0,
  8378. "position":[
  8379. 0.2230928,
  8380. -0.0008814335,
  8381. -0.03677011
  8382. ],
  8383. "rotation":[
  8384. -0.03400819,
  8385. -0.05622619,
  8386. -0.4546486,
  8387. -0.8882437
  8388. ],
  8389. "scale":[
  8390. 1,
  8391. 1,
  8392. 1
  8393. ]
  8394. },
  8395. "components":[],
  8396. "child":[
  8397. {
  8398. "type":"Sprite3D",
  8399. "instanceID":247,
  8400. "props":{
  8401. "name":"Bip001 R Finger31",
  8402. "active":true,
  8403. "isStatic":false,
  8404. "layer":0,
  8405. "position":[
  8406. 0.05043024,
  8407. 0,
  8408. 0
  8409. ],
  8410. "rotation":[
  8411. -1.672114E-08,
  8412. -2.88206E-08,
  8413. -0.5492195,
  8414. -0.8356782
  8415. ],
  8416. "scale":[
  8417. 0.9999999,
  8418. 0.9999999,
  8419. 0.9999999
  8420. ]
  8421. },
  8422. "components":[],
  8423. "child":[
  8424. {
  8425. "type":"Sprite3D",
  8426. "instanceID":248,
  8427. "props":{
  8428. "name":"Bip001 R Finger32",
  8429. "active":true,
  8430. "isStatic":false,
  8431. "layer":0,
  8432. "position":[
  8433. 0.04569602,
  8434. 0,
  8435. 0
  8436. ],
  8437. "rotation":[
  8438. 1.95772E-09,
  8439. -1.654458E-08,
  8440. -0.5492195,
  8441. -0.8356782
  8442. ],
  8443. "scale":[
  8444. 1,
  8445. 1,
  8446. 1
  8447. ]
  8448. },
  8449. "components":[],
  8450. "child":[
  8451. {
  8452. "type":"Sprite3D",
  8453. "instanceID":249,
  8454. "props":{
  8455. "name":"Bip001 R Finger3Nub",
  8456. "active":true,
  8457. "isStatic":false,
  8458. "layer":0,
  8459. "position":[
  8460. 0.06172356,
  8461. 0,
  8462. 0
  8463. ],
  8464. "rotation":[
  8465. -1.490116E-08,
  8466. -7.450581E-09,
  8467. 1,
  8468. -1.490116E-08
  8469. ],
  8470. "scale":[
  8471. -1,
  8472. -1,
  8473. -1
  8474. ]
  8475. },
  8476. "components":[],
  8477. "child":[]
  8478. }
  8479. ]
  8480. }
  8481. ]
  8482. }
  8483. ]
  8484. },
  8485. {
  8486. "type":"Sprite3D",
  8487. "instanceID":250,
  8488. "props":{
  8489. "name":"Bip001 R Finger4",
  8490. "active":true,
  8491. "isStatic":false,
  8492. "layer":0,
  8493. "position":[
  8494. 0.2133557,
  8495. 0.0007683635,
  8496. -0.08542836
  8497. ],
  8498. "rotation":[
  8499. -0.06784911,
  8500. -0.1078604,
  8501. -0.4430553,
  8502. -0.887392
  8503. ],
  8504. "scale":[
  8505. 1,
  8506. 0.9999999,
  8507. 0.9999998
  8508. ]
  8509. },
  8510. "components":[],
  8511. "child":[
  8512. {
  8513. "type":"Sprite3D",
  8514. "instanceID":251,
  8515. "props":{
  8516. "name":"Bip001 R Finger41",
  8517. "active":true,
  8518. "isStatic":false,
  8519. "layer":0,
  8520. "position":[
  8521. 0.0467965,
  8522. -5.960464E-08,
  8523. 0
  8524. ],
  8525. "rotation":[
  8526. 2.695115E-08,
  8527. 1.325487E-08,
  8528. -0.5492194,
  8529. -0.8356782
  8530. ],
  8531. "scale":[
  8532. 1,
  8533. 1,
  8534. 1
  8535. ]
  8536. },
  8537. "components":[],
  8538. "child":[
  8539. {
  8540. "type":"Sprite3D",
  8541. "instanceID":252,
  8542. "props":{
  8543. "name":"Bip001 R Finger42",
  8544. "active":true,
  8545. "isStatic":false,
  8546. "layer":0,
  8547. "position":[
  8548. 0.03828436,
  8549. 5.960464E-08,
  8550. -1.192093E-07
  8551. ],
  8552. "rotation":[
  8553. -8.184008E-09,
  8554. 1.245257E-08,
  8555. -0.5492195,
  8556. -0.8356782
  8557. ],
  8558. "scale":[
  8559. 1,
  8560. 1,
  8561. 1
  8562. ]
  8563. },
  8564. "components":[],
  8565. "child":[
  8566. {
  8567. "type":"Sprite3D",
  8568. "instanceID":253,
  8569. "props":{
  8570. "name":"Bip001 R Finger4Nub",
  8571. "active":true,
  8572. "isStatic":false,
  8573. "layer":0,
  8574. "position":[
  8575. 0.05352727,
  8576. 0,
  8577. 1.192093E-07
  8578. ],
  8579. "rotation":[
  8580. -1.490116E-08,
  8581. -9.12433E-25,
  8582. 1,
  8583. -6.123234E-17
  8584. ],
  8585. "scale":[
  8586. -1,
  8587. -1,
  8588. -1
  8589. ]
  8590. },
  8591. "components":[],
  8592. "child":[]
  8593. }
  8594. ]
  8595. }
  8596. ]
  8597. }
  8598. ]
  8599. }
  8600. ]
  8601. }
  8602. ]
  8603. }
  8604. ]
  8605. }
  8606. ]
  8607. }
  8608. ]
  8609. }
  8610. ]
  8611. }
  8612. ]
  8613. }
  8614. ]
  8615. }
  8616. ]
  8617. }
  8618. ]
  8619. },
  8620. {
  8621. "type":"SkinnedMeshSprite3D",
  8622. "instanceID":254,
  8623. "props":{
  8624. "name":"Character",
  8625. "active":true,
  8626. "isStatic":false,
  8627. "layer":0,
  8628. "position":[
  8629. 0,
  8630. 0,
  8631. 0
  8632. ],
  8633. "rotation":[
  8634. 0,
  8635. 0,
  8636. 0,
  8637. -1
  8638. ],
  8639. "scale":[
  8640. 10,
  8641. 10,
  8642. 10
  8643. ],
  8644. "rootBone":189,
  8645. "boundBox":{
  8646. "min":[
  8647. -0.8974966,
  8648. -0.8234307,
  8649. -0.5896069
  8650. ],
  8651. "max":[
  8652. 1.564654,
  8653. 0.7560636,
  8654. 0.5385629
  8655. ]
  8656. },
  8657. "boundSphere":{
  8658. "center":[
  8659. 0.3335785,
  8660. -0.03368351,
  8661. -0.02552196
  8662. ],
  8663. "radius":1.567622
  8664. },
  8665. "bones":[
  8666. 202,
  8667. 207,
  8668. 206,
  8669. 208,
  8670. 209,
  8671. 211,
  8672. 201,
  8673. 189,
  8674. 190,
  8675. 191,
  8676. 226,
  8677. 222,
  8678. 218,
  8679. 212,
  8680. 214,
  8681. 228,
  8682. 216,
  8683. 192,
  8684. 193,
  8685. 194,
  8686. 204,
  8687. 220,
  8688. 224,
  8689. 215,
  8690. 219,
  8691. 223,
  8692. 227,
  8693. 232,
  8694. 231,
  8695. 230,
  8696. 233,
  8697. 235,
  8698. 196,
  8699. 250,
  8700. 246,
  8701. 236,
  8702. 238,
  8703. 242,
  8704. 251,
  8705. 252,
  8706. 239,
  8707. 240,
  8708. 197,
  8709. 198,
  8710. 199,
  8711. 243,
  8712. 244,
  8713. 248,
  8714. 247
  8715. ],
  8716. "materials":[
  8717. {
  8718. "path":"Assets/ArcherAsset/Animator/Ragdoll _5741/Materials/ragdoll.lmat"
  8719. }
  8720. ],
  8721. "meshPath":"Assets/new_model/npc-Character.lm"
  8722. },
  8723. "components":[],
  8724. "child":[]
  8725. },
  8726. {
  8727. "type":"Sprite3D",
  8728. "instanceID":255,
  8729. "props":{
  8730. "name":"npcfrontcollider",
  8731. "active":true,
  8732. "isStatic":false,
  8733. "layer":0,
  8734. "position":[
  8735. 0,
  8736. 0,
  8737. -0.276
  8738. ],
  8739. "rotation":[
  8740. 0,
  8741. 0,
  8742. 0,
  8743. -1
  8744. ],
  8745. "scale":[
  8746. 1,
  8747. 1,
  8748. 1
  8749. ]
  8750. },
  8751. "components":[
  8752. {
  8753. "type":"PhysicsCollider",
  8754. "restitution":0,
  8755. "friction":0.5,
  8756. "rollingFriction":0,
  8757. "shapes":[
  8758. {
  8759. "type":"BoxColliderShape",
  8760. "center":[
  8761. 0.1369827,
  8762. 1.060144,
  8763. 0.4447083
  8764. ],
  8765. "size":[
  8766. 2.307946,
  8767. 1.795499,
  8768. 0.1207981
  8769. ]
  8770. }
  8771. ],
  8772. "isTrigger":true
  8773. }
  8774. ],
  8775. "child":[]
  8776. },
  8777. {
  8778. "type":"Sprite3D",
  8779. "instanceID":256,
  8780. "props":{
  8781. "name":"npcrearcollider",
  8782. "active":true,
  8783. "isStatic":false,
  8784. "layer":0,
  8785. "position":[
  8786. 0.035,
  8787. 0,
  8788. -1.032
  8789. ],
  8790. "rotation":[
  8791. 0,
  8792. 0,
  8793. 0,
  8794. -1
  8795. ],
  8796. "scale":[
  8797. 1,
  8798. 1,
  8799. 1
  8800. ]
  8801. },
  8802. "components":[
  8803. {
  8804. "type":"PhysicsCollider",
  8805. "restitution":0,
  8806. "friction":0.5,
  8807. "rollingFriction":0,
  8808. "shapes":[
  8809. {
  8810. "type":"BoxColliderShape",
  8811. "center":[
  8812. 0.02332162,
  8813. 1.052816,
  8814. 0.4447083
  8815. ],
  8816. "size":[
  8817. 1.9372,
  8818. 1.780843,
  8819. 0.1207981
  8820. ]
  8821. }
  8822. ],
  8823. "isTrigger":true
  8824. }
  8825. ],
  8826. "child":[]
  8827. },
  8828. {
  8829. "type":"Sprite3D",
  8830. "instanceID":257,
  8831. "props":{
  8832. "name":"UIPos",
  8833. "active":true,
  8834. "isStatic":false,
  8835. "layer":0,
  8836. "position":[
  8837. 0,
  8838. 2.5,
  8839. 0
  8840. ],
  8841. "rotation":[
  8842. 0,
  8843. 0,
  8844. 0,
  8845. -1
  8846. ],
  8847. "scale":[
  8848. 1,
  8849. 1,
  8850. 1
  8851. ]
  8852. },
  8853. "components":[],
  8854. "child":[]
  8855. }
  8856. ]
  8857. }
  8858. ]
  8859. }
  8860. ]
  8861. },
  8862. {
  8863. "type":"Sprite3D",
  8864. "instanceID":258,
  8865. "props":{
  8866. "name":"grass",
  8867. "active":true,
  8868. "isStatic":false,
  8869. "layer":0,
  8870. "position":[
  8871. 0,
  8872. 0,
  8873. 0
  8874. ],
  8875. "rotation":[
  8876. 0,
  8877. 0,
  8878. 0,
  8879. -1
  8880. ],
  8881. "scale":[
  8882. 1,
  8883. 1,
  8884. 1
  8885. ]
  8886. },
  8887. "components":[],
  8888. "child":[
  8889. {
  8890. "type":"MeshSprite3D",
  8891. "instanceID":259,
  8892. "props":{
  8893. "name":"grass_0",
  8894. "active":true,
  8895. "isStatic":false,
  8896. "layer":0,
  8897. "position":[
  8898. 0,
  8899. 0,
  8900. 0
  8901. ],
  8902. "rotation":[
  8903. 0,
  8904. 0,
  8905. 0,
  8906. -1
  8907. ],
  8908. "scale":[
  8909. 1,
  8910. 1,
  8911. 1
  8912. ],
  8913. "meshPath":"Assets/new_model/grass-grass_0.lm",
  8914. "enableRender":true,
  8915. "materials":[
  8916. {
  8917. "path":"Assets/new_model/Materials/grass.lmat"
  8918. }
  8919. ]
  8920. },
  8921. "components":[],
  8922. "child":[]
  8923. }
  8924. ]
  8925. },
  8926. {
  8927. "type":"Sprite3D",
  8928. "instanceID":260,
  8929. "props":{
  8930. "name":"archer",
  8931. "active":true,
  8932. "isStatic":false,
  8933. "layer":0,
  8934. "position":[
  8935. 0,
  8936. 0,
  8937. 0
  8938. ],
  8939. "rotation":[
  8940. 0,
  8941. 0,
  8942. 0,
  8943. -1
  8944. ],
  8945. "scale":[
  8946. 1,
  8947. 1,
  8948. 1
  8949. ]
  8950. },
  8951. "components":[],
  8952. "child":[
  8953. {
  8954. "type":"MeshSprite3D",
  8955. "instanceID":261,
  8956. "props":{
  8957. "name":"archer",
  8958. "active":true,
  8959. "isStatic":false,
  8960. "layer":0,
  8961. "position":[
  8962. 0,
  8963. 0,
  8964. 0
  8965. ],
  8966. "rotation":[
  8967. 0,
  8968. 0,
  8969. 0,
  8970. -1
  8971. ],
  8972. "scale":[
  8973. 1,
  8974. 1,
  8975. 1
  8976. ],
  8977. "meshPath":"Assets/new_model/Cube(3)-Cube_0.lm",
  8978. "enableRender":true,
  8979. "materials":[
  8980. {
  8981. "path":"Assets/new_model/Materials/Archer.lmat"
  8982. }
  8983. ]
  8984. },
  8985. "components":[],
  8986. "child":[]
  8987. }
  8988. ]
  8989. },
  8990. {
  8991. "type":"Sprite3D",
  8992. "instanceID":262,
  8993. "props":{
  8994. "name":"arrow",
  8995. "active":true,
  8996. "isStatic":false,
  8997. "layer":0,
  8998. "position":[
  8999. 0,
  9000. 0,
  9001. 0
  9002. ],
  9003. "rotation":[
  9004. 0,
  9005. 0,
  9006. 0,
  9007. -1
  9008. ],
  9009. "scale":[
  9010. 1,
  9011. 1,
  9012. 1
  9013. ]
  9014. },
  9015. "components":[],
  9016. "child":[
  9017. {
  9018. "type":"MeshSprite3D",
  9019. "instanceID":263,
  9020. "props":{
  9021. "name":"arrow",
  9022. "active":true,
  9023. "isStatic":false,
  9024. "layer":0,
  9025. "position":[
  9026. 0,
  9027. 0,
  9028. 0
  9029. ],
  9030. "rotation":[
  9031. 0,
  9032. 0,
  9033. 0,
  9034. -1
  9035. ],
  9036. "scale":[
  9037. 1,
  9038. 1,
  9039. 1
  9040. ],
  9041. "meshPath":"Assets/new_model/wood_metal(3)-wood_metal_0.lm",
  9042. "enableRender":true,
  9043. "materials":[
  9044. {
  9045. "path":"Assets/new_model/Materials/Wood_Metal.lmat"
  9046. }
  9047. ]
  9048. },
  9049. "components":[],
  9050. "child":[]
  9051. }
  9052. ]
  9053. },
  9054. {
  9055. "type":"MeshSprite3D",
  9056. "instanceID":264,
  9057. "props":{
  9058. "name":"assist1",
  9059. "active":true,
  9060. "isStatic":false,
  9061. "layer":0,
  9062. "position":[
  9063. 0,
  9064. 0,
  9065. 0
  9066. ],
  9067. "rotation":[
  9068. 0,
  9069. 0,
  9070. 0,
  9071. -1
  9072. ],
  9073. "scale":[
  9074. 1,
  9075. 1,
  9076. 1
  9077. ],
  9078. "meshPath":"Assets/new_model/assist1(1)-Box001.lm",
  9079. "enableRender":true,
  9080. "materials":[
  9081. {
  9082. "path":"Assets/new_model/Materials/Ray.lmat"
  9083. }
  9084. ]
  9085. },
  9086. "components":[
  9087. {
  9088. "type":"Animator",
  9089. "layers":[],
  9090. "cullingMode":0,
  9091. "playOnWake":true
  9092. }
  9093. ],
  9094. "child":[]
  9095. },
  9096. {
  9097. "type":"Sprite3D",
  9098. "instanceID":265,
  9099. "props":{
  9100. "name":"floor",
  9101. "active":true,
  9102. "isStatic":false,
  9103. "layer":0,
  9104. "position":[
  9105. 0,
  9106. 0,
  9107. 0
  9108. ],
  9109. "rotation":[
  9110. 0,
  9111. 0,
  9112. 0,
  9113. -1
  9114. ],
  9115. "scale":[
  9116. 1,
  9117. 1,
  9118. 1
  9119. ]
  9120. },
  9121. "components":[],
  9122. "child":[
  9123. {
  9124. "type":"MeshSprite3D",
  9125. "instanceID":266,
  9126. "props":{
  9127. "name":"Floor (2)",
  9128. "active":true,
  9129. "isStatic":false,
  9130. "layer":0,
  9131. "position":[
  9132. 0,
  9133. 0,
  9134. 0
  9135. ],
  9136. "rotation":[
  9137. -0.5,
  9138. -0.5,
  9139. 0.5,
  9140. -0.5
  9141. ],
  9142. "scale":[
  9143. 1,
  9144. 1,
  9145. 0.1
  9146. ],
  9147. "meshPath":"Assets/new_model/Floor(2)-Floor.lm",
  9148. "enableRender":true,
  9149. "materials":[
  9150. {
  9151. "path":"Assets/new_model/Materials/Grond.lmat"
  9152. }
  9153. ]
  9154. },
  9155. "components":[
  9156. {
  9157. "type":"Animator",
  9158. "layers":[],
  9159. "cullingMode":0,
  9160. "playOnWake":true
  9161. }
  9162. ],
  9163. "child":[]
  9164. }
  9165. ]
  9166. }
  9167. ]
  9168. }
  9169. ]
  9170. }
  9171. }