mainscene2.ls 152 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233
  1. {
  2. "version":"LAYASCENE3D:02",
  3. "data":{
  4. "type":"Scene3D",
  5. "props":{
  6. "name":"mainscene2",
  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.5629866,
  18. 0.8602941,
  19. 0.823387
  20. ]
  21. },
  22. "child":[
  23. {
  24. "type":"Camera",
  25. "instanceID":0,
  26. "props":{
  27. "name":"Main Camera",
  28. "active":true,
  29. "isStatic":false,
  30. "layer":0,
  31. "position":[
  32. -3.78,
  33. 4.87,
  34. -4.46
  35. ],
  36. "rotation":[
  37. 0.06252024,
  38. 0.932876,
  39. 0.1982889,
  40. -0.2941346
  41. ],
  42. "scale":[
  43. 1,
  44. 1,
  45. 1
  46. ],
  47. "clearFlag":0,
  48. "orthographic":false,
  49. "orthographicVerticalSize":10,
  50. "fieldOfView":63.9,
  51. "enableHDR":true,
  52. "nearPlane":0.01,
  53. "farPlane":1000,
  54. "viewport":[
  55. 0,
  56. 0,
  57. 1,
  58. 1
  59. ],
  60. "clearColor":[
  61. 0.0951557,
  62. 0.8088235,
  63. 0.7792923,
  64. 0
  65. ]
  66. },
  67. "components":[],
  68. "child":[]
  69. },
  70. {
  71. "type":"Sprite3D",
  72. "instanceID":1,
  73. "props":{
  74. "name":"level456",
  75. "active":true,
  76. "isStatic":false,
  77. "layer":0,
  78. "position":[
  79. 0,
  80. 0,
  81. 0
  82. ],
  83. "rotation":[
  84. 0,
  85. 0,
  86. 0,
  87. -1
  88. ],
  89. "scale":[
  90. 1,
  91. 1,
  92. 1
  93. ]
  94. },
  95. "components":[],
  96. "child":[
  97. {
  98. "type":"Sprite3D",
  99. "instanceID":2,
  100. "props":{
  101. "name":"level1",
  102. "active":true,
  103. "isStatic":false,
  104. "layer":0,
  105. "position":[
  106. 0,
  107. 0,
  108. 0
  109. ],
  110. "rotation":[
  111. 0,
  112. 0,
  113. 0,
  114. -1
  115. ],
  116. "scale":[
  117. 1,
  118. 1,
  119. 1
  120. ]
  121. },
  122. "components":[],
  123. "child":[
  124. {
  125. "type":"MeshSprite3D",
  126. "instanceID":3,
  127. "props":{
  128. "name":"ground",
  129. "active":true,
  130. "isStatic":false,
  131. "layer":0,
  132. "position":[
  133. -0.193,
  134. -8.3447E-07,
  135. 3.28
  136. ],
  137. "rotation":[
  138. 0,
  139. 0.7071068,
  140. 0.7071068,
  141. 0
  142. ],
  143. "scale":[
  144. 2.05,
  145. 12.7386,
  146. 1
  147. ],
  148. "meshPath":"Assets/model/ground-ground.lm",
  149. "enableRender":true,
  150. "materials":[
  151. {
  152. "path":"Assets/yiqilang_mat/ground.lmat"
  153. },
  154. {
  155. "path":"Assets/yiqilang_mat/ground.lmat"
  156. }
  157. ]
  158. },
  159. "components":[
  160. {
  161. "type":"Animator",
  162. "layers":[],
  163. "cullingMode":0,
  164. "playOnWake":true
  165. }
  166. ],
  167. "child":[
  168. {
  169. "type":"Sprite3D",
  170. "instanceID":4,
  171. "props":{
  172. "name":"GameObject",
  173. "active":true,
  174. "isStatic":false,
  175. "layer":0,
  176. "position":[
  177. 0,
  178. 0,
  179. 0.5
  180. ],
  181. "rotation":[
  182. 0,
  183. 0,
  184. 0,
  185. -1
  186. ],
  187. "scale":[
  188. 1,
  189. 1,
  190. 1
  191. ]
  192. },
  193. "components":[
  194. {
  195. "type":"PhysicsCollider",
  196. "restitution":0,
  197. "friction":0.5,
  198. "rollingFriction":0,
  199. "shapes":[
  200. {
  201. "type":"BoxColliderShape",
  202. "center":[
  203. 0,
  204. 0,
  205. 0
  206. ],
  207. "size":[
  208. 1,
  209. 1,
  210. 1
  211. ]
  212. }
  213. ],
  214. "isTrigger":false
  215. }
  216. ],
  217. "child":[]
  218. }
  219. ]
  220. },
  221. {
  222. "type":"Sprite3D",
  223. "instanceID":5,
  224. "props":{
  225. "name":"barrier",
  226. "active":true,
  227. "isStatic":false,
  228. "layer":0,
  229. "position":[
  230. 0.607,
  231. 1.209,
  232. 2.89
  233. ],
  234. "rotation":[
  235. 0,
  236. 0,
  237. 0,
  238. -1
  239. ],
  240. "scale":[
  241. 2,
  242. 2,
  243. 2
  244. ]
  245. },
  246. "components":[],
  247. "child":[]
  248. },
  249. {
  250. "type":"Sprite3D",
  251. "instanceID":6,
  252. "props":{
  253. "name":"Coin",
  254. "active":true,
  255. "isStatic":false,
  256. "layer":0,
  257. "position":[
  258. -3.68,
  259. 1.014,
  260. 10.55
  261. ],
  262. "rotation":[
  263. 0,
  264. 0,
  265. 0,
  266. -1
  267. ],
  268. "scale":[
  269. 1.5,
  270. 1.5,
  271. 1.5
  272. ]
  273. },
  274. "components":[],
  275. "child":[]
  276. },
  277. {
  278. "type":"Sprite3D",
  279. "instanceID":7,
  280. "props":{
  281. "name":"barrier",
  282. "active":true,
  283. "isStatic":false,
  284. "layer":0,
  285. "position":[
  286. -1.041,
  287. 1.209,
  288. 2.89
  289. ],
  290. "rotation":[
  291. 0,
  292. 0,
  293. 0,
  294. -1
  295. ],
  296. "scale":[
  297. 2,
  298. 2,
  299. 2
  300. ]
  301. },
  302. "components":[],
  303. "child":[]
  304. },
  305. {
  306. "type":"MeshSprite3D",
  307. "instanceID":8,
  308. "props":{
  309. "name":"ground",
  310. "active":true,
  311. "isStatic":false,
  312. "layer":0,
  313. "position":[
  314. -0.193,
  315. 0,
  316. 10.674
  317. ],
  318. "rotation":[
  319. 0,
  320. 0.7071068,
  321. 0.7071068,
  322. 0
  323. ],
  324. "scale":[
  325. 2.05,
  326. 2.05,
  327. 1
  328. ],
  329. "meshPath":"Assets/model/ground-ground.lm",
  330. "enableRender":true,
  331. "materials":[
  332. {
  333. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  334. }
  335. ]
  336. },
  337. "components":[
  338. {
  339. "type":"Animator",
  340. "layers":[],
  341. "cullingMode":0,
  342. "playOnWake":true
  343. }
  344. ],
  345. "child":[
  346. {
  347. "type":"Sprite3D",
  348. "instanceID":9,
  349. "props":{
  350. "name":"GameObject",
  351. "active":true,
  352. "isStatic":false,
  353. "layer":0,
  354. "position":[
  355. 0,
  356. 0,
  357. 0.5
  358. ],
  359. "rotation":[
  360. 0,
  361. 0,
  362. 0,
  363. -1
  364. ],
  365. "scale":[
  366. 1,
  367. 1,
  368. 1
  369. ]
  370. },
  371. "components":[
  372. {
  373. "type":"PhysicsCollider",
  374. "restitution":0,
  375. "friction":0.5,
  376. "rollingFriction":0,
  377. "shapes":[
  378. {
  379. "type":"BoxColliderShape",
  380. "center":[
  381. 0,
  382. 0,
  383. 0
  384. ],
  385. "size":[
  386. 1,
  387. 1,
  388. 1
  389. ]
  390. }
  391. ],
  392. "isTrigger":false
  393. }
  394. ],
  395. "child":[]
  396. }
  397. ]
  398. },
  399. {
  400. "type":"MeshSprite3D",
  401. "instanceID":10,
  402. "props":{
  403. "name":"ground",
  404. "active":true,
  405. "isStatic":false,
  406. "layer":0,
  407. "position":[
  408. -10.88,
  409. 0,
  410. 18.06
  411. ],
  412. "rotation":[
  413. 0.7071068,
  414. 0,
  415. 0,
  416. -0.7071068
  417. ],
  418. "scale":[
  419. 2.05,
  420. 12.73861,
  421. 1
  422. ],
  423. "meshPath":"Assets/model/ground-ground.lm",
  424. "enableRender":true,
  425. "materials":[
  426. {
  427. "path":"Assets/yiqilang_mat/ground.lmat"
  428. }
  429. ]
  430. },
  431. "components":[
  432. {
  433. "type":"Animator",
  434. "layers":[],
  435. "cullingMode":0,
  436. "playOnWake":true
  437. }
  438. ],
  439. "child":[
  440. {
  441. "type":"Sprite3D",
  442. "instanceID":11,
  443. "props":{
  444. "name":"GameObject",
  445. "active":true,
  446. "isStatic":false,
  447. "layer":0,
  448. "position":[
  449. 0,
  450. 0,
  451. 0.5
  452. ],
  453. "rotation":[
  454. 0,
  455. 0,
  456. 0,
  457. -1
  458. ],
  459. "scale":[
  460. 1,
  461. 1,
  462. 1
  463. ]
  464. },
  465. "components":[
  466. {
  467. "type":"PhysicsCollider",
  468. "restitution":0,
  469. "friction":0.5,
  470. "rollingFriction":0,
  471. "shapes":[
  472. {
  473. "type":"BoxColliderShape",
  474. "center":[
  475. 0,
  476. 0,
  477. 0
  478. ],
  479. "size":[
  480. 1,
  481. 1,
  482. 1
  483. ]
  484. }
  485. ],
  486. "isTrigger":false
  487. }
  488. ],
  489. "child":[]
  490. }
  491. ]
  492. },
  493. {
  494. "type":"MeshSprite3D",
  495. "instanceID":12,
  496. "props":{
  497. "name":"ground",
  498. "active":true,
  499. "isStatic":false,
  500. "layer":0,
  501. "position":[
  502. -14.46,
  503. 0,
  504. 25.45
  505. ],
  506. "rotation":[
  507. 0.5,
  508. 0.5,
  509. 0.5,
  510. -0.5
  511. ],
  512. "scale":[
  513. 2.05,
  514. 5.161738,
  515. 1
  516. ],
  517. "meshPath":"Assets/model/ground-ground.lm",
  518. "enableRender":true,
  519. "materials":[
  520. {
  521. "path":"Assets/yiqilang_mat/ground.lmat"
  522. }
  523. ]
  524. },
  525. "components":[
  526. {
  527. "type":"Animator",
  528. "layers":[],
  529. "cullingMode":0,
  530. "playOnWake":true
  531. }
  532. ],
  533. "child":[
  534. {
  535. "type":"Sprite3D",
  536. "instanceID":13,
  537. "props":{
  538. "name":"GameObject",
  539. "active":true,
  540. "isStatic":false,
  541. "layer":0,
  542. "position":[
  543. 0,
  544. 0,
  545. 0.5
  546. ],
  547. "rotation":[
  548. 0,
  549. 0,
  550. 0,
  551. -1
  552. ],
  553. "scale":[
  554. 1,
  555. 1,
  556. 1
  557. ]
  558. },
  559. "components":[
  560. {
  561. "type":"PhysicsCollider",
  562. "restitution":0,
  563. "friction":0.5,
  564. "rollingFriction":0,
  565. "shapes":[
  566. {
  567. "type":"BoxColliderShape",
  568. "center":[
  569. 0,
  570. 0,
  571. 0
  572. ],
  573. "size":[
  574. 1,
  575. 1,
  576. 1
  577. ]
  578. }
  579. ],
  580. "isTrigger":false
  581. }
  582. ],
  583. "child":[]
  584. }
  585. ]
  586. },
  587. {
  588. "type":"MeshSprite3D",
  589. "instanceID":14,
  590. "props":{
  591. "name":"ground",
  592. "active":true,
  593. "isStatic":false,
  594. "layer":0,
  595. "position":[
  596. -18.04,
  597. 0,
  598. 31.21
  599. ],
  600. "rotation":[
  601. 0.7071068,
  602. 0,
  603. 0,
  604. -0.7071068
  605. ],
  606. "scale":[
  607. 2.05,
  608. 9.471806,
  609. 1
  610. ],
  611. "meshPath":"Assets/model/ground-ground.lm",
  612. "enableRender":true,
  613. "materials":[
  614. {
  615. "path":"Assets/yiqilang_mat/ground.lmat"
  616. }
  617. ]
  618. },
  619. "components":[
  620. {
  621. "type":"Animator",
  622. "layers":[],
  623. "cullingMode":0,
  624. "playOnWake":true
  625. }
  626. ],
  627. "child":[
  628. {
  629. "type":"Sprite3D",
  630. "instanceID":15,
  631. "props":{
  632. "name":"GameObject",
  633. "active":true,
  634. "isStatic":false,
  635. "layer":0,
  636. "position":[
  637. 0,
  638. 0,
  639. 0.5
  640. ],
  641. "rotation":[
  642. 0,
  643. 0,
  644. 0,
  645. -1
  646. ],
  647. "scale":[
  648. 1,
  649. 1,
  650. 1
  651. ]
  652. },
  653. "components":[
  654. {
  655. "type":"PhysicsCollider",
  656. "restitution":0,
  657. "friction":0.5,
  658. "rollingFriction":0,
  659. "shapes":[
  660. {
  661. "type":"BoxColliderShape",
  662. "center":[
  663. 0,
  664. 0,
  665. 0
  666. ],
  667. "size":[
  668. 1,
  669. 1,
  670. 1
  671. ]
  672. }
  673. ],
  674. "isTrigger":false
  675. }
  676. ],
  677. "child":[]
  678. }
  679. ]
  680. },
  681. {
  682. "type":"MeshSprite3D",
  683. "instanceID":16,
  684. "props":{
  685. "name":"ground",
  686. "active":true,
  687. "isStatic":false,
  688. "layer":0,
  689. "position":[
  690. -19.51,
  691. 0,
  692. 36.97
  693. ],
  694. "rotation":[
  695. 0.5,
  696. 0.5,
  697. 0.5,
  698. -0.5
  699. ],
  700. "scale":[
  701. 2.05,
  702. 1.061787,
  703. 1
  704. ],
  705. "meshPath":"Assets/model/ground-ground.lm",
  706. "enableRender":true,
  707. "materials":[
  708. {
  709. "path":"Assets/yiqilang_mat/ground.lmat"
  710. }
  711. ]
  712. },
  713. "components":[
  714. {
  715. "type":"Animator",
  716. "layers":[],
  717. "cullingMode":0,
  718. "playOnWake":true
  719. }
  720. ],
  721. "child":[
  722. {
  723. "type":"Sprite3D",
  724. "instanceID":17,
  725. "props":{
  726. "name":"GameObject",
  727. "active":true,
  728. "isStatic":false,
  729. "layer":0,
  730. "position":[
  731. 0,
  732. 0,
  733. 0.5
  734. ],
  735. "rotation":[
  736. 0,
  737. 0,
  738. 0,
  739. -1
  740. ],
  741. "scale":[
  742. 1,
  743. 1,
  744. 1
  745. ]
  746. },
  747. "components":[
  748. {
  749. "type":"PhysicsCollider",
  750. "restitution":0,
  751. "friction":0.5,
  752. "rollingFriction":0,
  753. "shapes":[
  754. {
  755. "type":"BoxColliderShape",
  756. "center":[
  757. 0,
  758. 0,
  759. 0
  760. ],
  761. "size":[
  762. 1,
  763. 1,
  764. 1
  765. ]
  766. }
  767. ],
  768. "isTrigger":false
  769. }
  770. ],
  771. "child":[]
  772. }
  773. ]
  774. },
  775. {
  776. "type":"MeshSprite3D",
  777. "instanceID":18,
  778. "props":{
  779. "name":"ground",
  780. "active":true,
  781. "isStatic":false,
  782. "layer":0,
  783. "position":[
  784. -20.98,
  785. 0,
  786. 41.33
  787. ],
  788. "rotation":[
  789. 0.7071068,
  790. 0,
  791. 0,
  792. -0.7071068
  793. ],
  794. "scale":[
  795. 2.05,
  796. 6.80676,
  797. 1
  798. ],
  799. "meshPath":"Assets/model/ground-ground.lm",
  800. "enableRender":true,
  801. "materials":[
  802. {
  803. "path":"Assets/yiqilang_mat/ground.lmat"
  804. }
  805. ]
  806. },
  807. "components":[
  808. {
  809. "type":"Animator",
  810. "layers":[],
  811. "cullingMode":0,
  812. "playOnWake":true
  813. }
  814. ],
  815. "child":[
  816. {
  817. "type":"Sprite3D",
  818. "instanceID":19,
  819. "props":{
  820. "name":"GameObject",
  821. "active":true,
  822. "isStatic":false,
  823. "layer":0,
  824. "position":[
  825. 0,
  826. 0,
  827. 0.5
  828. ],
  829. "rotation":[
  830. 0,
  831. 0,
  832. 0,
  833. -1
  834. ],
  835. "scale":[
  836. 1,
  837. 1,
  838. 1
  839. ]
  840. },
  841. "components":[
  842. {
  843. "type":"PhysicsCollider",
  844. "restitution":0,
  845. "friction":0.5,
  846. "rollingFriction":0,
  847. "shapes":[
  848. {
  849. "type":"BoxColliderShape",
  850. "center":[
  851. 0,
  852. 0,
  853. 0
  854. ],
  855. "size":[
  856. 1,
  857. 1,
  858. 1
  859. ]
  860. }
  861. ],
  862. "isTrigger":false
  863. }
  864. ],
  865. "child":[]
  866. }
  867. ]
  868. },
  869. {
  870. "type":"MeshSprite3D",
  871. "instanceID":20,
  872. "props":{
  873. "name":"ground",
  874. "active":true,
  875. "isStatic":false,
  876. "layer":0,
  877. "position":[
  878. -20.98,
  879. -1.66,
  880. 49.6
  881. ],
  882. "rotation":[
  883. 0.7071068,
  884. 0,
  885. 0,
  886. -0.7071068
  887. ],
  888. "scale":[
  889. 2.05,
  890. 8.236071,
  891. 1
  892. ],
  893. "meshPath":"Assets/model/ground-ground.lm",
  894. "enableRender":true,
  895. "materials":[
  896. {
  897. "path":"Assets/yiqilang_mat/ground.lmat"
  898. }
  899. ]
  900. },
  901. "components":[
  902. {
  903. "type":"Animator",
  904. "layers":[],
  905. "cullingMode":0,
  906. "playOnWake":true
  907. }
  908. ],
  909. "child":[
  910. {
  911. "type":"Sprite3D",
  912. "instanceID":21,
  913. "props":{
  914. "name":"GameObject",
  915. "active":true,
  916. "isStatic":false,
  917. "layer":0,
  918. "position":[
  919. 0,
  920. 0,
  921. 0.5
  922. ],
  923. "rotation":[
  924. 0,
  925. 0,
  926. 0,
  927. -1
  928. ],
  929. "scale":[
  930. 1,
  931. 1,
  932. 1
  933. ]
  934. },
  935. "components":[
  936. {
  937. "type":"PhysicsCollider",
  938. "restitution":0,
  939. "friction":0.5,
  940. "rollingFriction":0,
  941. "shapes":[
  942. {
  943. "type":"BoxColliderShape",
  944. "center":[
  945. 0,
  946. 0,
  947. 0
  948. ],
  949. "size":[
  950. 1,
  951. 1,
  952. 1
  953. ]
  954. }
  955. ],
  956. "isTrigger":false
  957. }
  958. ],
  959. "child":[]
  960. }
  961. ]
  962. },
  963. {
  964. "type":"MeshSprite3D",
  965. "instanceID":22,
  966. "props":{
  967. "name":"ground",
  968. "active":true,
  969. "isStatic":false,
  970. "layer":0,
  971. "position":[
  972. -22.45,
  973. -1.66,
  974. 54.74
  975. ],
  976. "rotation":[
  977. 0.5,
  978. 0.5,
  979. 0.5,
  980. -0.5
  981. ],
  982. "scale":[
  983. 2.05,
  984. 1.037463,
  985. 1
  986. ],
  987. "meshPath":"Assets/model/ground-ground.lm",
  988. "enableRender":true,
  989. "materials":[
  990. {
  991. "path":"Assets/yiqilang_mat/ground.lmat"
  992. }
  993. ]
  994. },
  995. "components":[
  996. {
  997. "type":"Animator",
  998. "layers":[],
  999. "cullingMode":0,
  1000. "playOnWake":true
  1001. }
  1002. ],
  1003. "child":[
  1004. {
  1005. "type":"Sprite3D",
  1006. "instanceID":23,
  1007. "props":{
  1008. "name":"GameObject",
  1009. "active":true,
  1010. "isStatic":false,
  1011. "layer":0,
  1012. "position":[
  1013. 0,
  1014. 0,
  1015. 0.5
  1016. ],
  1017. "rotation":[
  1018. 0,
  1019. 0,
  1020. 0,
  1021. -1
  1022. ],
  1023. "scale":[
  1024. 1,
  1025. 1,
  1026. 1
  1027. ]
  1028. },
  1029. "components":[
  1030. {
  1031. "type":"PhysicsCollider",
  1032. "restitution":0,
  1033. "friction":0.5,
  1034. "rollingFriction":0,
  1035. "shapes":[
  1036. {
  1037. "type":"BoxColliderShape",
  1038. "center":[
  1039. 0,
  1040. 0,
  1041. 0
  1042. ],
  1043. "size":[
  1044. 1,
  1045. 1,
  1046. 1
  1047. ]
  1048. }
  1049. ],
  1050. "isTrigger":false
  1051. }
  1052. ],
  1053. "child":[]
  1054. }
  1055. ]
  1056. },
  1057. {
  1058. "type":"MeshSprite3D",
  1059. "instanceID":24,
  1060. "props":{
  1061. "name":"ground",
  1062. "active":true,
  1063. "isStatic":false,
  1064. "layer":0,
  1065. "position":[
  1066. -23.92,
  1067. -1.66,
  1068. 59.88
  1069. ],
  1070. "rotation":[
  1071. 0.7071068,
  1072. 0,
  1073. 0,
  1074. -0.7071068
  1075. ],
  1076. "scale":[
  1077. 2.05,
  1078. 8.236073,
  1079. 1
  1080. ],
  1081. "meshPath":"Assets/model/ground-ground.lm",
  1082. "enableRender":true,
  1083. "materials":[
  1084. {
  1085. "path":"Assets/yiqilang_mat/ground.lmat"
  1086. }
  1087. ]
  1088. },
  1089. "components":[
  1090. {
  1091. "type":"Animator",
  1092. "layers":[],
  1093. "cullingMode":0,
  1094. "playOnWake":true
  1095. }
  1096. ],
  1097. "child":[
  1098. {
  1099. "type":"Sprite3D",
  1100. "instanceID":25,
  1101. "props":{
  1102. "name":"GameObject",
  1103. "active":true,
  1104. "isStatic":false,
  1105. "layer":0,
  1106. "position":[
  1107. 0,
  1108. 0,
  1109. 0.5
  1110. ],
  1111. "rotation":[
  1112. 0,
  1113. 0,
  1114. 0,
  1115. -1
  1116. ],
  1117. "scale":[
  1118. 1,
  1119. 1,
  1120. 1
  1121. ]
  1122. },
  1123. "components":[
  1124. {
  1125. "type":"PhysicsCollider",
  1126. "restitution":0,
  1127. "friction":0.5,
  1128. "rollingFriction":0,
  1129. "shapes":[
  1130. {
  1131. "type":"BoxColliderShape",
  1132. "center":[
  1133. 0,
  1134. 0,
  1135. 0
  1136. ],
  1137. "size":[
  1138. 1,
  1139. 1,
  1140. 1
  1141. ]
  1142. }
  1143. ],
  1144. "isTrigger":false
  1145. }
  1146. ],
  1147. "child":[]
  1148. }
  1149. ]
  1150. },
  1151. {
  1152. "type":"MeshSprite3D",
  1153. "instanceID":26,
  1154. "props":{
  1155. "name":"ground",
  1156. "active":true,
  1157. "isStatic":false,
  1158. "layer":0,
  1159. "position":[
  1160. -26.91,
  1161. -1.66,
  1162. 65.02
  1163. ],
  1164. "rotation":[
  1165. 0.5,
  1166. 0.5,
  1167. 0.5,
  1168. -0.5
  1169. ],
  1170. "scale":[
  1171. 2.05,
  1172. 3.933355,
  1173. 1
  1174. ],
  1175. "meshPath":"Assets/model/ground-ground.lm",
  1176. "enableRender":true,
  1177. "materials":[
  1178. {
  1179. "path":"Assets/yiqilang_mat/ground.lmat"
  1180. }
  1181. ]
  1182. },
  1183. "components":[
  1184. {
  1185. "type":"Animator",
  1186. "layers":[],
  1187. "cullingMode":0,
  1188. "playOnWake":true
  1189. }
  1190. ],
  1191. "child":[
  1192. {
  1193. "type":"Sprite3D",
  1194. "instanceID":27,
  1195. "props":{
  1196. "name":"GameObject",
  1197. "active":true,
  1198. "isStatic":false,
  1199. "layer":0,
  1200. "position":[
  1201. 0,
  1202. 0,
  1203. 0.5
  1204. ],
  1205. "rotation":[
  1206. 0,
  1207. 0,
  1208. 0,
  1209. -1
  1210. ],
  1211. "scale":[
  1212. 1,
  1213. 1,
  1214. 1
  1215. ]
  1216. },
  1217. "components":[
  1218. {
  1219. "type":"PhysicsCollider",
  1220. "restitution":0,
  1221. "friction":0.5,
  1222. "rollingFriction":0,
  1223. "shapes":[
  1224. {
  1225. "type":"BoxColliderShape",
  1226. "center":[
  1227. 0,
  1228. 0,
  1229. 0
  1230. ],
  1231. "size":[
  1232. 1,
  1233. 1,
  1234. 1
  1235. ]
  1236. }
  1237. ],
  1238. "isTrigger":false
  1239. }
  1240. ],
  1241. "child":[]
  1242. }
  1243. ]
  1244. },
  1245. {
  1246. "type":"MeshSprite3D",
  1247. "instanceID":28,
  1248. "props":{
  1249. "name":"ground",
  1250. "active":true,
  1251. "isStatic":false,
  1252. "layer":0,
  1253. "position":[
  1254. -29.902,
  1255. -1.66,
  1256. 74.056
  1257. ],
  1258. "rotation":[
  1259. 0.7071068,
  1260. 0,
  1261. 0,
  1262. -0.7071068
  1263. ],
  1264. "scale":[
  1265. 2.05,
  1266. 16.02262,
  1267. 1
  1268. ],
  1269. "meshPath":"Assets/model/ground-ground.lm",
  1270. "enableRender":true,
  1271. "materials":[
  1272. {
  1273. "path":"Assets/yiqilang_mat/ground.lmat"
  1274. }
  1275. ]
  1276. },
  1277. "components":[
  1278. {
  1279. "type":"Animator",
  1280. "layers":[],
  1281. "cullingMode":0,
  1282. "playOnWake":true
  1283. }
  1284. ],
  1285. "child":[
  1286. {
  1287. "type":"Sprite3D",
  1288. "instanceID":29,
  1289. "props":{
  1290. "name":"GameObject",
  1291. "active":true,
  1292. "isStatic":false,
  1293. "layer":0,
  1294. "position":[
  1295. 0,
  1296. 0,
  1297. 0.5
  1298. ],
  1299. "rotation":[
  1300. 0,
  1301. 0,
  1302. 0,
  1303. -1
  1304. ],
  1305. "scale":[
  1306. 1,
  1307. 1,
  1308. 1
  1309. ]
  1310. },
  1311. "components":[
  1312. {
  1313. "type":"PhysicsCollider",
  1314. "restitution":0,
  1315. "friction":0.5,
  1316. "rollingFriction":0,
  1317. "shapes":[
  1318. {
  1319. "type":"BoxColliderShape",
  1320. "center":[
  1321. 0,
  1322. 0,
  1323. 0
  1324. ],
  1325. "size":[
  1326. 1,
  1327. 1,
  1328. 1
  1329. ]
  1330. }
  1331. ],
  1332. "isTrigger":false
  1333. }
  1334. ],
  1335. "child":[]
  1336. }
  1337. ]
  1338. },
  1339. {
  1340. "type":"Sprite3D",
  1341. "instanceID":30,
  1342. "props":{
  1343. "name":"barrier",
  1344. "active":true,
  1345. "isStatic":false,
  1346. "layer":0,
  1347. "position":[
  1348. -0.627,
  1349. 1.209,
  1350. 7.26
  1351. ],
  1352. "rotation":[
  1353. 0,
  1354. 0,
  1355. 0,
  1356. -1
  1357. ],
  1358. "scale":[
  1359. 2,
  1360. 2,
  1361. 2
  1362. ]
  1363. },
  1364. "components":[],
  1365. "child":[]
  1366. },
  1367. {
  1368. "type":"Sprite3D",
  1369. "instanceID":31,
  1370. "props":{
  1371. "name":"barrier",
  1372. "active":true,
  1373. "isStatic":false,
  1374. "layer":0,
  1375. "position":[
  1376. 0.198,
  1377. 1.209,
  1378. 7.26
  1379. ],
  1380. "rotation":[
  1381. 0,
  1382. 0,
  1383. 0,
  1384. -1
  1385. ],
  1386. "scale":[
  1387. 2,
  1388. 2,
  1389. 2
  1390. ]
  1391. },
  1392. "components":[],
  1393. "child":[]
  1394. },
  1395. {
  1396. "type":"Sprite3D",
  1397. "instanceID":32,
  1398. "props":{
  1399. "name":"barrier",
  1400. "active":true,
  1401. "isStatic":false,
  1402. "layer":0,
  1403. "position":[
  1404. -10.869,
  1405. 1.209,
  1406. 13.38
  1407. ],
  1408. "rotation":[
  1409. 0,
  1410. 0,
  1411. 0,
  1412. -1
  1413. ],
  1414. "scale":[
  1415. 2,
  1416. 2,
  1417. 2
  1418. ]
  1419. },
  1420. "components":[],
  1421. "child":[]
  1422. },
  1423. {
  1424. "type":"Sprite3D",
  1425. "instanceID":33,
  1426. "props":{
  1427. "name":"barrier",
  1428. "active":true,
  1429. "isStatic":false,
  1430. "layer":0,
  1431. "position":[
  1432. -11.279,
  1433. 1.209,
  1434. 13.38
  1435. ],
  1436. "rotation":[
  1437. 0,
  1438. 0,
  1439. 0,
  1440. -1
  1441. ],
  1442. "scale":[
  1443. 2,
  1444. 2,
  1445. 2
  1446. ]
  1447. },
  1448. "components":[],
  1449. "child":[]
  1450. },
  1451. {
  1452. "type":"Sprite3D",
  1453. "instanceID":34,
  1454. "props":{
  1455. "name":"barrier",
  1456. "active":true,
  1457. "isStatic":false,
  1458. "layer":0,
  1459. "position":[
  1460. -11.689,
  1461. 1.209,
  1462. 13.38
  1463. ],
  1464. "rotation":[
  1465. 0,
  1466. 0,
  1467. 0,
  1468. -1
  1469. ],
  1470. "scale":[
  1471. 2,
  1472. 2,
  1473. 2
  1474. ]
  1475. },
  1476. "components":[],
  1477. "child":[]
  1478. },
  1479. {
  1480. "type":"Sprite3D",
  1481. "instanceID":35,
  1482. "props":{
  1483. "name":"barrier",
  1484. "active":true,
  1485. "isStatic":false,
  1486. "layer":0,
  1487. "position":[
  1488. -11.279,
  1489. 1.614,
  1490. 13.38
  1491. ],
  1492. "rotation":[
  1493. 0,
  1494. 0,
  1495. 0,
  1496. -1
  1497. ],
  1498. "scale":[
  1499. 2,
  1500. 2,
  1501. 2
  1502. ]
  1503. },
  1504. "components":[],
  1505. "child":[]
  1506. },
  1507. {
  1508. "type":"Sprite3D",
  1509. "instanceID":36,
  1510. "props":{
  1511. "name":"barrier",
  1512. "active":true,
  1513. "isStatic":false,
  1514. "layer":0,
  1515. "position":[
  1516. -10.459,
  1517. 2.008,
  1518. 21.52
  1519. ],
  1520. "rotation":[
  1521. 0,
  1522. 0,
  1523. 0,
  1524. -1
  1525. ],
  1526. "scale":[
  1527. 2,
  1528. 2,
  1529. 2
  1530. ]
  1531. },
  1532. "components":[],
  1533. "child":[]
  1534. },
  1535. {
  1536. "type":"Sprite3D",
  1537. "instanceID":37,
  1538. "props":{
  1539. "name":"barrier",
  1540. "active":true,
  1541. "isStatic":false,
  1542. "layer":0,
  1543. "position":[
  1544. -10.049,
  1545. 1.614,
  1546. 21.52
  1547. ],
  1548. "rotation":[
  1549. 0,
  1550. 0,
  1551. 0,
  1552. -1
  1553. ],
  1554. "scale":[
  1555. 2,
  1556. 2,
  1557. 2
  1558. ]
  1559. },
  1560. "components":[],
  1561. "child":[]
  1562. },
  1563. {
  1564. "type":"Sprite3D",
  1565. "instanceID":38,
  1566. "props":{
  1567. "name":"barrier",
  1568. "active":true,
  1569. "isStatic":false,
  1570. "layer":0,
  1571. "position":[
  1572. -10.459,
  1573. 1.614,
  1574. 21.52
  1575. ],
  1576. "rotation":[
  1577. 0,
  1578. 0,
  1579. 0,
  1580. -1
  1581. ],
  1582. "scale":[
  1583. 2,
  1584. 2,
  1585. 2
  1586. ]
  1587. },
  1588. "components":[],
  1589. "child":[]
  1590. },
  1591. {
  1592. "type":"Sprite3D",
  1593. "instanceID":39,
  1594. "props":{
  1595. "name":"barrier",
  1596. "active":true,
  1597. "isStatic":false,
  1598. "layer":0,
  1599. "position":[
  1600. -10.869,
  1601. 1.209,
  1602. 21.52
  1603. ],
  1604. "rotation":[
  1605. 0,
  1606. 0,
  1607. 0,
  1608. -1
  1609. ],
  1610. "scale":[
  1611. 2,
  1612. 2,
  1613. 2
  1614. ]
  1615. },
  1616. "components":[],
  1617. "child":[]
  1618. },
  1619. {
  1620. "type":"Sprite3D",
  1621. "instanceID":40,
  1622. "props":{
  1623. "name":"barrier",
  1624. "active":true,
  1625. "isStatic":false,
  1626. "layer":0,
  1627. "position":[
  1628. -10.459,
  1629. 1.209,
  1630. 21.52
  1631. ],
  1632. "rotation":[
  1633. 0,
  1634. 0,
  1635. 0,
  1636. -1
  1637. ],
  1638. "scale":[
  1639. 2,
  1640. 2,
  1641. 2
  1642. ]
  1643. },
  1644. "components":[],
  1645. "child":[]
  1646. },
  1647. {
  1648. "type":"Sprite3D",
  1649. "instanceID":41,
  1650. "props":{
  1651. "name":"barrier",
  1652. "active":true,
  1653. "isStatic":false,
  1654. "layer":0,
  1655. "position":[
  1656. -10.049,
  1657. 1.209,
  1658. 21.52
  1659. ],
  1660. "rotation":[
  1661. 0,
  1662. 0,
  1663. 0,
  1664. -1
  1665. ],
  1666. "scale":[
  1667. 2,
  1668. 2,
  1669. 2
  1670. ]
  1671. },
  1672. "components":[],
  1673. "child":[]
  1674. },
  1675. {
  1676. "type":"Sprite3D",
  1677. "instanceID":42,
  1678. "props":{
  1679. "name":"barrier",
  1680. "active":true,
  1681. "isStatic":false,
  1682. "layer":0,
  1683. "position":[
  1684. -17.209,
  1685. 1.209,
  1686. 27.32
  1687. ],
  1688. "rotation":[
  1689. 0,
  1690. 0,
  1691. 0,
  1692. -1
  1693. ],
  1694. "scale":[
  1695. 2,
  1696. 2,
  1697. 2
  1698. ]
  1699. },
  1700. "components":[],
  1701. "child":[]
  1702. },
  1703. {
  1704. "type":"Sprite3D",
  1705. "instanceID":43,
  1706. "props":{
  1707. "name":"barrier",
  1708. "active":true,
  1709. "isStatic":false,
  1710. "layer":0,
  1711. "position":[
  1712. -17.619,
  1713. 1.209,
  1714. 27.32
  1715. ],
  1716. "rotation":[
  1717. 0,
  1718. 0,
  1719. 0,
  1720. -1
  1721. ],
  1722. "scale":[
  1723. 2,
  1724. 2,
  1725. 2
  1726. ]
  1727. },
  1728. "components":[],
  1729. "child":[]
  1730. },
  1731. {
  1732. "type":"Sprite3D",
  1733. "instanceID":44,
  1734. "props":{
  1735. "name":"barrier",
  1736. "active":true,
  1737. "isStatic":false,
  1738. "layer":0,
  1739. "position":[
  1740. -18.029,
  1741. 1.209,
  1742. 27.32
  1743. ],
  1744. "rotation":[
  1745. 0,
  1746. 0,
  1747. 0,
  1748. -1
  1749. ],
  1750. "scale":[
  1751. 2,
  1752. 2,
  1753. 2
  1754. ]
  1755. },
  1756. "components":[],
  1757. "child":[]
  1758. },
  1759. {
  1760. "type":"Sprite3D",
  1761. "instanceID":45,
  1762. "props":{
  1763. "name":"barrier",
  1764. "active":true,
  1765. "isStatic":false,
  1766. "layer":0,
  1767. "position":[
  1768. -18.439,
  1769. 1.209,
  1770. 27.32
  1771. ],
  1772. "rotation":[
  1773. 0,
  1774. 0,
  1775. 0,
  1776. -1
  1777. ],
  1778. "scale":[
  1779. 2,
  1780. 2,
  1781. 2
  1782. ]
  1783. },
  1784. "components":[],
  1785. "child":[]
  1786. },
  1787. {
  1788. "type":"Sprite3D",
  1789. "instanceID":46,
  1790. "props":{
  1791. "name":"barrier",
  1792. "active":true,
  1793. "isStatic":false,
  1794. "layer":0,
  1795. "position":[
  1796. -18.849,
  1797. 1.209,
  1798. 27.32
  1799. ],
  1800. "rotation":[
  1801. 0,
  1802. 0,
  1803. 0,
  1804. -1
  1805. ],
  1806. "scale":[
  1807. 2,
  1808. 2,
  1809. 2
  1810. ]
  1811. },
  1812. "components":[],
  1813. "child":[]
  1814. },
  1815. {
  1816. "type":"Sprite3D",
  1817. "instanceID":47,
  1818. "props":{
  1819. "name":"barrier",
  1820. "active":true,
  1821. "isStatic":false,
  1822. "layer":0,
  1823. "position":[
  1824. -17.209,
  1825. 1.614,
  1826. 27.32
  1827. ],
  1828. "rotation":[
  1829. 0,
  1830. 0,
  1831. 0,
  1832. -1
  1833. ],
  1834. "scale":[
  1835. 2,
  1836. 2,
  1837. 2
  1838. ]
  1839. },
  1840. "components":[],
  1841. "child":[]
  1842. },
  1843. {
  1844. "type":"Sprite3D",
  1845. "instanceID":48,
  1846. "props":{
  1847. "name":"barrier",
  1848. "active":true,
  1849. "isStatic":false,
  1850. "layer":0,
  1851. "position":[
  1852. -17.209,
  1853. 2.413,
  1854. 27.32
  1855. ],
  1856. "rotation":[
  1857. 0,
  1858. 0,
  1859. 0,
  1860. -1
  1861. ],
  1862. "scale":[
  1863. 2,
  1864. 2,
  1865. 2
  1866. ]
  1867. },
  1868. "components":[],
  1869. "child":[]
  1870. },
  1871. {
  1872. "type":"Sprite3D",
  1873. "instanceID":49,
  1874. "props":{
  1875. "name":"barrier",
  1876. "active":true,
  1877. "isStatic":false,
  1878. "layer":0,
  1879. "position":[
  1880. -17.209,
  1881. 2.008,
  1882. 27.32
  1883. ],
  1884. "rotation":[
  1885. 0,
  1886. 0,
  1887. 0,
  1888. -1
  1889. ],
  1890. "scale":[
  1891. 2,
  1892. 2,
  1893. 2
  1894. ]
  1895. },
  1896. "components":[],
  1897. "child":[]
  1898. },
  1899. {
  1900. "type":"Sprite3D",
  1901. "instanceID":50,
  1902. "props":{
  1903. "name":"barrier",
  1904. "active":true,
  1905. "isStatic":false,
  1906. "layer":0,
  1907. "position":[
  1908. -17.209,
  1909. 2.008,
  1910. 34.05
  1911. ],
  1912. "rotation":[
  1913. 0,
  1914. 0,
  1915. 0,
  1916. -1
  1917. ],
  1918. "scale":[
  1919. 2,
  1920. 2,
  1921. 2
  1922. ]
  1923. },
  1924. "components":[],
  1925. "child":[]
  1926. },
  1927. {
  1928. "type":"Sprite3D",
  1929. "instanceID":51,
  1930. "props":{
  1931. "name":"barrier",
  1932. "active":true,
  1933. "isStatic":false,
  1934. "layer":0,
  1935. "position":[
  1936. -18.849,
  1937. 2.008,
  1938. 34.05
  1939. ],
  1940. "rotation":[
  1941. 0,
  1942. 0,
  1943. 0,
  1944. -1
  1945. ],
  1946. "scale":[
  1947. 2,
  1948. 2,
  1949. 2
  1950. ]
  1951. },
  1952. "components":[],
  1953. "child":[]
  1954. },
  1955. {
  1956. "type":"Sprite3D",
  1957. "instanceID":52,
  1958. "props":{
  1959. "name":"barrier",
  1960. "active":true,
  1961. "isStatic":false,
  1962. "layer":0,
  1963. "position":[
  1964. -17.209,
  1965. 2.413,
  1966. 34.05
  1967. ],
  1968. "rotation":[
  1969. 0,
  1970. 0,
  1971. 0,
  1972. -1
  1973. ],
  1974. "scale":[
  1975. 2,
  1976. 2,
  1977. 2
  1978. ]
  1979. },
  1980. "components":[],
  1981. "child":[]
  1982. },
  1983. {
  1984. "type":"Sprite3D",
  1985. "instanceID":53,
  1986. "props":{
  1987. "name":"barrier",
  1988. "active":true,
  1989. "isStatic":false,
  1990. "layer":0,
  1991. "position":[
  1992. -17.209,
  1993. 1.614,
  1994. 34.05
  1995. ],
  1996. "rotation":[
  1997. 0,
  1998. 0,
  1999. 0,
  2000. -1
  2001. ],
  2002. "scale":[
  2003. 2,
  2004. 2,
  2005. 2
  2006. ]
  2007. },
  2008. "components":[],
  2009. "child":[]
  2010. },
  2011. {
  2012. "type":"Sprite3D",
  2013. "instanceID":54,
  2014. "props":{
  2015. "name":"barrier",
  2016. "active":true,
  2017. "isStatic":false,
  2018. "layer":0,
  2019. "position":[
  2020. -17.619,
  2021. 1.614,
  2022. 34.05
  2023. ],
  2024. "rotation":[
  2025. 0,
  2026. 0,
  2027. 0,
  2028. -1
  2029. ],
  2030. "scale":[
  2031. 2,
  2032. 2,
  2033. 2
  2034. ]
  2035. },
  2036. "components":[],
  2037. "child":[]
  2038. },
  2039. {
  2040. "type":"Sprite3D",
  2041. "instanceID":55,
  2042. "props":{
  2043. "name":"barrier",
  2044. "active":true,
  2045. "isStatic":false,
  2046. "layer":0,
  2047. "position":[
  2048. -18.849,
  2049. 1.614,
  2050. 34.05
  2051. ],
  2052. "rotation":[
  2053. 0,
  2054. 0,
  2055. 0,
  2056. -1
  2057. ],
  2058. "scale":[
  2059. 2,
  2060. 2,
  2061. 2
  2062. ]
  2063. },
  2064. "components":[],
  2065. "child":[]
  2066. },
  2067. {
  2068. "type":"Sprite3D",
  2069. "instanceID":56,
  2070. "props":{
  2071. "name":"barrier",
  2072. "active":true,
  2073. "isStatic":false,
  2074. "layer":0,
  2075. "position":[
  2076. -18.849,
  2077. 1.209,
  2078. 34.05
  2079. ],
  2080. "rotation":[
  2081. 0,
  2082. 0,
  2083. 0,
  2084. -1
  2085. ],
  2086. "scale":[
  2087. 2,
  2088. 2,
  2089. 2
  2090. ]
  2091. },
  2092. "components":[],
  2093. "child":[]
  2094. },
  2095. {
  2096. "type":"Sprite3D",
  2097. "instanceID":57,
  2098. "props":{
  2099. "name":"barrier",
  2100. "active":true,
  2101. "isStatic":false,
  2102. "layer":0,
  2103. "position":[
  2104. -18.439,
  2105. 1.209,
  2106. 34.05
  2107. ],
  2108. "rotation":[
  2109. 0,
  2110. 0,
  2111. 0,
  2112. -1
  2113. ],
  2114. "scale":[
  2115. 2,
  2116. 2,
  2117. 2
  2118. ]
  2119. },
  2120. "components":[],
  2121. "child":[]
  2122. },
  2123. {
  2124. "type":"Sprite3D",
  2125. "instanceID":58,
  2126. "props":{
  2127. "name":"barrier",
  2128. "active":true,
  2129. "isStatic":false,
  2130. "layer":0,
  2131. "position":[
  2132. -18.029,
  2133. 1.209,
  2134. 34.05
  2135. ],
  2136. "rotation":[
  2137. 0,
  2138. 0,
  2139. 0,
  2140. -1
  2141. ],
  2142. "scale":[
  2143. 2,
  2144. 2,
  2145. 2
  2146. ]
  2147. },
  2148. "components":[],
  2149. "child":[]
  2150. },
  2151. {
  2152. "type":"Sprite3D",
  2153. "instanceID":59,
  2154. "props":{
  2155. "name":"barrier",
  2156. "active":true,
  2157. "isStatic":false,
  2158. "layer":0,
  2159. "position":[
  2160. -17.619,
  2161. 1.209,
  2162. 34.05
  2163. ],
  2164. "rotation":[
  2165. 0,
  2166. 0,
  2167. 0,
  2168. -1
  2169. ],
  2170. "scale":[
  2171. 2,
  2172. 2,
  2173. 2
  2174. ]
  2175. },
  2176. "components":[],
  2177. "child":[]
  2178. },
  2179. {
  2180. "type":"Sprite3D",
  2181. "instanceID":60,
  2182. "props":{
  2183. "name":"barrier",
  2184. "active":true,
  2185. "isStatic":false,
  2186. "layer":0,
  2187. "position":[
  2188. -17.209,
  2189. 1.209,
  2190. 34.05
  2191. ],
  2192. "rotation":[
  2193. 0,
  2194. 0,
  2195. 0,
  2196. -1
  2197. ],
  2198. "scale":[
  2199. 2,
  2200. 2,
  2201. 2
  2202. ]
  2203. },
  2204. "components":[],
  2205. "child":[]
  2206. },
  2207. {
  2208. "type":"Sprite3D",
  2209. "instanceID":61,
  2210. "props":{
  2211. "name":"barrier",
  2212. "active":true,
  2213. "isStatic":false,
  2214. "layer":0,
  2215. "position":[
  2216. -20.191,
  2217. 1.209,
  2218. 40.63
  2219. ],
  2220. "rotation":[
  2221. 0,
  2222. 0,
  2223. 0,
  2224. -1
  2225. ],
  2226. "scale":[
  2227. 2,
  2228. 2,
  2229. 2
  2230. ]
  2231. },
  2232. "components":[],
  2233. "child":[]
  2234. },
  2235. {
  2236. "type":"Sprite3D",
  2237. "instanceID":62,
  2238. "props":{
  2239. "name":"barrier",
  2240. "active":true,
  2241. "isStatic":false,
  2242. "layer":0,
  2243. "position":[
  2244. -20.601,
  2245. 1.209,
  2246. 40.63
  2247. ],
  2248. "rotation":[
  2249. 0,
  2250. 0,
  2251. 0,
  2252. -1
  2253. ],
  2254. "scale":[
  2255. 2,
  2256. 2,
  2257. 2
  2258. ]
  2259. },
  2260. "components":[],
  2261. "child":[]
  2262. },
  2263. {
  2264. "type":"Sprite3D",
  2265. "instanceID":63,
  2266. "props":{
  2267. "name":"barrier",
  2268. "active":true,
  2269. "isStatic":false,
  2270. "layer":0,
  2271. "position":[
  2272. -21.421,
  2273. 1.209,
  2274. 40.63
  2275. ],
  2276. "rotation":[
  2277. 0,
  2278. 0,
  2279. 0,
  2280. -1
  2281. ],
  2282. "scale":[
  2283. 2,
  2284. 2,
  2285. 2
  2286. ]
  2287. },
  2288. "components":[],
  2289. "child":[]
  2290. },
  2291. {
  2292. "type":"Sprite3D",
  2293. "instanceID":64,
  2294. "props":{
  2295. "name":"barrier",
  2296. "active":true,
  2297. "isStatic":false,
  2298. "layer":0,
  2299. "position":[
  2300. -21.831,
  2301. 1.209,
  2302. 40.63
  2303. ],
  2304. "rotation":[
  2305. 0,
  2306. 0,
  2307. 0,
  2308. -1
  2309. ],
  2310. "scale":[
  2311. 2,
  2312. 2,
  2313. 2
  2314. ]
  2315. },
  2316. "components":[],
  2317. "child":[]
  2318. },
  2319. {
  2320. "type":"Sprite3D",
  2321. "instanceID":65,
  2322. "props":{
  2323. "name":"barrier",
  2324. "active":true,
  2325. "isStatic":false,
  2326. "layer":0,
  2327. "position":[
  2328. -21.831,
  2329. 1.614,
  2330. 40.63
  2331. ],
  2332. "rotation":[
  2333. 0,
  2334. 0,
  2335. 0,
  2336. -1
  2337. ],
  2338. "scale":[
  2339. 2,
  2340. 2,
  2341. 2
  2342. ]
  2343. },
  2344. "components":[],
  2345. "child":[]
  2346. },
  2347. {
  2348. "type":"Sprite3D",
  2349. "instanceID":66,
  2350. "props":{
  2351. "name":"barrier",
  2352. "active":true,
  2353. "isStatic":false,
  2354. "layer":0,
  2355. "position":[
  2356. -20.191,
  2357. 1.614,
  2358. 40.63
  2359. ],
  2360. "rotation":[
  2361. 0,
  2362. 0,
  2363. 0,
  2364. -1
  2365. ],
  2366. "scale":[
  2367. 2,
  2368. 2,
  2369. 2
  2370. ]
  2371. },
  2372. "components":[],
  2373. "child":[]
  2374. },
  2375. {
  2376. "type":"Sprite3D",
  2377. "instanceID":67,
  2378. "props":{
  2379. "name":"barrier",
  2380. "active":true,
  2381. "isStatic":false,
  2382. "layer":0,
  2383. "position":[
  2384. -21.831,
  2385. 0.358,
  2386. 53.22
  2387. ],
  2388. "rotation":[
  2389. 0,
  2390. 0,
  2391. 0,
  2392. -1
  2393. ],
  2394. "scale":[
  2395. 2,
  2396. 2,
  2397. 2
  2398. ]
  2399. },
  2400. "components":[],
  2401. "child":[]
  2402. },
  2403. {
  2404. "type":"Sprite3D",
  2405. "instanceID":68,
  2406. "props":{
  2407. "name":"barrier",
  2408. "active":true,
  2409. "isStatic":false,
  2410. "layer":0,
  2411. "position":[
  2412. -21.011,
  2413. -0.032,
  2414. 53.22
  2415. ],
  2416. "rotation":[
  2417. 0,
  2418. 0,
  2419. 0,
  2420. -1
  2421. ],
  2422. "scale":[
  2423. 2,
  2424. 2,
  2425. 2
  2426. ]
  2427. },
  2428. "components":[],
  2429. "child":[]
  2430. },
  2431. {
  2432. "type":"Sprite3D",
  2433. "instanceID":69,
  2434. "props":{
  2435. "name":"barrier",
  2436. "active":true,
  2437. "isStatic":false,
  2438. "layer":0,
  2439. "position":[
  2440. -21.831,
  2441. -0.032,
  2442. 53.22
  2443. ],
  2444. "rotation":[
  2445. 0,
  2446. 0,
  2447. 0,
  2448. -1
  2449. ],
  2450. "scale":[
  2451. 2,
  2452. 2,
  2453. 2
  2454. ]
  2455. },
  2456. "components":[],
  2457. "child":[]
  2458. },
  2459. {
  2460. "type":"Sprite3D",
  2461. "instanceID":70,
  2462. "props":{
  2463. "name":"barrier",
  2464. "active":true,
  2465. "isStatic":false,
  2466. "layer":0,
  2467. "position":[
  2468. -21.831,
  2469. -0.442,
  2470. 53.22
  2471. ],
  2472. "rotation":[
  2473. 0,
  2474. 0,
  2475. 0,
  2476. -1
  2477. ],
  2478. "scale":[
  2479. 2,
  2480. 2,
  2481. 2
  2482. ]
  2483. },
  2484. "components":[],
  2485. "child":[]
  2486. },
  2487. {
  2488. "type":"Sprite3D",
  2489. "instanceID":71,
  2490. "props":{
  2491. "name":"barrier",
  2492. "active":true,
  2493. "isStatic":false,
  2494. "layer":0,
  2495. "position":[
  2496. -21.011,
  2497. -0.442,
  2498. 53.22
  2499. ],
  2500. "rotation":[
  2501. 0,
  2502. 0,
  2503. 0,
  2504. -1
  2505. ],
  2506. "scale":[
  2507. 2,
  2508. 2,
  2509. 2
  2510. ]
  2511. },
  2512. "components":[],
  2513. "child":[]
  2514. },
  2515. {
  2516. "type":"Sprite3D",
  2517. "instanceID":72,
  2518. "props":{
  2519. "name":"barrier",
  2520. "active":true,
  2521. "isStatic":false,
  2522. "layer":0,
  2523. "position":[
  2524. -20.601,
  2525. -0.442,
  2526. 53.22
  2527. ],
  2528. "rotation":[
  2529. 0,
  2530. 0,
  2531. 0,
  2532. -1
  2533. ],
  2534. "scale":[
  2535. 2,
  2536. 2,
  2537. 2
  2538. ]
  2539. },
  2540. "components":[],
  2541. "child":[]
  2542. },
  2543. {
  2544. "type":"Sprite3D",
  2545. "instanceID":73,
  2546. "props":{
  2547. "name":"barrier",
  2548. "active":true,
  2549. "isStatic":false,
  2550. "layer":0,
  2551. "position":[
  2552. -20.191,
  2553. -0.442,
  2554. 53.22
  2555. ],
  2556. "rotation":[
  2557. 0,
  2558. 0,
  2559. 0,
  2560. -1
  2561. ],
  2562. "scale":[
  2563. 2,
  2564. 2,
  2565. 2
  2566. ]
  2567. },
  2568. "components":[],
  2569. "child":[]
  2570. },
  2571. {
  2572. "type":"Sprite3D",
  2573. "instanceID":74,
  2574. "props":{
  2575. "name":"barrier",
  2576. "active":true,
  2577. "isStatic":false,
  2578. "layer":0,
  2579. "position":[
  2580. -23.099,
  2581. -0.442,
  2582. 61.35
  2583. ],
  2584. "rotation":[
  2585. 0,
  2586. 0,
  2587. 0,
  2588. -1
  2589. ],
  2590. "scale":[
  2591. 2,
  2592. 2,
  2593. 2
  2594. ]
  2595. },
  2596. "components":[],
  2597. "child":[]
  2598. },
  2599. {
  2600. "type":"Sprite3D",
  2601. "instanceID":75,
  2602. "props":{
  2603. "name":"barrier",
  2604. "active":true,
  2605. "isStatic":false,
  2606. "layer":0,
  2607. "position":[
  2608. -23.509,
  2609. -0.442,
  2610. 61.35
  2611. ],
  2612. "rotation":[
  2613. 0,
  2614. 0,
  2615. 0,
  2616. -1
  2617. ],
  2618. "scale":[
  2619. 2,
  2620. 2,
  2621. 2
  2622. ]
  2623. },
  2624. "components":[],
  2625. "child":[]
  2626. },
  2627. {
  2628. "type":"Sprite3D",
  2629. "instanceID":76,
  2630. "props":{
  2631. "name":"barrier",
  2632. "active":true,
  2633. "isStatic":false,
  2634. "layer":0,
  2635. "position":[
  2636. -23.919,
  2637. -0.442,
  2638. 61.35
  2639. ],
  2640. "rotation":[
  2641. 0,
  2642. 0,
  2643. 0,
  2644. -1
  2645. ],
  2646. "scale":[
  2647. 2,
  2648. 2,
  2649. 2
  2650. ]
  2651. },
  2652. "components":[],
  2653. "child":[]
  2654. },
  2655. {
  2656. "type":"Sprite3D",
  2657. "instanceID":77,
  2658. "props":{
  2659. "name":"barrier",
  2660. "active":true,
  2661. "isStatic":false,
  2662. "layer":0,
  2663. "position":[
  2664. -24.739,
  2665. -0.442,
  2666. 61.35
  2667. ],
  2668. "rotation":[
  2669. 0,
  2670. 0,
  2671. 0,
  2672. -1
  2673. ],
  2674. "scale":[
  2675. 2,
  2676. 2,
  2677. 2
  2678. ]
  2679. },
  2680. "components":[],
  2681. "child":[]
  2682. },
  2683. {
  2684. "type":"Sprite3D",
  2685. "instanceID":78,
  2686. "props":{
  2687. "name":"barrier",
  2688. "active":true,
  2689. "isStatic":false,
  2690. "layer":0,
  2691. "position":[
  2692. -23.509,
  2693. -0.032,
  2694. 61.35
  2695. ],
  2696. "rotation":[
  2697. 0,
  2698. 0,
  2699. 0,
  2700. -1
  2701. ],
  2702. "scale":[
  2703. 2,
  2704. 2,
  2705. 2
  2706. ]
  2707. },
  2708. "components":[],
  2709. "child":[]
  2710. },
  2711. {
  2712. "type":"Sprite3D",
  2713. "instanceID":79,
  2714. "props":{
  2715. "name":"barrier",
  2716. "active":true,
  2717. "isStatic":false,
  2718. "layer":0,
  2719. "position":[
  2720. -23.099,
  2721. -0.032,
  2722. 61.35
  2723. ],
  2724. "rotation":[
  2725. 0,
  2726. 0,
  2727. 0,
  2728. -1
  2729. ],
  2730. "scale":[
  2731. 2,
  2732. 2,
  2733. 2
  2734. ]
  2735. },
  2736. "components":[],
  2737. "child":[]
  2738. },
  2739. {
  2740. "type":"Sprite3D",
  2741. "instanceID":80,
  2742. "props":{
  2743. "name":"barrier",
  2744. "active":true,
  2745. "isStatic":false,
  2746. "layer":0,
  2747. "position":[
  2748. -29.319,
  2749. 0.358,
  2750. 67.87
  2751. ],
  2752. "rotation":[
  2753. 0,
  2754. 0,
  2755. 0,
  2756. -1
  2757. ],
  2758. "scale":[
  2759. 2,
  2760. 2,
  2761. 2
  2762. ]
  2763. },
  2764. "components":[],
  2765. "child":[]
  2766. },
  2767. {
  2768. "type":"Sprite3D",
  2769. "instanceID":81,
  2770. "props":{
  2771. "name":"barrier",
  2772. "active":true,
  2773. "isStatic":false,
  2774. "layer":0,
  2775. "position":[
  2776. -29.319,
  2777. 0.768,
  2778. 67.87
  2779. ],
  2780. "rotation":[
  2781. 0,
  2782. 0,
  2783. 0,
  2784. -1
  2785. ],
  2786. "scale":[
  2787. 2,
  2788. 2,
  2789. 2
  2790. ]
  2791. },
  2792. "components":[],
  2793. "child":[]
  2794. },
  2795. {
  2796. "type":"Sprite3D",
  2797. "instanceID":82,
  2798. "props":{
  2799. "name":"barrier",
  2800. "active":true,
  2801. "isStatic":false,
  2802. "layer":0,
  2803. "position":[
  2804. -29.319,
  2805. -0.032,
  2806. 67.87
  2807. ],
  2808. "rotation":[
  2809. 0,
  2810. 0,
  2811. 0,
  2812. -1
  2813. ],
  2814. "scale":[
  2815. 2,
  2816. 2,
  2817. 2
  2818. ]
  2819. },
  2820. "components":[],
  2821. "child":[]
  2822. },
  2823. {
  2824. "type":"Sprite3D",
  2825. "instanceID":83,
  2826. "props":{
  2827. "name":"barrier",
  2828. "active":true,
  2829. "isStatic":false,
  2830. "layer":0,
  2831. "position":[
  2832. -30.139,
  2833. -0.032,
  2834. 67.87
  2835. ],
  2836. "rotation":[
  2837. 0,
  2838. 0,
  2839. 0,
  2840. -1
  2841. ],
  2842. "scale":[
  2843. 2,
  2844. 2,
  2845. 2
  2846. ]
  2847. },
  2848. "components":[],
  2849. "child":[]
  2850. },
  2851. {
  2852. "type":"Sprite3D",
  2853. "instanceID":84,
  2854. "props":{
  2855. "name":"barrier",
  2856. "active":true,
  2857. "isStatic":false,
  2858. "layer":0,
  2859. "position":[
  2860. -30.139,
  2861. -0.442,
  2862. 67.87
  2863. ],
  2864. "rotation":[
  2865. 0,
  2866. 0,
  2867. 0,
  2868. -1
  2869. ],
  2870. "scale":[
  2871. 2,
  2872. 2,
  2873. 2
  2874. ]
  2875. },
  2876. "components":[],
  2877. "child":[]
  2878. },
  2879. {
  2880. "type":"Sprite3D",
  2881. "instanceID":85,
  2882. "props":{
  2883. "name":"barrier",
  2884. "active":true,
  2885. "isStatic":false,
  2886. "layer":0,
  2887. "position":[
  2888. -29.729,
  2889. -0.442,
  2890. 67.87
  2891. ],
  2892. "rotation":[
  2893. 0,
  2894. 0,
  2895. 0,
  2896. -1
  2897. ],
  2898. "scale":[
  2899. 2,
  2900. 2,
  2901. 2
  2902. ]
  2903. },
  2904. "components":[],
  2905. "child":[]
  2906. },
  2907. {
  2908. "type":"Sprite3D",
  2909. "instanceID":86,
  2910. "props":{
  2911. "name":"barrier",
  2912. "active":true,
  2913. "isStatic":false,
  2914. "layer":0,
  2915. "position":[
  2916. -29.319,
  2917. -0.442,
  2918. 67.87
  2919. ],
  2920. "rotation":[
  2921. 0,
  2922. 0,
  2923. 0,
  2924. -1
  2925. ],
  2926. "scale":[
  2927. 2,
  2928. 2,
  2929. 2
  2930. ]
  2931. },
  2932. "components":[],
  2933. "child":[]
  2934. },
  2935. {
  2936. "type":"Sprite3D",
  2937. "instanceID":87,
  2938. "props":{
  2939. "name":"barrier",
  2940. "active":true,
  2941. "isStatic":false,
  2942. "layer":0,
  2943. "position":[
  2944. -6.03,
  2945. 1.209,
  2946. 11.487
  2947. ],
  2948. "rotation":[
  2949. 0,
  2950. 0,
  2951. 0,
  2952. -1
  2953. ],
  2954. "scale":[
  2955. 2,
  2956. 2,
  2957. 2
  2958. ]
  2959. },
  2960. "components":[],
  2961. "child":[]
  2962. },
  2963. {
  2964. "type":"Sprite3D",
  2965. "instanceID":88,
  2966. "props":{
  2967. "name":"barrier",
  2968. "active":true,
  2969. "isStatic":false,
  2970. "layer":0,
  2971. "position":[
  2972. -6.03,
  2973. 1.209,
  2974. 11.082
  2975. ],
  2976. "rotation":[
  2977. 0,
  2978. 0,
  2979. 0,
  2980. -1
  2981. ],
  2982. "scale":[
  2983. 2,
  2984. 2,
  2985. 2
  2986. ]
  2987. },
  2988. "components":[],
  2989. "child":[]
  2990. },
  2991. {
  2992. "type":"Sprite3D",
  2993. "instanceID":89,
  2994. "props":{
  2995. "name":"FinishCircle",
  2996. "active":true,
  2997. "isStatic":false,
  2998. "layer":0,
  2999. "position":[
  3000. -29.91,
  3001. 0.09,
  3002. 78.66
  3003. ],
  3004. "rotation":[
  3005. 0,
  3006. 1,
  3007. 0,
  3008. 0
  3009. ],
  3010. "scale":[
  3011. 1,
  3012. 1,
  3013. 1
  3014. ]
  3015. },
  3016. "components":[],
  3017. "child":[]
  3018. },
  3019. {
  3020. "type":"Sprite3D",
  3021. "instanceID":90,
  3022. "props":{
  3023. "name":"barrier",
  3024. "active":true,
  3025. "isStatic":false,
  3026. "layer":0,
  3027. "position":[
  3028. -6.03,
  3029. 1.209,
  3030. 10.268
  3031. ],
  3032. "rotation":[
  3033. 0,
  3034. 0,
  3035. 0,
  3036. -1
  3037. ],
  3038. "scale":[
  3039. 2,
  3040. 2,
  3041. 2
  3042. ]
  3043. },
  3044. "components":[],
  3045. "child":[]
  3046. },
  3047. {
  3048. "type":"Sprite3D",
  3049. "instanceID":91,
  3050. "props":{
  3051. "name":"barrier",
  3052. "active":true,
  3053. "isStatic":false,
  3054. "layer":0,
  3055. "position":[
  3056. -6.03,
  3057. 1.209,
  3058. 9.855
  3059. ],
  3060. "rotation":[
  3061. 0,
  3062. 0,
  3063. 0,
  3064. -1
  3065. ],
  3066. "scale":[
  3067. 2,
  3068. 2,
  3069. 2
  3070. ]
  3071. },
  3072. "components":[],
  3073. "child":[]
  3074. },
  3075. {
  3076. "type":"Sprite3D",
  3077. "instanceID":92,
  3078. "props":{
  3079. "name":"barrier",
  3080. "active":true,
  3081. "isStatic":false,
  3082. "layer":0,
  3083. "position":[
  3084. -6.03,
  3085. 1.602,
  3086. 9.855
  3087. ],
  3088. "rotation":[
  3089. 0,
  3090. 0,
  3091. 0,
  3092. -1
  3093. ],
  3094. "scale":[
  3095. 2,
  3096. 2,
  3097. 2
  3098. ]
  3099. },
  3100. "components":[],
  3101. "child":[]
  3102. },
  3103. {
  3104. "type":"Sprite3D",
  3105. "instanceID":93,
  3106. "props":{
  3107. "name":"barrier",
  3108. "active":true,
  3109. "isStatic":false,
  3110. "layer":0,
  3111. "position":[
  3112. -6.03,
  3113. 1.602,
  3114. 11.082
  3115. ],
  3116. "rotation":[
  3117. 0,
  3118. 0,
  3119. 0,
  3120. -1
  3121. ],
  3122. "scale":[
  3123. 2,
  3124. 2,
  3125. 2
  3126. ]
  3127. },
  3128. "components":[],
  3129. "child":[]
  3130. },
  3131. {
  3132. "type":"Sprite3D",
  3133. "instanceID":94,
  3134. "props":{
  3135. "name":"barrier",
  3136. "active":true,
  3137. "isStatic":false,
  3138. "layer":0,
  3139. "position":[
  3140. -6.03,
  3141. 1.602,
  3142. 11.487
  3143. ],
  3144. "rotation":[
  3145. 0,
  3146. 0,
  3147. 0,
  3148. -1
  3149. ],
  3150. "scale":[
  3151. 2,
  3152. 2,
  3153. 2
  3154. ]
  3155. },
  3156. "components":[],
  3157. "child":[]
  3158. },
  3159. {
  3160. "type":"Sprite3D",
  3161. "instanceID":95,
  3162. "props":{
  3163. "name":"barrier",
  3164. "active":true,
  3165. "isStatic":false,
  3166. "layer":0,
  3167. "position":[
  3168. -14.93,
  3169. 1.602,
  3170. 25.463
  3171. ],
  3172. "rotation":[
  3173. 0,
  3174. 0,
  3175. 0,
  3176. -1
  3177. ],
  3178. "scale":[
  3179. 2,
  3180. 2,
  3181. 2
  3182. ]
  3183. },
  3184. "components":[],
  3185. "child":[]
  3186. },
  3187. {
  3188. "type":"Sprite3D",
  3189. "instanceID":96,
  3190. "props":{
  3191. "name":"barrier",
  3192. "active":true,
  3193. "isStatic":false,
  3194. "layer":0,
  3195. "position":[
  3196. -14.93,
  3197. 1.209,
  3198. 25.053
  3199. ],
  3200. "rotation":[
  3201. 0,
  3202. 0,
  3203. 0,
  3204. -1
  3205. ],
  3206. "scale":[
  3207. 2,
  3208. 2,
  3209. 2
  3210. ]
  3211. },
  3212. "components":[],
  3213. "child":[]
  3214. },
  3215. {
  3216. "type":"Sprite3D",
  3217. "instanceID":97,
  3218. "props":{
  3219. "name":"barrier",
  3220. "active":true,
  3221. "isStatic":false,
  3222. "layer":0,
  3223. "position":[
  3224. -14.93,
  3225. 1.209,
  3226. 25.463
  3227. ],
  3228. "rotation":[
  3229. 0,
  3230. 0,
  3231. 0,
  3232. -1
  3233. ],
  3234. "scale":[
  3235. 2,
  3236. 2,
  3237. 2
  3238. ]
  3239. },
  3240. "components":[],
  3241. "child":[]
  3242. },
  3243. {
  3244. "type":"Sprite3D",
  3245. "instanceID":98,
  3246. "props":{
  3247. "name":"barrier",
  3248. "active":true,
  3249. "isStatic":false,
  3250. "layer":0,
  3251. "position":[
  3252. -27.87,
  3253. -0.456,
  3254. 65.822
  3255. ],
  3256. "rotation":[
  3257. 0,
  3258. 0,
  3259. 0,
  3260. -1
  3261. ],
  3262. "scale":[
  3263. 2,
  3264. 2,
  3265. 2
  3266. ]
  3267. },
  3268. "components":[],
  3269. "child":[]
  3270. },
  3271. {
  3272. "type":"Sprite3D",
  3273. "instanceID":99,
  3274. "props":{
  3275. "name":"barrier",
  3276. "active":true,
  3277. "isStatic":false,
  3278. "layer":0,
  3279. "position":[
  3280. -27.87,
  3281. -0.456,
  3282. 65.412
  3283. ],
  3284. "rotation":[
  3285. 0,
  3286. 0,
  3287. 0,
  3288. -1
  3289. ],
  3290. "scale":[
  3291. 2,
  3292. 2,
  3293. 2
  3294. ]
  3295. },
  3296. "components":[],
  3297. "child":[]
  3298. },
  3299. {
  3300. "type":"Sprite3D",
  3301. "instanceID":100,
  3302. "props":{
  3303. "name":"barrier",
  3304. "active":true,
  3305. "isStatic":false,
  3306. "layer":0,
  3307. "position":[
  3308. -27.87,
  3309. -0.456,
  3310. 65.012
  3311. ],
  3312. "rotation":[
  3313. 0,
  3314. 0,
  3315. 0,
  3316. -1
  3317. ],
  3318. "scale":[
  3319. 2,
  3320. 2,
  3321. 2
  3322. ]
  3323. },
  3324. "components":[],
  3325. "child":[]
  3326. },
  3327. {
  3328. "type":"Sprite3D",
  3329. "instanceID":101,
  3330. "props":{
  3331. "name":"barrier",
  3332. "active":true,
  3333. "isStatic":false,
  3334. "layer":0,
  3335. "position":[
  3336. -27.87,
  3337. -0.456,
  3338. 64.602
  3339. ],
  3340. "rotation":[
  3341. 0,
  3342. 0,
  3343. 0,
  3344. -1
  3345. ],
  3346. "scale":[
  3347. 2,
  3348. 2,
  3349. 2
  3350. ]
  3351. },
  3352. "components":[],
  3353. "child":[]
  3354. },
  3355. {
  3356. "type":"Sprite3D",
  3357. "instanceID":102,
  3358. "props":{
  3359. "name":"barrier",
  3360. "active":true,
  3361. "isStatic":false,
  3362. "layer":0,
  3363. "position":[
  3364. -27.87,
  3365. -0.456,
  3366. 64.192
  3367. ],
  3368. "rotation":[
  3369. 0,
  3370. 0,
  3371. 0,
  3372. -1
  3373. ],
  3374. "scale":[
  3375. 2,
  3376. 2,
  3377. 2
  3378. ]
  3379. },
  3380. "components":[],
  3381. "child":[]
  3382. },
  3383. {
  3384. "type":"Sprite3D",
  3385. "instanceID":103,
  3386. "props":{
  3387. "name":"barrier",
  3388. "active":true,
  3389. "isStatic":false,
  3390. "layer":0,
  3391. "position":[
  3392. -27.87,
  3393. -0.066,
  3394. 64.602
  3395. ],
  3396. "rotation":[
  3397. 0,
  3398. 0,
  3399. 0,
  3400. -1
  3401. ],
  3402. "scale":[
  3403. 2,
  3404. 2,
  3405. 2
  3406. ]
  3407. },
  3408. "components":[],
  3409. "child":[]
  3410. },
  3411. {
  3412. "type":"Sprite3D",
  3413. "instanceID":104,
  3414. "props":{
  3415. "name":"barrier",
  3416. "active":true,
  3417. "isStatic":false,
  3418. "layer":0,
  3419. "position":[
  3420. -27.87,
  3421. -0.066,
  3422. 65.412
  3423. ],
  3424. "rotation":[
  3425. 0,
  3426. 0,
  3427. 0,
  3428. -1
  3429. ],
  3430. "scale":[
  3431. 2,
  3432. 2,
  3433. 2
  3434. ]
  3435. },
  3436. "components":[],
  3437. "child":[]
  3438. },
  3439. {
  3440. "type":"Sprite3D",
  3441. "instanceID":105,
  3442. "props":{
  3443. "name":"barrier",
  3444. "active":true,
  3445. "isStatic":false,
  3446. "layer":0,
  3447. "position":[
  3448. -27.87,
  3449. -0.066,
  3450. 65.822
  3451. ],
  3452. "rotation":[
  3453. 0,
  3454. 0,
  3455. 0,
  3456. -1
  3457. ],
  3458. "scale":[
  3459. 2,
  3460. 2,
  3461. 2
  3462. ]
  3463. },
  3464. "components":[],
  3465. "child":[]
  3466. },
  3467. {
  3468. "type":"Sprite3D",
  3469. "instanceID":106,
  3470. "props":{
  3471. "name":"player",
  3472. "active":true,
  3473. "isStatic":false,
  3474. "layer":0,
  3475. "position":[
  3476. -0.066,
  3477. 0.988,
  3478. 0
  3479. ],
  3480. "rotation":[
  3481. 0,
  3482. 0,
  3483. 0,
  3484. -1
  3485. ],
  3486. "scale":[
  3487. 1,
  3488. 1,
  3489. 1
  3490. ]
  3491. },
  3492. "components":[],
  3493. "child":[]
  3494. },
  3495. {
  3496. "type":"Sprite3D",
  3497. "instanceID":107,
  3498. "props":{
  3499. "name":"role",
  3500. "active":true,
  3501. "isStatic":false,
  3502. "layer":0,
  3503. "position":[
  3504. -0.127,
  3505. 0.988,
  3506. 4.079767
  3507. ],
  3508. "rotation":[
  3509. 0,
  3510. -0.5841185,
  3511. 0,
  3512. -0.8116685
  3513. ],
  3514. "scale":[
  3515. 1,
  3516. 1,
  3517. 1
  3518. ]
  3519. },
  3520. "components":[],
  3521. "child":[]
  3522. },
  3523. {
  3524. "type":"Sprite3D",
  3525. "instanceID":108,
  3526. "props":{
  3527. "name":"role",
  3528. "active":true,
  3529. "isStatic":false,
  3530. "layer":0,
  3531. "position":[
  3532. -0.175,
  3533. 0.988,
  3534. 6.054173
  3535. ],
  3536. "rotation":[
  3537. 0,
  3538. -0.4314001,
  3539. 0,
  3540. -0.9021608
  3541. ],
  3542. "scale":[
  3543. 1,
  3544. 1,
  3545. 1
  3546. ]
  3547. },
  3548. "components":[],
  3549. "child":[]
  3550. },
  3551. {
  3552. "type":"Sprite3D",
  3553. "instanceID":109,
  3554. "props":{
  3555. "name":"role",
  3556. "active":true,
  3557. "isStatic":false,
  3558. "layer":0,
  3559. "position":[
  3560. -0.1810386,
  3561. 0.988,
  3562. 9.639342
  3563. ],
  3564. "rotation":[
  3565. 0,
  3566. 0.1608191,
  3567. 0,
  3568. -0.986984
  3569. ],
  3570. "scale":[
  3571. 1,
  3572. 1,
  3573. 1
  3574. ]
  3575. },
  3576. "components":[],
  3577. "child":[]
  3578. },
  3579. {
  3580. "type":"Sprite3D",
  3581. "instanceID":110,
  3582. "props":{
  3583. "name":"role",
  3584. "active":true,
  3585. "isStatic":false,
  3586. "layer":0,
  3587. "position":[
  3588. -1.69,
  3589. 0.988,
  3590. 9.9
  3591. ],
  3592. "rotation":[
  3593. 0,
  3594. 0.1608191,
  3595. 0,
  3596. -0.986984
  3597. ],
  3598. "scale":[
  3599. 1,
  3600. 1,
  3601. 1
  3602. ]
  3603. },
  3604. "components":[],
  3605. "child":[]
  3606. },
  3607. {
  3608. "type":"Sprite3D",
  3609. "instanceID":111,
  3610. "props":{
  3611. "name":"role",
  3612. "active":true,
  3613. "isStatic":false,
  3614. "layer":0,
  3615. "position":[
  3616. -3.57,
  3617. 0.988,
  3618. 11.24
  3619. ],
  3620. "rotation":[
  3621. 0,
  3622. 0.1608191,
  3623. 0,
  3624. -0.986984
  3625. ],
  3626. "scale":[
  3627. 1,
  3628. 1,
  3629. 1
  3630. ]
  3631. },
  3632. "components":[],
  3633. "child":[]
  3634. },
  3635. {
  3636. "type":"Sprite3D",
  3637. "instanceID":112,
  3638. "props":{
  3639. "name":"role",
  3640. "active":true,
  3641. "isStatic":false,
  3642. "layer":0,
  3643. "position":[
  3644. -4.98,
  3645. 0.988,
  3646. 10.653
  3647. ],
  3648. "rotation":[
  3649. 0,
  3650. 0.1608191,
  3651. 0,
  3652. -0.986984
  3653. ],
  3654. "scale":[
  3655. 1,
  3656. 1,
  3657. 1
  3658. ]
  3659. },
  3660. "components":[],
  3661. "child":[]
  3662. },
  3663. {
  3664. "type":"Sprite3D",
  3665. "instanceID":113,
  3666. "props":{
  3667. "name":"role",
  3668. "active":true,
  3669. "isStatic":false,
  3670. "layer":0,
  3671. "position":[
  3672. -7.74,
  3673. 0.988,
  3674. 10.653
  3675. ],
  3676. "rotation":[
  3677. 0,
  3678. 0.1608191,
  3679. 0,
  3680. -0.986984
  3681. ],
  3682. "scale":[
  3683. 1,
  3684. 1,
  3685. 1
  3686. ]
  3687. },
  3688. "components":[],
  3689. "child":[]
  3690. },
  3691. {
  3692. "type":"Sprite3D",
  3693. "instanceID":114,
  3694. "props":{
  3695. "name":"role",
  3696. "active":true,
  3697. "isStatic":false,
  3698. "layer":0,
  3699. "position":[
  3700. -9.738423,
  3701. 0.988,
  3702. 9.94
  3703. ],
  3704. "rotation":[
  3705. 0,
  3706. 0.8142435,
  3707. 0,
  3708. -0.5805235
  3709. ],
  3710. "scale":[
  3711. 1,
  3712. 1,
  3713. 1
  3714. ]
  3715. },
  3716. "components":[],
  3717. "child":[]
  3718. },
  3719. {
  3720. "type":"Sprite3D",
  3721. "instanceID":115,
  3722. "props":{
  3723. "name":"role",
  3724. "active":true,
  3725. "isStatic":false,
  3726. "layer":0,
  3727. "position":[
  3728. -11.22,
  3729. 0.988,
  3730. 10.62
  3731. ],
  3732. "rotation":[
  3733. 0,
  3734. 0.8142435,
  3735. 0,
  3736. -0.5805235
  3737. ],
  3738. "scale":[
  3739. 1,
  3740. 1,
  3741. 1
  3742. ]
  3743. },
  3744. "components":[],
  3745. "child":[]
  3746. },
  3747. {
  3748. "type":"Sprite3D",
  3749. "instanceID":116,
  3750. "props":{
  3751. "name":"role",
  3752. "active":true,
  3753. "isStatic":false,
  3754. "layer":0,
  3755. "position":[
  3756. -11.63,
  3757. 0.988,
  3758. 12.66
  3759. ],
  3760. "rotation":[
  3761. 0,
  3762. 0.8142435,
  3763. 0,
  3764. -0.5805235
  3765. ],
  3766. "scale":[
  3767. 1,
  3768. 1,
  3769. 1
  3770. ]
  3771. },
  3772. "components":[],
  3773. "child":[]
  3774. },
  3775. {
  3776. "type":"Sprite3D",
  3777. "instanceID":117,
  3778. "props":{
  3779. "name":"role",
  3780. "active":true,
  3781. "isStatic":false,
  3782. "layer":0,
  3783. "position":[
  3784. -10.31,
  3785. 0.988,
  3786. 12.66
  3787. ],
  3788. "rotation":[
  3789. 0,
  3790. 0.8142435,
  3791. 0,
  3792. -0.5805235
  3793. ],
  3794. "scale":[
  3795. 1,
  3796. 1,
  3797. 1
  3798. ]
  3799. },
  3800. "components":[],
  3801. "child":[]
  3802. },
  3803. {
  3804. "type":"Sprite3D",
  3805. "instanceID":118,
  3806. "props":{
  3807. "name":"role",
  3808. "active":true,
  3809. "isStatic":false,
  3810. "layer":0,
  3811. "position":[
  3812. -10.31,
  3813. 0.988,
  3814. 16.59
  3815. ],
  3816. "rotation":[
  3817. 0,
  3818. 0.8142435,
  3819. 0,
  3820. -0.5805235
  3821. ],
  3822. "scale":[
  3823. 1,
  3824. 1,
  3825. 1
  3826. ]
  3827. },
  3828. "components":[],
  3829. "child":[]
  3830. },
  3831. {
  3832. "type":"Sprite3D",
  3833. "instanceID":119,
  3834. "props":{
  3835. "name":"role",
  3836. "active":true,
  3837. "isStatic":false,
  3838. "layer":0,
  3839. "position":[
  3840. -11.62532,
  3841. 0.988,
  3842. 17.215
  3843. ],
  3844. "rotation":[
  3845. 0,
  3846. -0.191495,
  3847. 0,
  3848. -0.9814936
  3849. ],
  3850. "scale":[
  3851. 1,
  3852. 1,
  3853. 1
  3854. ]
  3855. },
  3856. "components":[],
  3857. "child":[]
  3858. },
  3859. {
  3860. "type":"Sprite3D",
  3861. "instanceID":120,
  3862. "props":{
  3863. "name":"role",
  3864. "active":true,
  3865. "isStatic":false,
  3866. "layer":0,
  3867. "position":[
  3868. -11.62532,
  3869. 0.988,
  3870. 19.801
  3871. ],
  3872. "rotation":[
  3873. 0,
  3874. -0.191495,
  3875. 0,
  3876. -0.9814936
  3877. ],
  3878. "scale":[
  3879. 1,
  3880. 1,
  3881. 1
  3882. ]
  3883. },
  3884. "components":[],
  3885. "child":[]
  3886. },
  3887. {
  3888. "type":"Sprite3D",
  3889. "instanceID":121,
  3890. "props":{
  3891. "name":"role",
  3892. "active":true,
  3893. "isStatic":false,
  3894. "layer":0,
  3895. "position":[
  3896. -10.53696,
  3897. 0.988,
  3898. 19.70327
  3899. ],
  3900. "rotation":[
  3901. 0,
  3902. -0.6073738,
  3903. 0,
  3904. -0.7944162
  3905. ],
  3906. "scale":[
  3907. 1,
  3908. 1,
  3909. 1
  3910. ]
  3911. },
  3912. "components":[],
  3913. "child":[]
  3914. },
  3915. {
  3916. "type":"Sprite3D",
  3917. "instanceID":122,
  3918. "props":{
  3919. "name":"role",
  3920. "active":true,
  3921. "isStatic":false,
  3922. "layer":0,
  3923. "position":[
  3924. -11.73,
  3925. 0.988,
  3926. 23.8
  3927. ],
  3928. "rotation":[
  3929. 0,
  3930. -0.6073738,
  3931. 0,
  3932. -0.7944162
  3933. ],
  3934. "scale":[
  3935. 0.9999998,
  3936. 1,
  3937. 0.9999998
  3938. ]
  3939. },
  3940. "components":[],
  3941. "child":[]
  3942. },
  3943. {
  3944. "type":"Sprite3D",
  3945. "instanceID":123,
  3946. "props":{
  3947. "name":"role",
  3948. "active":true,
  3949. "isStatic":false,
  3950. "layer":0,
  3951. "position":[
  3952. -13.29039,
  3953. 0.988,
  3954. 25.112
  3955. ],
  3956. "rotation":[
  3957. 0,
  3958. -0.9683183,
  3959. 0,
  3960. -0.2497192
  3961. ],
  3962. "scale":[
  3963. 1,
  3964. 1,
  3965. 1
  3966. ]
  3967. },
  3968. "components":[],
  3969. "child":[]
  3970. },
  3971. {
  3972. "type":"Sprite3D",
  3973. "instanceID":124,
  3974. "props":{
  3975. "name":"role",
  3976. "active":true,
  3977. "isStatic":false,
  3978. "layer":0,
  3979. "position":[
  3980. -16.51,
  3981. 0.988,
  3982. 26.07
  3983. ],
  3984. "rotation":[
  3985. 0,
  3986. -0.9683183,
  3987. 0,
  3988. -0.2497192
  3989. ],
  3990. "scale":[
  3991. 1,
  3992. 1,
  3993. 1
  3994. ]
  3995. },
  3996. "components":[],
  3997. "child":[]
  3998. },
  3999. {
  4000. "type":"Sprite3D",
  4001. "instanceID":125,
  4002. "props":{
  4003. "name":"role",
  4004. "active":true,
  4005. "isStatic":false,
  4006. "layer":0,
  4007. "position":[
  4008. -18.83287,
  4009. 0.988,
  4010. 26.06088
  4011. ],
  4012. "rotation":[
  4013. 0,
  4014. -1,
  4015. 0,
  4016. 4.988234E-05
  4017. ],
  4018. "scale":[
  4019. 1,
  4020. 1,
  4021. 1
  4022. ]
  4023. },
  4024. "components":[],
  4025. "child":[]
  4026. },
  4027. {
  4028. "type":"Sprite3D",
  4029. "instanceID":126,
  4030. "props":{
  4031. "name":"role",
  4032. "active":true,
  4033. "isStatic":false,
  4034. "layer":0,
  4035. "position":[
  4036. -18.02,
  4037. 0.988,
  4038. 29.4
  4039. ],
  4040. "rotation":[
  4041. 0,
  4042. -1,
  4043. 0,
  4044. 4.988234E-05
  4045. ],
  4046. "scale":[
  4047. 1,
  4048. 1,
  4049. 1
  4050. ]
  4051. },
  4052. "components":[],
  4053. "child":[]
  4054. },
  4055. {
  4056. "type":"Sprite3D",
  4057. "instanceID":127,
  4058. "props":{
  4059. "name":"role",
  4060. "active":true,
  4061. "isStatic":false,
  4062. "layer":0,
  4063. "position":[
  4064. -18.77458,
  4065. 0.988,
  4066. 30.74093
  4067. ],
  4068. "rotation":[
  4069. 0,
  4070. -0.9785604,
  4071. 0,
  4072. 0.2059601
  4073. ],
  4074. "scale":[
  4075. 1,
  4076. 1,
  4077. 1
  4078. ]
  4079. },
  4080. "components":[],
  4081. "child":[]
  4082. },
  4083. {
  4084. "type":"Sprite3D",
  4085. "instanceID":128,
  4086. "props":{
  4087. "name":"role",
  4088. "active":true,
  4089. "isStatic":false,
  4090. "layer":0,
  4091. "position":[
  4092. -18.78854,
  4093. 0.988,
  4094. 32.81826
  4095. ],
  4096. "rotation":[
  4097. 0,
  4098. -0.9847428,
  4099. 0,
  4100. -0.1740162
  4101. ],
  4102. "scale":[
  4103. 1.000001,
  4104. 1,
  4105. 1.000001
  4106. ]
  4107. },
  4108. "components":[],
  4109. "child":[]
  4110. },
  4111. {
  4112. "type":"Sprite3D",
  4113. "instanceID":129,
  4114. "props":{
  4115. "name":"role",
  4116. "active":true,
  4117. "isStatic":false,
  4118. "layer":0,
  4119. "position":[
  4120. -19.94,
  4121. 0.988,
  4122. 36.62
  4123. ],
  4124. "rotation":[
  4125. 0,
  4126. -0.9847428,
  4127. 0,
  4128. -0.1740162
  4129. ],
  4130. "scale":[
  4131. 1,
  4132. 1,
  4133. 1
  4134. ]
  4135. },
  4136. "components":[],
  4137. "child":[]
  4138. },
  4139. {
  4140. "type":"Sprite3D",
  4141. "instanceID":130,
  4142. "props":{
  4143. "name":"role",
  4144. "active":true,
  4145. "isStatic":false,
  4146. "layer":0,
  4147. "position":[
  4148. -20.73951,
  4149. 0.988,
  4150. 39.62736
  4151. ],
  4152. "rotation":[
  4153. 0,
  4154. -0.7484983,
  4155. 0,
  4156. 0.6631367
  4157. ],
  4158. "scale":[
  4159. 1,
  4160. 1,
  4161. 1
  4162. ]
  4163. },
  4164. "components":[],
  4165. "child":[]
  4166. },
  4167. {
  4168. "type":"Sprite3D",
  4169. "instanceID":131,
  4170. "props":{
  4171. "name":"role",
  4172. "active":true,
  4173. "isStatic":false,
  4174. "layer":0,
  4175. "position":[
  4176. -20.216,
  4177. 0.988,
  4178. 42.11311
  4179. ],
  4180. "rotation":[
  4181. 0,
  4182. -0.9666875,
  4183. 0,
  4184. 0.2559597
  4185. ],
  4186. "scale":[
  4187. 0.9999998,
  4188. 1,
  4189. 0.9999998
  4190. ]
  4191. },
  4192. "components":[],
  4193. "child":[]
  4194. },
  4195. {
  4196. "type":"Sprite3D",
  4197. "instanceID":132,
  4198. "props":{
  4199. "name":"role",
  4200. "active":true,
  4201. "isStatic":false,
  4202. "layer":0,
  4203. "position":[
  4204. -21.13611,
  4205. 0.988,
  4206. 44.07636
  4207. ],
  4208. "rotation":[
  4209. 0,
  4210. -0.9968767,
  4211. 0,
  4212. -0.07897383
  4213. ],
  4214. "scale":[
  4215. 1,
  4216. 1,
  4217. 1
  4218. ]
  4219. },
  4220. "components":[],
  4221. "child":[]
  4222. },
  4223. {
  4224. "type":"Sprite3D",
  4225. "instanceID":133,
  4226. "props":{
  4227. "name":"role",
  4228. "active":true,
  4229. "isStatic":false,
  4230. "layer":0,
  4231. "position":[
  4232. -21.526,
  4233. -0.67,
  4234. 51.258
  4235. ],
  4236. "rotation":[
  4237. 0,
  4238. -0.9968767,
  4239. 0,
  4240. -0.07897383
  4241. ],
  4242. "scale":[
  4243. 1,
  4244. 1,
  4245. 1
  4246. ]
  4247. },
  4248. "components":[],
  4249. "child":[]
  4250. },
  4251. {
  4252. "type":"Sprite3D",
  4253. "instanceID":134,
  4254. "props":{
  4255. "name":"role",
  4256. "active":true,
  4257. "isStatic":false,
  4258. "layer":0,
  4259. "position":[
  4260. -20.58,
  4261. -0.67,
  4262. 52.572
  4263. ],
  4264. "rotation":[
  4265. 0,
  4266. -0.9968767,
  4267. 0,
  4268. -0.07897383
  4269. ],
  4270. "scale":[
  4271. 1,
  4272. 1,
  4273. 1
  4274. ]
  4275. },
  4276. "components":[],
  4277. "child":[]
  4278. },
  4279. {
  4280. "type":"Sprite3D",
  4281. "instanceID":135,
  4282. "props":{
  4283. "name":"role",
  4284. "active":true,
  4285. "isStatic":false,
  4286. "layer":0,
  4287. "position":[
  4288. -22.03969,
  4289. -0.67,
  4290. 54.62778
  4291. ],
  4292. "rotation":[
  4293. 0,
  4294. -0.8789921,
  4295. 0,
  4296. -0.4768365
  4297. ],
  4298. "scale":[
  4299. 1,
  4300. 1,
  4301. 1
  4302. ]
  4303. },
  4304. "components":[],
  4305. "child":[]
  4306. },
  4307. {
  4308. "type":"Sprite3D",
  4309. "instanceID":136,
  4310. "props":{
  4311. "name":"role",
  4312. "active":true,
  4313. "isStatic":false,
  4314. "layer":0,
  4315. "position":[
  4316. -23.38,
  4317. -0.67,
  4318. 54.28
  4319. ],
  4320. "rotation":[
  4321. 0,
  4322. -0.8789921,
  4323. 0,
  4324. -0.4768365
  4325. ],
  4326. "scale":[
  4327. 1.000001,
  4328. 1,
  4329. 1.000001
  4330. ]
  4331. },
  4332. "components":[],
  4333. "child":[]
  4334. },
  4335. {
  4336. "type":"Sprite3D",
  4337. "instanceID":137,
  4338. "props":{
  4339. "name":"role",
  4340. "active":true,
  4341. "isStatic":false,
  4342. "layer":0,
  4343. "position":[
  4344. -23.38,
  4345. -0.67,
  4346. 55.84
  4347. ],
  4348. "rotation":[
  4349. 0,
  4350. -0.8789921,
  4351. 0,
  4352. -0.4768365
  4353. ],
  4354. "scale":[
  4355. 1.000001,
  4356. 1,
  4357. 1.000001
  4358. ]
  4359. },
  4360. "components":[],
  4361. "child":[]
  4362. },
  4363. {
  4364. "type":"Sprite3D",
  4365. "instanceID":138,
  4366. "props":{
  4367. "name":"role",
  4368. "active":true,
  4369. "isStatic":false,
  4370. "layer":0,
  4371. "position":[
  4372. -24.683,
  4373. -0.67,
  4374. 60.324
  4375. ],
  4376. "rotation":[
  4377. 0,
  4378. -0.8789921,
  4379. 0,
  4380. -0.4768365
  4381. ],
  4382. "scale":[
  4383. 1.000001,
  4384. 1,
  4385. 1.000001
  4386. ]
  4387. },
  4388. "components":[],
  4389. "child":[]
  4390. },
  4391. {
  4392. "type":"Sprite3D",
  4393. "instanceID":139,
  4394. "props":{
  4395. "name":"role",
  4396. "active":true,
  4397. "isStatic":false,
  4398. "layer":0,
  4399. "position":[
  4400. -23.77,
  4401. -0.67,
  4402. 64.05505
  4403. ],
  4404. "rotation":[
  4405. 0,
  4406. -0.2677404,
  4407. 0,
  4408. -0.9634911
  4409. ],
  4410. "scale":[
  4411. 1.000001,
  4412. 1,
  4413. 1.000001
  4414. ]
  4415. },
  4416. "components":[],
  4417. "child":[]
  4418. },
  4419. {
  4420. "type":"Sprite3D",
  4421. "instanceID":140,
  4422. "props":{
  4423. "name":"role",
  4424. "active":true,
  4425. "isStatic":false,
  4426. "layer":0,
  4427. "position":[
  4428. -26.39,
  4429. -0.67,
  4430. 65.02
  4431. ],
  4432. "rotation":[
  4433. 0,
  4434. -0.2677404,
  4435. 0,
  4436. -0.9634911
  4437. ],
  4438. "scale":[
  4439. 1,
  4440. 1,
  4441. 1
  4442. ]
  4443. },
  4444. "components":[],
  4445. "child":[]
  4446. },
  4447. {
  4448. "type":"Sprite3D",
  4449. "instanceID":141,
  4450. "props":{
  4451. "name":"role",
  4452. "active":true,
  4453. "isStatic":false,
  4454. "layer":0,
  4455. "position":[
  4456. -26.39,
  4457. -0.67,
  4458. 64.256
  4459. ],
  4460. "rotation":[
  4461. 0,
  4462. -0.2677404,
  4463. 0,
  4464. -0.9634911
  4465. ],
  4466. "scale":[
  4467. 1,
  4468. 1,
  4469. 1
  4470. ]
  4471. },
  4472. "components":[],
  4473. "child":[]
  4474. },
  4475. {
  4476. "type":"Sprite3D",
  4477. "instanceID":142,
  4478. "props":{
  4479. "name":"role",
  4480. "active":true,
  4481. "isStatic":false,
  4482. "layer":0,
  4483. "position":[
  4484. -30.34,
  4485. -0.67,
  4486. 64.643
  4487. ],
  4488. "rotation":[
  4489. 0,
  4490. -0.2677404,
  4491. 0,
  4492. -0.9634911
  4493. ],
  4494. "scale":[
  4495. 1,
  4496. 1,
  4497. 1
  4498. ]
  4499. },
  4500. "components":[],
  4501. "child":[]
  4502. },
  4503. {
  4504. "type":"Sprite3D",
  4505. "instanceID":143,
  4506. "props":{
  4507. "name":"role",
  4508. "active":true,
  4509. "isStatic":false,
  4510. "layer":0,
  4511. "position":[
  4512. -29.7868,
  4513. -0.67,
  4514. 66.31016
  4515. ],
  4516. "rotation":[
  4517. 0,
  4518. -0.5035926,
  4519. 0,
  4520. -0.8639413
  4521. ],
  4522. "scale":[
  4523. 1,
  4524. 1,
  4525. 1
  4526. ]
  4527. },
  4528. "components":[],
  4529. "child":[]
  4530. },
  4531. {
  4532. "type":"Sprite3D",
  4533. "instanceID":144,
  4534. "props":{
  4535. "name":"role",
  4536. "active":true,
  4537. "isStatic":false,
  4538. "layer":0,
  4539. "position":[
  4540. -30.529,
  4541. -0.67,
  4542. 67.503
  4543. ],
  4544. "rotation":[
  4545. 0,
  4546. -0.9999987,
  4547. 0,
  4548. 0.001644815
  4549. ],
  4550. "scale":[
  4551. 1,
  4552. 1,
  4553. 1
  4554. ]
  4555. },
  4556. "components":[],
  4557. "child":[]
  4558. },
  4559. {
  4560. "type":"Sprite3D",
  4561. "instanceID":145,
  4562. "props":{
  4563. "name":"Coin",
  4564. "active":true,
  4565. "isStatic":false,
  4566. "layer":0,
  4567. "position":[
  4568. -2.84,
  4569. 1.014,
  4570. 10.55
  4571. ],
  4572. "rotation":[
  4573. 0,
  4574. 0,
  4575. 0,
  4576. -1
  4577. ],
  4578. "scale":[
  4579. 1.5,
  4580. 1.5,
  4581. 1.5
  4582. ]
  4583. },
  4584. "components":[],
  4585. "child":[]
  4586. },
  4587. {
  4588. "type":"Sprite3D",
  4589. "instanceID":146,
  4590. "props":{
  4591. "name":"Coin",
  4592. "active":true,
  4593. "isStatic":false,
  4594. "layer":0,
  4595. "position":[
  4596. -2.05,
  4597. 1.014,
  4598. 10.55
  4599. ],
  4600. "rotation":[
  4601. 0,
  4602. 0,
  4603. 0,
  4604. -1
  4605. ],
  4606. "scale":[
  4607. 1.5,
  4608. 1.5,
  4609. 1.5
  4610. ]
  4611. },
  4612. "components":[],
  4613. "child":[]
  4614. },
  4615. {
  4616. "type":"Sprite3D",
  4617. "instanceID":147,
  4618. "props":{
  4619. "name":"Coin",
  4620. "active":true,
  4621. "isStatic":false,
  4622. "layer":0,
  4623. "position":[
  4624. -11.59,
  4625. 1.014,
  4626. 17.62
  4627. ],
  4628. "rotation":[
  4629. 0,
  4630. 0,
  4631. 0,
  4632. -1
  4633. ],
  4634. "scale":[
  4635. 1.5,
  4636. 1.5,
  4637. 1.5
  4638. ]
  4639. },
  4640. "components":[],
  4641. "child":[]
  4642. },
  4643. {
  4644. "type":"Sprite3D",
  4645. "instanceID":148,
  4646. "props":{
  4647. "name":"Coin",
  4648. "active":true,
  4649. "isStatic":false,
  4650. "layer":0,
  4651. "position":[
  4652. -11.59,
  4653. 1.014,
  4654. 18.6
  4655. ],
  4656. "rotation":[
  4657. 0,
  4658. 0,
  4659. 0,
  4660. -1
  4661. ],
  4662. "scale":[
  4663. 1.5,
  4664. 1.5,
  4665. 1.5
  4666. ]
  4667. },
  4668. "components":[],
  4669. "child":[]
  4670. },
  4671. {
  4672. "type":"Sprite3D",
  4673. "instanceID":149,
  4674. "props":{
  4675. "name":"Coin",
  4676. "active":true,
  4677. "isStatic":false,
  4678. "layer":0,
  4679. "position":[
  4680. -11.59,
  4681. 1.014,
  4682. 19.45
  4683. ],
  4684. "rotation":[
  4685. 0,
  4686. 0,
  4687. 0,
  4688. -1
  4689. ],
  4690. "scale":[
  4691. 1.5,
  4692. 1.5,
  4693. 1.5
  4694. ]
  4695. },
  4696. "components":[],
  4697. "child":[]
  4698. },
  4699. {
  4700. "type":"Sprite3D",
  4701. "instanceID":150,
  4702. "props":{
  4703. "name":"Coin",
  4704. "active":true,
  4705. "isStatic":false,
  4706. "layer":0,
  4707. "position":[
  4708. -12.069,
  4709. 1.014,
  4710. 24.72
  4711. ],
  4712. "rotation":[
  4713. 0,
  4714. 0,
  4715. 0,
  4716. -1
  4717. ],
  4718. "scale":[
  4719. 1.5,
  4720. 1.5,
  4721. 1.5
  4722. ]
  4723. },
  4724. "components":[],
  4725. "child":[]
  4726. },
  4727. {
  4728. "type":"Sprite3D",
  4729. "instanceID":151,
  4730. "props":{
  4731. "name":"Coin",
  4732. "active":true,
  4733. "isStatic":false,
  4734. "layer":0,
  4735. "position":[
  4736. -13.665,
  4737. 1.014,
  4738. 24.751
  4739. ],
  4740. "rotation":[
  4741. 0,
  4742. 0,
  4743. 0,
  4744. -1
  4745. ],
  4746. "scale":[
  4747. 1.5,
  4748. 1.5,
  4749. 1.5
  4750. ]
  4751. },
  4752. "components":[],
  4753. "child":[]
  4754. },
  4755. {
  4756. "type":"Sprite3D",
  4757. "instanceID":152,
  4758. "props":{
  4759. "name":"Coin",
  4760. "active":true,
  4761. "isStatic":false,
  4762. "layer":0,
  4763. "position":[
  4764. -16.02,
  4765. 1.014,
  4766. 24.72
  4767. ],
  4768. "rotation":[
  4769. 0,
  4770. 0,
  4771. 0,
  4772. -1
  4773. ],
  4774. "scale":[
  4775. 1.5,
  4776. 1.5,
  4777. 1.5
  4778. ]
  4779. },
  4780. "components":[],
  4781. "child":[]
  4782. },
  4783. {
  4784. "type":"Sprite3D",
  4785. "instanceID":153,
  4786. "props":{
  4787. "name":"Coin",
  4788. "active":true,
  4789. "isStatic":false,
  4790. "layer":0,
  4791. "position":[
  4792. -18.5,
  4793. 1.014,
  4794. 29.51
  4795. ],
  4796. "rotation":[
  4797. 0,
  4798. 0,
  4799. 0,
  4800. -1
  4801. ],
  4802. "scale":[
  4803. 1.5,
  4804. 1.5,
  4805. 1.5
  4806. ]
  4807. },
  4808. "components":[],
  4809. "child":[]
  4810. },
  4811. {
  4812. "type":"Sprite3D",
  4813. "instanceID":154,
  4814. "props":{
  4815. "name":"Coin",
  4816. "active":true,
  4817. "isStatic":false,
  4818. "layer":0,
  4819. "position":[
  4820. -18.5,
  4821. 1.014,
  4822. 30.44
  4823. ],
  4824. "rotation":[
  4825. 0,
  4826. 0,
  4827. 0,
  4828. -1
  4829. ],
  4830. "scale":[
  4831. 1.5,
  4832. 1.5,
  4833. 1.5
  4834. ]
  4835. },
  4836. "components":[],
  4837. "child":[]
  4838. },
  4839. {
  4840. "type":"Sprite3D",
  4841. "instanceID":155,
  4842. "props":{
  4843. "name":"Coin",
  4844. "active":true,
  4845. "isStatic":false,
  4846. "layer":0,
  4847. "position":[
  4848. -18.5,
  4849. 1.014,
  4850. 31.51
  4851. ],
  4852. "rotation":[
  4853. 0,
  4854. 0,
  4855. 0,
  4856. -1
  4857. ],
  4858. "scale":[
  4859. 1.5,
  4860. 1.5,
  4861. 1.5
  4862. ]
  4863. },
  4864. "components":[],
  4865. "child":[]
  4866. },
  4867. {
  4868. "type":"Sprite3D",
  4869. "instanceID":156,
  4870. "props":{
  4871. "name":"Coin",
  4872. "active":true,
  4873. "isStatic":false,
  4874. "layer":0,
  4875. "position":[
  4876. -21.046,
  4877. 1.014,
  4878. 37.54
  4879. ],
  4880. "rotation":[
  4881. 0,
  4882. 0,
  4883. 0,
  4884. -1
  4885. ],
  4886. "scale":[
  4887. 1.5,
  4888. 1.5,
  4889. 1.5
  4890. ]
  4891. },
  4892. "components":[],
  4893. "child":[]
  4894. },
  4895. {
  4896. "type":"Sprite3D",
  4897. "instanceID":157,
  4898. "props":{
  4899. "name":"Coin",
  4900. "active":true,
  4901. "isStatic":false,
  4902. "layer":0,
  4903. "position":[
  4904. -21.021,
  4905. 1.014,
  4906. 38.441
  4907. ],
  4908. "rotation":[
  4909. 0,
  4910. 0,
  4911. 0,
  4912. -1
  4913. ],
  4914. "scale":[
  4915. 1.5,
  4916. 1.5,
  4917. 1.5
  4918. ]
  4919. },
  4920. "components":[],
  4921. "child":[]
  4922. },
  4923. {
  4924. "type":"Sprite3D",
  4925. "instanceID":158,
  4926. "props":{
  4927. "name":"Coin",
  4928. "active":true,
  4929. "isStatic":false,
  4930. "layer":0,
  4931. "position":[
  4932. -21.021,
  4933. 1.014,
  4934. 39.225
  4935. ],
  4936. "rotation":[
  4937. 0,
  4938. 0,
  4939. 0,
  4940. -1
  4941. ],
  4942. "scale":[
  4943. 1.5,
  4944. 1.5,
  4945. 1.5
  4946. ]
  4947. },
  4948. "components":[],
  4949. "child":[]
  4950. },
  4951. {
  4952. "type":"Sprite3D",
  4953. "instanceID":159,
  4954. "props":{
  4955. "name":"Coin",
  4956. "active":true,
  4957. "isStatic":false,
  4958. "layer":0,
  4959. "position":[
  4960. -30.505,
  4961. -0.662,
  4962. 70.381
  4963. ],
  4964. "rotation":[
  4965. 0,
  4966. 0,
  4967. 0,
  4968. -1
  4969. ],
  4970. "scale":[
  4971. 1.5,
  4972. 1.5,
  4973. 1.5
  4974. ]
  4975. },
  4976. "components":[],
  4977. "child":[]
  4978. },
  4979. {
  4980. "type":"Sprite3D",
  4981. "instanceID":160,
  4982. "props":{
  4983. "name":"Coin",
  4984. "active":true,
  4985. "isStatic":false,
  4986. "layer":0,
  4987. "position":[
  4988. -30.505,
  4989. -0.662,
  4990. 69.53
  4991. ],
  4992. "rotation":[
  4993. 0,
  4994. 0,
  4995. 0,
  4996. -1
  4997. ],
  4998. "scale":[
  4999. 1.5,
  5000. 1.5,
  5001. 1.5
  5002. ]
  5003. },
  5004. "components":[],
  5005. "child":[]
  5006. },
  5007. {
  5008. "type":"Sprite3D",
  5009. "instanceID":161,
  5010. "props":{
  5011. "name":"Coin",
  5012. "active":true,
  5013. "isStatic":false,
  5014. "layer":0,
  5015. "position":[
  5016. -30.505,
  5017. -0.662,
  5018. 71.25
  5019. ],
  5020. "rotation":[
  5021. 0,
  5022. 0,
  5023. 0,
  5024. -1
  5025. ],
  5026. "scale":[
  5027. 1.5,
  5028. 1.5,
  5029. 1.5
  5030. ]
  5031. },
  5032. "components":[],
  5033. "child":[]
  5034. },
  5035. {
  5036. "type":"Sprite3D",
  5037. "instanceID":162,
  5038. "props":{
  5039. "name":"Coin",
  5040. "active":true,
  5041. "isStatic":false,
  5042. "layer":0,
  5043. "position":[
  5044. -30.505,
  5045. -0.662,
  5046. 72.17
  5047. ],
  5048. "rotation":[
  5049. 0,
  5050. 0,
  5051. 0,
  5052. -1
  5053. ],
  5054. "scale":[
  5055. 1.5,
  5056. 1.5,
  5057. 1.5
  5058. ]
  5059. },
  5060. "components":[],
  5061. "child":[]
  5062. },
  5063. {
  5064. "type":"Sprite3D",
  5065. "instanceID":163,
  5066. "props":{
  5067. "name":"Coin",
  5068. "active":true,
  5069. "isStatic":false,
  5070. "layer":0,
  5071. "position":[
  5072. -30.505,
  5073. -0.662,
  5074. 73.51
  5075. ],
  5076. "rotation":[
  5077. 0,
  5078. 0,
  5079. 0,
  5080. -1
  5081. ],
  5082. "scale":[
  5083. 1.5,
  5084. 1.5,
  5085. 1.5
  5086. ]
  5087. },
  5088. "components":[],
  5089. "child":[]
  5090. },
  5091. {
  5092. "type":"Sprite3D",
  5093. "instanceID":164,
  5094. "props":{
  5095. "name":"Coin",
  5096. "active":true,
  5097. "isStatic":false,
  5098. "layer":0,
  5099. "position":[
  5100. -30.505,
  5101. -0.662,
  5102. 74.946
  5103. ],
  5104. "rotation":[
  5105. 0,
  5106. 0,
  5107. 0,
  5108. -1
  5109. ],
  5110. "scale":[
  5111. 1.5,
  5112. 1.5,
  5113. 1.5
  5114. ]
  5115. },
  5116. "components":[],
  5117. "child":[]
  5118. },
  5119. {
  5120. "type":"Sprite3D",
  5121. "instanceID":165,
  5122. "props":{
  5123. "name":"speed",
  5124. "active":true,
  5125. "isStatic":false,
  5126. "layer":0,
  5127. "position":[
  5128. -24.39,
  5129. -0.676,
  5130. 56.37
  5131. ],
  5132. "rotation":[
  5133. 0,
  5134. 0.7071068,
  5135. 0.7071068,
  5136. 0
  5137. ],
  5138. "scale":[
  5139. 1,
  5140. 1,
  5141. 1
  5142. ]
  5143. },
  5144. "components":[],
  5145. "child":[]
  5146. },
  5147. {
  5148. "type":"MeshSprite3D",
  5149. "instanceID":166,
  5150. "props":{
  5151. "name":"ground",
  5152. "active":true,
  5153. "isStatic":false,
  5154. "layer":0,
  5155. "position":[
  5156. -5.64,
  5157. 0,
  5158. 10.67
  5159. ],
  5160. "rotation":[
  5161. -0.5,
  5162. 0.5,
  5163. 0.5,
  5164. 0.5
  5165. ],
  5166. "scale":[
  5167. 2.050002,
  5168. 8.842571,
  5169. 1
  5170. ],
  5171. "meshPath":"Assets/model/ground-ground.lm",
  5172. "enableRender":true,
  5173. "materials":[
  5174. {
  5175. "path":"Assets/yiqilang_mat/ground.lmat"
  5176. },
  5177. {
  5178. "path":"Assets/yiqilang_mat/ground.lmat"
  5179. }
  5180. ]
  5181. },
  5182. "components":[
  5183. {
  5184. "type":"Animator",
  5185. "layers":[],
  5186. "cullingMode":0,
  5187. "playOnWake":true
  5188. }
  5189. ],
  5190. "child":[
  5191. {
  5192. "type":"Sprite3D",
  5193. "instanceID":167,
  5194. "props":{
  5195. "name":"GameObject",
  5196. "active":true,
  5197. "isStatic":false,
  5198. "layer":0,
  5199. "position":[
  5200. 0,
  5201. 0,
  5202. 0.5
  5203. ],
  5204. "rotation":[
  5205. 0,
  5206. 0,
  5207. 0,
  5208. -1
  5209. ],
  5210. "scale":[
  5211. 1,
  5212. 1,
  5213. 1
  5214. ]
  5215. },
  5216. "components":[
  5217. {
  5218. "type":"PhysicsCollider",
  5219. "restitution":0,
  5220. "friction":0.5,
  5221. "rollingFriction":0,
  5222. "shapes":[
  5223. {
  5224. "type":"BoxColliderShape",
  5225. "center":[
  5226. 0,
  5227. 0,
  5228. 0
  5229. ],
  5230. "size":[
  5231. 1,
  5232. 1,
  5233. 1
  5234. ]
  5235. }
  5236. ],
  5237. "isTrigger":false
  5238. }
  5239. ],
  5240. "child":[]
  5241. }
  5242. ]
  5243. },
  5244. {
  5245. "type":"MeshSprite3D",
  5246. "instanceID":168,
  5247. "props":{
  5248. "name":"ground",
  5249. "active":true,
  5250. "isStatic":false,
  5251. "layer":0,
  5252. "position":[
  5253. -10.88,
  5254. 0,
  5255. 10.67
  5256. ],
  5257. "rotation":[
  5258. 0.7071068,
  5259. 0,
  5260. 0,
  5261. -0.7071068
  5262. ],
  5263. "scale":[
  5264. 2.050002,
  5265. 2.050001,
  5266. 1
  5267. ],
  5268. "meshPath":"Assets/model/ground-ground.lm",
  5269. "enableRender":true,
  5270. "materials":[
  5271. {
  5272. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  5273. }
  5274. ]
  5275. },
  5276. "components":[
  5277. {
  5278. "type":"Animator",
  5279. "layers":[],
  5280. "cullingMode":0,
  5281. "playOnWake":true
  5282. }
  5283. ],
  5284. "child":[
  5285. {
  5286. "type":"Sprite3D",
  5287. "instanceID":169,
  5288. "props":{
  5289. "name":"GameObject",
  5290. "active":true,
  5291. "isStatic":false,
  5292. "layer":0,
  5293. "position":[
  5294. 0,
  5295. 0,
  5296. 0.5
  5297. ],
  5298. "rotation":[
  5299. 0,
  5300. 0,
  5301. 0,
  5302. -1
  5303. ],
  5304. "scale":[
  5305. 1,
  5306. 1,
  5307. 1
  5308. ]
  5309. },
  5310. "components":[
  5311. {
  5312. "type":"PhysicsCollider",
  5313. "restitution":0,
  5314. "friction":0.5,
  5315. "rollingFriction":0,
  5316. "shapes":[
  5317. {
  5318. "type":"BoxColliderShape",
  5319. "center":[
  5320. 0,
  5321. 0,
  5322. 0
  5323. ],
  5324. "size":[
  5325. 1,
  5326. 1,
  5327. 1
  5328. ]
  5329. }
  5330. ],
  5331. "isTrigger":false
  5332. }
  5333. ],
  5334. "child":[]
  5335. }
  5336. ]
  5337. },
  5338. {
  5339. "type":"MeshSprite3D",
  5340. "instanceID":170,
  5341. "props":{
  5342. "name":"ground",
  5343. "active":true,
  5344. "isStatic":false,
  5345. "layer":0,
  5346. "position":[
  5347. -10.88,
  5348. 0,
  5349. 25.45
  5350. ],
  5351. "rotation":[
  5352. 0,
  5353. 0.7071068,
  5354. 0.7071068,
  5355. 0
  5356. ],
  5357. "scale":[
  5358. 2.050002,
  5359. 2.050001,
  5360. 1
  5361. ],
  5362. "meshPath":"Assets/model/ground-ground.lm",
  5363. "enableRender":true,
  5364. "materials":[
  5365. {
  5366. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  5367. }
  5368. ]
  5369. },
  5370. "components":[
  5371. {
  5372. "type":"Animator",
  5373. "layers":[],
  5374. "cullingMode":0,
  5375. "playOnWake":true
  5376. }
  5377. ],
  5378. "child":[
  5379. {
  5380. "type":"Sprite3D",
  5381. "instanceID":171,
  5382. "props":{
  5383. "name":"GameObject",
  5384. "active":true,
  5385. "isStatic":false,
  5386. "layer":0,
  5387. "position":[
  5388. 0,
  5389. 0,
  5390. 0.5
  5391. ],
  5392. "rotation":[
  5393. 0,
  5394. 0,
  5395. 0,
  5396. -1
  5397. ],
  5398. "scale":[
  5399. 1,
  5400. 1,
  5401. 1
  5402. ]
  5403. },
  5404. "components":[
  5405. {
  5406. "type":"PhysicsCollider",
  5407. "restitution":0,
  5408. "friction":0.5,
  5409. "rollingFriction":0,
  5410. "shapes":[
  5411. {
  5412. "type":"BoxColliderShape",
  5413. "center":[
  5414. 0,
  5415. 0,
  5416. 0
  5417. ],
  5418. "size":[
  5419. 1,
  5420. 1,
  5421. 1
  5422. ]
  5423. }
  5424. ],
  5425. "isTrigger":false
  5426. }
  5427. ],
  5428. "child":[]
  5429. }
  5430. ]
  5431. },
  5432. {
  5433. "type":"MeshSprite3D",
  5434. "instanceID":172,
  5435. "props":{
  5436. "name":"ground",
  5437. "active":true,
  5438. "isStatic":false,
  5439. "layer":0,
  5440. "position":[
  5441. -18.04,
  5442. 0,
  5443. 25.45
  5444. ],
  5445. "rotation":[
  5446. 0.7071068,
  5447. 0,
  5448. 0,
  5449. -0.7071068
  5450. ],
  5451. "scale":[
  5452. 2.05,
  5453. 2.050001,
  5454. 1
  5455. ],
  5456. "meshPath":"Assets/model/ground-ground.lm",
  5457. "enableRender":true,
  5458. "materials":[
  5459. {
  5460. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  5461. }
  5462. ]
  5463. },
  5464. "components":[
  5465. {
  5466. "type":"Animator",
  5467. "layers":[],
  5468. "cullingMode":0,
  5469. "playOnWake":true
  5470. }
  5471. ],
  5472. "child":[
  5473. {
  5474. "type":"Sprite3D",
  5475. "instanceID":173,
  5476. "props":{
  5477. "name":"GameObject",
  5478. "active":true,
  5479. "isStatic":false,
  5480. "layer":0,
  5481. "position":[
  5482. 0,
  5483. 0,
  5484. 0.5
  5485. ],
  5486. "rotation":[
  5487. 0,
  5488. 0,
  5489. 0,
  5490. -1
  5491. ],
  5492. "scale":[
  5493. 1,
  5494. 1,
  5495. 1
  5496. ]
  5497. },
  5498. "components":[
  5499. {
  5500. "type":"PhysicsCollider",
  5501. "restitution":0,
  5502. "friction":0.5,
  5503. "rollingFriction":0,
  5504. "shapes":[
  5505. {
  5506. "type":"BoxColliderShape",
  5507. "center":[
  5508. 0,
  5509. 0,
  5510. 0
  5511. ],
  5512. "size":[
  5513. 1,
  5514. 1,
  5515. 1
  5516. ]
  5517. }
  5518. ],
  5519. "isTrigger":false
  5520. }
  5521. ],
  5522. "child":[]
  5523. }
  5524. ]
  5525. },
  5526. {
  5527. "type":"MeshSprite3D",
  5528. "instanceID":174,
  5529. "props":{
  5530. "name":"ground",
  5531. "active":true,
  5532. "isStatic":false,
  5533. "layer":0,
  5534. "position":[
  5535. -18.05,
  5536. 0,
  5537. 36.97
  5538. ],
  5539. "rotation":[
  5540. 0,
  5541. 0.7071068,
  5542. 0.7071068,
  5543. 0
  5544. ],
  5545. "scale":[
  5546. 2.050002,
  5547. 2.050001,
  5548. 1
  5549. ],
  5550. "meshPath":"Assets/model/ground-ground.lm",
  5551. "enableRender":true,
  5552. "materials":[
  5553. {
  5554. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  5555. }
  5556. ]
  5557. },
  5558. "components":[
  5559. {
  5560. "type":"Animator",
  5561. "layers":[],
  5562. "cullingMode":0,
  5563. "playOnWake":true
  5564. }
  5565. ],
  5566. "child":[
  5567. {
  5568. "type":"Sprite3D",
  5569. "instanceID":175,
  5570. "props":{
  5571. "name":"GameObject",
  5572. "active":true,
  5573. "isStatic":false,
  5574. "layer":0,
  5575. "position":[
  5576. 0,
  5577. 0,
  5578. 0.5
  5579. ],
  5580. "rotation":[
  5581. 0,
  5582. 0,
  5583. 0,
  5584. -1
  5585. ],
  5586. "scale":[
  5587. 1,
  5588. 1,
  5589. 1
  5590. ]
  5591. },
  5592. "components":[
  5593. {
  5594. "type":"PhysicsCollider",
  5595. "restitution":0,
  5596. "friction":0.5,
  5597. "rollingFriction":0,
  5598. "shapes":[
  5599. {
  5600. "type":"BoxColliderShape",
  5601. "center":[
  5602. 0,
  5603. 0,
  5604. 0
  5605. ],
  5606. "size":[
  5607. 1,
  5608. 1,
  5609. 1
  5610. ]
  5611. }
  5612. ],
  5613. "isTrigger":false
  5614. }
  5615. ],
  5616. "child":[]
  5617. }
  5618. ]
  5619. },
  5620. {
  5621. "type":"MeshSprite3D",
  5622. "instanceID":176,
  5623. "props":{
  5624. "name":"ground",
  5625. "active":true,
  5626. "isStatic":false,
  5627. "layer":0,
  5628. "position":[
  5629. -20.98,
  5630. 0,
  5631. 36.967
  5632. ],
  5633. "rotation":[
  5634. 0.7071068,
  5635. 0,
  5636. 0,
  5637. -0.7071068
  5638. ],
  5639. "scale":[
  5640. 2.05,
  5641. 2.050001,
  5642. 1
  5643. ],
  5644. "meshPath":"Assets/model/ground-ground.lm",
  5645. "enableRender":true,
  5646. "materials":[
  5647. {
  5648. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  5649. }
  5650. ]
  5651. },
  5652. "components":[
  5653. {
  5654. "type":"Animator",
  5655. "layers":[],
  5656. "cullingMode":0,
  5657. "playOnWake":true
  5658. }
  5659. ],
  5660. "child":[
  5661. {
  5662. "type":"Sprite3D",
  5663. "instanceID":177,
  5664. "props":{
  5665. "name":"GameObject",
  5666. "active":true,
  5667. "isStatic":false,
  5668. "layer":0,
  5669. "position":[
  5670. 0,
  5671. 0,
  5672. 0.5
  5673. ],
  5674. "rotation":[
  5675. 0,
  5676. 0,
  5677. 0,
  5678. -1
  5679. ],
  5680. "scale":[
  5681. 1,
  5682. 1,
  5683. 1
  5684. ]
  5685. },
  5686. "components":[
  5687. {
  5688. "type":"PhysicsCollider",
  5689. "restitution":0,
  5690. "friction":0.5,
  5691. "rollingFriction":0,
  5692. "shapes":[
  5693. {
  5694. "type":"BoxColliderShape",
  5695. "center":[
  5696. 0,
  5697. 0,
  5698. 0
  5699. ],
  5700. "size":[
  5701. 1,
  5702. 1,
  5703. 1
  5704. ]
  5705. }
  5706. ],
  5707. "isTrigger":false
  5708. }
  5709. ],
  5710. "child":[]
  5711. }
  5712. ]
  5713. },
  5714. {
  5715. "type":"MeshSprite3D",
  5716. "instanceID":178,
  5717. "props":{
  5718. "name":"ground",
  5719. "active":true,
  5720. "isStatic":false,
  5721. "layer":0,
  5722. "position":[
  5723. -20.98,
  5724. -1.66,
  5725. 54.74
  5726. ],
  5727. "rotation":[
  5728. 0,
  5729. 0.7071068,
  5730. 0.7071068,
  5731. 0
  5732. ],
  5733. "scale":[
  5734. 2.050002,
  5735. 2.050001,
  5736. 1
  5737. ],
  5738. "meshPath":"Assets/model/ground-ground.lm",
  5739. "enableRender":true,
  5740. "materials":[
  5741. {
  5742. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  5743. }
  5744. ]
  5745. },
  5746. "components":[
  5747. {
  5748. "type":"Animator",
  5749. "layers":[],
  5750. "cullingMode":0,
  5751. "playOnWake":true
  5752. }
  5753. ],
  5754. "child":[
  5755. {
  5756. "type":"Sprite3D",
  5757. "instanceID":179,
  5758. "props":{
  5759. "name":"GameObject",
  5760. "active":true,
  5761. "isStatic":false,
  5762. "layer":0,
  5763. "position":[
  5764. 0,
  5765. 0,
  5766. 0.5
  5767. ],
  5768. "rotation":[
  5769. 0,
  5770. 0,
  5771. 0,
  5772. -1
  5773. ],
  5774. "scale":[
  5775. 1,
  5776. 1,
  5777. 1
  5778. ]
  5779. },
  5780. "components":[
  5781. {
  5782. "type":"PhysicsCollider",
  5783. "restitution":0,
  5784. "friction":0.5,
  5785. "rollingFriction":0,
  5786. "shapes":[
  5787. {
  5788. "type":"BoxColliderShape",
  5789. "center":[
  5790. 0,
  5791. 0,
  5792. 0
  5793. ],
  5794. "size":[
  5795. 1,
  5796. 1,
  5797. 1
  5798. ]
  5799. }
  5800. ],
  5801. "isTrigger":false
  5802. }
  5803. ],
  5804. "child":[]
  5805. }
  5806. ]
  5807. },
  5808. {
  5809. "type":"MeshSprite3D",
  5810. "instanceID":180,
  5811. "props":{
  5812. "name":"ground",
  5813. "active":true,
  5814. "isStatic":false,
  5815. "layer":0,
  5816. "position":[
  5817. -23.92,
  5818. -1.66,
  5819. 54.74
  5820. ],
  5821. "rotation":[
  5822. 0.7071068,
  5823. 0,
  5824. 0,
  5825. -0.7071068
  5826. ],
  5827. "scale":[
  5828. 2.05,
  5829. 2.050001,
  5830. 1
  5831. ],
  5832. "meshPath":"Assets/model/ground-ground.lm",
  5833. "enableRender":true,
  5834. "materials":[
  5835. {
  5836. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  5837. }
  5838. ]
  5839. },
  5840. "components":[
  5841. {
  5842. "type":"Animator",
  5843. "layers":[],
  5844. "cullingMode":0,
  5845. "playOnWake":true
  5846. }
  5847. ],
  5848. "child":[
  5849. {
  5850. "type":"Sprite3D",
  5851. "instanceID":181,
  5852. "props":{
  5853. "name":"GameObject",
  5854. "active":true,
  5855. "isStatic":false,
  5856. "layer":0,
  5857. "position":[
  5858. 0,
  5859. 0,
  5860. 0.5
  5861. ],
  5862. "rotation":[
  5863. 0,
  5864. 0,
  5865. 0,
  5866. -1
  5867. ],
  5868. "scale":[
  5869. 1,
  5870. 1,
  5871. 1
  5872. ]
  5873. },
  5874. "components":[
  5875. {
  5876. "type":"PhysicsCollider",
  5877. "restitution":0,
  5878. "friction":0.5,
  5879. "rollingFriction":0,
  5880. "shapes":[
  5881. {
  5882. "type":"BoxColliderShape",
  5883. "center":[
  5884. 0,
  5885. 0,
  5886. 0
  5887. ],
  5888. "size":[
  5889. 1,
  5890. 1,
  5891. 1
  5892. ]
  5893. }
  5894. ],
  5895. "isTrigger":false
  5896. }
  5897. ],
  5898. "child":[]
  5899. }
  5900. ]
  5901. },
  5902. {
  5903. "type":"MeshSprite3D",
  5904. "instanceID":182,
  5905. "props":{
  5906. "name":"ground",
  5907. "active":true,
  5908. "isStatic":false,
  5909. "layer":0,
  5910. "position":[
  5911. -29.902,
  5912. -1.66,
  5913. 65.02
  5914. ],
  5915. "rotation":[
  5916. 0.7071068,
  5917. 0,
  5918. 0,
  5919. -0.7071068
  5920. ],
  5921. "scale":[
  5922. 2.05,
  5923. 2.050001,
  5924. 1
  5925. ],
  5926. "meshPath":"Assets/model/ground-ground.lm",
  5927. "enableRender":true,
  5928. "materials":[
  5929. {
  5930. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  5931. }
  5932. ]
  5933. },
  5934. "components":[
  5935. {
  5936. "type":"Animator",
  5937. "layers":[],
  5938. "cullingMode":0,
  5939. "playOnWake":true
  5940. }
  5941. ],
  5942. "child":[
  5943. {
  5944. "type":"Sprite3D",
  5945. "instanceID":183,
  5946. "props":{
  5947. "name":"GameObject",
  5948. "active":true,
  5949. "isStatic":false,
  5950. "layer":0,
  5951. "position":[
  5952. 0,
  5953. 0,
  5954. 0.5
  5955. ],
  5956. "rotation":[
  5957. 0,
  5958. 0,
  5959. 0,
  5960. -1
  5961. ],
  5962. "scale":[
  5963. 1,
  5964. 1,
  5965. 1
  5966. ]
  5967. },
  5968. "components":[
  5969. {
  5970. "type":"PhysicsCollider",
  5971. "restitution":0,
  5972. "friction":0.5,
  5973. "rollingFriction":0,
  5974. "shapes":[
  5975. {
  5976. "type":"BoxColliderShape",
  5977. "center":[
  5978. 0,
  5979. 0,
  5980. 0
  5981. ],
  5982. "size":[
  5983. 1,
  5984. 1,
  5985. 1
  5986. ]
  5987. }
  5988. ],
  5989. "isTrigger":false
  5990. }
  5991. ],
  5992. "child":[]
  5993. }
  5994. ]
  5995. },
  5996. {
  5997. "type":"MeshSprite3D",
  5998. "instanceID":184,
  5999. "props":{
  6000. "name":"ground",
  6001. "active":true,
  6002. "isStatic":false,
  6003. "layer":0,
  6004. "position":[
  6005. -23.92,
  6006. -1.66,
  6007. 65.02
  6008. ],
  6009. "rotation":[
  6010. 0,
  6011. 0.7071068,
  6012. 0.7071068,
  6013. 0
  6014. ],
  6015. "scale":[
  6016. 2.050002,
  6017. 2.050001,
  6018. 1
  6019. ],
  6020. "meshPath":"Assets/model/ground-ground.lm",
  6021. "enableRender":true,
  6022. "materials":[
  6023. {
  6024. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  6025. }
  6026. ]
  6027. },
  6028. "components":[
  6029. {
  6030. "type":"Animator",
  6031. "layers":[],
  6032. "cullingMode":0,
  6033. "playOnWake":true
  6034. }
  6035. ],
  6036. "child":[
  6037. {
  6038. "type":"Sprite3D",
  6039. "instanceID":185,
  6040. "props":{
  6041. "name":"GameObject",
  6042. "active":true,
  6043. "isStatic":false,
  6044. "layer":0,
  6045. "position":[
  6046. 0,
  6047. 0,
  6048. 0.5
  6049. ],
  6050. "rotation":[
  6051. 0,
  6052. 0,
  6053. 0,
  6054. -1
  6055. ],
  6056. "scale":[
  6057. 1,
  6058. 1,
  6059. 1
  6060. ]
  6061. },
  6062. "components":[
  6063. {
  6064. "type":"PhysicsCollider",
  6065. "restitution":0,
  6066. "friction":0.5,
  6067. "rollingFriction":0,
  6068. "shapes":[
  6069. {
  6070. "type":"BoxColliderShape",
  6071. "center":[
  6072. 0,
  6073. 0,
  6074. 0
  6075. ],
  6076. "size":[
  6077. 1,
  6078. 1,
  6079. 1
  6080. ]
  6081. }
  6082. ],
  6083. "isTrigger":false
  6084. }
  6085. ],
  6086. "child":[]
  6087. }
  6088. ]
  6089. },
  6090. {
  6091. "type":"Sprite3D",
  6092. "instanceID":186,
  6093. "props":{
  6094. "name":"endground2",
  6095. "active":true,
  6096. "isStatic":false,
  6097. "layer":0,
  6098. "position":[
  6099. -30.32269,
  6100. -1.66,
  6101. 88.90316
  6102. ],
  6103. "rotation":[
  6104. 0.7071068,
  6105. 0,
  6106. 0,
  6107. -0.7071068
  6108. ],
  6109. "scale":[
  6110. 10,
  6111. 13.74172,
  6112. 1
  6113. ]
  6114. },
  6115. "components":[],
  6116. "child":[]
  6117. },
  6118. {
  6119. "type":"Sprite3D",
  6120. "instanceID":187,
  6121. "props":{
  6122. "name":"roleguide",
  6123. "active":true,
  6124. "isStatic":false,
  6125. "layer":0,
  6126. "position":[
  6127. -0.192,
  6128. 1.193,
  6129. 3.1
  6130. ],
  6131. "rotation":[
  6132. 0,
  6133. 0,
  6134. 0,
  6135. -1
  6136. ],
  6137. "scale":[
  6138. 1,
  6139. 1,
  6140. 1
  6141. ]
  6142. },
  6143. "components":[],
  6144. "child":[
  6145. {
  6146. "type":"Sprite3D",
  6147. "instanceID":188,
  6148. "props":{
  6149. "name":"roleguide",
  6150. "active":true,
  6151. "isStatic":false,
  6152. "layer":0,
  6153. "position":[
  6154. 0,
  6155. 0,
  6156. 0
  6157. ],
  6158. "rotation":[
  6159. 0,
  6160. 0,
  6161. 0,
  6162. -1
  6163. ],
  6164. "scale":[
  6165. 2.265659,
  6166. 0.4,
  6167. 0.06762925
  6168. ]
  6169. },
  6170. "components":[
  6171. {
  6172. "type":"PhysicsCollider",
  6173. "restitution":0,
  6174. "friction":0.5,
  6175. "rollingFriction":0,
  6176. "shapes":[
  6177. {
  6178. "type":"BoxColliderShape",
  6179. "center":[
  6180. 0,
  6181. 0,
  6182. 0
  6183. ],
  6184. "size":[
  6185. 1,
  6186. 1,
  6187. 1
  6188. ]
  6189. }
  6190. ],
  6191. "isTrigger":false
  6192. }
  6193. ],
  6194. "child":[]
  6195. }
  6196. ]
  6197. },
  6198. {
  6199. "type":"Sprite3D",
  6200. "instanceID":189,
  6201. "props":{
  6202. "name":"rotateguide",
  6203. "active":true,
  6204. "isStatic":false,
  6205. "layer":0,
  6206. "position":[
  6207. -0.381,
  6208. 1.167,
  6209. 10.331
  6210. ],
  6211. "rotation":[
  6212. 0,
  6213. 0,
  6214. 0,
  6215. -1
  6216. ],
  6217. "scale":[
  6218. 1,
  6219. 1,
  6220. 1
  6221. ]
  6222. },
  6223. "components":[],
  6224. "child":[
  6225. {
  6226. "type":"Sprite3D",
  6227. "instanceID":190,
  6228. "props":{
  6229. "name":"roleguide",
  6230. "active":true,
  6231. "isStatic":false,
  6232. "layer":0,
  6233. "position":[
  6234. 0,
  6235. 0,
  6236. 0
  6237. ],
  6238. "rotation":[
  6239. 0,
  6240. 0,
  6241. 0,
  6242. -1
  6243. ],
  6244. "scale":[
  6245. 2.265659,
  6246. 0.4,
  6247. 0.06762925
  6248. ]
  6249. },
  6250. "components":[
  6251. {
  6252. "type":"PhysicsCollider",
  6253. "restitution":0,
  6254. "friction":0.5,
  6255. "rollingFriction":0,
  6256. "shapes":[
  6257. {
  6258. "type":"BoxColliderShape",
  6259. "center":[
  6260. 0,
  6261. 0,
  6262. 0
  6263. ],
  6264. "size":[
  6265. 1,
  6266. 1,
  6267. 1
  6268. ]
  6269. }
  6270. ],
  6271. "isTrigger":false
  6272. }
  6273. ],
  6274. "child":[]
  6275. }
  6276. ]
  6277. }
  6278. ]
  6279. }
  6280. ]
  6281. },
  6282. {
  6283. "type":"DirectionLight",
  6284. "instanceID":191,
  6285. "props":{
  6286. "name":"Directional Light",
  6287. "active":true,
  6288. "isStatic":false,
  6289. "layer":0,
  6290. "position":[
  6291. 0,
  6292. 3,
  6293. 0
  6294. ],
  6295. "rotation":[
  6296. -0.1538601,
  6297. 0.8441114,
  6298. 0.3936156,
  6299. 0.3299541
  6300. ],
  6301. "scale":[
  6302. 1,
  6303. 1,
  6304. 1
  6305. ],
  6306. "intensity":1,
  6307. "lightmapBakedType":0,
  6308. "color":[
  6309. 1,
  6310. 1,
  6311. 1
  6312. ]
  6313. },
  6314. "components":[],
  6315. "child":[]
  6316. },
  6317. {
  6318. "type":"Sprite3D",
  6319. "instanceID":192,
  6320. "props":{
  6321. "name":"decorate",
  6322. "active":true,
  6323. "isStatic":false,
  6324. "layer":0,
  6325. "position":[
  6326. -35.83186,
  6327. -22.39915,
  6328. 98.70051
  6329. ],
  6330. "rotation":[
  6331. 0,
  6332. 0,
  6333. 0,
  6334. -1
  6335. ],
  6336. "scale":[
  6337. 1,
  6338. 1,
  6339. 1
  6340. ]
  6341. },
  6342. "components":[],
  6343. "child":[
  6344. {
  6345. "type":"Sprite3D",
  6346. "instanceID":193,
  6347. "props":{
  6348. "name":"Combined Mesh (root_ scene) #311810",
  6349. "active":true,
  6350. "isStatic":false,
  6351. "layer":0,
  6352. "position":[
  6353. 55.73186,
  6354. 0.5991554,
  6355. -98.70051
  6356. ],
  6357. "rotation":[
  6358. 0,
  6359. 0.4938496,
  6360. 0,
  6361. -0.8695474
  6362. ],
  6363. "scale":[
  6364. 1,
  6365. 1,
  6366. 1
  6367. ]
  6368. },
  6369. "components":[],
  6370. "child":[
  6371. {
  6372. "type":"MeshSprite3D",
  6373. "instanceID":194,
  6374. "props":{
  6375. "name":"Combined_Mesh_(root:_scene)_0",
  6376. "active":true,
  6377. "isStatic":false,
  6378. "layer":0,
  6379. "position":[
  6380. 13.9,
  6381. 0,
  6382. -43.9
  6383. ],
  6384. "rotation":[
  6385. 0,
  6386. 0,
  6387. 0,
  6388. -1
  6389. ],
  6390. "scale":[
  6391. 1,
  6392. 1,
  6393. 1
  6394. ],
  6395. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_0.lm",
  6396. "enableRender":true,
  6397. "materials":[
  6398. {
  6399. "path":"Assets/yiqilang_mat/bulding.lmat"
  6400. }
  6401. ]
  6402. },
  6403. "components":[],
  6404. "child":[]
  6405. },
  6406. {
  6407. "type":"MeshSprite3D",
  6408. "instanceID":195,
  6409. "props":{
  6410. "name":"Combined_Mesh_(root:_scene)_1",
  6411. "active":true,
  6412. "isStatic":false,
  6413. "layer":0,
  6414. "position":[
  6415. -33.6,
  6416. -10.9,
  6417. 6.8
  6418. ],
  6419. "rotation":[
  6420. 0,
  6421. 0,
  6422. 0,
  6423. -1
  6424. ],
  6425. "scale":[
  6426. 1,
  6427. 1,
  6428. 1
  6429. ],
  6430. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_1.lm",
  6431. "enableRender":true,
  6432. "materials":[
  6433. {
  6434. "path":"Assets/yiqilang_mat/bulding.lmat"
  6435. }
  6436. ]
  6437. },
  6438. "components":[],
  6439. "child":[]
  6440. },
  6441. {
  6442. "type":"MeshSprite3D",
  6443. "instanceID":196,
  6444. "props":{
  6445. "name":"Combined_Mesh_(root:_scene)_2",
  6446. "active":true,
  6447. "isStatic":false,
  6448. "layer":0,
  6449. "position":[
  6450. -55.7,
  6451. -26.5,
  6452. 7.3
  6453. ],
  6454. "rotation":[
  6455. 0,
  6456. 0,
  6457. 0,
  6458. -1
  6459. ],
  6460. "scale":[
  6461. 1,
  6462. 1,
  6463. 1
  6464. ],
  6465. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_2.lm",
  6466. "enableRender":true,
  6467. "materials":[
  6468. {
  6469. "path":"Assets/yiqilang_mat/bulding.lmat"
  6470. }
  6471. ]
  6472. },
  6473. "components":[],
  6474. "child":[]
  6475. },
  6476. {
  6477. "type":"MeshSprite3D",
  6478. "instanceID":197,
  6479. "props":{
  6480. "name":"Combined_Mesh_(root:_scene)_3",
  6481. "active":true,
  6482. "isStatic":false,
  6483. "layer":0,
  6484. "position":[
  6485. -9.8,
  6486. -12.7,
  6487. 18.9
  6488. ],
  6489. "rotation":[
  6490. 0,
  6491. 0,
  6492. 0,
  6493. -1
  6494. ],
  6495. "scale":[
  6496. 1,
  6497. 1,
  6498. 1
  6499. ],
  6500. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_3.lm",
  6501. "enableRender":true,
  6502. "materials":[
  6503. {
  6504. "path":"Assets/yiqilang_mat/bulding.lmat"
  6505. }
  6506. ]
  6507. },
  6508. "components":[],
  6509. "child":[]
  6510. },
  6511. {
  6512. "type":"MeshSprite3D",
  6513. "instanceID":198,
  6514. "props":{
  6515. "name":"Combined_Mesh_(root:_scene)_4",
  6516. "active":true,
  6517. "isStatic":false,
  6518. "layer":0,
  6519. "position":[
  6520. -33.6,
  6521. -10.9,
  6522. 6.8
  6523. ],
  6524. "rotation":[
  6525. 0,
  6526. 0,
  6527. 0,
  6528. -1
  6529. ],
  6530. "scale":[
  6531. 1,
  6532. 1,
  6533. 1
  6534. ],
  6535. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_4.lm",
  6536. "enableRender":true,
  6537. "materials":[
  6538. {
  6539. "path":"Assets/yiqilang_mat/bulding.lmat"
  6540. }
  6541. ]
  6542. },
  6543. "components":[],
  6544. "child":[]
  6545. },
  6546. {
  6547. "type":"MeshSprite3D",
  6548. "instanceID":199,
  6549. "props":{
  6550. "name":"Combined_Mesh_(root:_scene)_5",
  6551. "active":true,
  6552. "isStatic":false,
  6553. "layer":0,
  6554. "position":[
  6555. 13.9,
  6556. 0,
  6557. -43.9
  6558. ],
  6559. "rotation":[
  6560. 0,
  6561. 0,
  6562. 0,
  6563. -1
  6564. ],
  6565. "scale":[
  6566. 1,
  6567. 1,
  6568. 1
  6569. ],
  6570. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_5.lm",
  6571. "enableRender":true,
  6572. "materials":[
  6573. {
  6574. "path":"Assets/yiqilang_mat/bulding.lmat"
  6575. }
  6576. ]
  6577. },
  6578. "components":[],
  6579. "child":[]
  6580. },
  6581. {
  6582. "type":"MeshSprite3D",
  6583. "instanceID":200,
  6584. "props":{
  6585. "name":"Combined_Mesh_(root:_scene)_6",
  6586. "active":true,
  6587. "isStatic":false,
  6588. "layer":0,
  6589. "position":[
  6590. 164.5,
  6591. 0,
  6592. 10.9
  6593. ],
  6594. "rotation":[
  6595. 0,
  6596. 0,
  6597. 0,
  6598. -1
  6599. ],
  6600. "scale":[
  6601. 1,
  6602. 1,
  6603. 1
  6604. ],
  6605. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_6.lm",
  6606. "enableRender":true,
  6607. "materials":[
  6608. {
  6609. "path":"Assets/yiqilang_mat/bulding.lmat"
  6610. }
  6611. ]
  6612. },
  6613. "components":[],
  6614. "child":[]
  6615. },
  6616. {
  6617. "type":"MeshSprite3D",
  6618. "instanceID":201,
  6619. "props":{
  6620. "name":"Combined_Mesh_(root:_scene)_7",
  6621. "active":true,
  6622. "isStatic":false,
  6623. "layer":0,
  6624. "position":[
  6625. 92.3,
  6626. -7.6,
  6627. 3.9
  6628. ],
  6629. "rotation":[
  6630. 0,
  6631. 0,
  6632. 0,
  6633. -1
  6634. ],
  6635. "scale":[
  6636. 1,
  6637. 1,
  6638. 1
  6639. ],
  6640. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_7.lm",
  6641. "enableRender":true,
  6642. "materials":[
  6643. {
  6644. "path":"Assets/yiqilang_mat/bulding.lmat"
  6645. }
  6646. ]
  6647. },
  6648. "components":[],
  6649. "child":[]
  6650. },
  6651. {
  6652. "type":"MeshSprite3D",
  6653. "instanceID":202,
  6654. "props":{
  6655. "name":"Combined_Mesh_(root:_scene)_8",
  6656. "active":true,
  6657. "isStatic":false,
  6658. "layer":0,
  6659. "position":[
  6660. -3.5,
  6661. 27.4,
  6662. -84.1
  6663. ],
  6664. "rotation":[
  6665. 0,
  6666. -0.4046726,
  6667. 0,
  6668. -0.9144617
  6669. ],
  6670. "scale":[
  6671. 1,
  6672. 1,
  6673. 1
  6674. ],
  6675. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_8.lm",
  6676. "enableRender":true,
  6677. "materials":[
  6678. {
  6679. "path":"Assets/yiqilang_mat/bulding.lmat"
  6680. }
  6681. ]
  6682. },
  6683. "components":[],
  6684. "child":[]
  6685. },
  6686. {
  6687. "type":"MeshSprite3D",
  6688. "instanceID":203,
  6689. "props":{
  6690. "name":"Combined_Mesh_(root:_scene)_9",
  6691. "active":true,
  6692. "isStatic":false,
  6693. "layer":0,
  6694. "position":[
  6695. -9.8,
  6696. -12.7,
  6697. 18.9
  6698. ],
  6699. "rotation":[
  6700. 0,
  6701. 0,
  6702. 0,
  6703. -1
  6704. ],
  6705. "scale":[
  6706. 1,
  6707. 1,
  6708. 1
  6709. ],
  6710. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_9.lm",
  6711. "enableRender":true,
  6712. "materials":[
  6713. {
  6714. "path":"Assets/yiqilang_mat/bulding.lmat"
  6715. }
  6716. ]
  6717. },
  6718. "components":[],
  6719. "child":[]
  6720. },
  6721. {
  6722. "type":"MeshSprite3D",
  6723. "instanceID":204,
  6724. "props":{
  6725. "name":"Combined_Mesh_(root:_scene)_10",
  6726. "active":true,
  6727. "isStatic":false,
  6728. "layer":0,
  6729. "position":[
  6730. 164.5,
  6731. 0,
  6732. 10.9
  6733. ],
  6734. "rotation":[
  6735. 0,
  6736. 0,
  6737. 0,
  6738. -1
  6739. ],
  6740. "scale":[
  6741. 1,
  6742. 1,
  6743. 1
  6744. ],
  6745. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_10.lm",
  6746. "enableRender":true,
  6747. "materials":[
  6748. {
  6749. "path":"Assets/yiqilang_mat/bulding.lmat"
  6750. }
  6751. ]
  6752. },
  6753. "components":[],
  6754. "child":[]
  6755. },
  6756. {
  6757. "type":"MeshSprite3D",
  6758. "instanceID":205,
  6759. "props":{
  6760. "name":"Combined_Mesh_(root:_scene)_11",
  6761. "active":true,
  6762. "isStatic":false,
  6763. "layer":0,
  6764. "position":[
  6765. -9.8,
  6766. -12.7,
  6767. 18.9
  6768. ],
  6769. "rotation":[
  6770. 0,
  6771. 0,
  6772. 0,
  6773. -1
  6774. ],
  6775. "scale":[
  6776. 1,
  6777. 1,
  6778. 1
  6779. ],
  6780. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_11.lm",
  6781. "enableRender":true,
  6782. "materials":[
  6783. {
  6784. "path":"Assets/yiqilang_mat/bulding.lmat"
  6785. }
  6786. ]
  6787. },
  6788. "components":[],
  6789. "child":[]
  6790. },
  6791. {
  6792. "type":"MeshSprite3D",
  6793. "instanceID":206,
  6794. "props":{
  6795. "name":"Combined_Mesh_(root:_scene)_12",
  6796. "active":true,
  6797. "isStatic":false,
  6798. "layer":0,
  6799. "position":[
  6800. -9.8,
  6801. -12.7,
  6802. 18.9
  6803. ],
  6804. "rotation":[
  6805. 0,
  6806. 0,
  6807. 0,
  6808. -1
  6809. ],
  6810. "scale":[
  6811. 1,
  6812. 1,
  6813. 1
  6814. ],
  6815. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_12.lm",
  6816. "enableRender":true,
  6817. "materials":[
  6818. {
  6819. "path":"Assets/yiqilang_mat/bulding.lmat"
  6820. }
  6821. ]
  6822. },
  6823. "components":[],
  6824. "child":[]
  6825. },
  6826. {
  6827. "type":"MeshSprite3D",
  6828. "instanceID":207,
  6829. "props":{
  6830. "name":"Combined_Mesh_(root:_scene)_13",
  6831. "active":true,
  6832. "isStatic":false,
  6833. "layer":0,
  6834. "position":[
  6835. -33.6,
  6836. -10.9,
  6837. 6.8
  6838. ],
  6839. "rotation":[
  6840. 0,
  6841. 0,
  6842. 0,
  6843. -1
  6844. ],
  6845. "scale":[
  6846. 1,
  6847. 1,
  6848. 1
  6849. ],
  6850. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_13.lm",
  6851. "enableRender":true,
  6852. "materials":[
  6853. {
  6854. "path":"Assets/yiqilang_mat/bulding.lmat"
  6855. }
  6856. ]
  6857. },
  6858. "components":[],
  6859. "child":[]
  6860. },
  6861. {
  6862. "type":"MeshSprite3D",
  6863. "instanceID":208,
  6864. "props":{
  6865. "name":"Combined_Mesh_(root:_scene)_14",
  6866. "active":true,
  6867. "isStatic":false,
  6868. "layer":0,
  6869. "position":[
  6870. -55.7,
  6871. -26.5,
  6872. 7.3
  6873. ],
  6874. "rotation":[
  6875. 0,
  6876. 0,
  6877. 0,
  6878. -1
  6879. ],
  6880. "scale":[
  6881. 1,
  6882. 1,
  6883. 1
  6884. ],
  6885. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_14.lm",
  6886. "enableRender":true,
  6887. "materials":[
  6888. {
  6889. "path":"Assets/yiqilang_mat/bulding.lmat"
  6890. }
  6891. ]
  6892. },
  6893. "components":[],
  6894. "child":[]
  6895. },
  6896. {
  6897. "type":"MeshSprite3D",
  6898. "instanceID":209,
  6899. "props":{
  6900. "name":"Combined_Mesh_(root:_scene)_15",
  6901. "active":true,
  6902. "isStatic":false,
  6903. "layer":0,
  6904. "position":[
  6905. -3.5,
  6906. 27.4,
  6907. -84.1
  6908. ],
  6909. "rotation":[
  6910. 0,
  6911. -0.4046726,
  6912. 0,
  6913. -0.9144617
  6914. ],
  6915. "scale":[
  6916. 1,
  6917. 1,
  6918. 1
  6919. ],
  6920. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_15.lm",
  6921. "enableRender":true,
  6922. "materials":[
  6923. {
  6924. "path":"Assets/yiqilang_mat/bulding.lmat"
  6925. }
  6926. ]
  6927. },
  6928. "components":[],
  6929. "child":[]
  6930. },
  6931. {
  6932. "type":"MeshSprite3D",
  6933. "instanceID":210,
  6934. "props":{
  6935. "name":"Combined_Mesh_(root:_scene)_16",
  6936. "active":true,
  6937. "isStatic":false,
  6938. "layer":0,
  6939. "position":[
  6940. -33.6,
  6941. -10.9,
  6942. 6.8
  6943. ],
  6944. "rotation":[
  6945. 0,
  6946. 0,
  6947. 0,
  6948. -1
  6949. ],
  6950. "scale":[
  6951. 1,
  6952. 1,
  6953. 1
  6954. ],
  6955. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_16.lm",
  6956. "enableRender":true,
  6957. "materials":[
  6958. {
  6959. "path":"Assets/yiqilang_mat/bulding.lmat"
  6960. }
  6961. ]
  6962. },
  6963. "components":[],
  6964. "child":[]
  6965. },
  6966. {
  6967. "type":"MeshSprite3D",
  6968. "instanceID":211,
  6969. "props":{
  6970. "name":"Combined_Mesh_(root:_scene)_17",
  6971. "active":true,
  6972. "isStatic":false,
  6973. "layer":0,
  6974. "position":[
  6975. -9.8,
  6976. -12.7,
  6977. 18.9
  6978. ],
  6979. "rotation":[
  6980. 0,
  6981. 0,
  6982. 0,
  6983. -1
  6984. ],
  6985. "scale":[
  6986. 1,
  6987. 1,
  6988. 1
  6989. ],
  6990. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_17.lm",
  6991. "enableRender":true,
  6992. "materials":[
  6993. {
  6994. "path":"Assets/yiqilang_mat/bulding.lmat"
  6995. }
  6996. ]
  6997. },
  6998. "components":[],
  6999. "child":[]
  7000. },
  7001. {
  7002. "type":"MeshSprite3D",
  7003. "instanceID":212,
  7004. "props":{
  7005. "name":"Combined_Mesh_(root:_scene)_18",
  7006. "active":true,
  7007. "isStatic":false,
  7008. "layer":0,
  7009. "position":[
  7010. 92.3,
  7011. -7.6,
  7012. 3.9
  7013. ],
  7014. "rotation":[
  7015. 0,
  7016. 0,
  7017. 0,
  7018. -1
  7019. ],
  7020. "scale":[
  7021. 1,
  7022. 1,
  7023. 1
  7024. ],
  7025. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_18.lm",
  7026. "enableRender":true,
  7027. "materials":[
  7028. {
  7029. "path":"Assets/yiqilang_mat/bulding.lmat"
  7030. }
  7031. ]
  7032. },
  7033. "components":[],
  7034. "child":[]
  7035. },
  7036. {
  7037. "type":"MeshSprite3D",
  7038. "instanceID":213,
  7039. "props":{
  7040. "name":"Combined_Mesh_(root:_scene)_19",
  7041. "active":true,
  7042. "isStatic":false,
  7043. "layer":0,
  7044. "position":[
  7045. 92.3,
  7046. -7.6,
  7047. 3.9
  7048. ],
  7049. "rotation":[
  7050. 0,
  7051. 0,
  7052. 0,
  7053. -1
  7054. ],
  7055. "scale":[
  7056. 1,
  7057. 1,
  7058. 1
  7059. ],
  7060. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_19.lm",
  7061. "enableRender":true,
  7062. "materials":[
  7063. {
  7064. "path":"Assets/yiqilang_mat/bulding.lmat"
  7065. }
  7066. ]
  7067. },
  7068. "components":[],
  7069. "child":[]
  7070. },
  7071. {
  7072. "type":"MeshSprite3D",
  7073. "instanceID":214,
  7074. "props":{
  7075. "name":"Combined_Mesh_(root:_scene)_20",
  7076. "active":true,
  7077. "isStatic":false,
  7078. "layer":0,
  7079. "position":[
  7080. 55.1,
  7081. 44.9,
  7082. 62
  7083. ],
  7084. "rotation":[
  7085. 0,
  7086. 0,
  7087. 0,
  7088. -1
  7089. ],
  7090. "scale":[
  7091. 1,
  7092. 1,
  7093. 1
  7094. ],
  7095. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_20.lm",
  7096. "enableRender":true,
  7097. "materials":[
  7098. {
  7099. "path":"Assets/yiqilang_mat/bulding.lmat"
  7100. }
  7101. ]
  7102. },
  7103. "components":[],
  7104. "child":[]
  7105. },
  7106. {
  7107. "type":"MeshSprite3D",
  7108. "instanceID":215,
  7109. "props":{
  7110. "name":"Combined_Mesh_(root:_scene)_21",
  7111. "active":true,
  7112. "isStatic":false,
  7113. "layer":0,
  7114. "position":[
  7115. -55.7,
  7116. -26.5,
  7117. 7.3
  7118. ],
  7119. "rotation":[
  7120. 0,
  7121. 0,
  7122. 0,
  7123. -1
  7124. ],
  7125. "scale":[
  7126. 1,
  7127. 1,
  7128. 1
  7129. ],
  7130. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_21.lm",
  7131. "enableRender":true,
  7132. "materials":[
  7133. {
  7134. "path":"Assets/yiqilang_mat/bulding.lmat"
  7135. }
  7136. ]
  7137. },
  7138. "components":[],
  7139. "child":[]
  7140. },
  7141. {
  7142. "type":"MeshSprite3D",
  7143. "instanceID":216,
  7144. "props":{
  7145. "name":"Combined_Mesh_(root:_scene)_22",
  7146. "active":true,
  7147. "isStatic":false,
  7148. "layer":0,
  7149. "position":[
  7150. -33.6,
  7151. -10.9,
  7152. 6.8
  7153. ],
  7154. "rotation":[
  7155. 0,
  7156. 0,
  7157. 0,
  7158. -1
  7159. ],
  7160. "scale":[
  7161. 1,
  7162. 1,
  7163. 1
  7164. ],
  7165. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_22.lm",
  7166. "enableRender":true,
  7167. "materials":[
  7168. {
  7169. "path":"Assets/yiqilang_mat/bulding.lmat"
  7170. }
  7171. ]
  7172. },
  7173. "components":[],
  7174. "child":[]
  7175. },
  7176. {
  7177. "type":"MeshSprite3D",
  7178. "instanceID":217,
  7179. "props":{
  7180. "name":"Combined_Mesh_(root:_scene)_23",
  7181. "active":true,
  7182. "isStatic":false,
  7183. "layer":0,
  7184. "position":[
  7185. 55.1,
  7186. 44.9,
  7187. 62
  7188. ],
  7189. "rotation":[
  7190. 0,
  7191. 0,
  7192. 0,
  7193. -1
  7194. ],
  7195. "scale":[
  7196. 1,
  7197. 1,
  7198. 1
  7199. ],
  7200. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_23.lm",
  7201. "enableRender":true,
  7202. "materials":[
  7203. {
  7204. "path":"Assets/yiqilang_mat/bulding.lmat"
  7205. }
  7206. ]
  7207. },
  7208. "components":[],
  7209. "child":[]
  7210. },
  7211. {
  7212. "type":"MeshSprite3D",
  7213. "instanceID":218,
  7214. "props":{
  7215. "name":"Combined_Mesh_(root:_scene)_24",
  7216. "active":true,
  7217. "isStatic":false,
  7218. "layer":0,
  7219. "position":[
  7220. 92.3,
  7221. -7.6,
  7222. 3.9
  7223. ],
  7224. "rotation":[
  7225. 0,
  7226. 0,
  7227. 0,
  7228. -1
  7229. ],
  7230. "scale":[
  7231. 1,
  7232. 1,
  7233. 1
  7234. ],
  7235. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_24.lm",
  7236. "enableRender":true,
  7237. "materials":[
  7238. {
  7239. "path":"Assets/yiqilang_mat/bulding.lmat"
  7240. }
  7241. ]
  7242. },
  7243. "components":[],
  7244. "child":[]
  7245. },
  7246. {
  7247. "type":"MeshSprite3D",
  7248. "instanceID":219,
  7249. "props":{
  7250. "name":"Combined_Mesh_(root:_scene)_25",
  7251. "active":true,
  7252. "isStatic":false,
  7253. "layer":0,
  7254. "position":[
  7255. 13.9,
  7256. 0,
  7257. -43.9
  7258. ],
  7259. "rotation":[
  7260. 0,
  7261. 0,
  7262. 0,
  7263. -1
  7264. ],
  7265. "scale":[
  7266. 1,
  7267. 1,
  7268. 1
  7269. ],
  7270. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_25.lm",
  7271. "enableRender":true,
  7272. "materials":[
  7273. {
  7274. "path":"Assets/yiqilang_mat/bulding.lmat"
  7275. }
  7276. ]
  7277. },
  7278. "components":[],
  7279. "child":[]
  7280. },
  7281. {
  7282. "type":"MeshSprite3D",
  7283. "instanceID":220,
  7284. "props":{
  7285. "name":"Combined_Mesh_(root:_scene)_26",
  7286. "active":true,
  7287. "isStatic":false,
  7288. "layer":0,
  7289. "position":[
  7290. -55.7,
  7291. -26.5,
  7292. 7.3
  7293. ],
  7294. "rotation":[
  7295. 0,
  7296. 0,
  7297. 0,
  7298. -1
  7299. ],
  7300. "scale":[
  7301. 1,
  7302. 1,
  7303. 1
  7304. ],
  7305. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_26.lm",
  7306. "enableRender":true,
  7307. "materials":[
  7308. {
  7309. "path":"Assets/yiqilang_mat/bulding.lmat"
  7310. }
  7311. ]
  7312. },
  7313. "components":[],
  7314. "child":[]
  7315. },
  7316. {
  7317. "type":"MeshSprite3D",
  7318. "instanceID":221,
  7319. "props":{
  7320. "name":"Combined_Mesh_(root:_scene)_27",
  7321. "active":true,
  7322. "isStatic":false,
  7323. "layer":0,
  7324. "position":[
  7325. 164.5,
  7326. 0,
  7327. 10.9
  7328. ],
  7329. "rotation":[
  7330. 0,
  7331. 0,
  7332. 0,
  7333. -1
  7334. ],
  7335. "scale":[
  7336. 1,
  7337. 1,
  7338. 1
  7339. ],
  7340. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_27.lm",
  7341. "enableRender":true,
  7342. "materials":[
  7343. {
  7344. "path":"Assets/yiqilang_mat/bulding.lmat"
  7345. }
  7346. ]
  7347. },
  7348. "components":[],
  7349. "child":[]
  7350. },
  7351. {
  7352. "type":"MeshSprite3D",
  7353. "instanceID":222,
  7354. "props":{
  7355. "name":"Combined_Mesh_(root:_scene)_28",
  7356. "active":true,
  7357. "isStatic":false,
  7358. "layer":0,
  7359. "position":[
  7360. -83.7,
  7361. 0,
  7362. -61.7
  7363. ],
  7364. "rotation":[
  7365. 0,
  7366. -0.4046726,
  7367. 0,
  7368. -0.9144617
  7369. ],
  7370. "scale":[
  7371. 1,
  7372. 1,
  7373. 1
  7374. ],
  7375. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_28.lm",
  7376. "enableRender":true,
  7377. "materials":[
  7378. {
  7379. "path":"Assets/yiqilang_mat/bulding.lmat"
  7380. }
  7381. ]
  7382. },
  7383. "components":[],
  7384. "child":[]
  7385. },
  7386. {
  7387. "type":"MeshSprite3D",
  7388. "instanceID":223,
  7389. "props":{
  7390. "name":"Combined_Mesh_(root:_scene)_29",
  7391. "active":true,
  7392. "isStatic":false,
  7393. "layer":0,
  7394. "position":[
  7395. -55.7,
  7396. -26.5,
  7397. 7.3
  7398. ],
  7399. "rotation":[
  7400. 0,
  7401. 0,
  7402. 0,
  7403. -1
  7404. ],
  7405. "scale":[
  7406. 1,
  7407. 1,
  7408. 1
  7409. ],
  7410. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_29.lm",
  7411. "enableRender":true,
  7412. "materials":[
  7413. {
  7414. "path":"Assets/yiqilang_mat/bulding.lmat"
  7415. }
  7416. ]
  7417. },
  7418. "components":[],
  7419. "child":[]
  7420. },
  7421. {
  7422. "type":"MeshSprite3D",
  7423. "instanceID":224,
  7424. "props":{
  7425. "name":"Combined_Mesh_(root:_scene)_30",
  7426. "active":true,
  7427. "isStatic":false,
  7428. "layer":0,
  7429. "position":[
  7430. 13.9,
  7431. 0,
  7432. -43.9
  7433. ],
  7434. "rotation":[
  7435. 0,
  7436. 0,
  7437. 0,
  7438. -1
  7439. ],
  7440. "scale":[
  7441. 1,
  7442. 1,
  7443. 1
  7444. ],
  7445. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_30.lm",
  7446. "enableRender":true,
  7447. "materials":[
  7448. {
  7449. "path":"Assets/yiqilang_mat/bulding.lmat"
  7450. }
  7451. ]
  7452. },
  7453. "components":[],
  7454. "child":[]
  7455. },
  7456. {
  7457. "type":"MeshSprite3D",
  7458. "instanceID":225,
  7459. "props":{
  7460. "name":"Combined_Mesh_(root:_scene)_31",
  7461. "active":true,
  7462. "isStatic":false,
  7463. "layer":0,
  7464. "position":[
  7465. 92.3,
  7466. -7.6,
  7467. 3.9
  7468. ],
  7469. "rotation":[
  7470. 0,
  7471. 0,
  7472. 0,
  7473. -1
  7474. ],
  7475. "scale":[
  7476. 1,
  7477. 1,
  7478. 1
  7479. ],
  7480. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_31.lm",
  7481. "enableRender":true,
  7482. "materials":[
  7483. {
  7484. "path":"Assets/yiqilang_mat/bulding.lmat"
  7485. }
  7486. ]
  7487. },
  7488. "components":[],
  7489. "child":[]
  7490. },
  7491. {
  7492. "type":"MeshSprite3D",
  7493. "instanceID":226,
  7494. "props":{
  7495. "name":"Combined_Mesh_(root:_scene)_32",
  7496. "active":true,
  7497. "isStatic":false,
  7498. "layer":0,
  7499. "position":[
  7500. -9.8,
  7501. -12.7,
  7502. 18.9
  7503. ],
  7504. "rotation":[
  7505. 0,
  7506. 0,
  7507. 0,
  7508. -1
  7509. ],
  7510. "scale":[
  7511. 1,
  7512. 1,
  7513. 1
  7514. ],
  7515. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_32.lm",
  7516. "enableRender":true,
  7517. "materials":[
  7518. {
  7519. "path":"Assets/yiqilang_mat/bulding.lmat"
  7520. }
  7521. ]
  7522. },
  7523. "components":[],
  7524. "child":[]
  7525. },
  7526. {
  7527. "type":"MeshSprite3D",
  7528. "instanceID":227,
  7529. "props":{
  7530. "name":"Combined_Mesh_(root:_scene)_33",
  7531. "active":true,
  7532. "isStatic":false,
  7533. "layer":0,
  7534. "position":[
  7535. 13.9,
  7536. 0,
  7537. -43.9
  7538. ],
  7539. "rotation":[
  7540. 0,
  7541. 0,
  7542. 0,
  7543. -1
  7544. ],
  7545. "scale":[
  7546. 1,
  7547. 1,
  7548. 1
  7549. ],
  7550. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_33.lm",
  7551. "enableRender":true,
  7552. "materials":[
  7553. {
  7554. "path":"Assets/yiqilang_mat/bulding.lmat"
  7555. }
  7556. ]
  7557. },
  7558. "components":[],
  7559. "child":[]
  7560. },
  7561. {
  7562. "type":"MeshSprite3D",
  7563. "instanceID":228,
  7564. "props":{
  7565. "name":"Combined_Mesh_(root:_scene)_34",
  7566. "active":true,
  7567. "isStatic":false,
  7568. "layer":0,
  7569. "position":[
  7570. -83.7,
  7571. 0,
  7572. -61.7
  7573. ],
  7574. "rotation":[
  7575. 0,
  7576. -0.4046726,
  7577. 0,
  7578. -0.9144617
  7579. ],
  7580. "scale":[
  7581. 1,
  7582. 1,
  7583. 1
  7584. ],
  7585. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_34.lm",
  7586. "enableRender":true,
  7587. "materials":[
  7588. {
  7589. "path":"Assets/yiqilang_mat/bulding.lmat"
  7590. }
  7591. ]
  7592. },
  7593. "components":[],
  7594. "child":[]
  7595. },
  7596. {
  7597. "type":"MeshSprite3D",
  7598. "instanceID":229,
  7599. "props":{
  7600. "name":"Combined_Mesh_(root:_scene)_35",
  7601. "active":true,
  7602. "isStatic":false,
  7603. "layer":0,
  7604. "position":[
  7605. 92.3,
  7606. -7.6,
  7607. 3.9
  7608. ],
  7609. "rotation":[
  7610. 0,
  7611. 0,
  7612. 0,
  7613. -1
  7614. ],
  7615. "scale":[
  7616. 1,
  7617. 1,
  7618. 1
  7619. ],
  7620. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_35.lm",
  7621. "enableRender":true,
  7622. "materials":[
  7623. {
  7624. "path":"Assets/yiqilang_mat/bulding.lmat"
  7625. }
  7626. ]
  7627. },
  7628. "components":[],
  7629. "child":[]
  7630. },
  7631. {
  7632. "type":"MeshSprite3D",
  7633. "instanceID":230,
  7634. "props":{
  7635. "name":"Combined_Mesh_(root:_scene)_36",
  7636. "active":true,
  7637. "isStatic":false,
  7638. "layer":0,
  7639. "position":[
  7640. -83.7,
  7641. 0,
  7642. -61.7
  7643. ],
  7644. "rotation":[
  7645. 0,
  7646. -0.4046726,
  7647. 0,
  7648. -0.9144617
  7649. ],
  7650. "scale":[
  7651. 1,
  7652. 1,
  7653. 1
  7654. ],
  7655. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_36.lm",
  7656. "enableRender":true,
  7657. "materials":[
  7658. {
  7659. "path":"Assets/yiqilang_mat/bulding.lmat"
  7660. }
  7661. ]
  7662. },
  7663. "components":[],
  7664. "child":[]
  7665. },
  7666. {
  7667. "type":"MeshSprite3D",
  7668. "instanceID":231,
  7669. "props":{
  7670. "name":"Combined_Mesh_(root:_scene)_37",
  7671. "active":true,
  7672. "isStatic":false,
  7673. "layer":0,
  7674. "position":[
  7675. 13.9,
  7676. 0,
  7677. -43.9
  7678. ],
  7679. "rotation":[
  7680. 0,
  7681. 0,
  7682. 0,
  7683. -1
  7684. ],
  7685. "scale":[
  7686. 1,
  7687. 1,
  7688. 1
  7689. ],
  7690. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_37.lm",
  7691. "enableRender":true,
  7692. "materials":[
  7693. {
  7694. "path":"Assets/yiqilang_mat/bulding.lmat"
  7695. }
  7696. ]
  7697. },
  7698. "components":[],
  7699. "child":[]
  7700. },
  7701. {
  7702. "type":"MeshSprite3D",
  7703. "instanceID":232,
  7704. "props":{
  7705. "name":"Combined_Mesh_(root:_scene)_38",
  7706. "active":true,
  7707. "isStatic":false,
  7708. "layer":0,
  7709. "position":[
  7710. -55.7,
  7711. -26.5,
  7712. 7.3
  7713. ],
  7714. "rotation":[
  7715. 0,
  7716. 0,
  7717. 0,
  7718. -1
  7719. ],
  7720. "scale":[
  7721. 1,
  7722. 1,
  7723. 1
  7724. ],
  7725. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_38.lm",
  7726. "enableRender":true,
  7727. "materials":[
  7728. {
  7729. "path":"Assets/yiqilang_mat/bulding.lmat"
  7730. }
  7731. ]
  7732. },
  7733. "components":[],
  7734. "child":[]
  7735. },
  7736. {
  7737. "type":"MeshSprite3D",
  7738. "instanceID":233,
  7739. "props":{
  7740. "name":"Combined_Mesh_(root:_scene)_39",
  7741. "active":true,
  7742. "isStatic":false,
  7743. "layer":0,
  7744. "position":[
  7745. 164.5,
  7746. 0,
  7747. 10.9
  7748. ],
  7749. "rotation":[
  7750. 0,
  7751. 0,
  7752. 0,
  7753. -1
  7754. ],
  7755. "scale":[
  7756. 1,
  7757. 1,
  7758. 1
  7759. ],
  7760. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_39.lm",
  7761. "enableRender":true,
  7762. "materials":[
  7763. {
  7764. "path":"Assets/yiqilang_mat/bulding.lmat"
  7765. }
  7766. ]
  7767. },
  7768. "components":[],
  7769. "child":[]
  7770. },
  7771. {
  7772. "type":"MeshSprite3D",
  7773. "instanceID":234,
  7774. "props":{
  7775. "name":"Combined_Mesh_(root:_scene)_40",
  7776. "active":true,
  7777. "isStatic":false,
  7778. "layer":0,
  7779. "position":[
  7780. -3.5,
  7781. 27.4,
  7782. -84.1
  7783. ],
  7784. "rotation":[
  7785. 0,
  7786. -0.4046726,
  7787. 0,
  7788. -0.9144617
  7789. ],
  7790. "scale":[
  7791. 1,
  7792. 1,
  7793. 1
  7794. ],
  7795. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_40.lm",
  7796. "enableRender":true,
  7797. "materials":[
  7798. {
  7799. "path":"Assets/yiqilang_mat/bulding.lmat"
  7800. }
  7801. ]
  7802. },
  7803. "components":[],
  7804. "child":[]
  7805. },
  7806. {
  7807. "type":"MeshSprite3D",
  7808. "instanceID":235,
  7809. "props":{
  7810. "name":"Combined_Mesh_(root:_scene)_41",
  7811. "active":true,
  7812. "isStatic":false,
  7813. "layer":0,
  7814. "position":[
  7815. -33.6,
  7816. -10.9,
  7817. 6.8
  7818. ],
  7819. "rotation":[
  7820. 0,
  7821. 0,
  7822. 0,
  7823. -1
  7824. ],
  7825. "scale":[
  7826. 1,
  7827. 1,
  7828. 1
  7829. ],
  7830. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_41.lm",
  7831. "enableRender":true,
  7832. "materials":[
  7833. {
  7834. "path":"Assets/yiqilang_mat/bulding.lmat"
  7835. }
  7836. ]
  7837. },
  7838. "components":[],
  7839. "child":[]
  7840. }
  7841. ]
  7842. },
  7843. {
  7844. "type":"MeshSprite3D",
  7845. "instanceID":236,
  7846. "props":{
  7847. "name":"Plane",
  7848. "active":true,
  7849. "isStatic":false,
  7850. "layer":0,
  7851. "position":[
  7852. 35.33186,
  7853. -1.000845,
  7854. -74.40051
  7855. ],
  7856. "rotation":[
  7857. 0.1141057,
  7858. -0.9080608,
  7859. -0.2866855,
  7860. 0.283226
  7861. ],
  7862. "scale":[
  7863. 6.353818,
  7864. 1,
  7865. 9.774346
  7866. ],
  7867. "meshPath":"Library/unity default resources-Plane.lm",
  7868. "enableRender":true,
  7869. "materials":[
  7870. {
  7871. "path":"Assets/yiqilang_mat/light.lmat"
  7872. }
  7873. ]
  7874. },
  7875. "components":[
  7876. {
  7877. "type":"PhysicsCollider",
  7878. "restitution":0,
  7879. "friction":0.5,
  7880. "rollingFriction":0,
  7881. "shapes":[
  7882. {
  7883. "type":"MeshColliderShape",
  7884. "mesh":"Library/unity default resources-Plane.lm"
  7885. }
  7886. ],
  7887. "isTrigger":false
  7888. }
  7889. ],
  7890. "child":[]
  7891. },
  7892. {
  7893. "type":"MeshSprite3D",
  7894. "instanceID":237,
  7895. "props":{
  7896. "name":"Plane",
  7897. "active":true,
  7898. "isStatic":false,
  7899. "layer":0,
  7900. "position":[
  7901. 57.03187,
  7902. -24.40084,
  7903. -19.80051
  7904. ],
  7905. "rotation":[
  7906. -0.1070025,
  7907. 0.7430005,
  7908. -0.2126669,
  7909. -0.6255187
  7910. ],
  7911. "scale":[
  7912. 6.353814,
  7913. 1,
  7914. 9.774343
  7915. ],
  7916. "meshPath":"Library/unity default resources-Plane.lm",
  7917. "enableRender":true,
  7918. "materials":[
  7919. {
  7920. "path":"Assets/yiqilang_mat/light.lmat"
  7921. }
  7922. ]
  7923. },
  7924. "components":[
  7925. {
  7926. "type":"PhysicsCollider",
  7927. "restitution":0,
  7928. "friction":0.5,
  7929. "rollingFriction":0,
  7930. "shapes":[
  7931. {
  7932. "type":"MeshColliderShape",
  7933. "mesh":"Library/unity default resources-Plane.lm"
  7934. }
  7935. ],
  7936. "isTrigger":false
  7937. }
  7938. ],
  7939. "child":[]
  7940. }
  7941. ]
  7942. },
  7943. {
  7944. "type":"Sprite3D",
  7945. "instanceID":238,
  7946. "props":{
  7947. "name":"decorate2",
  7948. "active":true,
  7949. "isStatic":false,
  7950. "layer":0,
  7951. "position":[
  7952. 17.63753,
  7953. -40.70528,
  7954. 121.2675
  7955. ],
  7956. "rotation":[
  7957. 0,
  7958. 0,
  7959. 0,
  7960. -1
  7961. ],
  7962. "scale":[
  7963. 1,
  7964. 1,
  7965. 1
  7966. ]
  7967. },
  7968. "components":[],
  7969. "child":[
  7970. {
  7971. "type":"MeshSprite3D",
  7972. "instanceID":239,
  7973. "props":{
  7974. "name":"Plane",
  7975. "active":true,
  7976. "isStatic":false,
  7977. "layer":0,
  7978. "position":[
  7979. -37.92419,
  7980. 8.405277,
  7981. 216.7325
  7982. ],
  7983. "rotation":[
  7984. 0,
  7985. 0,
  7986. 0,
  7987. -1
  7988. ],
  7989. "scale":[
  7990. 10000,
  7991. 10000,
  7992. 10000
  7993. ],
  7994. "meshPath":"Library/unity default resources-Plane.lm",
  7995. "enableRender":true,
  7996. "materials":[
  7997. {
  7998. "path":"Assets/yiqilang_mat/111111.lmat"
  7999. }
  8000. ]
  8001. },
  8002. "components":[
  8003. {
  8004. "type":"PhysicsCollider",
  8005. "restitution":0,
  8006. "friction":0.5,
  8007. "rollingFriction":0,
  8008. "shapes":[
  8009. {
  8010. "type":"MeshColliderShape",
  8011. "mesh":"Library/unity default resources-Plane.lm"
  8012. }
  8013. ],
  8014. "isTrigger":false
  8015. }
  8016. ],
  8017. "child":[]
  8018. },
  8019. {
  8020. "type":"MeshSprite3D",
  8021. "instanceID":240,
  8022. "props":{
  8023. "name":"mountain",
  8024. "active":true,
  8025. "isStatic":false,
  8026. "layer":0,
  8027. "position":[
  8028. 176.9,
  8029. 5.705276,
  8030. 213.2
  8031. ],
  8032. "rotation":[
  8033. 0.3866848,
  8034. 0.5920092,
  8035. 0.5920092,
  8036. -0.3866848
  8037. ],
  8038. "scale":[
  8039. 13.83092,
  8040. 13.83093,
  8041. 13.83093
  8042. ],
  8043. "meshPath":"Assets/mountain-mountain.lm",
  8044. "enableRender":true,
  8045. "materials":[
  8046. {
  8047. "path":"Assets/New Material 2.lmat"
  8048. }
  8049. ]
  8050. },
  8051. "components":[
  8052. {
  8053. "type":"Animator",
  8054. "layers":[],
  8055. "cullingMode":0,
  8056. "playOnWake":true
  8057. }
  8058. ],
  8059. "child":[]
  8060. },
  8061. {
  8062. "type":"MeshSprite3D",
  8063. "instanceID":241,
  8064. "props":{
  8065. "name":"mountain (1)",
  8066. "active":true,
  8067. "isStatic":false,
  8068. "layer":0,
  8069. "position":[
  8070. -38.63753,
  8071. -13.29472,
  8072. 12.73251
  8073. ],
  8074. "rotation":[
  8075. 0.7006266,
  8076. -0.09551176,
  8077. -0.09551176,
  8078. -0.7006266
  8079. ],
  8080. "scale":[
  8081. 2.848468,
  8082. 2.84847,
  8083. 2.84847
  8084. ],
  8085. "meshPath":"Assets/mountain-mountain.lm",
  8086. "enableRender":true,
  8087. "materials":[
  8088. {
  8089. "path":"Assets/New Material 2.lmat"
  8090. }
  8091. ]
  8092. },
  8093. "components":[
  8094. {
  8095. "type":"Animator",
  8096. "layers":[],
  8097. "cullingMode":0,
  8098. "playOnWake":true
  8099. }
  8100. ],
  8101. "child":[]
  8102. },
  8103. {
  8104. "type":"MeshSprite3D",
  8105. "instanceID":242,
  8106. "props":{
  8107. "name":"mountain (2)",
  8108. "active":true,
  8109. "isStatic":false,
  8110. "layer":0,
  8111. "position":[
  8112. -88,
  8113. -13.29472,
  8114. 63.2
  8115. ],
  8116. "rotation":[
  8117. 0.3599346,
  8118. -0.6086437,
  8119. -0.6086437,
  8120. -0.3599346
  8121. ],
  8122. "scale":[
  8123. 5.050008,
  8124. 5.050008,
  8125. 5.050007
  8126. ],
  8127. "meshPath":"Assets/mountain-mountain.lm",
  8128. "enableRender":true,
  8129. "materials":[
  8130. {
  8131. "path":"Assets/New Material 2.lmat"
  8132. }
  8133. ]
  8134. },
  8135. "components":[
  8136. {
  8137. "type":"Animator",
  8138. "layers":[],
  8139. "cullingMode":0,
  8140. "playOnWake":true
  8141. }
  8142. ],
  8143. "child":[]
  8144. },
  8145. {
  8146. "type":"MeshSprite3D",
  8147. "instanceID":243,
  8148. "props":{
  8149. "name":"mountain (3)",
  8150. "active":true,
  8151. "isStatic":false,
  8152. "layer":0,
  8153. "position":[
  8154. -42.8,
  8155. -24.9,
  8156. -71.1
  8157. ],
  8158. "rotation":[
  8159. 0.6476992,
  8160. -0.2837002,
  8161. -0.2837002,
  8162. -0.6476992
  8163. ],
  8164. "scale":[
  8165. 3.789659,
  8166. 3.789659,
  8167. 3.789658
  8168. ],
  8169. "meshPath":"Assets/mountain-mountain.lm",
  8170. "enableRender":true,
  8171. "materials":[
  8172. {
  8173. "path":"Assets/New Material 2.lmat"
  8174. }
  8175. ]
  8176. },
  8177. "components":[
  8178. {
  8179. "type":"Animator",
  8180. "layers":[],
  8181. "cullingMode":0,
  8182. "playOnWake":true
  8183. }
  8184. ],
  8185. "child":[]
  8186. },
  8187. {
  8188. "type":"MeshSprite3D",
  8189. "instanceID":244,
  8190. "props":{
  8191. "name":"mountain (4)",
  8192. "active":true,
  8193. "isStatic":false,
  8194. "layer":0,
  8195. "position":[
  8196. 51.2,
  8197. 2.6,
  8198. -27.4
  8199. ],
  8200. "rotation":[
  8201. 0.4934919,
  8202. -0.5064245,
  8203. -0.5064245,
  8204. -0.4934919
  8205. ],
  8206. "scale":[
  8207. 2.84847,
  8208. 2.848471,
  8209. 2.848471
  8210. ],
  8211. "meshPath":"Assets/mountain-mountain.lm",
  8212. "enableRender":true,
  8213. "materials":[
  8214. {
  8215. "path":"Assets/New Material 2.lmat"
  8216. }
  8217. ]
  8218. },
  8219. "components":[
  8220. {
  8221. "type":"Animator",
  8222. "layers":[],
  8223. "cullingMode":0,
  8224. "playOnWake":true
  8225. }
  8226. ],
  8227. "child":[]
  8228. }
  8229. ]
  8230. }
  8231. ]
  8232. }
  8233. }