123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706 |
- {
- "version":"LAYAHIERARCHY:02",
- "data":{
- "type":"Sprite3D",
- "instanceID":552,
- "props":{
- "name":"enemy",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -7.16,
- 0,
- 0
- ],
- "rotation":[
- 0,
- 0,
- 0,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":553,
- "props":{
- "name":"enemy1",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0,
- 0,
- 0,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":554,
- "props":{
- "name":"boss",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0,
- 0,
- 0,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[
- {
- "type":"Animator",
- "layers":[
- {
- "name":"Base Layer",
- "weight":0,
- "blendingMode":0,
- "states":[
- {
- "name":"warrioridle",
- "clipPath":"Assets/import/nijia/boss-warrioridle.lani"
- },
- {
- "name":"attack",
- "clipPath":"Assets/import/nijia/boss-attack.lani"
- },
- {
- "name":"chuiboosattack",
- "clipPath":"Assets/import/nijia/boss-chuiboosattack.lani"
- },
- {
- "name":"chuiboosprovocation",
- "clipPath":"Assets/import/nijia/boss-chuiboosprovocation.lani"
- },
- {
- "name":"darts",
- "clipPath":"Assets/import/nijia/boss-darts.lani"
- },
- {
- "name":"dartsboosprovocation",
- "clipPath":"Assets/import/nijia/boss-dartsboosprovocation.lani"
- },
- {
- "name":"dartsidle",
- "clipPath":"Assets/import/nijia/boss-dartsidle.lani"
- },
- {
- "name":"gunboosprovocation",
- "clipPath":"Assets/import/nijia/boss-gunboosprovocation.lani"
- },
- {
- "name":"gunidle",
- "clipPath":"Assets/import/nijia/boss-gunidle.lani"
- },
- {
- "name":"paoboosattack",
- "clipPath":"Assets/import/nijia/boss-paoboosattack.lani"
- },
- {
- "name":"paoboosidle",
- "clipPath":"Assets/import/nijia/boss-paoboosidle.lani"
- },
- {
- "name":"paoboosprovocation",
- "clipPath":"Assets/import/nijia/boss-paoboosprovocation.lani"
- },
- {
- "name":"run",
- "clipPath":"Assets/import/nijia/boss-run.lani"
- },
- {
- "name":"shoot",
- "clipPath":"Assets/import/nijia/boss-shoot.lani"
- },
- {
- "name":"die",
- "clipPath":"Assets/import/nijia/boy-die.lani"
- }
- ]
- }
- ],
- "cullingMode":0,
- "playOnWake":true
- }
- ],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":555,
- "props":{
- "name":"Bip001",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.01495362,
- 0.8639947,
- -4.88343E-05
- ],
- "rotation":[
- 0.4615295,
- 0.5126605,
- 0.5399292,
- -0.4823342
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":556,
- "props":{
- "name":"Bip001 Footsteps",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04095178,
- 0.007793831,
- -0.8586558
- ],
- "rotation":[
- 0.01471111,
- 0.01928195,
- -0.7442933,
- -0.6674124
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- },
- {
- "type":"Sprite3D",
- "instanceID":557,
- "props":{
- "name":"Bip001 Pelvis",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.4999997,
- 0.5000004,
- 0.4999997,
- -0.5000004
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":558,
- "props":{
- "name":"Bip001 Spine",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1100754,
- 0.01314819,
- -2.671984E-05
- ],
- "rotation":[
- -0.07404681,
- 3.017417E-05,
- -0.0003971175,
- -0.9972547
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":559,
- "props":{
- "name":"Bip001 L Thigh",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.1100703,
- 0.006379849,
- 0.1311636
- ],
- "rotation":[
- 0.2436457,
- 0.9621015,
- -0.09194402,
- -0.08089428
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":560,
- "props":{
- "name":"Bip001 L Calf",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.4418859,
- 0,
- -2.422333E-08
- ],
- "rotation":[
- 5.033415E-09,
- 1.411969E-08,
- 0.2313798,
- -0.9728635
- ],
- "scale":[
- 0.9999999,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":561,
- "props":{
- "name":"Bip001 L Foot",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.334858,
- 1.211166E-08,
- 0
- ],
- "rotation":[
- 0.05615929,
- 0.09886846,
- -0.0111872,
- -0.9934516
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":562,
- "props":{
- "name":"Bip001 L Toe0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1361558,
- 0.1416621,
- -2.422333E-08
- ],
- "rotation":[
- 5.865104E-07,
- 3.031494E-07,
- -0.6901804,
- -0.7236373
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":563,
- "props":{
- "name":"Bip001 L Toe0Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.01435763,
- 0,
- 0
- ],
- "rotation":[
- -2.255547E-10,
- -4.201283E-19,
- 1,
- -1.862645E-09
- ],
- "scale":[
- -1,
- -1,
- -1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":564,
- "props":{
- "name":"Bip001 R Thigh",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.1101009,
- -0.03220454,
- -0.1272268
- ],
- "rotation":[
- 0.07272933,
- 0.9883125,
- -0.06213548,
- 0.1186929
- ],
- "scale":[
- 0.9999999,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":565,
- "props":{
- "name":"Bip001 R Calf",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.441886,
- -6.055832E-09,
- -2.422333E-08
- ],
- "rotation":[
- 3.024402E-09,
- -1.638318E-08,
- 0.2774114,
- -0.9607512
- ],
- "scale":[
- 1,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":566,
- "props":{
- "name":"Bip001 R Foot",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.3348579,
- -2.422333E-08,
- 2.422333E-08
- ],
- "rotation":[
- 0.07600401,
- -0.1003176,
- -0.2029958,
- -0.9710574
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":567,
- "props":{
- "name":"Bip001 R Toe0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1361558,
- 0.1416621,
- -2.422333E-08
- ],
- "rotation":[
- 1.156723E-07,
- 4.658224E-07,
- -0.7071067,
- -0.7071069
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":568,
- "props":{
- "name":"Bip001 R Toe0Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.01435764,
- 0,
- 0
- ],
- "rotation":[
- 5.827585E-19,
- -3.128661E-10,
- -1.862645E-09,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":569,
- "props":{
- "name":"Bip001 Spine1",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2282371,
- -0.000317913,
- -7.016741E-05
- ],
- "rotation":[
- -0.1084027,
- 8.631823E-05,
- -1.070818E-09,
- -0.9941071
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":570,
- "props":{
- "name":"Bip001 Neck",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.4088501,
- -0.00152336,
- -7.56979E-10
- ],
- "rotation":[
- -9.48785E-09,
- 4.656613E-10,
- -4.418125E-18,
- -1
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":571,
- "props":{
- "name":"Bip001 Head",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.07176025,
- -0.03511823,
- -5.147457E-08
- ],
- "rotation":[
- 0.08276394,
- -0.003284633,
- -0.0387271,
- -0.995811
- ],
- "scale":[
- 1,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":572,
- "props":{
- "name":"Bip001 HeadNub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.7254755,
- 1.211166E-08,
- 0
- ],
- "rotation":[
- -1.266017E-09,
- 3.201422E-10,
- -4.053053E-19,
- -1
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"MeshSprite3D",
- "instanceID":573,
- "props":{
- "name":"boss_mask1",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.3009997,
- 0.2219998,
- 0.082
- ],
- "rotation":[
- 0.7071069,
- 5.507924E-08,
- 0.7071066,
- 3.043558E-08
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/boss_mask1-boss_mask1.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/PolygonBattleRoyale_Texture_01_A.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- },
- {
- "type":"MeshSprite3D",
- "instanceID":574,
- "props":{
- "name":"boss_mask2",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.2249995,
- 0,
- 0
- ],
- "rotation":[
- 0.7071069,
- 5.507924E-08,
- 0.7071066,
- 3.043558E-08
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/boss_mask2-boss_mask2.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/PolygonBattleRoyale_Texture_01_A.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- },
- {
- "type":"MeshSprite3D",
- "instanceID":575,
- "props":{
- "name":"boss_mask3",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.3069996,
- 0.3149998,
- 0
- ],
- "rotation":[
- 0.7071069,
- 5.507924E-08,
- 0.7071066,
- 3.043558E-08
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/boss_mask3-boss_mask3.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/PolygonBattleRoyale_Texture_01_A.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- },
- {
- "type":"MeshSprite3D",
- "instanceID":576,
- "props":{
- "name":"boss_mask4",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.5399997,
- 0,
- 0
- ],
- "rotation":[
- 0.7071069,
- 5.507924E-08,
- 0.7071066,
- 3.043558E-08
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/boss_mask4-boss_mask4.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/boss_mask.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- },
- {
- "type":"MeshSprite3D",
- "instanceID":577,
- "props":{
- "name":"boss_mask5",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.4519996,
- 0.1299998,
- 0
- ],
- "rotation":[
- 0.7071069,
- 5.507924E-08,
- 0.7071066,
- 3.043558E-08
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/boss_mask5-boss_mask5.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/boss_mask.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":578,
- "props":{
- "name":"Bip001 L Clavicle",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.08806749,
- -0.06957286,
- 0.1528392
- ],
- "rotation":[
- -0.7071068,
- 0.0002815294,
- -0.7071068,
- -0.0002815294
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":579,
- "props":{
- "name":"Bip001 L UpperArm",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1244329,
- 1.211166E-08,
- 0
- ],
- "rotation":[
- -0.0807358,
- -0.3845504,
- 0.6300297,
- -0.6698248
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":580,
- "props":{
- "name":"Bip001 L Forearm",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.3610564,
- -2.422333E-08,
- 0
- ],
- "rotation":[
- 5.482147E-08,
- 3.148666E-08,
- 0.2609955,
- -0.96534
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":581,
- "props":{
- "name":"Bip001 L Hand",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.3326436,
- -4.844665E-08,
- 0
- ],
- "rotation":[
- 0.7970539,
- 0.11437,
- -0.05000184,
- -0.5908676
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":582,
- "props":{
- "name":"Bip001 L Finger0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.04592988,
- 0.05162834,
- -0.1345188
- ],
- "rotation":[
- -0.6620291,
- -0.4407398,
- 0.03774102,
- -0.6050137
- ],
- "scale":[
- 0.9999999,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":583,
- "props":{
- "name":"Bip001 L Finger01",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.09051713,
- -9.689331E-08,
- 0
- ],
- "rotation":[
- -0.1327531,
- -0.02347187,
- -0.1725187,
- -0.9757372
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":584,
- "props":{
- "name":"Bip001 L Finger0Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.09053599,
- -4.844665E-08,
- 0
- ],
- "rotation":[
- 0,
- 1.490116E-08,
- 0,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":585,
- "props":{
- "name":"Bip001 L Finger1",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1926583,
- -9.185485E-05,
- -0.1152864
- ],
- "rotation":[
- -0.1120009,
- -0.1014467,
- -0.7343396,
- -0.6617475
- ],
- "scale":[
- 1,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":586,
- "props":{
- "name":"Bip001 L Finger11",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.09784713,
- -2.422333E-08,
- 9.689331E-08
- ],
- "rotation":[
- -1.954485E-08,
- -2.673127E-08,
- -0.4692067,
- -0.8830884
- ],
- "scale":[
- 0.9999999,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":587,
- "props":{
- "name":"Bip001 L Finger1Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.08497378,
- 0,
- 0
- ],
- "rotation":[
- -2.980233E-08,
- -3.259629E-09,
- 1.862645E-09,
- -1
- ],
- "scale":[
- 1,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":588,
- "props":{
- "name":"Bip001 L Finger2",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2190966,
- 4.360199E-06,
- 0.005550921
- ],
- "rotation":[
- -0.01310218,
- -0.01378077,
- -0.7039282,
- -0.7100165
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":589,
- "props":{
- "name":"Bip001 L Finger21",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.08980111,
- -4.844665E-08,
- 0
- ],
- "rotation":[
- 2.671456E-09,
- 2.673029E-08,
- -0.4692067,
- -0.8830884
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":590,
- "props":{
- "name":"Bip001 L Finger2Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.08684877,
- 0,
- 0
- ],
- "rotation":[
- -1.490116E-08,
- 5.551116E-17,
- 3.725291E-09,
- -1
- ],
- "scale":[
- 0.9999999,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":591,
- "props":{
- "name":"Bip001 L Finger3",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2011745,
- 0.02645362,
- 0.1217923
- ],
- "rotation":[
- 0.04285579,
- 0.03415127,
- -0.7427883,
- -0.66728
- ],
- "scale":[
- 1,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":592,
- "props":{
- "name":"Bip001 L Finger31",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.08568353,
- 4.844665E-08,
- 4.844665E-08
- ],
- "rotation":[
- -2.991621E-08,
- -6.97927E-09,
- -0.456603,
- -0.8896706
- ],
- "scale":[
- 1,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":593,
- "props":{
- "name":"Bip001 L Finger3Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.07275929,
- 4.844665E-08,
- -9.689331E-08
- ],
- "rotation":[
- -1.490116E-08,
- 1.490116E-08,
- -2.235174E-08,
- -1
- ],
- "scale":[
- 1,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":594,
- "props":{
- "name":"Bip001 R Clavicle",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.08806749,
- -0.06957202,
- -0.1528396
- ],
- "rotation":[
- -0.7071068,
- 0.0002815294,
- 0.7071068,
- 0.0002815294
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":595,
- "props":{
- "name":"Bip001 R UpperArm",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1244329,
- 1.211166E-08,
- -9.689331E-08
- ],
- "rotation":[
- -0.0760611,
- 0.3793761,
- 0.4555449,
- -0.8017278
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":596,
- "props":{
- "name":"Bip001 R Forearm",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.3610564,
- -4.844665E-08,
- 0
- ],
- "rotation":[
- 7.1036E-09,
- 1.414943E-08,
- 0.4486725,
- -0.8936962
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":597,
- "props":{
- "name":"Bip001 R Hand",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.3326436,
- 0,
- -9.689331E-08
- ],
- "rotation":[
- -0.9731162,
- 0.2073372,
- -0.06521925,
- -0.07617445
- ],
- "scale":[
- 1,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":598,
- "props":{
- "name":"weapon",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1300001,
- 0.08299972,
- -0.1169998
- ],
- "rotation":[
- -0.1569066,
- 2.868472E-07,
- 1.490115E-08,
- -0.9876135
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":599,
- "props":{
- "name":"Guitar",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.08310796,
- -0.8261185,
- -0.5461599,
- 0.1110438
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":600,
- "props":{
- "name":"Guitar",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 2.52,
- 0
- ],
- "rotation":[
- 0,
- 0,
- 1,
- 0
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"MeshSprite3D",
- "instanceID":601,
- "props":{
- "name":"Guitar",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.7071068,
- 0,
- 0,
- -0.7071068
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/Guitar-Guitar.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/Guitar.lmat"
- },
- {
- "path":"Assets/import/prop/Materials/qiekaimian.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- },
- {
- "type":"MeshSprite3D",
- "instanceID":602,
- "props":{
- "name":"Guitar_0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.7071068,
- 0,
- 0,
- -0.7071068
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/Guitar-Guitar_0.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/Guitar.lmat"
- },
- {
- "path":"Assets/import/prop/Materials/qiekaimian.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":603,
- "props":{
- "name":"Fireaxe",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.08310796,
- -0.8261185,
- -0.5461599,
- 0.1110438
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"MeshSprite3D",
- "instanceID":604,
- "props":{
- "name":"Fireaxe",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0.778,
- 0
- ],
- "rotation":[
- 0.2290454,
- -0.6689829,
- -0.6689832,
- -0.2290452
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/Fireaxe-Fireaxe.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/Fireaxe.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":605,
- "props":{
- "name":"Chair",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.08310796,
- -0.8261185,
- -0.5461599,
- 0.1110438
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"MeshSprite3D",
- "instanceID":606,
- "props":{
- "name":"Chair",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 1.595,
- -0.43
- ],
- "rotation":[
- -0.7071068,
- 0,
- 0,
- -0.7071068
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/Chair-Chair.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/SM_Prop_ShopInterior_Chair_01_default.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":607,
- "props":{
- "name":"Pole",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.08310796,
- -0.8261185,
- -0.5461599,
- 0.1110438
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"MeshSprite3D",
- "instanceID":608,
- "props":{
- "name":"Pole",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.7071068,
- 0,
- 0,
- -0.7071068
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/Pole-Pole.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/SM_Prop_Billboard_Pole_01_default.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":609,
- "props":{
- "name":"shuriken",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.032,
- 0.061,
- 0.046
- ],
- "rotation":[
- 0.1453146,
- 0.03839196,
- -0.005643271,
- -0.9886243
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"MeshSprite3D",
- "instanceID":610,
- "props":{
- "name":"shuriken",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0.2780003
- ],
- "rotation":[
- 0.7071069,
- -1.527368E-07,
- -7.543709E-08,
- -0.7071066
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/shuriken-shuriken.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/qiekaimian.lmat"
- },
- {
- "path":"Assets/import/prop/Materials/shuriken.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- },
- {
- "type":"MeshSprite3D",
- "instanceID":611,
- "props":{
- "name":"shuriken_0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0.2780003
- ],
- "rotation":[
- 0.7071069,
- -1.527368E-07,
- -7.543709E-08,
- -0.7071066
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/shuriken-shuriken_0.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/shuriken.lmat"
- },
- {
- "path":"Assets/import/prop/Materials/qiekaimian.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":612,
- "props":{
- "name":"Pistol",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.003,
- 0.063,
- -0.156
- ],
- "rotation":[
- -0.5069067,
- -0.5068797,
- -0.4991852,
- -0.4867574
- ],
- "scale":[
- 0.8,
- 0.8,
- 0.8
- ]
- },
- "components":[],
- "child":[
- {
- "type":"MeshSprite3D",
- "instanceID":613,
- "props":{
- "name":"Pistol",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0.531,
- 0.08
- ],
- "rotation":[
- 0.7071068,
- 0,
- 0,
- -0.7071068
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/Pistol-Pistol.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/SM_Wep_Pistol_Flare_01_default.lmat"
- },
- {
- "path":"Assets/import/prop/Materials/SM_Wep_Pistol_Flare_Trigger_01_default.lmat"
- },
- {
- "path":"Assets/import/prop/Materials/SM_Wep_Pistol_Flare_Break_01_default.lmat"
- },
- {
- "path":"Assets/import/prop/Materials/SM_Wep_Pistol_Hammer_01_default.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- },
- {
- "type":"Sprite3D",
- "instanceID":614,
- "props":{
- "name":"firepoint",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0.878,
- 1.21
- ],
- "rotation":[
- 0,
- 0,
- 0,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":615,
- "props":{
- "name":"missile",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- -0.063,
- 0,
- 0.495
- ],
- "rotation":[
- 0.5308049,
- -0.4671684,
- -0.4671684,
- -0.5308048
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"MeshSprite3D",
- "instanceID":616,
- "props":{
- "name":"missile",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0,
- 0.7071068,
- 0,
- -0.7071068
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/missile-missile.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/missile.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":617,
- "props":{
- "name":"wtaagsg",
- "active":false,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- -0.6554862,
- -0.2498584,
- 0.02930625,
- -0.7120743
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[
- {
- "type":"Rigidbody3D",
- "mass":1,
- "isKinematic":true,
- "restitution":0,
- "friction":0.5,
- "rollingFriction":0,
- "linearDamping":0,
- "angularDamping":0,
- "overrideGravity":true,
- "gravity":[
- 0,
- 0,
- 0
- ],
- "shapes":[
- {
- "type":"BoxColliderShape",
- "center":[
- 0,
- 0.52,
- 0
- ],
- "size":[
- 0.5,
- 2.5,
- 0.5
- ]
- }
- ],
- "isTrigger":true
- }
- ],
- "child":[
- {
- "type":"MeshSprite3D",
- "instanceID":618,
- "props":{
- "name":"PolySphere",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 1.57,
- 0
- ],
- "rotation":[
- -0.7071068,
- 0,
- 0,
- -0.7071068
- ],
- "scale":[
- 1,
- 1,
- 1
- ],
- "meshPath":"Assets/import/prop/PolySphere-PolySphere.lm",
- "enableRender":true,
- "materials":[
- {
- "path":"Assets/import/prop/Materials/No Name.lmat"
- }
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":619,
- "props":{
- "name":"Bip001 R Finger0",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.0459299,
- 0.05162844,
- 0.1345187
- ],
- "rotation":[
- 0.6620291,
- 0.4407397,
- 0.03774101,
- -0.6050137
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":620,
- "props":{
- "name":"Bip001 R Finger01",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.09051715,
- -9.689331E-08,
- 0
- ],
- "rotation":[
- 0.1327531,
- 0.02347191,
- -0.1725187,
- -0.9757372
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":621,
- "props":{
- "name":"Bip001 R Finger0Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.09053604,
- 0,
- 0
- ],
- "rotation":[
- 3.259629E-09,
- -4.857226E-17,
- 1,
- 1.490116E-08
- ],
- "scale":[
- -1,
- -0.9999999,
- -1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":622,
- "props":{
- "name":"Bip001 R Finger1",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.1926582,
- -9.170952E-05,
- 0.1152863
- ],
- "rotation":[
- 0.1120009,
- 0.1014466,
- -0.7343395,
- -0.6617476
- ],
- "scale":[
- 1,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":623,
- "props":{
- "name":"Bip001 R Finger11",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.09784708,
- -9.689331E-08,
- 9.689331E-08
- ],
- "rotation":[
- 4.472092E-08,
- 1.110589E-08,
- -0.4692067,
- -0.8830884
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":624,
- "props":{
- "name":"Bip001 R Finger1Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.08497374,
- -4.844665E-08,
- -9.689331E-08
- ],
- "rotation":[
- 7.45058E-09,
- 2.980232E-08,
- 1,
- -1.117587E-08
- ],
- "scale":[
- -1,
- -1,
- -1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":625,
- "props":{
- "name":"Bip001 R Finger3",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2011745,
- 0.02645367,
- -0.1217924
- ],
- "rotation":[
- -0.04285578,
- -0.03415129,
- -0.7427884,
- -0.66728
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":626,
- "props":{
- "name":"Bip001 R Finger31",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.08568353,
- 4.844665E-08,
- 0
- ],
- "rotation":[
- -3.051252E-09,
- -2.66896E-08,
- -0.4566031,
- -0.8896706
- ],
- "scale":[
- 1,
- 0.9999999,
- 1
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":627,
- "props":{
- "name":"Bip001 R Finger3Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.07275929,
- 0,
- 9.689331E-08
- ],
- "rotation":[
- 3.885781E-16,
- -1.490116E-08,
- 1,
- -2.607703E-08
- ],
- "scale":[
- -0.9999999,
- -1,
- -0.9999999
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":628,
- "props":{
- "name":"Bip001 R Finger2",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.2190966,
- 4.457092E-06,
- -0.005551018
- ],
- "rotation":[
- 0.01310219,
- 0.01378074,
- -0.7039282,
- -0.7100165
- ],
- "scale":[
- 1,
- 1,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":629,
- "props":{
- "name":"Bip001 R Finger21",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.08980121,
- 0,
- 0
- ],
- "rotation":[
- 1.665491E-08,
- 4.122027E-10,
- -0.4692067,
- -0.8830884
- ],
- "scale":[
- 0.9999999,
- 0.9999999,
- 0.9999999
- ]
- },
- "components":[],
- "child":[
- {
- "type":"Sprite3D",
- "instanceID":630,
- "props":{
- "name":"Bip001 R Finger2Nub",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0.08684877,
- -9.689331E-08,
- 9.689331E-08
- ],
- "rotation":[
- 1.490116E-08,
- 1.490116E-08,
- 1,
- -3.72529E-09
- ],
- "scale":[
- -1,
- -1,
- -1
- ]
- },
- "components":[],
- "child":[]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type":"SkinnedMeshSprite3D",
- "instanceID":631,
- "props":{
- "name":"boss",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.7071068,
- 0,
- 0,
- -0.7071068
- ],
- "scale":[
- 0.3937008,
- 0.3937008,
- 0.3937008
- ],
- "rootBone":557,
- "boundBox":{
- "min":[
- -0.8641782,
- -0.269423,
- -0.4538389
- ],
- "max":[
- 0.3425781,
- 0.5340369,
- 0.4532835
- ]
- },
- "boundSphere":{
- "center":[
- -0.2608,
- 0.1323069,
- -0.000277698
- ],
- "radius":0.8550848
- },
- "bones":[
- 564,
- 557,
- 558,
- 559,
- 569,
- 560,
- 561,
- 566,
- 565
- ],
- "materials":[
- {
- "path":"Assets/import/nijia/Materials/boss.lmat"
- },
- {
- "path":"Assets/import/nijia/Materials/qiekaimian.lmat"
- }
- ],
- "meshPath":"Assets/import/nijia/boss-boss.lm"
- },
- "components":[],
- "child":[]
- },
- {
- "type":"SkinnedMeshSprite3D",
- "instanceID":632,
- "props":{
- "name":"boss_1",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 0,
- 0
- ],
- "rotation":[
- 0.7071068,
- 0,
- 0,
- -0.7071068
- ],
- "scale":[
- 0.3937008,
- 0.3937008,
- 0.3937008
- ],
- "rootBone":558,
- "boundBox":{
- "min":[
- -0.1045146,
- -0.4219016,
- -0.5473843
- ],
- "max":[
- 1.525147,
- 0.849298,
- 0.5010793
- ]
- },
- "boundSphere":{
- "center":[
- 0.7103164,
- 0.2136982,
- -0.0231525
- ],
- "radius":1.158773
- },
- "bones":[
- 569,
- 581,
- 592,
- 591,
- 589,
- 588,
- 586,
- 585,
- 583,
- 582,
- 580,
- 579,
- 596,
- 595,
- 597,
- 626,
- 625,
- 629,
- 628,
- 623,
- 622,
- 620,
- 619,
- 571,
- 558
- ],
- "materials":[
- {
- "path":"Assets/import/nijia/Materials/boss.lmat"
- },
- {
- "path":"Assets/import/nijia/Materials/qiekaimian.lmat"
- }
- ],
- "meshPath":"Assets/import/nijia/boss-boss_1.lm"
- },
- "components":[],
- "child":[]
- }
- ]
- },
- {
- "type":"Sprite3D",
- "instanceID":633,
- "props":{
- "name":"collider",
- "active":true,
- "isStatic":false,
- "layer":0,
- "position":[
- 0,
- 1.17,
- 0.09
- ],
- "rotation":[
- 0,
- 0,
- 0,
- -1
- ],
- "scale":[
- 1,
- 1,
- 1
- ]
- },
- "components":[
- {
- "type":"PhysicsCollider",
- "restitution":0,
- "friction":0.5,
- "rollingFriction":0,
- "shapes":[
- {
- "type":"BoxColliderShape",
- "center":[
- 0,
- 0,
- 0
- ],
- "size":[
- 1.24,
- 2,
- 0.58
- ]
- }
- ],
- "isTrigger":true
- }
- ],
- "child":[]
- }
- ]
- }
- ]
- }
- }
|