test.ls 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409
  1. {
  2. "version":"LAYASCENE3D:01",
  3. "data":{
  4. "type":"Scene3D",
  5. "props":{
  6. "name":"test",
  7. "ambientColor":[
  8. 0.212,
  9. 0.227,
  10. 0.259
  11. ],
  12. "lightmaps":[],
  13. "enableFog":false,
  14. "fogStart":0,
  15. "fogRange":300,
  16. "fogColor":[
  17. 0.5,
  18. 0.5,
  19. 0.5
  20. ]
  21. },
  22. "child":[
  23. {
  24. "type":"Camera",
  25. "props":{
  26. "name":"Main Camera",
  27. "active":true,
  28. "isStatic":false,
  29. "layer":0,
  30. "position":[
  31. -5.30344,
  32. 4.861665,
  33. -9.088835
  34. ],
  35. "rotation":[
  36. 0.05687058,
  37. 0.9414479,
  38. 0.2039149,
  39. -0.2624126
  40. ],
  41. "scale":[
  42. 1,
  43. 1,
  44. 1
  45. ],
  46. "clearFlag":1,
  47. "orthographic":false,
  48. "fieldOfView":60,
  49. "nearPlane":0.3,
  50. "farPlane":1000,
  51. "viewport":[
  52. 0,
  53. 0,
  54. 1,
  55. 1
  56. ],
  57. "clearColor":[
  58. 0.1921569,
  59. 0.3019608,
  60. 0.4745098,
  61. 0
  62. ]
  63. },
  64. "components":[],
  65. "child":[]
  66. },
  67. {
  68. "type":"DirectionLight",
  69. "props":{
  70. "name":"Directional Light",
  71. "active":true,
  72. "isStatic":false,
  73. "layer":0,
  74. "position":[
  75. 0,
  76. 3,
  77. 0
  78. ],
  79. "rotation":[
  80. 0.1093816,
  81. 0.8754261,
  82. 0.4082179,
  83. -0.2345697
  84. ],
  85. "scale":[
  86. 1,
  87. 1,
  88. 1
  89. ],
  90. "intensity":1,
  91. "lightmapBakedType":0,
  92. "color":[
  93. 1,
  94. 0.9568627,
  95. 0.8392157
  96. ]
  97. },
  98. "components":[],
  99. "child":[]
  100. },
  101. {
  102. "type":"Sprite3D",
  103. "props":{
  104. "name":"Root",
  105. "active":true,
  106. "isStatic":false,
  107. "layer":0,
  108. "position":[
  109. 0,
  110. 0,
  111. 0
  112. ],
  113. "rotation":[
  114. 0,
  115. 0,
  116. 0,
  117. -1
  118. ],
  119. "scale":[
  120. 1,
  121. 1,
  122. 1
  123. ]
  124. },
  125. "components":[
  126. {
  127. "type":"Animator",
  128. "avatar":{
  129. "path":"Assets/CrackRes/Root-Root-RootAvatar.lav",
  130. "linkSprites":{
  131. "Barrel (1)":[
  132. "Barrel (1)"
  133. ],
  134. "Beardbig":[
  135. "Beardbig"
  136. ],
  137. "pCylinder10 1":[
  138. "pCylinder10 1"
  139. ],
  140. "pCylinder11 1":[
  141. "pCylinder11 1"
  142. ],
  143. "pCylinder12 1":[
  144. "pCylinder12 1"
  145. ],
  146. "Sideburns 2":[
  147. "Sideburns 2"
  148. ],
  149. "pCylinder10":[
  150. "pCylinder10"
  151. ],
  152. "pCylinder11":[
  153. "pCylinder11"
  154. ],
  155. "pCylinder12":[
  156. "pCylinder12"
  157. ],
  158. "Sideburns 3":[
  159. "Sideburns 3"
  160. ],
  161. "Eyepatch":[
  162. "Eyepatch"
  163. ],
  164. "Glasses":[
  165. "Glasses"
  166. ],
  167. "Glass":[
  168. "Glass"
  169. ],
  170. "Monacle":[
  171. "Monacle"
  172. ],
  173. "pCylinder13":[
  174. "pCylinder13"
  175. ],
  176. "Sideburns":[
  177. "Sideburns"
  178. ],
  179. "Sideburns (1)":[
  180. "Sideburns (1)"
  181. ],
  182. "Cowboyhat":[
  183. "Cowboyhat"
  184. ],
  185. "Baseball":[
  186. "Baseball"
  187. ],
  188. "Beehive1":[
  189. "Beehive1"
  190. ],
  191. "Bowlerhat":[
  192. "Bowlerhat"
  193. ],
  194. "Creepy":[
  195. "Creepy"
  196. ],
  197. "polySurface3":[
  198. "polySurface3"
  199. ],
  200. "polySurface4":[
  201. "polySurface4"
  202. ],
  203. "polySurface7":[
  204. "polySurface7"
  205. ],
  206. "polySurface8":[
  207. "polySurface8"
  208. ],
  209. "Halo":[
  210. "Halo"
  211. ],
  212. "pCone5":[
  213. "pCone5"
  214. ],
  215. "HorseheadFinal":[
  216. "HorseheadFinal"
  217. ],
  218. "Jesterhat":[
  219. "Jesterhat"
  220. ],
  221. "pPlatonic5":[
  222. "pPlatonic5"
  223. ],
  224. "pPlatonic6":[
  225. "pPlatonic6"
  226. ],
  227. "pPlatonic7":[
  228. "pPlatonic7"
  229. ],
  230. "pPlatonic8":[
  231. "pPlatonic8"
  232. ],
  233. "Longhair":[
  234. "Longhair"
  235. ],
  236. "Tophat":[
  237. "Tophat"
  238. ],
  239. "pCylinder19":[
  240. "pCylinder19"
  241. ],
  242. "Wall":[
  243. "Wall"
  244. ],
  245. "Beardbig 1":[
  246. "Beardbig 1"
  247. ],
  248. "pCylinder10 2":[
  249. "pCylinder10 2"
  250. ],
  251. "pCylinder11 2":[
  252. "pCylinder11 2"
  253. ],
  254. "pCylinder12 2":[
  255. "pCylinder12 2"
  256. ],
  257. "Sideburns 5":[
  258. "Sideburns 5"
  259. ],
  260. "pCylinder10 3":[
  261. "pCylinder10 3"
  262. ],
  263. "pCylinder11 3":[
  264. "pCylinder11 3"
  265. ],
  266. "pCylinder12 3":[
  267. "pCylinder12 3"
  268. ],
  269. "Sideburns 4":[
  270. "Sideburns 4"
  271. ],
  272. "Eyepatch 1":[
  273. "Eyepatch 1"
  274. ],
  275. "Glasses 1":[
  276. "Glasses 1"
  277. ],
  278. "Glass 1":[
  279. "Glass 1"
  280. ],
  281. "Monacle 1":[
  282. "Monacle 1"
  283. ],
  284. "pCylinder13 1":[
  285. "pCylinder13 1"
  286. ],
  287. "Sideburns (1) 1":[
  288. "Sideburns (1) 1"
  289. ],
  290. "Sideburns 1":[
  291. "Sideburns 1"
  292. ],
  293. "Baseball 1":[
  294. "Baseball 1"
  295. ],
  296. "Beehive1 1":[
  297. "Beehive1 1"
  298. ],
  299. "Bowlerhat 1":[
  300. "Bowlerhat 1"
  301. ],
  302. "Creepy 1":[
  303. "Creepy 1"
  304. ],
  305. "polySurface3 1":[
  306. "polySurface3 1"
  307. ],
  308. "polySurface4 1":[
  309. "polySurface4 1"
  310. ],
  311. "polySurface7 1":[
  312. "polySurface7 1"
  313. ],
  314. "polySurface8 1":[
  315. "polySurface8 1"
  316. ],
  317. "Halo 1":[
  318. "Halo 1"
  319. ],
  320. "pCone5 1":[
  321. "pCone5 1"
  322. ],
  323. "HorseheadFinal 1":[
  324. "HorseheadFinal 1"
  325. ],
  326. "Jesterhat 1":[
  327. "Jesterhat 1"
  328. ],
  329. "pPlatonic5 1":[
  330. "pPlatonic5 1"
  331. ],
  332. "pPlatonic6 1":[
  333. "pPlatonic6 1"
  334. ],
  335. "pPlatonic7 1":[
  336. "pPlatonic7 1"
  337. ],
  338. "pPlatonic8 1":[
  339. "pPlatonic8 1"
  340. ],
  341. "Longhair 1":[
  342. "Longhair 1"
  343. ],
  344. "Tophat 1":[
  345. "Tophat 1"
  346. ],
  347. "pCylinder19 1":[
  348. "pCylinder19 1"
  349. ],
  350. "GUN:pCube1":[
  351. "GUN:pCube1"
  352. ],
  353. "GUN:pCube2":[
  354. "GUN:pCube2"
  355. ],
  356. "Shell":[
  357. "Shell"
  358. ]
  359. }
  360. },
  361. "layers":[],
  362. "cullingMode":0,
  363. "playOnWake":true
  364. }
  365. ],
  366. "child":[
  367. {
  368. "type":"MeshSprite3D",
  369. "props":{
  370. "name":"Barrel (1)",
  371. "active":true,
  372. "isStatic":false,
  373. "layer":0,
  374. "position":[
  375. -0.7844373,
  376. 0.08205652,
  377. 2.812016
  378. ],
  379. "rotation":[
  380. 0,
  381. 0,
  382. 0.03419397,
  383. -0.9994152
  384. ],
  385. "scale":[
  386. 1.842307,
  387. 1.997682,
  388. 1.842307
  389. ],
  390. "meshPath":"Assets/CrackRes/Root-Barrel (1).lm",
  391. "enableRender":true,
  392. "materials":[
  393. {
  394. "type":"Laya.BlinnPhongMaterial",
  395. "path":"Assets/CrackRes/Materials/Black.lmat"
  396. }
  397. ]
  398. },
  399. "components":[],
  400. "child":[]
  401. },
  402. {
  403. "type":"MeshSprite3D",
  404. "props":{
  405. "name":"Floor",
  406. "active":true,
  407. "isStatic":false,
  408. "layer":0,
  409. "position":[
  410. 0,
  411. -0.95,
  412. 0
  413. ],
  414. "rotation":[
  415. 0,
  416. 0,
  417. 0,
  418. -1
  419. ],
  420. "scale":[
  421. 3,
  422. 1.2,
  423. 4
  424. ],
  425. "meshPath":"Assets/CrackRes/Root-Floor.lm",
  426. "enableRender":true,
  427. "materials":[
  428. {
  429. "type":"Laya.BlinnPhongMaterial",
  430. "path":"Assets/CrackRes/Materials/Floor.lmat"
  431. }
  432. ]
  433. },
  434. "components":[],
  435. "child":[]
  436. },
  437. {
  438. "type":"MeshSprite3D",
  439. "props":{
  440. "name":"Beardbig",
  441. "active":true,
  442. "isStatic":false,
  443. "layer":0,
  444. "position":[
  445. -0.9959636,
  446. 0.5269585,
  447. -2.946256
  448. ],
  449. "rotation":[
  450. 0.007027351,
  451. 0.9249814,
  452. -0.02178607,
  453. 0.3793223
  454. ],
  455. "scale":[
  456. 0.9887459,
  457. 0.9887459,
  458. 0.988746
  459. ],
  460. "meshPath":"Assets/CrackRes/Root-Beardbig.lm",
  461. "enableRender":true,
  462. "materials":[
  463. {
  464. "type":"Laya.BlinnPhongMaterial",
  465. "path":"Assets/CrackRes/Materials/Black.lmat"
  466. }
  467. ]
  468. },
  469. "components":[],
  470. "child":[]
  471. },
  472. {
  473. "type":"MeshSprite3D",
  474. "props":{
  475. "name":"pCylinder10 1",
  476. "active":true,
  477. "isStatic":false,
  478. "layer":0,
  479. "position":[
  480. -0.9024893,
  481. 0.5669444,
  482. -3.041275
  483. ],
  484. "rotation":[
  485. -0.6590298,
  486. -0.6490915,
  487. -0.2528163,
  488. -0.2836264
  489. ],
  490. "scale":[
  491. 1.729657,
  492. 1.729657,
  493. 1.729657
  494. ],
  495. "meshPath":"Assets/CrackRes/Root-pCylinder10.lm",
  496. "enableRender":true,
  497. "materials":[
  498. {
  499. "type":"Laya.BlinnPhongMaterial",
  500. "path":"Assets/CrackRes/Materials/Black.lmat"
  501. }
  502. ]
  503. },
  504. "components":[],
  505. "child":[]
  506. },
  507. {
  508. "type":"MeshSprite3D",
  509. "props":{
  510. "name":"pCylinder11 1",
  511. "active":true,
  512. "isStatic":false,
  513. "layer":0,
  514. "position":[
  515. -0.934085,
  516. 0.4641111,
  517. -3.008708
  518. ],
  519. "rotation":[
  520. 0.007027351,
  521. 0.9249814,
  522. -0.02178608,
  523. 0.3793223
  524. ],
  525. "scale":[
  526. 1.682842,
  527. 1.682842,
  528. 1.682842
  529. ],
  530. "meshPath":"Assets/CrackRes/Root-pCylinder11.lm",
  531. "enableRender":true,
  532. "materials":[
  533. {
  534. "type":"Laya.BlinnPhongMaterial",
  535. "path":"Assets/CrackRes/Materials/Black.lmat"
  536. }
  537. ]
  538. },
  539. "components":[],
  540. "child":[]
  541. },
  542. {
  543. "type":"MeshSprite3D",
  544. "props":{
  545. "name":"pCylinder12 1",
  546. "active":true,
  547. "isStatic":false,
  548. "layer":0,
  549. "position":[
  550. -0.898369,
  551. 0.7068461,
  552. -3.046157
  553. ],
  554. "rotation":[
  555. -0.6590297,
  556. -0.6490915,
  557. -0.2528164,
  558. -0.2836265
  559. ],
  560. "scale":[
  561. 1.602118,
  562. 1.602118,
  563. 1.602118
  564. ],
  565. "meshPath":"Assets/CrackRes/Root-pCylinder12.lm",
  566. "enableRender":true,
  567. "materials":[
  568. {
  569. "type":"Laya.BlinnPhongMaterial",
  570. "path":"Assets/CrackRes/Materials/Black.lmat"
  571. }
  572. ]
  573. },
  574. "components":[],
  575. "child":[]
  576. },
  577. {
  578. "type":"MeshSprite3D",
  579. "props":{
  580. "name":"Sideburns 2",
  581. "active":true,
  582. "isStatic":false,
  583. "layer":0,
  584. "position":[
  585. -1.019168,
  586. 0.6344481,
  587. -2.921944
  588. ],
  589. "rotation":[
  590. 0.007027351,
  591. 0.9249814,
  592. -0.02178607,
  593. 0.3793223
  594. ],
  595. "scale":[
  596. 1.045846,
  597. 1.045846,
  598. 1.12103
  599. ],
  600. "meshPath":"Assets/CrackRes/Root-Sideburns.lm",
  601. "enableRender":true,
  602. "materials":[
  603. {
  604. "type":"Laya.BlinnPhongMaterial",
  605. "path":"Assets/CrackRes/Materials/Black.lmat"
  606. }
  607. ]
  608. },
  609. "components":[],
  610. "child":[]
  611. },
  612. {
  613. "type":"MeshSprite3D",
  614. "props":{
  615. "name":"pCylinder10",
  616. "active":true,
  617. "isStatic":false,
  618. "layer":0,
  619. "position":[
  620. -0.9024893,
  621. 0.5669444,
  622. -3.041275
  623. ],
  624. "rotation":[
  625. -0.6590298,
  626. -0.6490915,
  627. -0.2528163,
  628. -0.2836264
  629. ],
  630. "scale":[
  631. 1.729657,
  632. 1.729657,
  633. 1.729657
  634. ],
  635. "meshPath":"Assets/CrackRes/Root-pCylinder10-copy.lm",
  636. "enableRender":true,
  637. "materials":[
  638. {
  639. "type":"Laya.BlinnPhongMaterial",
  640. "path":"Assets/CrackRes/Materials/Black.lmat"
  641. }
  642. ]
  643. },
  644. "components":[],
  645. "child":[]
  646. },
  647. {
  648. "type":"MeshSprite3D",
  649. "props":{
  650. "name":"pCylinder11",
  651. "active":true,
  652. "isStatic":false,
  653. "layer":0,
  654. "position":[
  655. -0.934085,
  656. 0.4641111,
  657. -3.008708
  658. ],
  659. "rotation":[
  660. 0.007027351,
  661. 0.9249814,
  662. -0.02178608,
  663. 0.3793223
  664. ],
  665. "scale":[
  666. 1.682842,
  667. 1.682842,
  668. 1.682842
  669. ],
  670. "meshPath":"Assets/CrackRes/Root-pCylinder11-copy.lm",
  671. "enableRender":true,
  672. "materials":[
  673. {
  674. "type":"Laya.BlinnPhongMaterial",
  675. "path":"Assets/CrackRes/Materials/Black.lmat"
  676. }
  677. ]
  678. },
  679. "components":[],
  680. "child":[]
  681. },
  682. {
  683. "type":"MeshSprite3D",
  684. "props":{
  685. "name":"pCylinder12",
  686. "active":true,
  687. "isStatic":false,
  688. "layer":0,
  689. "position":[
  690. -0.898369,
  691. 0.7068461,
  692. -3.046157
  693. ],
  694. "rotation":[
  695. -0.6590297,
  696. -0.6490915,
  697. -0.2528164,
  698. -0.2836265
  699. ],
  700. "scale":[
  701. 1.602118,
  702. 1.602118,
  703. 1.602118
  704. ],
  705. "meshPath":"Assets/CrackRes/Root-pCylinder12-copy.lm",
  706. "enableRender":true,
  707. "materials":[
  708. {
  709. "type":"Laya.BlinnPhongMaterial",
  710. "path":"Assets/CrackRes/Materials/Black.lmat"
  711. }
  712. ]
  713. },
  714. "components":[],
  715. "child":[]
  716. },
  717. {
  718. "type":"MeshSprite3D",
  719. "props":{
  720. "name":"Sideburns 3",
  721. "active":true,
  722. "isStatic":false,
  723. "layer":0,
  724. "position":[
  725. -1.019168,
  726. 0.6344481,
  727. -2.921944
  728. ],
  729. "rotation":[
  730. 0.007027351,
  731. 0.9249814,
  732. -0.02178607,
  733. 0.3793223
  734. ],
  735. "scale":[
  736. 1.045846,
  737. 1.045846,
  738. 1.12103
  739. ],
  740. "meshPath":"Assets/CrackRes/Root-Sideburns-copy.lm",
  741. "enableRender":true,
  742. "materials":[
  743. {
  744. "type":"Laya.BlinnPhongMaterial",
  745. "path":"Assets/CrackRes/Materials/Black.lmat"
  746. }
  747. ]
  748. },
  749. "components":[],
  750. "child":[]
  751. },
  752. {
  753. "type":"MeshSprite3D",
  754. "props":{
  755. "name":"Eyepatch",
  756. "active":true,
  757. "isStatic":false,
  758. "layer":0,
  759. "position":[
  760. -1.016408,
  761. 0.6807848,
  762. -2.926291
  763. ],
  764. "rotation":[
  765. 0.007027352,
  766. 0.9249814,
  767. -0.02178608,
  768. 0.3793223
  769. ],
  770. "scale":[
  771. 1.123177,
  772. 1.123177,
  773. 1.123177
  774. ],
  775. "meshPath":"Assets/CrackRes/Root-Eyepatch.lm",
  776. "enableRender":true,
  777. "materials":[
  778. {
  779. "type":"Laya.BlinnPhongMaterial",
  780. "path":"Assets/CrackRes/Materials/Black.lmat"
  781. }
  782. ]
  783. },
  784. "components":[],
  785. "child":[]
  786. },
  787. {
  788. "type":"MeshSprite3D",
  789. "props":{
  790. "name":"Glasses",
  791. "active":true,
  792. "isStatic":false,
  793. "layer":0,
  794. "position":[
  795. -0.8971162,
  796. 0.6336818,
  797. -3.047791
  798. ],
  799. "rotation":[
  800. -0.2731905,
  801. -0.6386555,
  802. 0.6694657,
  803. -0.2632523
  804. ],
  805. "scale":[
  806. 1.467438,
  807. 1.467438,
  808. 1.467438
  809. ],
  810. "meshPath":"Assets/CrackRes/Root-Glasses.lm",
  811. "enableRender":true,
  812. "materials":[
  813. {
  814. "type":"Laya.BlinnPhongMaterial",
  815. "path":"Assets/CrackRes/Materials/Black.lmat"
  816. }
  817. ]
  818. },
  819. "components":[],
  820. "child":[]
  821. },
  822. {
  823. "type":"MeshSprite3D",
  824. "props":{
  825. "name":"Glass",
  826. "active":true,
  827. "isStatic":false,
  828. "layer":0,
  829. "position":[
  830. -0.8973838,
  831. 0.6344368,
  832. -3.051176
  833. ],
  834. "rotation":[
  835. 0.007027351,
  836. 0.9249814,
  837. -0.02178607,
  838. 0.3793223
  839. ],
  840. "scale":[
  841. 1.045846,
  842. 1.045846,
  843. 1.045846
  844. ],
  845. "meshPath":"Assets/CrackRes/Root-Glass.lm",
  846. "enableRender":true,
  847. "materials":[
  848. {
  849. "type":"Laya.BlinnPhongMaterial",
  850. "path":"Assets/CrackRes/Materials/Glasses.lmat"
  851. }
  852. ]
  853. },
  854. "components":[],
  855. "child":[]
  856. },
  857. {
  858. "type":"MeshSprite3D",
  859. "props":{
  860. "name":"Monacle",
  861. "active":true,
  862. "isStatic":false,
  863. "layer":0,
  864. "position":[
  865. -0.9728292,
  866. 0.6411074,
  867. -3.093915
  868. ],
  869. "rotation":[
  870. -0.04765337,
  871. -0.6889458,
  872. 0.7011651,
  873. -0.1773424
  874. ],
  875. "scale":[
  876. 1.045846,
  877. 1.045846,
  878. 1.045846
  879. ],
  880. "meshPath":"Assets/CrackRes/Root-Monacle.lm",
  881. "enableRender":true,
  882. "materials":[
  883. {
  884. "type":"Laya.BlinnPhongMaterial",
  885. "path":"Assets/CrackRes/Materials/Black.lmat"
  886. }
  887. ]
  888. },
  889. "components":[],
  890. "child":[]
  891. },
  892. {
  893. "type":"MeshSprite3D",
  894. "props":{
  895. "name":"pCylinder13",
  896. "active":true,
  897. "isStatic":false,
  898. "layer":0,
  899. "position":[
  900. -0.9738186,
  901. 0.3829126,
  902. -2.967995
  903. ],
  904. "rotation":[
  905. -0.6490915,
  906. 0.6590297,
  907. -0.2836264,
  908. 0.2528163
  909. ],
  910. "scale":[
  911. 1.045846,
  912. 1.045846,
  913. 1.045846
  914. ],
  915. "meshPath":"Assets/CrackRes/Root-pCylinder13.lm",
  916. "enableRender":true,
  917. "materials":[
  918. {
  919. "type":"Laya.BlinnPhongMaterial",
  920. "path":"Assets/CrackRes/Materials/Black.lmat"
  921. }
  922. ]
  923. },
  924. "components":[],
  925. "child":[]
  926. },
  927. {
  928. "type":"MeshSprite3D",
  929. "props":{
  930. "name":"Sideburns",
  931. "active":true,
  932. "isStatic":false,
  933. "layer":0,
  934. "position":[
  935. -1.019168,
  936. 0.6344481,
  937. -2.921944
  938. ],
  939. "rotation":[
  940. 0.007027351,
  941. 0.9249814,
  942. -0.02178607,
  943. 0.3793223
  944. ],
  945. "scale":[
  946. 1.045846,
  947. 1.045846,
  948. 1.12103
  949. ],
  950. "meshPath":"Assets/CrackRes/Root-Sideburns-copy-copy.lm",
  951. "enableRender":true,
  952. "materials":[
  953. {
  954. "type":"Laya.BlinnPhongMaterial",
  955. "path":"Assets/CrackRes/Materials/Black.lmat"
  956. }
  957. ]
  958. },
  959. "components":[],
  960. "child":[]
  961. },
  962. {
  963. "type":"MeshSprite3D",
  964. "props":{
  965. "name":"Sideburns (1)",
  966. "active":true,
  967. "isStatic":false,
  968. "layer":0,
  969. "position":[
  970. -1.019168,
  971. 0.6344481,
  972. -2.921944
  973. ],
  974. "rotation":[
  975. 0.007027351,
  976. 0.9249814,
  977. -0.02178607,
  978. 0.3793223
  979. ],
  980. "scale":[
  981. 1.045846,
  982. 1.045846,
  983. 1.12103
  984. ],
  985. "meshPath":"Assets/CrackRes/Root-Sideburns (1).lm",
  986. "enableRender":true,
  987. "materials":[
  988. {
  989. "type":"Laya.BlinnPhongMaterial",
  990. "path":"Assets/CrackRes/Materials/Black.lmat"
  991. }
  992. ]
  993. },
  994. "components":[],
  995. "child":[]
  996. },
  997. {
  998. "type":"MeshSprite3D",
  999. "props":{
  1000. "name":"Cowboyhat",
  1001. "active":true,
  1002. "isStatic":false,
  1003. "layer":0,
  1004. "position":[
  1005. -1.014572,
  1006. 0.8711184,
  1007. -2.876405
  1008. ],
  1009. "rotation":[
  1010. -0.01269781,
  1011. 0.4266444,
  1012. 0.08028768,
  1013. -0.9007592
  1014. ],
  1015. "scale":[
  1016. 1,
  1017. 1,
  1018. 1
  1019. ],
  1020. "meshPath":"Assets/CrackRes/Root-Cowboyhat.lm",
  1021. "enableRender":true,
  1022. "materials":[
  1023. {
  1024. "type":"Laya.BlinnPhongMaterial",
  1025. "path":"Assets/CrackRes/Materials/lambert1.lmat"
  1026. }
  1027. ]
  1028. },
  1029. "components":[],
  1030. "child":[]
  1031. },
  1032. {
  1033. "type":"MeshSprite3D",
  1034. "props":{
  1035. "name":"Baseball",
  1036. "active":true,
  1037. "isStatic":false,
  1038. "layer":0,
  1039. "position":[
  1040. -0.9742125,
  1041. 0.7984791,
  1042. -2.972817
  1043. ],
  1044. "rotation":[
  1045. -0.04236054,
  1046. -0.3836488,
  1047. -0.105784,
  1048. -0.9164218
  1049. ],
  1050. "scale":[
  1051. 0.4,
  1052. 0.4000001,
  1053. 0.4000001
  1054. ],
  1055. "meshPath":"Assets/CrackRes/Root-Baseball.lm",
  1056. "enableRender":true,
  1057. "materials":[
  1058. {
  1059. "type":"Laya.BlinnPhongMaterial",
  1060. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1061. }
  1062. ]
  1063. },
  1064. "components":[],
  1065. "child":[]
  1066. },
  1067. {
  1068. "type":"MeshSprite3D",
  1069. "props":{
  1070. "name":"Beehive1",
  1071. "active":true,
  1072. "isStatic":false,
  1073. "layer":0,
  1074. "position":[
  1075. -1.074356,
  1076. 0.7058473,
  1077. -2.87391
  1078. ],
  1079. "rotation":[
  1080. 0.007027376,
  1081. 0.9249814,
  1082. -0.02178613,
  1083. 0.3793223
  1084. ],
  1085. "scale":[
  1086. 1.09124,
  1087. 1.09124,
  1088. 1.09124
  1089. ],
  1090. "meshPath":"Assets/CrackRes/Root-Beehive1.lm",
  1091. "enableRender":true,
  1092. "materials":[
  1093. {
  1094. "type":"Laya.BlinnPhongMaterial",
  1095. "path":"Assets/CrackRes/Materials/Facialhair.lmat"
  1096. }
  1097. ]
  1098. },
  1099. "components":[],
  1100. "child":[]
  1101. },
  1102. {
  1103. "type":"MeshSprite3D",
  1104. "props":{
  1105. "name":"Bowlerhat",
  1106. "active":true,
  1107. "isStatic":false,
  1108. "layer":0,
  1109. "position":[
  1110. -1.031374,
  1111. 0.8320232,
  1112. -2.909305
  1113. ],
  1114. "rotation":[
  1115. 0.007027374,
  1116. 0.9249814,
  1117. -0.02178613,
  1118. 0.3793223
  1119. ],
  1120. "scale":[
  1121. 0.9896402,
  1122. 0.9896402,
  1123. 0.9896403
  1124. ],
  1125. "meshPath":"Assets/CrackRes/Root-Bowlerhat.lm",
  1126. "enableRender":true,
  1127. "materials":[
  1128. {
  1129. "type":"Laya.BlinnPhongMaterial",
  1130. "path":"Assets/CrackRes/Materials/Facialhair.lmat"
  1131. }
  1132. ]
  1133. },
  1134. "components":[],
  1135. "child":[]
  1136. },
  1137. {
  1138. "type":"MeshSprite3D",
  1139. "props":{
  1140. "name":"Creepy",
  1141. "active":true,
  1142. "isStatic":false,
  1143. "layer":0,
  1144. "position":[
  1145. -1.033907,
  1146. 0.66186,
  1147. -2.911009
  1148. ],
  1149. "rotation":[
  1150. 0.01043602,
  1151. -0.3858392,
  1152. 0.02037423,
  1153. -0.922282
  1154. ],
  1155. "scale":[
  1156. 42.87167,
  1157. 40.35303,
  1158. 40.12305
  1159. ],
  1160. "meshPath":"Assets/CrackRes/Root-Creepy.lm",
  1161. "enableRender":true,
  1162. "materials":[
  1163. {
  1164. "type":"Laya.BlinnPhongMaterial",
  1165. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1166. }
  1167. ]
  1168. },
  1169. "components":[],
  1170. "child":[]
  1171. },
  1172. {
  1173. "type":"MeshSprite3D",
  1174. "props":{
  1175. "name":"polySurface3",
  1176. "active":true,
  1177. "isStatic":false,
  1178. "layer":0,
  1179. "position":[
  1180. -1.025747,
  1181. 0.8898422,
  1182. -2.919292
  1183. ],
  1184. "rotation":[
  1185. 0.01043602,
  1186. -0.3858392,
  1187. 0.02037423,
  1188. -0.922282
  1189. ],
  1190. "scale":[
  1191. 0.3805589,
  1192. 0.3805589,
  1193. 0.3805588
  1194. ],
  1195. "meshPath":"Assets/CrackRes/Root-polySurface3.lm",
  1196. "enableRender":true,
  1197. "materials":[
  1198. {
  1199. "type":"Laya.BlinnPhongMaterial",
  1200. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1201. }
  1202. ]
  1203. },
  1204. "components":[],
  1205. "child":[]
  1206. },
  1207. {
  1208. "type":"MeshSprite3D",
  1209. "props":{
  1210. "name":"polySurface4",
  1211. "active":true,
  1212. "isStatic":false,
  1213. "layer":0,
  1214. "position":[
  1215. -1.086458,
  1216. 0.9292958,
  1217. -2.903075
  1218. ],
  1219. "rotation":[
  1220. 0.01043602,
  1221. -0.3858392,
  1222. 0.02037423,
  1223. -0.922282
  1224. ],
  1225. "scale":[
  1226. 0.3805589,
  1227. 0.3805589,
  1228. 0.3805588
  1229. ],
  1230. "meshPath":"Assets/CrackRes/Root-polySurface4.lm",
  1231. "enableRender":true,
  1232. "materials":[
  1233. {
  1234. "type":"Laya.BlinnPhongMaterial",
  1235. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1236. }
  1237. ]
  1238. },
  1239. "components":[],
  1240. "child":[]
  1241. },
  1242. {
  1243. "type":"MeshSprite3D",
  1244. "props":{
  1245. "name":"polySurface7",
  1246. "active":true,
  1247. "isStatic":false,
  1248. "layer":0,
  1249. "position":[
  1250. -0.9383571,
  1251. 0.5137499,
  1252. -3.007188
  1253. ],
  1254. "rotation":[
  1255. 0.01043602,
  1256. -0.3858392,
  1257. 0.02037423,
  1258. -0.922282
  1259. ],
  1260. "scale":[
  1261. 0.3607643,
  1262. 0.3906955,
  1263. 0.3906954
  1264. ],
  1265. "meshPath":"Assets/CrackRes/Root-polySurface7.lm",
  1266. "enableRender":true,
  1267. "materials":[
  1268. {
  1269. "type":"Laya.BlinnPhongMaterial",
  1270. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1271. }
  1272. ]
  1273. },
  1274. "components":[],
  1275. "child":[]
  1276. },
  1277. {
  1278. "type":"MeshSprite3D",
  1279. "props":{
  1280. "name":"polySurface8",
  1281. "active":true,
  1282. "isStatic":false,
  1283. "layer":0,
  1284. "position":[
  1285. -1.053442,
  1286. 0.668592,
  1287. -2.891227
  1288. ],
  1289. "rotation":[
  1290. 0.01043602,
  1291. -0.3858392,
  1292. 0.02037423,
  1293. -0.922282
  1294. ],
  1295. "scale":[
  1296. 0.3607643,
  1297. 0.3906955,
  1298. 0.3906954
  1299. ],
  1300. "meshPath":"Assets/CrackRes/Root-polySurface8.lm",
  1301. "enableRender":true,
  1302. "materials":[
  1303. {
  1304. "type":"Laya.BlinnPhongMaterial",
  1305. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1306. }
  1307. ]
  1308. },
  1309. "components":[],
  1310. "child":[]
  1311. },
  1312. {
  1313. "type":"MeshSprite3D",
  1314. "props":{
  1315. "name":"Halo",
  1316. "active":true,
  1317. "isStatic":false,
  1318. "layer":0,
  1319. "position":[
  1320. -1.036927,
  1321. 0.8922973,
  1322. -2.907964
  1323. ],
  1324. "rotation":[
  1325. 0.01043602,
  1326. -0.3858392,
  1327. 0.02037422,
  1328. -0.922282
  1329. ],
  1330. "scale":[
  1331. 17.98917,
  1332. 12.32886,
  1333. 17.98917
  1334. ],
  1335. "meshPath":"Assets/CrackRes/Root-Halo.lm",
  1336. "enableRender":true,
  1337. "materials":[
  1338. {
  1339. "type":"Laya.BlinnPhongMaterial",
  1340. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1341. }
  1342. ]
  1343. },
  1344. "components":[],
  1345. "child":[]
  1346. },
  1347. {
  1348. "type":"MeshSprite3D",
  1349. "props":{
  1350. "name":"pCone5",
  1351. "active":true,
  1352. "isStatic":false,
  1353. "layer":0,
  1354. "position":[
  1355. -1.045521,
  1356. 0.8412927,
  1357. -2.908106
  1358. ],
  1359. "rotation":[
  1360. -0.002640526,
  1361. -0.3859712,
  1362. -0.01088037,
  1363. -0.9224429
  1364. ],
  1365. "scale":[
  1366. 0.40964,
  1367. 0.40964,
  1368. 0.40964
  1369. ],
  1370. "meshPath":"Assets/CrackRes/Root-pCone5.lm",
  1371. "enableRender":true,
  1372. "materials":[
  1373. {
  1374. "type":"Laya.BlinnPhongMaterial",
  1375. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1376. }
  1377. ]
  1378. },
  1379. "components":[],
  1380. "child":[]
  1381. },
  1382. {
  1383. "type":"MeshSprite3D",
  1384. "props":{
  1385. "name":"HorseheadFinal",
  1386. "active":true,
  1387. "isStatic":false,
  1388. "layer":0,
  1389. "position":[
  1390. -0.9580605,
  1391. 0.7227052,
  1392. -2.979368
  1393. ],
  1394. "rotation":[
  1395. 0.007027375,
  1396. 0.9249814,
  1397. -0.02178613,
  1398. 0.3793223
  1399. ],
  1400. "scale":[
  1401. 0.969995,
  1402. 0.9699948,
  1403. 0.9699949
  1404. ],
  1405. "meshPath":"Assets/CrackRes/Root-HorseheadFinal.lm",
  1406. "enableRender":true,
  1407. "materials":[
  1408. {
  1409. "type":"Laya.BlinnPhongMaterial",
  1410. "path":"Assets/CrackRes/Materials/Facialhair.lmat"
  1411. }
  1412. ]
  1413. },
  1414. "components":[],
  1415. "child":[]
  1416. },
  1417. {
  1418. "type":"MeshSprite3D",
  1419. "props":{
  1420. "name":"Jesterhat",
  1421. "active":true,
  1422. "isStatic":false,
  1423. "layer":0,
  1424. "position":[
  1425. -1.012401,
  1426. 0.8922816,
  1427. -2.922017
  1428. ],
  1429. "rotation":[
  1430. 0.01043602,
  1431. -0.3858392,
  1432. 0.02037423,
  1433. -0.922282
  1434. ],
  1435. "scale":[
  1436. 0.285608,
  1437. 0.2856081,
  1438. 0.2856081
  1439. ],
  1440. "meshPath":"Assets/CrackRes/Root-Jesterhat.lm",
  1441. "enableRender":true,
  1442. "materials":[
  1443. {
  1444. "type":"Laya.BlinnPhongMaterial",
  1445. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1446. }
  1447. ]
  1448. },
  1449. "components":[],
  1450. "child":[]
  1451. },
  1452. {
  1453. "type":"MeshSprite3D",
  1454. "props":{
  1455. "name":"pPlatonic5",
  1456. "active":true,
  1457. "isStatic":false,
  1458. "layer":0,
  1459. "position":[
  1460. -1.009853,
  1461. 0.9520269,
  1462. -3.28065
  1463. ],
  1464. "rotation":[
  1465. 0.01043602,
  1466. -0.3858392,
  1467. 0.02037423,
  1468. -0.922282
  1469. ],
  1470. "scale":[
  1471. 0.285608,
  1472. 0.2856081,
  1473. 0.2856081
  1474. ],
  1475. "meshPath":"Assets/CrackRes/Root-pPlatonic5.lm",
  1476. "enableRender":true,
  1477. "materials":[
  1478. {
  1479. "type":"Laya.BlinnPhongMaterial",
  1480. "path":"Assets/CrackRes/Materials/Black.lmat"
  1481. }
  1482. ]
  1483. },
  1484. "components":[],
  1485. "child":[]
  1486. },
  1487. {
  1488. "type":"MeshSprite3D",
  1489. "props":{
  1490. "name":"pPlatonic6",
  1491. "active":true,
  1492. "isStatic":false,
  1493. "layer":0,
  1494. "position":[
  1495. -0.6800008,
  1496. 0.9511374,
  1497. -2.888734
  1498. ],
  1499. "rotation":[
  1500. 0.01043602,
  1501. -0.3858392,
  1502. 0.02037423,
  1503. -0.922282
  1504. ],
  1505. "scale":[
  1506. 0.285608,
  1507. 0.2856081,
  1508. 0.2856081
  1509. ],
  1510. "meshPath":"Assets/CrackRes/Root-pPlatonic6.lm",
  1511. "enableRender":true,
  1512. "materials":[
  1513. {
  1514. "type":"Laya.BlinnPhongMaterial",
  1515. "path":"Assets/CrackRes/Materials/Black.lmat"
  1516. }
  1517. ]
  1518. },
  1519. "components":[],
  1520. "child":[]
  1521. },
  1522. {
  1523. "type":"MeshSprite3D",
  1524. "props":{
  1525. "name":"pPlatonic7",
  1526. "active":true,
  1527. "isStatic":false,
  1528. "layer":0,
  1529. "position":[
  1530. -1.034525,
  1531. 0.9445289,
  1532. -2.586792
  1533. ],
  1534. "rotation":[
  1535. 0.01043602,
  1536. -0.3858392,
  1537. 0.02037423,
  1538. -0.922282
  1539. ],
  1540. "scale":[
  1541. 0.285608,
  1542. 0.2856081,
  1543. 0.2856081
  1544. ],
  1545. "meshPath":"Assets/CrackRes/Root-pPlatonic7.lm",
  1546. "enableRender":true,
  1547. "materials":[
  1548. {
  1549. "type":"Laya.BlinnPhongMaterial",
  1550. "path":"Assets/CrackRes/Materials/Black.lmat"
  1551. }
  1552. ]
  1553. },
  1554. "components":[],
  1555. "child":[]
  1556. },
  1557. {
  1558. "type":"MeshSprite3D",
  1559. "props":{
  1560. "name":"pPlatonic8",
  1561. "active":true,
  1562. "isStatic":false,
  1563. "layer":0,
  1564. "position":[
  1565. -1.350177,
  1566. 0.8435374,
  1567. -2.927998
  1568. ],
  1569. "rotation":[
  1570. 0.01043602,
  1571. -0.3858392,
  1572. 0.02037423,
  1573. -0.922282
  1574. ],
  1575. "scale":[
  1576. 0.285608,
  1577. 0.2856081,
  1578. 0.2856081
  1579. ],
  1580. "meshPath":"Assets/CrackRes/Root-pPlatonic8.lm",
  1581. "enableRender":true,
  1582. "materials":[
  1583. {
  1584. "type":"Laya.BlinnPhongMaterial",
  1585. "path":"Assets/CrackRes/Materials/Black.lmat"
  1586. }
  1587. ]
  1588. },
  1589. "components":[],
  1590. "child":[]
  1591. },
  1592. {
  1593. "type":"MeshSprite3D",
  1594. "props":{
  1595. "name":"Longhair",
  1596. "active":true,
  1597. "isStatic":false,
  1598. "layer":0,
  1599. "position":[
  1600. -1.05249,
  1601. 0.6384711,
  1602. -2.91996
  1603. ],
  1604. "rotation":[
  1605. -0.2731905,
  1606. -0.6386556,
  1607. 0.6694656,
  1608. -0.2632523
  1609. ],
  1610. "scale":[
  1611. 1.079224,
  1612. 1.079224,
  1613. 1.079224
  1614. ],
  1615. "meshPath":"Assets/CrackRes/Root-Longhair.lm",
  1616. "enableRender":true,
  1617. "materials":[
  1618. {
  1619. "type":"Laya.BlinnPhongMaterial",
  1620. "path":"Assets/CrackRes/Materials/Facialhair.lmat"
  1621. }
  1622. ]
  1623. },
  1624. "components":[],
  1625. "child":[]
  1626. },
  1627. {
  1628. "type":"MeshSprite3D",
  1629. "props":{
  1630. "name":"Tophat",
  1631. "active":true,
  1632. "isStatic":false,
  1633. "layer":0,
  1634. "position":[
  1635. -0.994131,
  1636. 0.9534987,
  1637. -2.873624
  1638. ],
  1639. "rotation":[
  1640. -0.06520188,
  1641. -0.3828705,
  1642. 0.05193429,
  1643. -0.9200335
  1644. ],
  1645. "scale":[
  1646. 22.61088,
  1647. 23.97767,
  1648. 22.61088
  1649. ],
  1650. "meshPath":"Assets/CrackRes/Root-Tophat.lm",
  1651. "enableRender":true,
  1652. "materials":[
  1653. {
  1654. "type":"Laya.BlinnPhongMaterial",
  1655. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1656. }
  1657. ]
  1658. },
  1659. "components":[],
  1660. "child":[]
  1661. },
  1662. {
  1663. "type":"MeshSprite3D",
  1664. "props":{
  1665. "name":"pCylinder19",
  1666. "active":true,
  1667. "isStatic":false,
  1668. "layer":0,
  1669. "position":[
  1670. -1.108613,
  1671. 0.7321582,
  1672. -2.84185
  1673. ],
  1674. "rotation":[
  1675. 0.01043602,
  1676. -0.3858392,
  1677. 0.02037422,
  1678. -0.922282
  1679. ],
  1680. "scale":[
  1681. 0.4336401,
  1682. 0.4336401,
  1683. 0.43364
  1684. ],
  1685. "meshPath":"Assets/CrackRes/Root-pCylinder19.lm",
  1686. "enableRender":true,
  1687. "materials":[
  1688. {
  1689. "type":"Laya.BlinnPhongMaterial",
  1690. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  1691. }
  1692. ]
  1693. },
  1694. "components":[],
  1695. "child":[]
  1696. },
  1697. {
  1698. "type":"SkinnedMeshSprite3D",
  1699. "props":{
  1700. "name":"pasted__polySurface11",
  1701. "active":true,
  1702. "isStatic":false,
  1703. "layer":0,
  1704. "position":[
  1705. 0.8857493,
  1706. -0.8724922,
  1707. 1.63697
  1708. ],
  1709. "rotation":[
  1710. 2.513739E-17,
  1711. 0.8819214,
  1712. 2.513739E-17,
  1713. 0.4713967
  1714. ],
  1715. "scale":[
  1716. 0.9999999,
  1717. 1,
  1718. 0.9999999
  1719. ],
  1720. "rootBone":"Floppy_Hips",
  1721. "boundBox":{
  1722. "min":[
  1723. -0.8979985,
  1724. -0.2801093,
  1725. -0.4452637
  1726. ],
  1727. "max":[
  1728. 0.936267,
  1729. 0.7032702,
  1730. 0.4029822
  1731. ]
  1732. },
  1733. "boundSphere":{
  1734. "center":[
  1735. 0.01913431,
  1736. 0.2115805,
  1737. -0.02114075
  1738. ],
  1739. "radius":1.123731
  1740. },
  1741. "materials":[
  1742. {
  1743. "type":"Laya.BlinnPhongMaterial",
  1744. "path":"Assets/CrackRes/Materials/Gray.lmat"
  1745. }
  1746. ],
  1747. "meshPath":"Assets/CrackRes/Root-pasted__polySurface11.lm"
  1748. },
  1749. "components":[],
  1750. "child":[]
  1751. },
  1752. {
  1753. "type":"MeshSprite3D",
  1754. "props":{
  1755. "name":"Wall",
  1756. "active":true,
  1757. "isStatic":false,
  1758. "layer":0,
  1759. "position":[
  1760. 0.97,
  1761. 0.161,
  1762. 0.81
  1763. ],
  1764. "rotation":[
  1765. 0,
  1766. 0,
  1767. 0,
  1768. -1
  1769. ],
  1770. "scale":[
  1771. 1,
  1772. 1,
  1773. 1
  1774. ],
  1775. "meshPath":"Assets/CrackRes/Root-Wall.lm",
  1776. "enableRender":true,
  1777. "materials":[
  1778. {
  1779. "type":"Laya.BlinnPhongMaterial",
  1780. "path":"Assets/CrackRes/Materials/Black.lmat"
  1781. }
  1782. ]
  1783. },
  1784. "components":[],
  1785. "child":[]
  1786. },
  1787. {
  1788. "type":"MeshSprite3D",
  1789. "props":{
  1790. "name":"Beardbig 1",
  1791. "active":true,
  1792. "isStatic":false,
  1793. "layer":0,
  1794. "position":[
  1795. -0.4406556,
  1796. 0.5250642,
  1797. 3.655468
  1798. ],
  1799. "rotation":[
  1800. -0.05748317,
  1801. 0.4703944,
  1802. -0.0307254,
  1803. -0.8800459
  1804. ],
  1805. "scale":[
  1806. 0.9887459,
  1807. 0.9887458,
  1808. 0.9887458
  1809. ],
  1810. "meshPath":"Assets/CrackRes/Root-Beardbig-copy.lm",
  1811. "enableRender":true,
  1812. "materials":[
  1813. {
  1814. "type":"Laya.BlinnPhongMaterial",
  1815. "path":"Assets/CrackRes/Materials/Black.lmat"
  1816. }
  1817. ]
  1818. },
  1819. "components":[],
  1820. "child":[]
  1821. },
  1822. {
  1823. "type":"MeshSprite3D",
  1824. "props":{
  1825. "name":"pCylinder10 2",
  1826. "active":true,
  1827. "isStatic":false,
  1828. "layer":0,
  1829. "position":[
  1830. -0.5538993,
  1831. 0.5536171,
  1832. 3.731135
  1833. ],
  1834. "rotation":[
  1835. 0.2919723,
  1836. 0.3732657,
  1837. -0.6440126,
  1838. -0.6005602
  1839. ],
  1840. "scale":[
  1841. 1.729657,
  1842. 1.729657,
  1843. 1.729657
  1844. ],
  1845. "meshPath":"Assets/CrackRes/Root-pCylinder10-copy-copy.lm",
  1846. "enableRender":true,
  1847. "materials":[
  1848. {
  1849. "type":"Laya.BlinnPhongMaterial",
  1850. "path":"Assets/CrackRes/Materials/Black.lmat"
  1851. }
  1852. ]
  1853. },
  1854. "components":[],
  1855. "child":[]
  1856. },
  1857. {
  1858. "type":"MeshSprite3D",
  1859. "props":{
  1860. "name":"pCylinder11 2",
  1861. "active":true,
  1862. "isStatic":false,
  1863. "layer":0,
  1864. "position":[
  1865. -0.5090663,
  1866. 0.4549957,
  1867. 3.701179
  1868. ],
  1869. "rotation":[
  1870. -0.05748318,
  1871. 0.4703944,
  1872. -0.0307254,
  1873. -0.8800459
  1874. ],
  1875. "scale":[
  1876. 1.682842,
  1877. 1.682842,
  1878. 1.682842
  1879. ],
  1880. "meshPath":"Assets/CrackRes/Root-pCylinder11-copy-copy.lm",
  1881. "enableRender":true,
  1882. "materials":[
  1883. {
  1884. "type":"Laya.BlinnPhongMaterial",
  1885. "path":"Assets/CrackRes/Materials/Black.lmat"
  1886. }
  1887. ]
  1888. },
  1889. "components":[],
  1890. "child":[]
  1891. },
  1892. {
  1893. "type":"MeshSprite3D",
  1894. "props":{
  1895. "name":"pCylinder12 2",
  1896. "active":true,
  1897. "isStatic":false,
  1898. "layer":0,
  1899. "position":[
  1900. -0.5690291,
  1901. 0.6924773,
  1902. 3.741244
  1903. ],
  1904. "rotation":[
  1905. 0.2919723,
  1906. 0.3732657,
  1907. -0.6440126,
  1908. -0.6005602
  1909. ],
  1910. "scale":[
  1911. 1.602118,
  1912. 1.602118,
  1913. 1.602118
  1914. ],
  1915. "meshPath":"Assets/CrackRes/Root-pCylinder12-copy-copy.lm",
  1916. "enableRender":true,
  1917. "materials":[
  1918. {
  1919. "type":"Laya.BlinnPhongMaterial",
  1920. "path":"Assets/CrackRes/Materials/Black.lmat"
  1921. }
  1922. ]
  1923. },
  1924. "components":[],
  1925. "child":[]
  1926. },
  1927. {
  1928. "type":"MeshSprite3D",
  1929. "props":{
  1930. "name":"Sideburns 5",
  1931. "active":true,
  1932. "isStatic":false,
  1933. "layer":0,
  1934. "position":[
  1935. -0.4208976,
  1936. 0.635011,
  1937. 3.641157
  1938. ],
  1939. "rotation":[
  1940. -0.05748317,
  1941. 0.4703944,
  1942. -0.0307254,
  1943. -0.8800459
  1944. ],
  1945. "scale":[
  1946. 1.045846,
  1947. 1.045846,
  1948. 1.12103
  1949. ],
  1950. "meshPath":"Assets/CrackRes/Root-Sideburns-copy-copy-copy.lm",
  1951. "enableRender":true,
  1952. "materials":[
  1953. {
  1954. "type":"Laya.BlinnPhongMaterial",
  1955. "path":"Assets/CrackRes/Materials/Black.lmat"
  1956. }
  1957. ]
  1958. },
  1959. "components":[],
  1960. "child":[]
  1961. },
  1962. {
  1963. "type":"MeshSprite3D",
  1964. "props":{
  1965. "name":"pCylinder10 3",
  1966. "active":true,
  1967. "isStatic":false,
  1968. "layer":0,
  1969. "position":[
  1970. -0.5538993,
  1971. 0.5536171,
  1972. 3.731135
  1973. ],
  1974. "rotation":[
  1975. 0.2919723,
  1976. 0.3732657,
  1977. -0.6440126,
  1978. -0.6005602
  1979. ],
  1980. "scale":[
  1981. 1.729657,
  1982. 1.729657,
  1983. 1.729657
  1984. ],
  1985. "meshPath":"Assets/CrackRes/Root-pCylinder10-copy-copy-copy.lm",
  1986. "enableRender":true,
  1987. "materials":[
  1988. {
  1989. "type":"Laya.BlinnPhongMaterial",
  1990. "path":"Assets/CrackRes/Materials/Black.lmat"
  1991. }
  1992. ]
  1993. },
  1994. "components":[],
  1995. "child":[]
  1996. },
  1997. {
  1998. "type":"MeshSprite3D",
  1999. "props":{
  2000. "name":"pCylinder11 3",
  2001. "active":true,
  2002. "isStatic":false,
  2003. "layer":0,
  2004. "position":[
  2005. -0.5090663,
  2006. 0.4549957,
  2007. 3.701179
  2008. ],
  2009. "rotation":[
  2010. -0.05748318,
  2011. 0.4703944,
  2012. -0.0307254,
  2013. -0.8800459
  2014. ],
  2015. "scale":[
  2016. 1.682842,
  2017. 1.682842,
  2018. 1.682842
  2019. ],
  2020. "meshPath":"Assets/CrackRes/Root-pCylinder11-copy-copy-copy.lm",
  2021. "enableRender":true,
  2022. "materials":[
  2023. {
  2024. "type":"Laya.BlinnPhongMaterial",
  2025. "path":"Assets/CrackRes/Materials/Black.lmat"
  2026. }
  2027. ]
  2028. },
  2029. "components":[],
  2030. "child":[]
  2031. },
  2032. {
  2033. "type":"MeshSprite3D",
  2034. "props":{
  2035. "name":"pCylinder12 3",
  2036. "active":true,
  2037. "isStatic":false,
  2038. "layer":0,
  2039. "position":[
  2040. -0.5690291,
  2041. 0.6924773,
  2042. 3.741244
  2043. ],
  2044. "rotation":[
  2045. 0.2919723,
  2046. 0.3732657,
  2047. -0.6440126,
  2048. -0.6005602
  2049. ],
  2050. "scale":[
  2051. 1.602118,
  2052. 1.602118,
  2053. 1.602118
  2054. ],
  2055. "meshPath":"Assets/CrackRes/Root-pCylinder12-copy-copy-copy.lm",
  2056. "enableRender":true,
  2057. "materials":[
  2058. {
  2059. "type":"Laya.BlinnPhongMaterial",
  2060. "path":"Assets/CrackRes/Materials/Black.lmat"
  2061. }
  2062. ]
  2063. },
  2064. "components":[],
  2065. "child":[]
  2066. },
  2067. {
  2068. "type":"MeshSprite3D",
  2069. "props":{
  2070. "name":"Sideburns 4",
  2071. "active":true,
  2072. "isStatic":false,
  2073. "layer":0,
  2074. "position":[
  2075. -0.4208976,
  2076. 0.635011,
  2077. 3.641157
  2078. ],
  2079. "rotation":[
  2080. -0.05748317,
  2081. 0.4703944,
  2082. -0.0307254,
  2083. -0.8800459
  2084. ],
  2085. "scale":[
  2086. 1.045846,
  2087. 1.045846,
  2088. 1.12103
  2089. ],
  2090. "meshPath":"Assets/CrackRes/Root-Sideburns-copy-copy-copy-copy.lm",
  2091. "enableRender":true,
  2092. "materials":[
  2093. {
  2094. "type":"Laya.BlinnPhongMaterial",
  2095. "path":"Assets/CrackRes/Materials/Black.lmat"
  2096. }
  2097. ]
  2098. },
  2099. "components":[],
  2100. "child":[]
  2101. },
  2102. {
  2103. "type":"MeshSprite3D",
  2104. "props":{
  2105. "name":"Eyepatch 1",
  2106. "active":true,
  2107. "isStatic":false,
  2108. "layer":0,
  2109. "position":[
  2110. -0.4278185,
  2111. 0.6807584,
  2112. 3.64689
  2113. ],
  2114. "rotation":[
  2115. -0.05748318,
  2116. 0.4703944,
  2117. -0.0307254,
  2118. -0.8800459
  2119. ],
  2120. "scale":[
  2121. 1.123177,
  2122. 1.123177,
  2123. 1.123177
  2124. ],
  2125. "meshPath":"Assets/CrackRes/Root-Eyepatch-copy.lm",
  2126. "enableRender":true,
  2127. "materials":[
  2128. {
  2129. "type":"Laya.BlinnPhongMaterial",
  2130. "path":"Assets/CrackRes/Materials/Black.lmat"
  2131. }
  2132. ]
  2133. },
  2134. "components":[],
  2135. "child":[]
  2136. },
  2137. {
  2138. "type":"MeshSprite3D",
  2139. "props":{
  2140. "name":"Glasses 1",
  2141. "active":true,
  2142. "isStatic":false,
  2143. "layer":0,
  2144. "position":[
  2145. -0.5652842,
  2146. 0.6194044,
  2147. 3.739359
  2148. ],
  2149. "rotation":[
  2150. -0.6629332,
  2151. 0.3108929,
  2152. -0.3543452,
  2153. -0.5816396
  2154. ],
  2155. "scale":[
  2156. 1.467438,
  2157. 1.467438,
  2158. 1.467438
  2159. ],
  2160. "meshPath":"Assets/CrackRes/Root-Glasses-copy.lm",
  2161. "enableRender":true,
  2162. "materials":[
  2163. {
  2164. "type":"Laya.BlinnPhongMaterial",
  2165. "path":"Assets/CrackRes/Materials/Black.lmat"
  2166. }
  2167. ]
  2168. },
  2169. "components":[],
  2170. "child":[]
  2171. },
  2172. {
  2173. "type":"MeshSprite3D",
  2174. "props":{
  2175. "name":"Glass 1",
  2176. "active":true,
  2177. "isStatic":false,
  2178. "layer":0,
  2179. "position":[
  2180. -0.5657548,
  2181. 0.6199773,
  2182. 3.742758
  2183. ],
  2184. "rotation":[
  2185. -0.05748316,
  2186. 0.4703944,
  2187. -0.03072539,
  2188. -0.8800459
  2189. ],
  2190. "scale":[
  2191. 1.045846,
  2192. 1.045846,
  2193. 1.045846
  2194. ],
  2195. "meshPath":"Assets/CrackRes/Root-Glass-copy.lm",
  2196. "enableRender":true,
  2197. "materials":[
  2198. {
  2199. "type":"Laya.BlinnPhongMaterial",
  2200. "path":"Assets/CrackRes/Materials/Glasses.lmat"
  2201. }
  2202. ]
  2203. },
  2204. "components":[],
  2205. "child":[]
  2206. },
  2207. {
  2208. "type":"MeshSprite3D",
  2209. "props":{
  2210. "name":"Monacle 1",
  2211. "active":true,
  2212. "isStatic":false,
  2213. "layer":0,
  2214. "position":[
  2215. -0.501074,
  2216. 0.6288264,
  2217. 3.800213
  2218. ],
  2219. "rotation":[
  2220. -0.7157302,
  2221. 0.2237559,
  2222. -0.1373001,
  2223. -0.6471571
  2224. ],
  2225. "scale":[
  2226. 1.045846,
  2227. 1.045846,
  2228. 1.045846
  2229. ],
  2230. "meshPath":"Assets/CrackRes/Root-Monacle-copy.lm",
  2231. "enableRender":true,
  2232. "materials":[
  2233. {
  2234. "type":"Laya.BlinnPhongMaterial",
  2235. "path":"Assets/CrackRes/Materials/Black.lmat"
  2236. }
  2237. ]
  2238. },
  2239. "components":[],
  2240. "child":[]
  2241. },
  2242. {
  2243. "type":"MeshSprite3D",
  2244. "props":{
  2245. "name":"pCylinder13 1",
  2246. "active":true,
  2247. "isStatic":false,
  2248. "layer":0,
  2249. "position":[
  2250. -0.4562175,
  2251. 0.3789068,
  2252. 3.665866
  2253. ],
  2254. "rotation":[
  2255. -0.3732658,
  2256. 0.2919723,
  2257. 0.6005604,
  2258. -0.6440125
  2259. ],
  2260. "scale":[
  2261. 1.045846,
  2262. 1.045846,
  2263. 1.045846
  2264. ],
  2265. "meshPath":"Assets/CrackRes/Root-pCylinder13-copy.lm",
  2266. "enableRender":true,
  2267. "materials":[
  2268. {
  2269. "type":"Laya.BlinnPhongMaterial",
  2270. "path":"Assets/CrackRes/Materials/Black.lmat"
  2271. }
  2272. ]
  2273. },
  2274. "components":[],
  2275. "child":[]
  2276. },
  2277. {
  2278. "type":"MeshSprite3D",
  2279. "props":{
  2280. "name":"Sideburns (1) 1",
  2281. "active":true,
  2282. "isStatic":false,
  2283. "layer":0,
  2284. "position":[
  2285. -0.4208976,
  2286. 0.635011,
  2287. 3.641157
  2288. ],
  2289. "rotation":[
  2290. -0.05748317,
  2291. 0.4703944,
  2292. -0.0307254,
  2293. -0.8800459
  2294. ],
  2295. "scale":[
  2296. 1.045846,
  2297. 1.045846,
  2298. 1.12103
  2299. ],
  2300. "meshPath":"Assets/CrackRes/Root-Sideburns (1)-copy.lm",
  2301. "enableRender":true,
  2302. "materials":[
  2303. {
  2304. "type":"Laya.BlinnPhongMaterial",
  2305. "path":"Assets/CrackRes/Materials/Black.lmat"
  2306. }
  2307. ]
  2308. },
  2309. "components":[],
  2310. "child":[]
  2311. },
  2312. {
  2313. "type":"MeshSprite3D",
  2314. "props":{
  2315. "name":"Sideburns 1",
  2316. "active":true,
  2317. "isStatic":false,
  2318. "layer":0,
  2319. "position":[
  2320. -0.4208976,
  2321. 0.635011,
  2322. 3.641157
  2323. ],
  2324. "rotation":[
  2325. -0.05748317,
  2326. 0.4703944,
  2327. -0.0307254,
  2328. -0.8800459
  2329. ],
  2330. "scale":[
  2331. 1.045846,
  2332. 1.045846,
  2333. 1.12103
  2334. ],
  2335. "meshPath":"Assets/CrackRes/Root-Sideburns-copy-copy-copy-copy-copy.lm",
  2336. "enableRender":true,
  2337. "materials":[
  2338. {
  2339. "type":"Laya.BlinnPhongMaterial",
  2340. "path":"Assets/CrackRes/Materials/Black.lmat"
  2341. }
  2342. ]
  2343. },
  2344. "components":[],
  2345. "child":[]
  2346. },
  2347. {
  2348. "type":"MeshSprite3D",
  2349. "props":{
  2350. "name":"Baseball 1",
  2351. "active":true,
  2352. "isStatic":false,
  2353. "layer":0,
  2354. "position":[
  2355. -0.476549,
  2356. 0.8132524,
  2357. 3.685705
  2358. ],
  2359. "rotation":[
  2360. 0.06863463,
  2361. 0.9544758,
  2362. -0.02082009,
  2363. -0.2895371
  2364. ],
  2365. "scale":[
  2366. 0.4,
  2367. 0.4000001,
  2368. 0.4000001
  2369. ],
  2370. "meshPath":"Assets/CrackRes/Root-Baseball-copy.lm",
  2371. "enableRender":true,
  2372. "materials":[
  2373. {
  2374. "type":"Laya.BlinnPhongMaterial",
  2375. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2376. }
  2377. ]
  2378. },
  2379. "components":[],
  2380. "child":[]
  2381. },
  2382. {
  2383. "type":"MeshSprite3D",
  2384. "props":{
  2385. "name":"Beehive1 1",
  2386. "active":true,
  2387. "isStatic":false,
  2388. "layer":0,
  2389. "position":[
  2390. -0.3522004,
  2391. 0.7328811,
  2392. 3.60527
  2393. ],
  2394. "rotation":[
  2395. -0.05748322,
  2396. 0.4703943,
  2397. -0.03072542,
  2398. -0.880046
  2399. ],
  2400. "scale":[
  2401. 1.09124,
  2402. 1.09124,
  2403. 1.09124
  2404. ],
  2405. "meshPath":"Assets/CrackRes/Root-Beehive1-copy.lm",
  2406. "enableRender":true,
  2407. "materials":[
  2408. {
  2409. "type":"Laya.BlinnPhongMaterial",
  2410. "path":"Assets/CrackRes/Materials/Facialhair.lmat"
  2411. }
  2412. ]
  2413. },
  2414. "components":[],
  2415. "child":[]
  2416. },
  2417. {
  2418. "type":"MeshSprite3D",
  2419. "props":{
  2420. "name":"Bowlerhat 1",
  2421. "active":true,
  2422. "isStatic":false,
  2423. "layer":0,
  2424. "position":[
  2425. -0.4104145,
  2426. 0.853892,
  2427. 3.636705
  2428. ],
  2429. "rotation":[
  2430. -0.05748323,
  2431. 0.4703943,
  2432. -0.03072543,
  2433. -0.8800459
  2434. ],
  2435. "scale":[
  2436. 0.9896404,
  2437. 0.9896401,
  2438. 0.9896402
  2439. ],
  2440. "meshPath":"Assets/CrackRes/Root-Bowlerhat-copy.lm",
  2441. "enableRender":true,
  2442. "materials":[
  2443. {
  2444. "type":"Laya.BlinnPhongMaterial",
  2445. "path":"Assets/CrackRes/Materials/Facialhair.lmat"
  2446. }
  2447. ]
  2448. },
  2449. "components":[],
  2450. "child":[]
  2451. },
  2452. {
  2453. "type":"MeshSprite3D",
  2454. "props":{
  2455. "name":"Creepy 1",
  2456. "active":true,
  2457. "isStatic":false,
  2458. "layer":0,
  2459. "position":[
  2460. -0.3959631,
  2461. 0.6843999,
  2462. 3.631378
  2463. ],
  2464. "rotation":[
  2465. -0.06237294,
  2466. 0.9549055,
  2467. 0.01892062,
  2468. -0.2896674
  2469. ],
  2470. "scale":[
  2471. 42.87167,
  2472. 40.35303,
  2473. 40.12305
  2474. ],
  2475. "meshPath":"Assets/CrackRes/Root-Creepy-copy.lm",
  2476. "enableRender":true,
  2477. "materials":[
  2478. {
  2479. "type":"Laya.BlinnPhongMaterial",
  2480. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2481. }
  2482. ]
  2483. },
  2484. "components":[],
  2485. "child":[]
  2486. },
  2487. {
  2488. "type":"MeshSprite3D",
  2489. "props":{
  2490. "name":"polySurface3 1",
  2491. "active":true,
  2492. "isStatic":false,
  2493. "layer":0,
  2494. "position":[
  2495. -0.4220965,
  2496. 0.9105764,
  2497. 3.647878
  2498. ],
  2499. "rotation":[
  2500. -0.06237293,
  2501. 0.9549055,
  2502. 0.01892062,
  2503. -0.2896674
  2504. ],
  2505. "scale":[
  2506. 0.3805588,
  2507. 0.3805588,
  2508. 0.3805589
  2509. ],
  2510. "meshPath":"Assets/CrackRes/Root-polySurface3-copy.lm",
  2511. "enableRender":true,
  2512. "materials":[
  2513. {
  2514. "type":"Laya.BlinnPhongMaterial",
  2515. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2516. }
  2517. ]
  2518. },
  2519. "components":[],
  2520. "child":[]
  2521. },
  2522. {
  2523. "type":"MeshSprite3D",
  2524. "props":{
  2525. "name":"polySurface4 1",
  2526. "active":true,
  2527. "isStatic":false,
  2528. "layer":0,
  2529. "position":[
  2530. -0.3623863,
  2531. 0.9545882,
  2532. 3.646118
  2533. ],
  2534. "rotation":[
  2535. -0.06237293,
  2536. 0.9549055,
  2537. 0.01892062,
  2538. -0.2896674
  2539. ],
  2540. "scale":[
  2541. 0.3805588,
  2542. 0.3805588,
  2543. 0.3805589
  2544. ],
  2545. "meshPath":"Assets/CrackRes/Root-polySurface4-copy.lm",
  2546. "enableRender":true,
  2547. "materials":[
  2548. {
  2549. "type":"Laya.BlinnPhongMaterial",
  2550. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2551. }
  2552. ]
  2553. },
  2554. "components":[],
  2555. "child":[]
  2556. },
  2557. {
  2558. "type":"MeshSprite3D",
  2559. "props":{
  2560. "name":"polySurface7 1",
  2561. "active":true,
  2562. "isStatic":false,
  2563. "layer":0,
  2564. "position":[
  2565. -0.4978519,
  2566. 0.525338,
  2567. 3.699458
  2568. ],
  2569. "rotation":[
  2570. -0.06237293,
  2571. 0.9549055,
  2572. 0.01892062,
  2573. -0.2896674
  2574. ],
  2575. "scale":[
  2576. 0.3607642,
  2577. 0.3906954,
  2578. 0.3906955
  2579. ],
  2580. "meshPath":"Assets/CrackRes/Root-polySurface7-copy.lm",
  2581. "enableRender":true,
  2582. "materials":[
  2583. {
  2584. "type":"Laya.BlinnPhongMaterial",
  2585. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2586. }
  2587. ]
  2588. },
  2589. "components":[],
  2590. "child":[]
  2591. },
  2592. {
  2593. "type":"MeshSprite3D",
  2594. "props":{
  2595. "name":"polySurface8 1",
  2596. "active":true,
  2597. "isStatic":false,
  2598. "layer":0,
  2599. "position":[
  2600. -0.3734038,
  2601. 0.6934624,
  2602. 3.616305
  2603. ],
  2604. "rotation":[
  2605. -0.06237293,
  2606. 0.9549055,
  2607. 0.01892062,
  2608. -0.2896674
  2609. ],
  2610. "scale":[
  2611. 0.3607642,
  2612. 0.3906954,
  2613. 0.3906955
  2614. ],
  2615. "meshPath":"Assets/CrackRes/Root-polySurface8-copy.lm",
  2616. "enableRender":true,
  2617. "materials":[
  2618. {
  2619. "type":"Laya.BlinnPhongMaterial",
  2620. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2621. }
  2622. ]
  2623. },
  2624. "components":[],
  2625. "child":[]
  2626. },
  2627. {
  2628. "type":"MeshSprite3D",
  2629. "props":{
  2630. "name":"Halo 1",
  2631. "active":true,
  2632. "isStatic":false,
  2633. "layer":0,
  2634. "position":[
  2635. -0.4090829,
  2636. 0.9143708,
  2637. 3.639183
  2638. ],
  2639. "rotation":[
  2640. -0.06237293,
  2641. 0.9549055,
  2642. 0.01892062,
  2643. -0.2896674
  2644. ],
  2645. "scale":[
  2646. 17.98916,
  2647. 12.32886,
  2648. 17.98917
  2649. ],
  2650. "meshPath":"Assets/CrackRes/Root-Halo-copy.lm",
  2651. "enableRender":true,
  2652. "materials":[
  2653. {
  2654. "type":"Laya.BlinnPhongMaterial",
  2655. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2656. }
  2657. ]
  2658. },
  2659. "components":[],
  2660. "child":[]
  2661. },
  2662. {
  2663. "type":"MeshSprite3D",
  2664. "props":{
  2665. "name":"pCone5 1",
  2666. "active":true,
  2667. "isStatic":false,
  2668. "layer":0,
  2669. "position":[
  2670. -0.3970217,
  2671. 0.8640743,
  2672. 3.638821
  2673. ],
  2674. "rotation":[
  2675. -0.0299891,
  2676. 0.9564703,
  2677. 0.009097094,
  2678. -0.2901421
  2679. ],
  2680. "scale":[
  2681. 0.40964,
  2682. 0.40964,
  2683. 0.4096401
  2684. ],
  2685. "meshPath":"Assets/CrackRes/Root-pCone5-copy.lm",
  2686. "enableRender":true,
  2687. "materials":[
  2688. {
  2689. "type":"Laya.BlinnPhongMaterial",
  2690. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2691. }
  2692. ]
  2693. },
  2694. "components":[],
  2695. "child":[]
  2696. },
  2697. {
  2698. "type":"MeshSprite3D",
  2699. "props":{
  2700. "name":"HorseheadFinal 1",
  2701. "active":true,
  2702. "isStatic":false,
  2703. "layer":0,
  2704. "position":[
  2705. -0.4881572,
  2706. 0.7363715,
  2707. 3.68548
  2708. ],
  2709. "rotation":[
  2710. -0.05748321,
  2711. 0.4703943,
  2712. -0.03072543,
  2713. -0.8800459
  2714. ],
  2715. "scale":[
  2716. 0.969995,
  2717. 0.9699948,
  2718. 0.969995
  2719. ],
  2720. "meshPath":"Assets/CrackRes/Root-HorseheadFinal-copy.lm",
  2721. "enableRender":true,
  2722. "materials":[
  2723. {
  2724. "type":"Laya.BlinnPhongMaterial",
  2725. "path":"Assets/CrackRes/Materials/Facialhair.lmat"
  2726. }
  2727. ]
  2728. },
  2729. "components":[],
  2730. "child":[]
  2731. },
  2732. {
  2733. "type":"MeshSprite3D",
  2734. "props":{
  2735. "name":"Jesterhat 1",
  2736. "active":true,
  2737. "isStatic":false,
  2738. "layer":0,
  2739. "position":[
  2740. -0.4358588,
  2741. 0.9120224,
  2742. 3.647933
  2743. ],
  2744. "rotation":[
  2745. -0.06237292,
  2746. 0.9549055,
  2747. 0.01892062,
  2748. -0.2896674
  2749. ],
  2750. "scale":[
  2751. 0.2856081,
  2752. 0.285608,
  2753. 0.2856081
  2754. ],
  2755. "meshPath":"Assets/CrackRes/Root-Jesterhat-copy.lm",
  2756. "enableRender":true,
  2757. "materials":[
  2758. {
  2759. "type":"Laya.BlinnPhongMaterial",
  2760. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2761. }
  2762. ]
  2763. },
  2764. "components":[],
  2765. "child":[]
  2766. },
  2767. {
  2768. "type":"MeshSprite3D",
  2769. "props":{
  2770. "name":"pPlatonic5 1",
  2771. "active":true,
  2772. "isStatic":false,
  2773. "layer":0,
  2774. "position":[
  2775. -0.5144471,
  2776. 0.9506481,
  2777. 4.000814
  2778. ],
  2779. "rotation":[
  2780. -0.06237292,
  2781. 0.9549055,
  2782. 0.01892062,
  2783. -0.2896674
  2784. ],
  2785. "scale":[
  2786. 0.2856081,
  2787. 0.285608,
  2788. 0.2856081
  2789. ],
  2790. "meshPath":"Assets/CrackRes/Root-pPlatonic5-copy.lm",
  2791. "enableRender":true,
  2792. "materials":[
  2793. {
  2794. "type":"Laya.BlinnPhongMaterial",
  2795. "path":"Assets/CrackRes/Materials/Black.lmat"
  2796. }
  2797. ]
  2798. },
  2799. "components":[],
  2800. "child":[]
  2801. },
  2802. {
  2803. "type":"MeshSprite3D",
  2804. "props":{
  2805. "name":"pPlatonic6 1",
  2806. "active":true,
  2807. "isStatic":false,
  2808. "layer":0,
  2809. "position":[
  2810. -0.7582428,
  2811. 0.9519946,
  2812. 3.550301
  2813. ],
  2814. "rotation":[
  2815. -0.06237292,
  2816. 0.9549055,
  2817. 0.01892062,
  2818. -0.2896674
  2819. ],
  2820. "scale":[
  2821. 0.2856081,
  2822. 0.285608,
  2823. 0.2856081
  2824. ],
  2825. "meshPath":"Assets/CrackRes/Root-pPlatonic6-copy.lm",
  2826. "enableRender":true,
  2827. "materials":[
  2828. {
  2829. "type":"Laya.BlinnPhongMaterial",
  2830. "path":"Assets/CrackRes/Materials/Black.lmat"
  2831. }
  2832. ]
  2833. },
  2834. "components":[],
  2835. "child":[]
  2836. },
  2837. {
  2838. "type":"MeshSprite3D",
  2839. "props":{
  2840. "name":"pPlatonic7 1",
  2841. "active":true,
  2842. "isStatic":false,
  2843. "layer":0,
  2844. "position":[
  2845. -0.3509338,
  2846. 0.9848452,
  2847. 3.326874
  2848. ],
  2849. "rotation":[
  2850. -0.06237292,
  2851. 0.9549055,
  2852. 0.01892062,
  2853. -0.2896674
  2854. ],
  2855. "scale":[
  2856. 0.2856081,
  2857. 0.285608,
  2858. 0.2856081
  2859. ],
  2860. "meshPath":"Assets/CrackRes/Root-pPlatonic7-copy.lm",
  2861. "enableRender":true,
  2862. "materials":[
  2863. {
  2864. "type":"Laya.BlinnPhongMaterial",
  2865. "path":"Assets/CrackRes/Materials/Black.lmat"
  2866. }
  2867. ]
  2868. },
  2869. "components":[],
  2870. "child":[]
  2871. },
  2872. {
  2873. "type":"MeshSprite3D",
  2874. "props":{
  2875. "name":"pPlatonic8 1",
  2876. "active":true,
  2877. "isStatic":false,
  2878. "layer":0,
  2879. "position":[
  2880. -0.1034892,
  2881. 0.8840383,
  2882. 3.720404
  2883. ],
  2884. "rotation":[
  2885. -0.06237292,
  2886. 0.9549055,
  2887. 0.01892062,
  2888. -0.2896674
  2889. ],
  2890. "scale":[
  2891. 0.2856081,
  2892. 0.285608,
  2893. 0.2856081
  2894. ],
  2895. "meshPath":"Assets/CrackRes/Root-pPlatonic8-copy.lm",
  2896. "enableRender":true,
  2897. "materials":[
  2898. {
  2899. "type":"Laya.BlinnPhongMaterial",
  2900. "path":"Assets/CrackRes/Materials/Black.lmat"
  2901. }
  2902. ]
  2903. },
  2904. "components":[],
  2905. "child":[]
  2906. },
  2907. {
  2908. "type":"MeshSprite3D",
  2909. "props":{
  2910. "name":"Longhair 1",
  2911. "active":true,
  2912. "isStatic":false,
  2913. "layer":0,
  2914. "position":[
  2915. -0.3779047,
  2916. 0.6617289,
  2917. 3.642885
  2918. ],
  2919. "rotation":[
  2920. -0.6629331,
  2921. 0.310893,
  2922. -0.3543452,
  2923. -0.5816397
  2924. ],
  2925. "scale":[
  2926. 1.079224,
  2927. 1.079224,
  2928. 1.079224
  2929. ],
  2930. "meshPath":"Assets/CrackRes/Root-Longhair-copy.lm",
  2931. "enableRender":true,
  2932. "materials":[
  2933. {
  2934. "type":"Laya.BlinnPhongMaterial",
  2935. "path":"Assets/CrackRes/Materials/Facialhair.lmat"
  2936. }
  2937. ]
  2938. },
  2939. "components":[],
  2940. "child":[]
  2941. },
  2942. {
  2943. "type":"MeshSprite3D",
  2944. "props":{
  2945. "name":"Tophat 1",
  2946. "active":true,
  2947. "isStatic":false,
  2948. "layer":0,
  2949. "position":[
  2950. -0.4484558,
  2951. 0.9746866,
  2952. 3.599583
  2953. ],
  2954. "rotation":[
  2955. -0.0859081,
  2956. 0.9532427,
  2957. -0.05942008,
  2958. -0.2835796
  2959. ],
  2960. "scale":[
  2961. 22.61088,
  2962. 23.97767,
  2963. 22.61088
  2964. ],
  2965. "meshPath":"Assets/CrackRes/Root-Tophat-copy.lm",
  2966. "enableRender":true,
  2967. "materials":[
  2968. {
  2969. "type":"Laya.BlinnPhongMaterial",
  2970. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  2971. }
  2972. ]
  2973. },
  2974. "components":[],
  2975. "child":[]
  2976. },
  2977. {
  2978. "type":"MeshSprite3D",
  2979. "props":{
  2980. "name":"pCylinder19 1",
  2981. "active":true,
  2982. "isStatic":false,
  2983. "layer":0,
  2984. "position":[
  2985. -0.3142162,
  2986. 0.7630751,
  2987. 3.582049
  2988. ],
  2989. "rotation":[
  2990. -0.06237291,
  2991. 0.9549055,
  2992. 0.01892062,
  2993. -0.2896674
  2994. ],
  2995. "scale":[
  2996. 0.4336401,
  2997. 0.4336401,
  2998. 0.4336401
  2999. ],
  3000. "meshPath":"Assets/CrackRes/Root-pCylinder19-copy.lm",
  3001. "enableRender":true,
  3002. "materials":[
  3003. {
  3004. "type":"Laya.BlinnPhongMaterial",
  3005. "path":"Assets/CrackRes/Materials/Texture01.lmat"
  3006. }
  3007. ]
  3008. },
  3009. "components":[],
  3010. "child":[]
  3011. },
  3012. {
  3013. "type":"SkinnedMeshSprite3D",
  3014. "props":{
  3015. "name":"pasted__polySurface11 1",
  3016. "active":true,
  3017. "isStatic":false,
  3018. "layer":0,
  3019. "position":[
  3020. -2.275749,
  3021. -0.8724922,
  3022. -0.9169698
  3023. ],
  3024. "rotation":[
  3025. 0,
  3026. 0.4713967,
  3027. 0,
  3028. -0.8819213
  3029. ],
  3030. "scale":[
  3031. 1,
  3032. 1,
  3033. 1
  3034. ],
  3035. "rootBone":"Floppy_Hips 1",
  3036. "boundBox":{
  3037. "min":[
  3038. -0.8954026,
  3039. -0.28083,
  3040. -0.4644858
  3041. ],
  3042. "max":[
  3043. 0.9192771,
  3044. 0.330413,
  3045. 0.4074796
  3046. ]
  3047. },
  3048. "boundSphere":{
  3049. "center":[
  3050. 0.01193723,
  3051. 0.02479146,
  3052. -0.02850308
  3053. ],
  3054. "radius":1.052022
  3055. },
  3056. "materials":[
  3057. {
  3058. "type":"Laya.BlinnPhongMaterial",
  3059. "path":"Assets/CrackRes/Materials/Gray.lmat"
  3060. }
  3061. ],
  3062. "meshPath":"Assets/CrackRes/Root-pasted__polySurface11-copy.lm"
  3063. },
  3064. "components":[],
  3065. "child":[]
  3066. },
  3067. {
  3068. "type":"SkinnedMeshSprite3D",
  3069. "props":{
  3070. "name":"pasted__polySurface11",
  3071. "active":true,
  3072. "isStatic":false,
  3073. "layer":9,
  3074. "position":[
  3075. 5.715748,
  3076. -1.562492,
  3077. 5.896966
  3078. ],
  3079. "rotation":[
  3080. 3.138513E-08,
  3081. 0.8819214,
  3082. 5.871747E-08,
  3083. 0.4713967
  3084. ],
  3085. "scale":[
  3086. 0.9999999,
  3087. 1,
  3088. 0.9999999
  3089. ],
  3090. "rootBone":"Floppy_Hips",
  3091. "boundBox":{
  3092. "min":[
  3093. -0.8979983,
  3094. -0.2801096,
  3095. -0.4452674
  3096. ],
  3097. "max":[
  3098. 0.9362673,
  3099. 0.7032709,
  3100. 0.40298
  3101. ]
  3102. },
  3103. "boundSphere":{
  3104. "center":[
  3105. 0.01913446,
  3106. 0.2115806,
  3107. -0.0211437
  3108. ],
  3109. "radius":1.123732
  3110. },
  3111. "materials":[
  3112. {
  3113. "path":"Assets/LastRes/Materials/Red.lmat"
  3114. }
  3115. ],
  3116. "meshPath":"Assets/LastRes/pasted__polySurface11-pasted__polySurface11.lm"
  3117. },
  3118. "components":[
  3119. {
  3120. "type":"PhysicsCollider",
  3121. "restitution":0,
  3122. "friction":0.5,
  3123. "rollingFriction":0,
  3124. "shapes":[
  3125. {
  3126. "type":"CapsuleColliderShape",
  3127. "center":[
  3128. -4.85,
  3129. 1.731843,
  3130. 1.014204
  3131. ],
  3132. "radius":0.3496907,
  3133. "height":1.718704
  3134. }
  3135. ],
  3136. "isTrigger":false
  3137. }
  3138. ],
  3139. "child":[]
  3140. },
  3141. {
  3142. "type":"MeshSprite3D",
  3143. "props":{
  3144. "name":"GUN:pCube1",
  3145. "active":true,
  3146. "isStatic":false,
  3147. "layer":0,
  3148. "position":[
  3149. 4.424135,
  3150. 0.4532315,
  3151. 0.8830857
  3152. ],
  3153. "rotation":[
  3154. 0.003808126,
  3155. 0.8800802,
  3156. -0.01821027,
  3157. 0.4744605
  3158. ],
  3159. "scale":[
  3160. 2.688132,
  3161. 2.688132,
  3162. 2.688132
  3163. ],
  3164. "meshPath":"Assets/CrackRes/gun1-GUN_pCube1.lm",
  3165. "enableRender":true,
  3166. "materials":[
  3167. {
  3168. "type":"Laya.BlinnPhongMaterial",
  3169. "path":"Assets/CrackRes/Materials/Black.lmat"
  3170. }
  3171. ]
  3172. },
  3173. "components":[],
  3174. "child":[]
  3175. },
  3176. {
  3177. "type":"MeshSprite3D",
  3178. "props":{
  3179. "name":"GUN:pCube2",
  3180. "active":true,
  3181. "isStatic":false,
  3182. "layer":0,
  3183. "position":[
  3184. 4.269498,
  3185. 0.4753113,
  3186. 0.9845839
  3187. ],
  3188. "rotation":[
  3189. 0.003808126,
  3190. 0.8800802,
  3191. -0.01821027,
  3192. 0.4744605
  3193. ],
  3194. "scale":[
  3195. 2.688132,
  3196. 2.688132,
  3197. 2.688132
  3198. ],
  3199. "meshPath":"Assets/CrackRes/gun1-GUN_pCube2.lm",
  3200. "enableRender":true,
  3201. "materials":[
  3202. {
  3203. "type":"Laya.BlinnPhongMaterial",
  3204. "path":"Assets/CrackRes/Materials/Black.lmat"
  3205. }
  3206. ]
  3207. },
  3208. "components":[],
  3209. "child":[]
  3210. },
  3211. {
  3212. "type":"MeshSprite3D",
  3213. "props":{
  3214. "name":"Shell",
  3215. "active":true,
  3216. "isStatic":false,
  3217. "layer":0,
  3218. "position":[
  3219. 4.338816,
  3220. 0.484534,
  3221. 0.9356494
  3222. ],
  3223. "rotation":[
  3224. -0.3385934,
  3225. -0.6086575,
  3226. 0.6359314,
  3227. -0.332388
  3228. ],
  3229. "scale":[
  3230. 1.5,
  3231. 1.5,
  3232. 1.5
  3233. ],
  3234. "meshPath":"Assets/CrackRes/gun1-Shell.lm",
  3235. "enableRender":true,
  3236. "materials":[
  3237. {
  3238. "type":"Laya.BlinnPhongMaterial",
  3239. "path":"Assets/CrackRes/Materials/Black.lmat"
  3240. }
  3241. ]
  3242. },
  3243. "components":[],
  3244. "child":[]
  3245. }
  3246. ]
  3247. },
  3248. {
  3249. "type":"Sprite3D",
  3250. "props":{
  3251. "name":"ShootRole1 (1)",
  3252. "active":true,
  3253. "isStatic":false,
  3254. "layer":9,
  3255. "position":[
  3256. 1.54,
  3257. 0,
  3258. -2.11
  3259. ],
  3260. "rotation":[
  3261. 3.138513E-08,
  3262. 0.8819213,
  3263. 5.871746E-08,
  3264. 0.4713967
  3265. ],
  3266. "scale":[
  3267. 0.9999999,
  3268. 1,
  3269. 0.9999999
  3270. ]
  3271. },
  3272. "components":[],
  3273. "child":[
  3274. {
  3275. "type":"Sprite3D",
  3276. "props":{
  3277. "name":"Floppy_Reference",
  3278. "active":true,
  3279. "isStatic":false,
  3280. "layer":9,
  3281. "position":[
  3282. 0,
  3283. 0,
  3284. 0
  3285. ],
  3286. "rotation":[
  3287. 0,
  3288. 0,
  3289. 0,
  3290. -1
  3291. ],
  3292. "scale":[
  3293. 1,
  3294. 1,
  3295. 1
  3296. ]
  3297. },
  3298. "components":[],
  3299. "child":[
  3300. {
  3301. "type":"Sprite3D",
  3302. "props":{
  3303. "name":"Floppy_Hips",
  3304. "active":true,
  3305. "isStatic":false,
  3306. "layer":9,
  3307. "position":[
  3308. -2.394081E-07,
  3309. 0.767,
  3310. -0.02999985
  3311. ],
  3312. "rotation":[
  3313. -0.6278042,
  3314. -0.5947627,
  3315. -0.3657548,
  3316. -0.3440096
  3317. ],
  3318. "scale":[
  3319. 1,
  3320. 1,
  3321. 1
  3322. ]
  3323. },
  3324. "components":[],
  3325. "child":[
  3326. {
  3327. "type":"Sprite3D",
  3328. "props":{
  3329. "name":"Floppy_LeftUpLeg",
  3330. "active":true,
  3331. "isStatic":false,
  3332. "layer":9,
  3333. "position":[
  3334. -0.05794133,
  3335. 0.001003742,
  3336. 0.09937583
  3337. ],
  3338. "rotation":[
  3339. 0.107919,
  3340. -0.212902,
  3341. 0.9708828,
  3342. 0.0203195
  3343. ],
  3344. "scale":[
  3345. 1,
  3346. 1,
  3347. 0.9999998
  3348. ]
  3349. },
  3350. "components":[],
  3351. "child":[
  3352. {
  3353. "type":"Sprite3D",
  3354. "props":{
  3355. "name":"Floppy_LeftLeg",
  3356. "active":true,
  3357. "isStatic":false,
  3358. "layer":9,
  3359. "position":[
  3360. 0.313048,
  3361. 1.19023E-06,
  3362. 3.72529E-08
  3363. ],
  3364. "rotation":[
  3365. -0.007061454,
  3366. -0.0001737974,
  3367. -0.06943376,
  3368. -0.9975616
  3369. ],
  3370. "scale":[
  3371. 1,
  3372. 1,
  3373. 1
  3374. ]
  3375. },
  3376. "components":[],
  3377. "child":[
  3378. {
  3379. "type":"Sprite3D",
  3380. "props":{
  3381. "name":"Floppy_LeftFoot",
  3382. "active":true,
  3383. "isStatic":false,
  3384. "layer":9,
  3385. "position":[
  3386. 0.2937438,
  3387. -2.384186E-07,
  3388. 1.490116E-08
  3389. ],
  3390. "rotation":[
  3391. 0.006910612,
  3392. -0.0216902,
  3393. 0.5040128,
  3394. -0.8633962
  3395. ],
  3396. "scale":[
  3397. 1,
  3398. 1,
  3399. 0.9999999
  3400. ]
  3401. },
  3402. "components":[],
  3403. "child":[
  3404. {
  3405. "type":"Sprite3D",
  3406. "props":{
  3407. "name":"Floppy_LeftToeBase",
  3408. "active":true,
  3409. "isStatic":false,
  3410. "layer":9,
  3411. "position":[
  3412. 0.1271834,
  3413. -1.192093E-07,
  3414. 2.980232E-08
  3415. ],
  3416. "rotation":[
  3417. 0,
  3418. 0,
  3419. 0,
  3420. -1
  3421. ],
  3422. "scale":[
  3423. 1,
  3424. 1,
  3425. 0.9999999
  3426. ]
  3427. },
  3428. "components":[],
  3429. "child":[]
  3430. }
  3431. ]
  3432. }
  3433. ]
  3434. }
  3435. ]
  3436. },
  3437. {
  3438. "type":"Sprite3D",
  3439. "props":{
  3440. "name":"Floppy_RightUpLeg",
  3441. "active":true,
  3442. "isStatic":false,
  3443. "layer":9,
  3444. "position":[
  3445. -0.05794132,
  3446. 0.001003509,
  3447. -0.09937584
  3448. ],
  3449. "rotation":[
  3450. 0.1990518,
  3451. 0.04981559,
  3452. 0.2375532,
  3453. -0.9494553
  3454. ],
  3455. "scale":[
  3456. 1,
  3457. 1,
  3458. 0.9999999
  3459. ]
  3460. },
  3461. "components":[],
  3462. "child":[
  3463. {
  3464. "type":"Sprite3D",
  3465. "props":{
  3466. "name":"Floppy_RightLeg",
  3467. "active":true,
  3468. "isStatic":false,
  3469. "layer":9,
  3470. "position":[
  3471. -0.3130479,
  3472. -2.622604E-06,
  3473. 7.450581E-09
  3474. ],
  3475. "rotation":[
  3476. -0.006883083,
  3477. 0.001621395,
  3478. -0.31998,
  3479. -0.9473979
  3480. ],
  3481. "scale":[
  3482. 1,
  3483. 1,
  3484. 1
  3485. ]
  3486. },
  3487. "components":[],
  3488. "child":[
  3489. {
  3490. "type":"Sprite3D",
  3491. "props":{
  3492. "name":"Floppy_RightFoot",
  3493. "active":true,
  3494. "isStatic":false,
  3495. "layer":9,
  3496. "position":[
  3497. -0.2937443,
  3498. 2.235174E-07,
  3499. 7.450581E-09
  3500. ],
  3501. "rotation":[
  3502. 0.007595281,
  3503. -0.02145384,
  3504. 0.5303999,
  3505. -0.847442
  3506. ],
  3507. "scale":[
  3508. 1,
  3509. 1,
  3510. 0.9999999
  3511. ]
  3512. },
  3513. "components":[],
  3514. "child":[
  3515. {
  3516. "type":"Sprite3D",
  3517. "props":{
  3518. "name":"Floppy_RightToeBase",
  3519. "active":true,
  3520. "isStatic":false,
  3521. "layer":9,
  3522. "position":[
  3523. -0.1271836,
  3524. 2.384186E-07,
  3525. -2.30968E-07
  3526. ],
  3527. "rotation":[
  3528. -2.541143E-05,
  3529. 6.412095E-08,
  3530. -1.629405E-12,
  3531. -1
  3532. ],
  3533. "scale":[
  3534. 1,
  3535. 0.9999999,
  3536. 1
  3537. ]
  3538. },
  3539. "components":[],
  3540. "child":[]
  3541. }
  3542. ]
  3543. }
  3544. ]
  3545. }
  3546. ]
  3547. },
  3548. {
  3549. "type":"Sprite3D",
  3550. "props":{
  3551. "name":"Floppy_Spine",
  3552. "active":true,
  3553. "isStatic":false,
  3554. "layer":9,
  3555. "position":[
  3556. 0.06832585,
  3557. 0,
  3558. 1.862645E-09
  3559. ],
  3560. "rotation":[
  3561. 1.490116E-08,
  3562. -1.490116E-08,
  3563. 0.01743725,
  3564. -0.999848
  3565. ],
  3566. "scale":[
  3567. 1,
  3568. 1,
  3569. 0.9999999
  3570. ]
  3571. },
  3572. "components":[],
  3573. "child":[
  3574. {
  3575. "type":"Sprite3D",
  3576. "props":{
  3577. "name":"Floppy_Spine1",
  3578. "active":true,
  3579. "isStatic":false,
  3580. "layer":9,
  3581. "position":[
  3582. 0.06814203,
  3583. 0,
  3584. 1.18278E-07
  3585. ],
  3586. "rotation":[
  3587. 0.1569971,
  3588. 1.197207E-07,
  3589. -1.546403E-07,
  3590. -0.9875991
  3591. ],
  3592. "scale":[
  3593. 1,
  3594. 1,
  3595. 1
  3596. ]
  3597. },
  3598. "components":[],
  3599. "child":[
  3600. {
  3601. "type":"Sprite3D",
  3602. "props":{
  3603. "name":"Floppy_Spine2",
  3604. "active":true,
  3605. "isStatic":false,
  3606. "layer":9,
  3607. "position":[
  3608. 0.06814203,
  3609. 0,
  3610. 4.656613E-10
  3611. ],
  3612. "rotation":[
  3613. 0,
  3614. 0,
  3615. -0.003828391,
  3616. -0.9999927
  3617. ],
  3618. "scale":[
  3619. 1,
  3620. 0.9999999,
  3621. 0.9999999
  3622. ]
  3623. },
  3624. "components":[],
  3625. "child":[
  3626. {
  3627. "type":"Sprite3D",
  3628. "props":{
  3629. "name":"Floppy_LeftShoulder",
  3630. "active":true,
  3631. "isStatic":false,
  3632. "layer":9,
  3633. "position":[
  3634. 0.1754993,
  3635. -0.01261234,
  3636. 0.08765172
  3637. ],
  3638. "rotation":[
  3639. 0.5822254,
  3640. 0.7332904,
  3641. 0.1358718,
  3642. -0.3237866
  3643. ],
  3644. "scale":[
  3645. 0.9999999,
  3646. 1,
  3647. 1
  3648. ]
  3649. },
  3650. "components":[],
  3651. "child":[
  3652. {
  3653. "type":"Sprite3D",
  3654. "props":{
  3655. "name":"Floppy_LeftArm",
  3656. "active":true,
  3657. "isStatic":false,
  3658. "layer":9,
  3659. "position":[
  3660. 0.1376975,
  3661. -8.940697E-08,
  3662. 0
  3663. ],
  3664. "rotation":[
  3665. -0.5855118,
  3666. 0.2940837,
  3667. -0.3750733,
  3668. -0.6557521
  3669. ],
  3670. "scale":[
  3671. 1,
  3672. 1,
  3673. 0.9999999
  3674. ]
  3675. },
  3676. "components":[],
  3677. "child":[
  3678. {
  3679. "type":"Sprite3D",
  3680. "props":{
  3681. "name":"Floppy_LeftForeArm",
  3682. "active":true,
  3683. "isStatic":false,
  3684. "layer":9,
  3685. "position":[
  3686. 0.3026449,
  3687. 2.533197E-07,
  3688. 3.576279E-07
  3689. ],
  3690. "rotation":[
  3691. -8.64267E-07,
  3692. 1.490115E-07,
  3693. -0.1124021,
  3694. -0.9936628
  3695. ],
  3696. "scale":[
  3697. 1,
  3698. 1,
  3699. 1
  3700. ]
  3701. },
  3702. "components":[],
  3703. "child":[
  3704. {
  3705. "type":"Sprite3D",
  3706. "props":{
  3707. "name":"Floppy_LeftHand",
  3708. "active":true,
  3709. "isStatic":false,
  3710. "layer":9,
  3711. "position":[
  3712. 0.2371137,
  3713. 2.384186E-07,
  3714. -1.788139E-07
  3715. ],
  3716. "rotation":[
  3717. 0,
  3718. 0,
  3719. 0,
  3720. -1
  3721. ],
  3722. "scale":[
  3723. 1,
  3724. 1,
  3725. 1
  3726. ]
  3727. },
  3728. "components":[],
  3729. "child":[]
  3730. }
  3731. ]
  3732. }
  3733. ]
  3734. }
  3735. ]
  3736. },
  3737. {
  3738. "type":"Sprite3D",
  3739. "props":{
  3740. "name":"Floppy_Neck",
  3741. "active":true,
  3742. "isStatic":false,
  3743. "layer":9,
  3744. "position":[
  3745. 0.2580019,
  3746. 2.365559E-07,
  3747. -2.384186E-07
  3748. ],
  3749. "rotation":[
  3750. 0,
  3751. 0,
  3752. -0.008536847,
  3753. -0.9999636
  3754. ],
  3755. "scale":[
  3756. 1,
  3757. 1,
  3758. 1
  3759. ]
  3760. },
  3761. "components":[],
  3762. "child":[
  3763. {
  3764. "type":"Sprite3D",
  3765. "props":{
  3766. "name":"Floppy_Head",
  3767. "active":true,
  3768. "isStatic":false,
  3769. "layer":9,
  3770. "position":[
  3771. 0.1295998,
  3772. -4.768372E-07,
  3773. 9.313226E-10
  3774. ],
  3775. "rotation":[
  3776. 0,
  3777. 0,
  3778. 0,
  3779. -1
  3780. ],
  3781. "scale":[
  3782. 0.9999999,
  3783. 0.9999999,
  3784. 0.9999999
  3785. ]
  3786. },
  3787. "components":[],
  3788. "child":[
  3789. {
  3790. "type":"Sprite3D",
  3791. "props":{
  3792. "name":"Hats",
  3793. "active":true,
  3794. "isStatic":false,
  3795. "layer":9,
  3796. "position":[
  3797. -0.493,
  3798. 0.0630002,
  3799. 0.03299999
  3800. ],
  3801. "rotation":[
  3802. -0.7071068,
  3803. -0.7071068,
  3804. -4.329781E-17,
  3805. -4.329781E-17
  3806. ],
  3807. "scale":[
  3808. 0.3999999,
  3809. 0.4,
  3810. 0.4
  3811. ]
  3812. },
  3813. "components":[],
  3814. "child":[
  3815. {
  3816. "type":"Sprite3D",
  3817. "props":{
  3818. "name":"Beehive",
  3819. "active":true,
  3820. "isStatic":false,
  3821. "layer":9,
  3822. "position":[
  3823. -0.1440001,
  3824. -0.4070001,
  3825. 0.07099964
  3826. ],
  3827. "rotation":[
  3828. 0,
  3829. -0.7071068,
  3830. 0,
  3831. -0.7071068
  3832. ],
  3833. "scale":[
  3834. 2.7281,
  3835. 2.7281,
  3836. 2.7281
  3837. ]
  3838. },
  3839. "components":[],
  3840. "child":[
  3841. {
  3842. "type":"Sprite3D",
  3843. "props":{
  3844. "name":"Beehive 1",
  3845. "active":true,
  3846. "isStatic":false,
  3847. "layer":9,
  3848. "position":[
  3849. -0.0001788139,
  3850. 0.7993531,
  3851. -0.07921529
  3852. ],
  3853. "rotation":[
  3854. 0,
  3855. 0,
  3856. 0,
  3857. -1
  3858. ],
  3859. "scale":[
  3860. 1,
  3861. 0.9999999,
  3862. 1
  3863. ]
  3864. },
  3865. "components":[],
  3866. "child":[]
  3867. },
  3868. {
  3869. "type":"Sprite3D",
  3870. "props":{
  3871. "name":"group2",
  3872. "active":true,
  3873. "isStatic":false,
  3874. "layer":9,
  3875. "position":[
  3876. 0,
  3877. 0,
  3878. 0
  3879. ],
  3880. "rotation":[
  3881. 0,
  3882. 0,
  3883. 0,
  3884. -1
  3885. ],
  3886. "scale":[
  3887. 1,
  3888. 0.9999999,
  3889. 1
  3890. ]
  3891. },
  3892. "components":[],
  3893. "child":[
  3894. {
  3895. "type":"Sprite3D",
  3896. "props":{
  3897. "name":"Bowtie1",
  3898. "active":true,
  3899. "isStatic":false,
  3900. "layer":9,
  3901. "position":[
  3902. 0.06291508,
  3903. 0.8853258,
  3904. 0.08183074
  3905. ],
  3906. "rotation":[
  3907. 0.2354286,
  3908. 0.1097267,
  3909. 0.735523,
  3910. -0.625731
  3911. ],
  3912. "scale":[
  3913. 0.5883473,
  3914. 0.5883473,
  3915. 0.5883472
  3916. ]
  3917. },
  3918. "components":[],
  3919. "child":[]
  3920. },
  3921. {
  3922. "type":"Sprite3D",
  3923. "props":{
  3924. "name":"pCube4",
  3925. "active":true,
  3926. "isStatic":false,
  3927. "layer":9,
  3928. "position":[
  3929. -0.1902585,
  3930. 0.6015053,
  3931. -0.009181038
  3932. ],
  3933. "rotation":[
  3934. 0,
  3935. 0,
  3936. 0,
  3937. -1
  3938. ],
  3939. "scale":[
  3940. 1.246681,
  3941. 1.246681,
  3942. 1.246681
  3943. ]
  3944. },
  3945. "components":[],
  3946. "child":[]
  3947. },
  3948. {
  3949. "type":"Sprite3D",
  3950. "props":{
  3951. "name":"pHelix1",
  3952. "active":true,
  3953. "isStatic":false,
  3954. "layer":9,
  3955. "position":[
  3956. -0.1721413,
  3957. 0.5331868,
  3958. -0.114455
  3959. ],
  3960. "rotation":[
  3961. 0,
  3962. 0,
  3963. 0,
  3964. -1
  3965. ],
  3966. "scale":[
  3967. 1,
  3968. 1,
  3969. 1
  3970. ]
  3971. },
  3972. "components":[],
  3973. "child":[]
  3974. },
  3975. {
  3976. "type":"Sprite3D",
  3977. "props":{
  3978. "name":"pHelix2",
  3979. "active":true,
  3980. "isStatic":false,
  3981. "layer":9,
  3982. "position":[
  3983. 0.182915,
  3984. 0.6071256,
  3985. 0.09176591
  3986. ],
  3987. "rotation":[
  3988. -5.566258E-17,
  3989. 0.9961947,
  3990. -5.566258E-17,
  3991. 0.08715574
  3992. ],
  3993. "scale":[
  3994. 1,
  3995. 1,
  3996. 1
  3997. ]
  3998. },
  3999. "components":[],
  4000. "child":[]
  4001. },
  4002. {
  4003. "type":"Sprite3D",
  4004. "props":{
  4005. "name":"pPipe5",
  4006. "active":true,
  4007. "isStatic":false,
  4008. "layer":9,
  4009. "position":[
  4010. -9.313226E-10,
  4011. 0.7242306,
  4012. -0.05415153
  4013. ],
  4014. "rotation":[
  4015. 0.3826835,
  4016. 0,
  4017. 0,
  4018. -0.9238796
  4019. ],
  4020. "scale":[
  4021. 1.106951,
  4022. 1.440292,
  4023. 1.057595
  4024. ]
  4025. },
  4026. "components":[],
  4027. "child":[]
  4028. },
  4029. {
  4030. "type":"Sprite3D",
  4031. "props":{
  4032. "name":"pSphere1",
  4033. "active":true,
  4034. "isStatic":false,
  4035. "layer":9,
  4036. "position":[
  4037. -2.365559E-07,
  4038. 0.8054069,
  4039. -0.05972767
  4040. ],
  4041. "rotation":[
  4042. 0.1305262,
  4043. 0,
  4044. 0,
  4045. -0.9914449
  4046. ],
  4047. "scale":[
  4048. 1.536028,
  4049. 1.536028,
  4050. 1.536028
  4051. ]
  4052. },
  4053. "components":[],
  4054. "child":[]
  4055. },
  4056. {
  4057. "type":"Sprite3D",
  4058. "props":{
  4059. "name":"pSphere2",
  4060. "active":true,
  4061. "isStatic":false,
  4062. "layer":9,
  4063. "position":[
  4064. 0,
  4065. 0.6640158,
  4066. 0.01227832
  4067. ],
  4068. "rotation":[
  4069. 0.2164396,
  4070. 0,
  4071. 0,
  4072. -0.976296
  4073. ],
  4074. "scale":[
  4075. 1.030384,
  4076. 0.9859828,
  4077. 1.010167
  4078. ]
  4079. },
  4080. "components":[],
  4081. "child":[]
  4082. }
  4083. ]
  4084. }
  4085. ]
  4086. },
  4087. {
  4088. "type":"Sprite3D",
  4089. "props":{
  4090. "name":"Fez",
  4091. "active":true,
  4092. "isStatic":false,
  4093. "layer":9,
  4094. "position":[
  4095. -0.1830001,
  4096. 2.216,
  4097. 0.07999994
  4098. ],
  4099. "rotation":[
  4100. 0,
  4101. 0,
  4102. 0,
  4103. -1
  4104. ],
  4105. "scale":[
  4106. 0.9513969,
  4107. 0.9513969,
  4108. 0.9513971
  4109. ]
  4110. },
  4111. "components":[],
  4112. "child":[]
  4113. },
  4114. {
  4115. "type":"Sprite3D",
  4116. "props":{
  4117. "name":"FootballHelmet",
  4118. "active":true,
  4119. "isStatic":false,
  4120. "layer":9,
  4121. "position":[
  4122. -0.1160002,
  4123. 1.558,
  4124. 0.07800055
  4125. ],
  4126. "rotation":[
  4127. 0,
  4128. 0,
  4129. 0,
  4130. -1
  4131. ],
  4132. "scale":[
  4133. 0.9019105,
  4134. 0.9767385,
  4135. 0.9767386
  4136. ]
  4137. },
  4138. "components":[],
  4139. "child":[]
  4140. },
  4141. {
  4142. "type":"Sprite3D",
  4143. "props":{
  4144. "name":"Hornedhelm",
  4145. "active":true,
  4146. "isStatic":false,
  4147. "layer":9,
  4148. "position":[
  4149. 0,
  4150. 0,
  4151. 0
  4152. ],
  4153. "rotation":[
  4154. 0,
  4155. 0,
  4156. 0,
  4157. -1
  4158. ],
  4159. "scale":[
  4160. 1,
  4161. 1,
  4162. 1
  4163. ]
  4164. },
  4165. "components":[],
  4166. "child":[
  4167. {
  4168. "type":"Sprite3D",
  4169. "props":{
  4170. "name":"pCone2",
  4171. "active":true,
  4172. "isStatic":false,
  4173. "layer":9,
  4174. "position":[
  4175. -0.1920004,
  4176. 2.046,
  4177. 0.06400062
  4178. ],
  4179. "rotation":[
  4180. 0,
  4181. 0,
  4182. -0.03387564,
  4183. -0.9994261
  4184. ],
  4185. "scale":[
  4186. 13.85026,
  4187. 41.54148,
  4188. 8.281451
  4189. ]
  4190. },
  4191. "components":[],
  4192. "child":[]
  4193. },
  4194. {
  4195. "type":"Sprite3D",
  4196. "props":{
  4197. "name":"pCone3",
  4198. "active":true,
  4199. "isStatic":false,
  4200. "layer":9,
  4201. "position":[
  4202. -0.1920004,
  4203. 2.046,
  4204. 0.06400062
  4205. ],
  4206. "rotation":[
  4207. -0.03387558,
  4208. 0.9994261,
  4209. 6.11972E-17,
  4210. -2.074281E-18
  4211. ],
  4212. "scale":[
  4213. 13.85026,
  4214. 41.54148,
  4215. 8.281451
  4216. ]
  4217. },
  4218. "components":[],
  4219. "child":[]
  4220. },
  4221. {
  4222. "type":"Sprite3D",
  4223. "props":{
  4224. "name":"pCone4",
  4225. "active":true,
  4226. "isStatic":false,
  4227. "layer":9,
  4228. "position":[
  4229. -0.1920004,
  4230. 2.046,
  4231. 0.06400062
  4232. ],
  4233. "rotation":[
  4234. 0,
  4235. 0,
  4236. -0.03387564,
  4237. -0.9994261
  4238. ],
  4239. "scale":[
  4240. 8.738585,
  4241. 10.90374,
  4242. 8.738585
  4243. ]
  4244. },
  4245. "components":[],
  4246. "child":[]
  4247. },
  4248. {
  4249. "type":"Sprite3D",
  4250. "props":{
  4251. "name":"pCube29",
  4252. "active":true,
  4253. "isStatic":false,
  4254. "layer":9,
  4255. "position":[
  4256. -0.1920004,
  4257. 2.046,
  4258. 0.06400062
  4259. ],
  4260. "rotation":[
  4261. 0,
  4262. 0,
  4263. -0.03387564,
  4264. -0.9994261
  4265. ],
  4266. "scale":[
  4267. 89.50983,
  4268. 89.50982,
  4269. 89.50984
  4270. ]
  4271. },
  4272. "components":[],
  4273. "child":[]
  4274. }
  4275. ]
  4276. },
  4277. {
  4278. "type":"Sprite3D",
  4279. "props":{
  4280. "name":"Horsehead2",
  4281. "active":true,
  4282. "isStatic":false,
  4283. "layer":9,
  4284. "position":[
  4285. -0.1560001,
  4286. -0.06900001,
  4287. 0.09399987
  4288. ],
  4289. "rotation":[
  4290. 0,
  4291. -0.7071068,
  4292. 0,
  4293. -0.7071068
  4294. ],
  4295. "scale":[
  4296. 2.424987,
  4297. 2.424987,
  4298. 2.424987
  4299. ]
  4300. },
  4301. "components":[],
  4302. "child":[
  4303. {
  4304. "type":"Sprite3D",
  4305. "props":{
  4306. "name":"Horsehead",
  4307. "active":true,
  4308. "isStatic":false,
  4309. "layer":9,
  4310. "position":[
  4311. -1.862645E-09,
  4312. 0.678114,
  4313. -3.72529E-09
  4314. ],
  4315. "rotation":[
  4316. 0,
  4317. 0,
  4318. 0,
  4319. -1
  4320. ],
  4321. "scale":[
  4322. 1,
  4323. 1,
  4324. 1.032879
  4325. ]
  4326. },
  4327. "components":[],
  4328. "child":[]
  4329. },
  4330. {
  4331. "type":"Sprite3D",
  4332. "props":{
  4333. "name":"Horsehead1",
  4334. "active":true,
  4335. "isStatic":false,
  4336. "layer":9,
  4337. "position":[
  4338. 0.0001685664,
  4339. 0.7552737,
  4340. 0.1062341
  4341. ],
  4342. "rotation":[
  4343. 0,
  4344. 0,
  4345. 0,
  4346. -1
  4347. ],
  4348. "scale":[
  4349. 1,
  4350. 1,
  4351. 1
  4352. ]
  4353. },
  4354. "components":[],
  4355. "child":[
  4356. {
  4357. "type":"Sprite3D",
  4358. "props":{
  4359. "name":"polySurface7",
  4360. "active":true,
  4361. "isStatic":false,
  4362. "layer":9,
  4363. "position":[
  4364. -0.1320424,
  4365. -0.01821887,
  4366. -0.008362755
  4367. ],
  4368. "rotation":[
  4369. 0.02976816,
  4370. -0.04685599,
  4371. 0.07563176,
  4372. -0.9955894
  4373. ],
  4374. "scale":[
  4375. 1,
  4376. 1,
  4377. 1
  4378. ]
  4379. },
  4380. "components":[],
  4381. "child":[]
  4382. },
  4383. {
  4384. "type":"Sprite3D",
  4385. "props":{
  4386. "name":"polySurface8",
  4387. "active":true,
  4388. "isStatic":false,
  4389. "layer":9,
  4390. "position":[
  4391. 0.1317055,
  4392. -0.01821887,
  4393. -0.008362517
  4394. ],
  4395. "rotation":[
  4396. -0.04902054,
  4397. 0.07106713,
  4398. -0.01363857,
  4399. -0.9961729
  4400. ],
  4401. "scale":[
  4402. 1,
  4403. 1,
  4404. 0.9999999
  4405. ]
  4406. },
  4407. "components":[],
  4408. "child":[]
  4409. },
  4410. {
  4411. "type":"Sprite3D",
  4412. "props":{
  4413. "name":"polySurface9",
  4414. "active":true,
  4415. "isStatic":false,
  4416. "layer":9,
  4417. "position":[
  4418. -0.0001685527,
  4419. -0.7552738,
  4420. -0.1062341
  4421. ],
  4422. "rotation":[
  4423. 0,
  4424. 0,
  4425. 0,
  4426. -1
  4427. ],
  4428. "scale":[
  4429. 1,
  4430. 1,
  4431. 0.9999999
  4432. ]
  4433. },
  4434. "components":[],
  4435. "child":[]
  4436. }
  4437. ]
  4438. },
  4439. {
  4440. "type":"Sprite3D",
  4441. "props":{
  4442. "name":"polySurface2",
  4443. "active":true,
  4444. "isStatic":false,
  4445. "layer":9,
  4446. "position":[
  4447. 0.0001685664,
  4448. 0.7552737,
  4449. 0.1062341
  4450. ],
  4451. "rotation":[
  4452. 0,
  4453. 0,
  4454. 0,
  4455. -1
  4456. ],
  4457. "scale":[
  4458. 1,
  4459. 1,
  4460. 1
  4461. ]
  4462. },
  4463. "components":[],
  4464. "child":[
  4465. {
  4466. "type":"Sprite3D",
  4467. "props":{
  4468. "name":"polySurface4",
  4469. "active":true,
  4470. "isStatic":false,
  4471. "layer":9,
  4472. "position":[
  4473. -0.0001685527,
  4474. -0.7552738,
  4475. -0.1062341
  4476. ],
  4477. "rotation":[
  4478. 0,
  4479. 0,
  4480. 0,
  4481. -1
  4482. ],
  4483. "scale":[
  4484. 1,
  4485. 1,
  4486. 0.9999999
  4487. ]
  4488. },
  4489. "components":[],
  4490. "child":[]
  4491. },
  4492. {
  4493. "type":"Sprite3D",
  4494. "props":{
  4495. "name":"polySurface5",
  4496. "active":true,
  4497. "isStatic":false,
  4498. "layer":9,
  4499. "position":[
  4500. -0.0001685527,
  4501. -0.7552738,
  4502. -0.1062341
  4503. ],
  4504. "rotation":[
  4505. 0,
  4506. 0,
  4507. 0,
  4508. -1
  4509. ],
  4510. "scale":[
  4511. 1,
  4512. 1,
  4513. 0.9999999
  4514. ]
  4515. },
  4516. "components":[],
  4517. "child":[]
  4518. },
  4519. {
  4520. "type":"Sprite3D",
  4521. "props":{
  4522. "name":"polySurface6",
  4523. "active":true,
  4524. "isStatic":false,
  4525. "layer":9,
  4526. "position":[
  4527. -0.0001685527,
  4528. -0.7552738,
  4529. -0.1062341
  4530. ],
  4531. "rotation":[
  4532. 0,
  4533. 0,
  4534. 0,
  4535. -1
  4536. ],
  4537. "scale":[
  4538. 1,
  4539. 1,
  4540. 0.9999999
  4541. ]
  4542. },
  4543. "components":[],
  4544. "child":[]
  4545. }
  4546. ]
  4547. },
  4548. {
  4549. "type":"Sprite3D",
  4550. "props":{
  4551. "name":"pSphere4",
  4552. "active":true,
  4553. "isStatic":false,
  4554. "layer":9,
  4555. "position":[
  4556. -0.1313858,
  4557. 0.7370549,
  4558. 0.09787153
  4559. ],
  4560. "rotation":[
  4561. -0.3641325,
  4562. 0.0265771,
  4563. -0.4907329,
  4564. -0.7911273
  4565. ],
  4566. "scale":[
  4567. 1.495049,
  4568. 1.49505,
  4569. 1.49505
  4570. ]
  4571. },
  4572. "components":[],
  4573. "child":[]
  4574. }
  4575. ]
  4576. },
  4577. {
  4578. "type":"Sprite3D",
  4579. "props":{
  4580. "name":"Wingedhelm",
  4581. "active":true,
  4582. "isStatic":false,
  4583. "layer":9,
  4584. "position":[
  4585. -0.4079995,
  4586. 1.763,
  4587. 0.06699993
  4588. ],
  4589. "rotation":[
  4590. 0,
  4591. 0,
  4592. 0,
  4593. -1
  4594. ],
  4595. "scale":[
  4596. 1.0841,
  4597. 1.0841,
  4598. 1.0841
  4599. ]
  4600. },
  4601. "components":[],
  4602. "child":[
  4603. {
  4604. "type":"Sprite3D",
  4605. "props":{
  4606. "name":"pCube28",
  4607. "active":true,
  4608. "isStatic":false,
  4609. "layer":9,
  4610. "position":[
  4611. 0,
  4612. 0,
  4613. 0
  4614. ],
  4615. "rotation":[
  4616. 0.0002139438,
  4617. -0.002516874,
  4618. 9.805852E-06,
  4619. -0.9999968
  4620. ],
  4621. "scale":[
  4622. 90.15797,
  4623. 90.15797,
  4624. 90.15797
  4625. ]
  4626. },
  4627. "components":[],
  4628. "child":[]
  4629. },
  4630. {
  4631. "type":"Sprite3D",
  4632. "props":{
  4633. "name":"pCylinder15",
  4634. "active":true,
  4635. "isStatic":false,
  4636. "layer":9,
  4637. "position":[
  4638. 0,
  4639. 0,
  4640. 0
  4641. ],
  4642. "rotation":[
  4643. -0.7071068,
  4644. 0,
  4645. 0,
  4646. -0.7071068
  4647. ],
  4648. "scale":[
  4649. 17.05011,
  4650. 7.160882,
  4651. 17.05011
  4652. ]
  4653. },
  4654. "components":[],
  4655. "child":[]
  4656. },
  4657. {
  4658. "type":"Sprite3D",
  4659. "props":{
  4660. "name":"pCylinder16",
  4661. "active":true,
  4662. "isStatic":false,
  4663. "layer":9,
  4664. "position":[
  4665. 0,
  4666. 0,
  4667. 0
  4668. ],
  4669. "rotation":[
  4670. -0.7071068,
  4671. 0,
  4672. 0,
  4673. -0.7071068
  4674. ],
  4675. "scale":[
  4676. 17.05011,
  4677. 7.423079,
  4678. 17.05011
  4679. ]
  4680. },
  4681. "components":[],
  4682. "child":[]
  4683. },
  4684. {
  4685. "type":"Sprite3D",
  4686. "props":{
  4687. "name":"pCylinder17",
  4688. "active":true,
  4689. "isStatic":false,
  4690. "layer":9,
  4691. "position":[
  4692. 0,
  4693. 0,
  4694. 0
  4695. ],
  4696. "rotation":[
  4697. -0.7071068,
  4698. 0,
  4699. 0,
  4700. -0.7071068
  4701. ],
  4702. "scale":[
  4703. 23.08896,
  4704. 2.580076,
  4705. 23.08896
  4706. ]
  4707. },
  4708. "components":[],
  4709. "child":[]
  4710. },
  4711. {
  4712. "type":"Sprite3D",
  4713. "props":{
  4714. "name":"pCylinder18",
  4715. "active":true,
  4716. "isStatic":false,
  4717. "layer":9,
  4718. "position":[
  4719. 0,
  4720. 0,
  4721. 0
  4722. ],
  4723. "rotation":[
  4724. -0.7071068,
  4725. 0,
  4726. 0,
  4727. -0.7071068
  4728. ],
  4729. "scale":[
  4730. 23.08896,
  4731. 2.580076,
  4732. 23.08896
  4733. ]
  4734. },
  4735. "components":[],
  4736. "child":[]
  4737. }
  4738. ]
  4739. }
  4740. ]
  4741. }
  4742. ]
  4743. }
  4744. ]
  4745. },
  4746. {
  4747. "type":"Sprite3D",
  4748. "props":{
  4749. "name":"Floppy_RightShoulder",
  4750. "active":true,
  4751. "isStatic":false,
  4752. "layer":9,
  4753. "position":[
  4754. 0.1754993,
  4755. -0.01261258,
  4756. -0.08765173
  4757. ],
  4758. "rotation":[
  4759. -0.6911391,
  4760. 0.5255306,
  4761. -0.4350852,
  4762. -0.2384223
  4763. ],
  4764. "scale":[
  4765. 1,
  4766. 1,
  4767. 0.9999999
  4768. ]
  4769. },
  4770. "components":[],
  4771. "child":[
  4772. {
  4773. "type":"Sprite3D",
  4774. "props":{
  4775. "name":"Floppy_RightArm",
  4776. "active":true,
  4777. "isStatic":false,
  4778. "layer":9,
  4779. "position":[
  4780. -0.1376975,
  4781. 2.980232E-08,
  4782. -2.384186E-07
  4783. ],
  4784. "rotation":[
  4785. -0.6146253,
  4786. 0.4366615,
  4787. -0.3015079,
  4788. -0.583657
  4789. ],
  4790. "scale":[
  4791. 0.9999999,
  4792. 1,
  4793. 0.9999999
  4794. ]
  4795. },
  4796. "components":[],
  4797. "child":[
  4798. {
  4799. "type":"Sprite3D",
  4800. "props":{
  4801. "name":"Floppy_RightForeArm",
  4802. "active":true,
  4803. "isStatic":false,
  4804. "layer":9,
  4805. "position":[
  4806. -0.3026452,
  4807. -7.450581E-07,
  4808. -5.960464E-07
  4809. ],
  4810. "rotation":[
  4811. 0.01491224,
  4812. -0.3615996,
  4813. -0.03841102,
  4814. -0.9314226
  4815. ],
  4816. "scale":[
  4817. 1,
  4818. 0.9999999,
  4819. 0.9999999
  4820. ]
  4821. },
  4822. "components":[],
  4823. "child":[
  4824. {
  4825. "type":"Sprite3D",
  4826. "props":{
  4827. "name":"Floppy_RightHand",
  4828. "active":true,
  4829. "isStatic":false,
  4830. "layer":9,
  4831. "position":[
  4832. -0.2371137,
  4833. 8.940697E-08,
  4834. -1.490116E-07
  4835. ],
  4836. "rotation":[
  4837. -0.01273652,
  4838. 0.1052496,
  4839. 0.1194601,
  4840. -0.9871624
  4841. ],
  4842. "scale":[
  4843. 1,
  4844. 1,
  4845. 1
  4846. ]
  4847. },
  4848. "components":[],
  4849. "child":[]
  4850. }
  4851. ]
  4852. }
  4853. ]
  4854. }
  4855. ]
  4856. }
  4857. ]
  4858. }
  4859. ]
  4860. }
  4861. ]
  4862. }
  4863. ]
  4864. }
  4865. ]
  4866. },
  4867. {
  4868. "type":"Sprite3D",
  4869. "props":{
  4870. "name":"group",
  4871. "active":true,
  4872. "isStatic":false,
  4873. "layer":9,
  4874. "position":[
  4875. 0,
  4876. 0,
  4877. 0
  4878. ],
  4879. "rotation":[
  4880. 0,
  4881. 0,
  4882. 0,
  4883. -1
  4884. ],
  4885. "scale":[
  4886. 1,
  4887. 1,
  4888. 1
  4889. ]
  4890. },
  4891. "components":[],
  4892. "child":[
  4893. {
  4894. "type":"SkinnedMeshSprite3D",
  4895. "props":{
  4896. "name":"pasted__polySurface11",
  4897. "active":true,
  4898. "isStatic":false,
  4899. "layer":9,
  4900. "position":[
  4901. -4.836681,
  4902. -0.8724918,
  4903. -0.9277174
  4904. ],
  4905. "rotation":[
  4906. 0,
  4907. 0,
  4908. 0,
  4909. -1
  4910. ],
  4911. "scale":[
  4912. 1,
  4913. 1,
  4914. 1
  4915. ],
  4916. "rootBone":"Floppy_Hips",
  4917. "boundBox":{
  4918. "min":[
  4919. -0.8979983,
  4920. -0.2801096,
  4921. -0.4452674
  4922. ],
  4923. "max":[
  4924. 0.9362673,
  4925. 0.7032709,
  4926. 0.40298
  4927. ]
  4928. },
  4929. "boundSphere":{
  4930. "center":[
  4931. 0.01913446,
  4932. 0.2115806,
  4933. -0.0211437
  4934. ],
  4935. "radius":1.123732
  4936. },
  4937. "materials":[
  4938. {
  4939. "path":"Assets/LastRes/Materials/Red.lmat"
  4940. }
  4941. ],
  4942. "meshPath":"Assets/LastRes/pasted__polySurface11-pasted__polySurface11.lm"
  4943. },
  4944. "components":[
  4945. {
  4946. "type":"PhysicsCollider",
  4947. "restitution":0,
  4948. "friction":0.5,
  4949. "rollingFriction":0,
  4950. "shapes":[
  4951. {
  4952. "type":"CapsuleColliderShape",
  4953. "center":[
  4954. -4.85,
  4955. 1.731843,
  4956. 1.014204
  4957. ],
  4958. "radius":0.3496907,
  4959. "height":1.718704
  4960. }
  4961. ],
  4962. "isTrigger":false
  4963. }
  4964. ],
  4965. "child":[]
  4966. }
  4967. ]
  4968. },
  4969. {
  4970. "type":"Sprite3D",
  4971. "props":{
  4972. "name":"GunPos",
  4973. "active":true,
  4974. "isStatic":false,
  4975. "layer":9,
  4976. "position":[
  4977. 0.05202955,
  4978. 1.081303,
  4979. 0.7511533
  4980. ],
  4981. "rotation":[
  4982. 0.0190767,
  4983. -0.003576308,
  4984. -0.005221485,
  4985. 0.9997981
  4986. ],
  4987. "scale":[
  4988. 1,
  4989. 1,
  4990. 1
  4991. ]
  4992. },
  4993. "components":[],
  4994. "child":[
  4995. {
  4996. "type":"Sprite3D",
  4997. "props":{
  4998. "name":"gun1",
  4999. "active":true,
  5000. "isStatic":false,
  5001. "layer":9,
  5002. "position":[
  5003. 0,
  5004. 0,
  5005. 0
  5006. ],
  5007. "rotation":[
  5008. 0,
  5009. 0,
  5010. 0,
  5011. -1
  5012. ],
  5013. "scale":[
  5014. 1,
  5015. 1,
  5016. 1
  5017. ]
  5018. },
  5019. "components":[],
  5020. "child":[
  5021. {
  5022. "type":"Sprite3D",
  5023. "props":{
  5024. "name":"gun1",
  5025. "active":true,
  5026. "isStatic":false,
  5027. "layer":0,
  5028. "position":[
  5029. 0,
  5030. 0,
  5031. 0
  5032. ],
  5033. "rotation":[
  5034. 0,
  5035. 6.984919E-10,
  5036. -1.309672E-10,
  5037. -1
  5038. ],
  5039. "scale":[
  5040. 1,
  5041. 1,
  5042. 1
  5043. ]
  5044. },
  5045. "components":[],
  5046. "child":[
  5047. {
  5048. "type":"MeshSprite3D",
  5049. "props":{
  5050. "name":"GUN:pCube1",
  5051. "active":true,
  5052. "isStatic":false,
  5053. "layer":0,
  5054. "position":[
  5055. -0.002668029,
  5056. 0.06310773,
  5057. 0.03038764
  5058. ],
  5059. "rotation":[
  5060. 0.00122173,
  5061. 0,
  5062. 0,
  5063. -0.9999993
  5064. ],
  5065. "scale":[
  5066. 2.688132,
  5067. 2.688132,
  5068. 2.688132
  5069. ],
  5070. "meshPath":"Assets/CrackRes/gun1-GUN_pCube1.lm",
  5071. "enableRender":true,
  5072. "materials":[
  5073. {
  5074. "type":"Laya.BlinnPhongMaterial",
  5075. "path":"Assets/CrackRes/Materials/Black.lmat"
  5076. }
  5077. ]
  5078. },
  5079. "components":[],
  5080. "child":[
  5081. {
  5082. "type":"Sprite3D",
  5083. "props":{
  5084. "name":"Flashesnew",
  5085. "active":true,
  5086. "isStatic":false,
  5087. "layer":0,
  5088. "position":[
  5089. 0,
  5090. 0,
  5091. 0
  5092. ],
  5093. "rotation":[
  5094. 0,
  5095. 0,
  5096. 0,
  5097. -1
  5098. ],
  5099. "scale":[
  5100. 1,
  5101. 1,
  5102. 1
  5103. ]
  5104. },
  5105. "components":[],
  5106. "child":[
  5107. {
  5108. "type":"Sprite3D",
  5109. "props":{
  5110. "name":"CFXM_Hit_A Directional Red",
  5111. "active":true,
  5112. "isStatic":false,
  5113. "layer":0,
  5114. "position":[
  5115. 0,
  5116. 0.0112,
  5117. 0.1031
  5118. ],
  5119. "rotation":[
  5120. -1,
  5121. 0,
  5122. 0,
  5123. -6.123234E-17
  5124. ],
  5125. "scale":[
  5126. 0.3720056,
  5127. 0.3720056,
  5128. 0.3720056
  5129. ]
  5130. },
  5131. "components":[],
  5132. "child":[
  5133. {
  5134. "type":"Sprite3D",
  5135. "props":{
  5136. "name":"Traits",
  5137. "active":true,
  5138. "isStatic":false,
  5139. "layer":0,
  5140. "position":[
  5141. 0,
  5142. 0,
  5143. 0
  5144. ],
  5145. "rotation":[
  5146. -1,
  5147. 0,
  5148. 0,
  5149. 6.123234E-17
  5150. ],
  5151. "scale":[
  5152. 1,
  5153. 1,
  5154. 1
  5155. ]
  5156. },
  5157. "components":[],
  5158. "child":[]
  5159. }
  5160. ]
  5161. }
  5162. ]
  5163. },
  5164. {
  5165. "type":"Sprite3D",
  5166. "props":{
  5167. "name":"FlashesOLD",
  5168. "active":true,
  5169. "isStatic":false,
  5170. "layer":0,
  5171. "position":[
  5172. 0,
  5173. 0,
  5174. 0
  5175. ],
  5176. "rotation":[
  5177. 0,
  5178. 0,
  5179. 0,
  5180. -1
  5181. ],
  5182. "scale":[
  5183. 1,
  5184. 1,
  5185. 1
  5186. ]
  5187. },
  5188. "components":[],
  5189. "child":[
  5190. {
  5191. "type":"Sprite3D",
  5192. "props":{
  5193. "name":"Particle System",
  5194. "active":true,
  5195. "isStatic":false,
  5196. "layer":0,
  5197. "position":[
  5198. 0,
  5199. 0.01490001,
  5200. 0.1308
  5201. ],
  5202. "rotation":[
  5203. 0,
  5204. 0,
  5205. 0,
  5206. -1
  5207. ],
  5208. "scale":[
  5209. 1,
  5210. 1,
  5211. 1
  5212. ]
  5213. },
  5214. "components":[],
  5215. "child":[]
  5216. },
  5217. {
  5218. "type":"Sprite3D",
  5219. "props":{
  5220. "name":"Particle System (1)",
  5221. "active":true,
  5222. "isStatic":false,
  5223. "layer":0,
  5224. "position":[
  5225. 0,
  5226. 0.01490001,
  5227. 0.1308
  5228. ],
  5229. "rotation":[
  5230. 0,
  5231. 0,
  5232. 0,
  5233. -1
  5234. ],
  5235. "scale":[
  5236. 1,
  5237. 1,
  5238. 1
  5239. ]
  5240. },
  5241. "components":[],
  5242. "child":[]
  5243. },
  5244. {
  5245. "type":"Sprite3D",
  5246. "props":{
  5247. "name":"Particle System (2)",
  5248. "active":true,
  5249. "isStatic":false,
  5250. "layer":0,
  5251. "position":[
  5252. 0,
  5253. 0.01490001,
  5254. 0.1308
  5255. ],
  5256. "rotation":[
  5257. 0,
  5258. 0,
  5259. 0,
  5260. -1
  5261. ],
  5262. "scale":[
  5263. 1,
  5264. 1,
  5265. 1
  5266. ]
  5267. },
  5268. "components":[],
  5269. "child":[]
  5270. },
  5271. {
  5272. "type":"Sprite3D",
  5273. "props":{
  5274. "name":"Particle System (3)",
  5275. "active":true,
  5276. "isStatic":false,
  5277. "layer":0,
  5278. "position":[
  5279. 0,
  5280. 0.01490001,
  5281. 0.1308
  5282. ],
  5283. "rotation":[
  5284. 0,
  5285. 0,
  5286. 0,
  5287. -1
  5288. ],
  5289. "scale":[
  5290. 1,
  5291. 1,
  5292. 1
  5293. ]
  5294. },
  5295. "components":[],
  5296. "child":[]
  5297. }
  5298. ]
  5299. }
  5300. ]
  5301. },
  5302. {
  5303. "type":"MeshSprite3D",
  5304. "props":{
  5305. "name":"GUN:pCube2",
  5306. "active":true,
  5307. "isStatic":false,
  5308. "layer":0,
  5309. "position":[
  5310. -0.002668038,
  5311. 0.07812327,
  5312. -0.1552916
  5313. ],
  5314. "rotation":[
  5315. 0.00122173,
  5316. 0,
  5317. 0,
  5318. -0.9999993
  5319. ],
  5320. "scale":[
  5321. 2.688132,
  5322. 2.688132,
  5323. 2.688132
  5324. ],
  5325. "meshPath":"Assets/CrackRes/gun1-GUN_pCube2.lm",
  5326. "enableRender":true,
  5327. "materials":[
  5328. {
  5329. "type":"Laya.BlinnPhongMaterial",
  5330. "path":"Assets/CrackRes/Materials/Black.lmat"
  5331. }
  5332. ]
  5333. },
  5334. "components":[],
  5335. "child":[]
  5336. },
  5337. {
  5338. "type":"Sprite3D",
  5339. "props":{
  5340. "name":"bulletPos",
  5341. "active":true,
  5342. "isStatic":false,
  5343. "layer":0,
  5344. "position":[
  5345. 0,
  5346. 0.0875,
  5347. 0.3
  5348. ],
  5349. "rotation":[
  5350. 0,
  5351. 0,
  5352. 0,
  5353. -1
  5354. ],
  5355. "scale":[
  5356. 1,
  5357. 1,
  5358. 1
  5359. ]
  5360. },
  5361. "components":[],
  5362. "child":[]
  5363. },
  5364. {
  5365. "type":"MeshSprite3D",
  5366. "props":{
  5367. "name":"Shell",
  5368. "active":true,
  5369. "isStatic":false,
  5370. "layer":0,
  5371. "position":[
  5372. 0,
  5373. 0.0906,
  5374. -0.0709
  5375. ],
  5376. "rotation":[
  5377. -0.7071068,
  5378. 0,
  5379. 0,
  5380. -0.7071068
  5381. ],
  5382. "scale":[
  5383. 1.5,
  5384. 1.5,
  5385. 1.5
  5386. ],
  5387. "meshPath":"Assets/CrackRes/gun1-Shell.lm",
  5388. "enableRender":true,
  5389. "materials":[
  5390. {
  5391. "type":"Laya.BlinnPhongMaterial",
  5392. "path":"Assets/CrackRes/Materials/Black.lmat"
  5393. }
  5394. ]
  5395. },
  5396. "components":[],
  5397. "child":[]
  5398. }
  5399. ]
  5400. }
  5401. ]
  5402. }
  5403. ]
  5404. }
  5405. ]
  5406. }
  5407. ]
  5408. }
  5409. }