FightingScene.scene 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. },
  10. "asyncLoadAssets": false
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "",
  15. "_objFlags": 0,
  16. "_parent": null,
  17. "_children": [
  18. {
  19. "__id__": 2
  20. },
  21. {
  22. "__id__": 7
  23. },
  24. {
  25. "__id__": 93
  26. },
  27. {
  28. "__id__": 96
  29. },
  30. {
  31. "__id__": 99
  32. },
  33. {
  34. "__id__": 74
  35. }
  36. ],
  37. "_active": true,
  38. "_components": [],
  39. "_prefab": null,
  40. "autoReleaseAssets": false,
  41. "_globals": {
  42. "__id__": 149
  43. },
  44. "_id": "c2b58d4e-131e-4f1f-afd3-c5565cf05d4e"
  45. },
  46. {
  47. "__type__": "cc.Node",
  48. "_name": "FightingScene",
  49. "_objFlags": 0,
  50. "_parent": {
  51. "__id__": 1
  52. },
  53. "_children": [],
  54. "_active": true,
  55. "_components": [
  56. {
  57. "__id__": 3
  58. }
  59. ],
  60. "_prefab": null,
  61. "_lpos": {
  62. "__type__": "cc.Vec3",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0
  66. },
  67. "_lrot": {
  68. "__type__": "cc.Quat",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0,
  72. "w": 1
  73. },
  74. "_lscale": {
  75. "__type__": "cc.Vec3",
  76. "x": 1,
  77. "y": 1,
  78. "z": 1
  79. },
  80. "_layer": 1073741824,
  81. "_euler": {
  82. "__type__": "cc.Vec3",
  83. "x": 0,
  84. "y": 0,
  85. "z": 0
  86. },
  87. "_id": "11pNU6jaxPDYnAAWAblZvT"
  88. },
  89. {
  90. "__type__": "0d872YkVUBI8KRfzuG/g0Cm",
  91. "_name": "",
  92. "_objFlags": 0,
  93. "node": {
  94. "__id__": 2
  95. },
  96. "_enabled": true,
  97. "leftHand": {
  98. "__id__": 4
  99. },
  100. "rightHand": {
  101. "__id__": 41
  102. },
  103. "camrea": {
  104. "__id__": 9
  105. },
  106. "LeftEndPos": {
  107. "__id__": 72
  108. },
  109. "MiddleEndPos": {
  110. "__id__": 85
  111. },
  112. "RightEndPos": {
  113. "__id__": 88
  114. },
  115. "LeftStartPos": {
  116. "__id__": 76
  117. },
  118. "MiddleStartPos": {
  119. "__id__": 79
  120. },
  121. "RightStartPos": {
  122. "__id__": 82
  123. },
  124. "monsterZhouDanPrefab": {
  125. "__uuid__": "9d4ae98b-915a-4bdd-9446-e0d5c361a8b0"
  126. },
  127. "_id": "e8Wxl9npNAqb6LHvO2/9pr"
  128. },
  129. {
  130. "__type__": "cc.AnimationComponent",
  131. "_name": "Hand_L<AnimationComponent>",
  132. "_objFlags": 0,
  133. "node": {
  134. "__id__": 5
  135. },
  136. "_enabled": true,
  137. "playOnLoad": true,
  138. "_clips": [
  139. {
  140. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@7f91a"
  141. },
  142. {
  143. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@a7884"
  144. },
  145. {
  146. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@18ed3"
  147. },
  148. {
  149. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@c2696"
  150. },
  151. {
  152. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@50b81"
  153. },
  154. {
  155. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@67bb3"
  156. },
  157. {
  158. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@8c0dc"
  159. }
  160. ],
  161. "_defaultClip": null,
  162. "_id": "25yTsB/wFBCJYFX9FK31cT"
  163. },
  164. {
  165. "__type__": "cc.Node",
  166. "_name": "Hand_L",
  167. "_objFlags": 0,
  168. "_parent": {
  169. "__id__": 6
  170. },
  171. "_children": [
  172. {
  173. "__id__": 43
  174. }
  175. ],
  176. "_active": true,
  177. "_components": [
  178. {
  179. "__id__": 4
  180. }
  181. ],
  182. "_prefab": {
  183. "__id__": 71
  184. },
  185. "_lpos": {
  186. "__type__": "cc.Vec3",
  187. "x": -0.3,
  188. "y": 0.041,
  189. "z": -3.623
  190. },
  191. "_lrot": {
  192. "__type__": "cc.Quat",
  193. "x": -4.160470465703945e-18,
  194. "y": 0.9976890247673605,
  195. "z": 0.06794563899731133,
  196. "w": 6.109083353628963e-17
  197. },
  198. "_lscale": {
  199. "__type__": "cc.Vec3",
  200. "x": -1.405,
  201. "y": 1.405,
  202. "z": 1.405
  203. },
  204. "_layer": 1073741824,
  205. "_euler": {
  206. "__type__": "cc.Vec3",
  207. "x": -7.792,
  208. "y": 180,
  209. "z": 0
  210. },
  211. "_id": "51zEATXadAiq67b1YUUwNC"
  212. },
  213. {
  214. "__type__": "cc.Node",
  215. "_name": "HandGroup",
  216. "_objFlags": 0,
  217. "_parent": {
  218. "__id__": 7
  219. },
  220. "_children": [
  221. {
  222. "__id__": 5
  223. },
  224. {
  225. "__id__": 12
  226. }
  227. ],
  228. "_active": true,
  229. "_components": [],
  230. "_prefab": null,
  231. "_lpos": {
  232. "__type__": "cc.Vec3",
  233. "x": 0,
  234. "y": 0,
  235. "z": 0
  236. },
  237. "_lrot": {
  238. "__type__": "cc.Quat",
  239. "x": 0,
  240. "y": 0,
  241. "z": 0,
  242. "w": 1
  243. },
  244. "_lscale": {
  245. "__type__": "cc.Vec3",
  246. "x": 1,
  247. "y": 1,
  248. "z": 1
  249. },
  250. "_layer": 1073741824,
  251. "_euler": {
  252. "__type__": "cc.Vec3",
  253. "x": 0,
  254. "y": 0,
  255. "z": 0
  256. },
  257. "_id": "a8ZF9dEIJI+KXLJoRrVi2f"
  258. },
  259. {
  260. "__type__": "cc.Node",
  261. "_name": "CameraGroup",
  262. "_objFlags": 0,
  263. "_parent": {
  264. "__id__": 1
  265. },
  266. "_children": [
  267. {
  268. "__id__": 8
  269. },
  270. {
  271. "__id__": 6
  272. }
  273. ],
  274. "_active": true,
  275. "_components": [],
  276. "_prefab": null,
  277. "_lpos": {
  278. "__type__": "cc.Vec3",
  279. "x": 0,
  280. "y": 0.689,
  281. "z": 3.347
  282. },
  283. "_lrot": {
  284. "__type__": "cc.Quat",
  285. "x": 0,
  286. "y": 0,
  287. "z": 0,
  288. "w": 1
  289. },
  290. "_lscale": {
  291. "__type__": "cc.Vec3",
  292. "x": 1,
  293. "y": 1,
  294. "z": 1
  295. },
  296. "_layer": 1073741824,
  297. "_euler": {
  298. "__type__": "cc.Vec3",
  299. "x": 0,
  300. "y": 0,
  301. "z": 0
  302. },
  303. "_id": "7dHCMjAiJCyqBWXhdh1h7d"
  304. },
  305. {
  306. "__type__": "cc.Node",
  307. "_name": "Camera",
  308. "_objFlags": 0,
  309. "_parent": {
  310. "__id__": 7
  311. },
  312. "_children": [],
  313. "_active": true,
  314. "_components": [
  315. {
  316. "__id__": 9
  317. },
  318. {
  319. "__id__": 10
  320. },
  321. {
  322. "__id__": 11
  323. }
  324. ],
  325. "_prefab": null,
  326. "_lpos": {
  327. "__type__": "cc.Vec3",
  328. "x": 0,
  329. "y": 1.123,
  330. "z": -2.367
  331. },
  332. "_lrot": {
  333. "__type__": "cc.Quat",
  334. "x": -0.14213658273930846,
  335. "y": 0,
  336. "z": 0,
  337. "w": 0.9898470547752273
  338. },
  339. "_lscale": {
  340. "__type__": "cc.Vec3",
  341. "x": 1,
  342. "y": 1,
  343. "z": 1
  344. },
  345. "_layer": 1073741824,
  346. "_euler": {
  347. "__type__": "cc.Vec3",
  348. "x": -16.343,
  349. "y": 0,
  350. "z": 0
  351. },
  352. "_id": "c9DMICJLFO5IeO07EPon7U"
  353. },
  354. {
  355. "__type__": "cc.CameraComponent",
  356. "_name": "Camera<CameraComponent>",
  357. "_objFlags": 0,
  358. "node": {
  359. "__id__": 8
  360. },
  361. "_enabled": true,
  362. "_projection": 1,
  363. "_priority": 0,
  364. "_fov": 40,
  365. "_fovAxis": 0,
  366. "_orthoHeight": 10,
  367. "_near": 1,
  368. "_far": 1000,
  369. "_color": {
  370. "__type__": "cc.Color",
  371. "r": 51,
  372. "g": 51,
  373. "b": 51,
  374. "a": 255
  375. },
  376. "_depth": 1,
  377. "_stencil": 0,
  378. "_clearFlags": 7,
  379. "_rect": {
  380. "__type__": "cc.Rect",
  381. "x": 0,
  382. "y": 0,
  383. "width": 1,
  384. "height": 1
  385. },
  386. "_aperture": 19,
  387. "_shutter": 7,
  388. "_iso": 0,
  389. "_screenScale": 1,
  390. "_visibility": "1073741824",
  391. "_targetTexture": null,
  392. "_id": "7dWQTpwS5LrIHnc1zAPUtf"
  393. },
  394. {
  395. "__type__": "db2b6G7KQxN8anKyUBMCEyP",
  396. "_name": "Camera<CameraFitWidth>",
  397. "_objFlags": 0,
  398. "node": {
  399. "__id__": 8
  400. },
  401. "_enabled": true,
  402. "_id": "49OdD4o5RM8pQwE/GGUy1u"
  403. },
  404. {
  405. "__type__": "63c47Z29IZJWbo7CjqAD9yh",
  406. "_name": "",
  407. "_objFlags": 0,
  408. "node": {
  409. "__id__": 8
  410. },
  411. "_enabled": true,
  412. "_id": "02e4nFrcFFJ4YNuGL/tz18"
  413. },
  414. {
  415. "__type__": "cc.Node",
  416. "_name": "Hand_R",
  417. "_objFlags": 0,
  418. "_parent": {
  419. "__id__": 6
  420. },
  421. "_children": [
  422. {
  423. "__id__": 13
  424. }
  425. ],
  426. "_active": true,
  427. "_components": [
  428. {
  429. "__id__": 41
  430. }
  431. ],
  432. "_prefab": {
  433. "__id__": 42
  434. },
  435. "_lpos": {
  436. "__type__": "cc.Vec3",
  437. "x": 0.3,
  438. "y": 0.041,
  439. "z": -3.623
  440. },
  441. "_lrot": {
  442. "__type__": "cc.Quat",
  443. "x": -4.160470465703945e-18,
  444. "y": 0.9976890247673605,
  445. "z": 0.06794563899731133,
  446. "w": 6.109083353628963e-17
  447. },
  448. "_lscale": {
  449. "__type__": "cc.Vec3",
  450. "x": 1.405,
  451. "y": 1.405,
  452. "z": 1.405
  453. },
  454. "_layer": 1073741824,
  455. "_euler": {
  456. "__type__": "cc.Vec3",
  457. "x": -7.792,
  458. "y": 180,
  459. "z": 0
  460. },
  461. "_id": "3cTPdekjVLnKtwyu1nVCDg"
  462. },
  463. {
  464. "__type__": "cc.Node",
  465. "_name": "RootNode",
  466. "_objFlags": 0,
  467. "_parent": {
  468. "__id__": 12
  469. },
  470. "_children": [
  471. {
  472. "__id__": 14
  473. }
  474. ],
  475. "_active": true,
  476. "_components": [],
  477. "_prefab": {
  478. "__id__": 40
  479. },
  480. "_lpos": {
  481. "__type__": "cc.Vec3",
  482. "x": 0,
  483. "y": 0,
  484. "z": 0
  485. },
  486. "_lrot": {
  487. "__type__": "cc.Quat",
  488. "x": 0,
  489. "y": 0,
  490. "z": 0,
  491. "w": 1
  492. },
  493. "_lscale": {
  494. "__type__": "cc.Vec3",
  495. "x": 1,
  496. "y": 1,
  497. "z": 1
  498. },
  499. "_layer": 1073741824,
  500. "_euler": {
  501. "__type__": "cc.Vec3",
  502. "x": 0,
  503. "y": 0,
  504. "z": 0
  505. },
  506. "_id": "37O5KNXtRNpo3bKMGiGhJb"
  507. },
  508. {
  509. "__type__": "cc.Node",
  510. "_name": "Arm",
  511. "_objFlags": 0,
  512. "_parent": {
  513. "__id__": 13
  514. },
  515. "_children": [
  516. {
  517. "__id__": 15
  518. }
  519. ],
  520. "_active": true,
  521. "_components": [],
  522. "_prefab": {
  523. "__id__": 39
  524. },
  525. "_lpos": {
  526. "__type__": "cc.Vec3",
  527. "x": 0,
  528. "y": 0,
  529. "z": 0
  530. },
  531. "_lrot": {
  532. "__type__": "cc.Quat",
  533. "x": -0.7071068407911907,
  534. "y": 0,
  535. "z": 0,
  536. "w": 0.7071067215818994
  537. },
  538. "_lscale": {
  539. "__type__": "cc.Vec3",
  540. "x": 2.49999737739563,
  541. "y": 2.49999737739563,
  542. "z": 2.49999737739563
  543. },
  544. "_layer": 1073741824,
  545. "_euler": {
  546. "__type__": "cc.Vec3",
  547. "x": -90.0000096593463,
  548. "y": 0,
  549. "z": 0
  550. },
  551. "_id": "e0Gk1qx9hFw4PRe86FmwHl"
  552. },
  553. {
  554. "__type__": "cc.Node",
  555. "_name": "upper_arm_R",
  556. "_objFlags": 0,
  557. "_parent": {
  558. "__id__": 14
  559. },
  560. "_children": [
  561. {
  562. "__id__": 16
  563. },
  564. {
  565. "__id__": 34
  566. }
  567. ],
  568. "_active": true,
  569. "_components": [],
  570. "_prefab": {
  571. "__id__": 38
  572. },
  573. "_lpos": {
  574. "__type__": "cc.Vec3",
  575. "x": -0.00187119445763528,
  576. "y": 0.0199693888425827,
  577. "z": 0.0198789201676846
  578. },
  579. "_lrot": {
  580. "__type__": "cc.Quat",
  581. "x": 0.7128733386984368,
  582. "y": -0.12168298645414762,
  583. "z": 0.6820341935561695,
  584. "w": -0.10878516719079441
  585. },
  586. "_lscale": {
  587. "__type__": "cc.Vec3",
  588. "x": 1,
  589. "y": 1,
  590. "z": 1
  591. },
  592. "_layer": 1073741824,
  593. "_euler": {
  594. "__type__": "cc.Vec3",
  595. "x": 179.34133534803925,
  596. "y": -87.57588334232474,
  597. "z": -18.776628506046173
  598. },
  599. "_id": "69A9MCAhVLRa4xpmIZcm4h"
  600. },
  601. {
  602. "__type__": "cc.Node",
  603. "_name": "lower_arm_R",
  604. "_objFlags": 0,
  605. "_parent": {
  606. "__id__": 15
  607. },
  608. "_children": [
  609. {
  610. "__id__": 17
  611. },
  612. {
  613. "__id__": 29
  614. }
  615. ],
  616. "_active": true,
  617. "_components": [],
  618. "_prefab": {
  619. "__id__": 33
  620. },
  621. "_lpos": {
  622. "__type__": "cc.Vec3",
  623. "x": -4.76837147544984e-9,
  624. "y": 0.122766919434071,
  625. "z": 1.19209286886246e-9
  626. },
  627. "_lrot": {
  628. "__type__": "cc.Quat",
  629. "x": -0.4669232648894713,
  630. "y": -0.873242672966946,
  631. "z": -0.1000199239656695,
  632. "w": 0.09708714448577553
  633. },
  634. "_lscale": {
  635. "__type__": "cc.Vec3",
  636. "x": 1.00000011920929,
  637. "y": 1,
  638. "z": 1.00000023841858
  639. },
  640. "_layer": 1073741824,
  641. "_euler": {
  642. "__type__": "cc.Vec3",
  643. "x": -26.00358163916388,
  644. "y": -154.24718673728168,
  645. "z": 52.754859968015055
  646. },
  647. "_id": "62se0hvodE86Jru0TWCPN7"
  648. },
  649. {
  650. "__type__": "cc.Node",
  651. "_name": "transform1",
  652. "_objFlags": 0,
  653. "_parent": {
  654. "__id__": 16
  655. },
  656. "_children": [
  657. {
  658. "__id__": 18
  659. }
  660. ],
  661. "_active": true,
  662. "_components": [],
  663. "_prefab": {
  664. "__id__": 28
  665. },
  666. "_lpos": {
  667. "__type__": "cc.Vec3",
  668. "x": -0.11739581823349,
  669. "y": 0.0252596475183964,
  670. "z": -0.094342976808548
  671. },
  672. "_lrot": {
  673. "__type__": "cc.Quat",
  674. "x": -0.5686733656216297,
  675. "y": 0.09836318228904112,
  676. "z": 0.7051433838438259,
  677. "w": 0.4119564246662747
  678. },
  679. "_lscale": {
  680. "__type__": "cc.Vec3",
  681. "x": 0.999999821186066,
  682. "y": 0.999999940395355,
  683. "z": 0.999999940395355
  684. },
  685. "_layer": 1073741824,
  686. "_euler": {
  687. "__type__": "cc.Vec3",
  688. "x": -136.55882415880845,
  689. "y": 90.89566604296236,
  690. "z": 27.976128283550537
  691. },
  692. "_id": "00+kUKWeZN6qwkRDwHirXc"
  693. },
  694. {
  695. "__type__": "cc.Node",
  696. "_name": "hand_R",
  697. "_objFlags": 0,
  698. "_parent": {
  699. "__id__": 17
  700. },
  701. "_children": [
  702. {
  703. "__id__": 19
  704. },
  705. {
  706. "__id__": 23
  707. }
  708. ],
  709. "_active": true,
  710. "_components": [],
  711. "_prefab": {
  712. "__id__": 27
  713. },
  714. "_lpos": {
  715. "__type__": "cc.Vec3",
  716. "x": -0.0479476489126682,
  717. "y": -0.163001760840416,
  718. "z": -0.00526508083567023
  719. },
  720. "_lrot": {
  721. "__type__": "cc.Quat",
  722. "x": -0.17887440785674327,
  723. "y": -0.08786853629725089,
  724. "z": -0.9795610561564843,
  725. "w": 0.027261764514996373
  726. },
  727. "_lscale": {
  728. "__type__": "cc.Vec3",
  729. "x": 0.99999988079071,
  730. "y": 0.999999940395355,
  731. "z": 0.999999940395355
  732. },
  733. "_layer": 1073741824,
  734. "_euler": {
  735. "__type__": "cc.Vec3",
  736. "x": -169.51710436825414,
  737. "y": -159.18734036749785,
  738. "z": -1.259133752988458
  739. },
  740. "_id": "4euo4WmuRIYJbAVcq7SWil"
  741. },
  742. {
  743. "__type__": "cc.Node",
  744. "_name": "transform2",
  745. "_objFlags": 0,
  746. "_parent": {
  747. "__id__": 18
  748. },
  749. "_children": [
  750. {
  751. "__id__": 20
  752. }
  753. ],
  754. "_active": true,
  755. "_components": [],
  756. "_prefab": {
  757. "__id__": 22
  758. },
  759. "_lpos": {
  760. "__type__": "cc.Vec3",
  761. "x": -0.0573748089373112,
  762. "y": -0.168648242950439,
  763. "z": -0.0279340911656618
  764. },
  765. "_lrot": {
  766. "__type__": "cc.Quat",
  767. "x": 0.1659847378211989,
  768. "y": 0.7220834621029274,
  769. "z": 0.6543067809145152,
  770. "w": 0.15141722827063853
  771. },
  772. "_lscale": {
  773. "__type__": "cc.Vec3",
  774. "x": 0.4000004529953,
  775. "y": 0.4000004529953,
  776. "z": 0.4000004529953
  777. },
  778. "_layer": 1073741824,
  779. "_euler": {
  780. "__type__": "cc.Vec3",
  781. "x": -84.34031666114561,
  782. "y": 179.90683531759714,
  783. "z": 25.967184866346347
  784. },
  785. "_id": "c1IMOA7bFIRqsA+B09C37I"
  786. },
  787. {
  788. "__type__": "cc.Node",
  789. "_name": "Guns",
  790. "_objFlags": 0,
  791. "_parent": {
  792. "__id__": 19
  793. },
  794. "_children": [],
  795. "_active": true,
  796. "_components": [],
  797. "_prefab": {
  798. "__id__": 21
  799. },
  800. "_lpos": {
  801. "__type__": "cc.Vec3",
  802. "x": 0.0926190093159676,
  803. "y": 0.115806952118874,
  804. "z": 0.477917075157166
  805. },
  806. "_lrot": {
  807. "__type__": "cc.Quat",
  808. "x": 2.140457567875746e-17,
  809. "y": 0.2698576470782355,
  810. "z": 7.641506964337899e-19,
  811. "w": 0.9629002286391869
  812. },
  813. "_lscale": {
  814. "__type__": "cc.Vec3",
  815. "x": 1,
  816. "y": 1,
  817. "z": 1
  818. },
  819. "_layer": 1073741824,
  820. "_euler": {
  821. "__type__": "cc.Vec3",
  822. "x": 2.33815583881749e-15,
  823. "y": 31.311592403165022,
  824. "z": 7.462190073589119e-16
  825. },
  826. "_id": "aaDyzSdU1LHJIx6cJDK/q0"
  827. },
  828. {
  829. "__type__": "cc.PrefabInfo",
  830. "root": {
  831. "__id__": 12
  832. },
  833. "asset": {
  834. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  835. },
  836. "fileId": "68MfT8AxVHm7qg9uJaGhQ1",
  837. "sync": false,
  838. "_synced": {
  839. "default": false,
  840. "serializable": false
  841. }
  842. },
  843. {
  844. "__type__": "cc.PrefabInfo",
  845. "root": {
  846. "__id__": 12
  847. },
  848. "asset": {
  849. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  850. },
  851. "fileId": "f8shPjlUtH65IDPHTkEB2U",
  852. "sync": false,
  853. "_synced": {
  854. "default": false,
  855. "serializable": false
  856. }
  857. },
  858. {
  859. "__type__": "cc.Node",
  860. "_name": "polySurface1",
  861. "_objFlags": 0,
  862. "_parent": {
  863. "__id__": 18
  864. },
  865. "_children": [],
  866. "_active": true,
  867. "_components": [
  868. {
  869. "__id__": 24
  870. }
  871. ],
  872. "_prefab": {
  873. "__id__": 26
  874. },
  875. "_lpos": {
  876. "__type__": "cc.Vec3",
  877. "x": -0.123767487704754,
  878. "y": -0.172050505876541,
  879. "z": -0.00599880423396826
  880. },
  881. "_lrot": {
  882. "__type__": "cc.Quat",
  883. "x": 0.010300790094140965,
  884. "y": 0.04792535740088619,
  885. "z": 0.9732548721471967,
  886. "w": 0.22443709070289092
  887. },
  888. "_lscale": {
  889. "__type__": "cc.Vec3",
  890. "x": 1.00000011920929,
  891. "y": 1.00000011920929,
  892. "z": 1.00000011920929
  893. },
  894. "_layer": 1073741824,
  895. "_euler": {
  896. "__type__": "cc.Vec3",
  897. "x": -174.34031597717004,
  898. "y": 179.90683573579,
  899. "z": 25.967185849944748
  900. },
  901. "_id": "8a5oWwaqxLdYrJXc8zrDfL"
  902. },
  903. {
  904. "__type__": "cc.ModelComponent",
  905. "_name": "polySurface1<ModelComponent>",
  906. "_objFlags": 0,
  907. "node": {
  908. "__id__": 23
  909. },
  910. "_enabled": true,
  911. "_materials": [
  912. {
  913. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  914. }
  915. ],
  916. "_visFlags": 0,
  917. "lightmapSettings": {
  918. "__id__": 25
  919. },
  920. "_mesh": {
  921. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@01a55"
  922. },
  923. "_shadowCastingMode": 0,
  924. "_enableMorph": true,
  925. "_id": "dfK4Plnu5GRJjFB+9tq+P/"
  926. },
  927. {
  928. "__type__": "cc.ModelLightmapSettings",
  929. "texture": null,
  930. "uvParam": {
  931. "__type__": "cc.Vec4",
  932. "x": 0,
  933. "y": 0,
  934. "z": 0,
  935. "w": 0
  936. },
  937. "_bakeable": false,
  938. "_castShadow": false,
  939. "_receiveShadow": false,
  940. "_recieveShadow": false,
  941. "_lightmapSize": 64
  942. },
  943. {
  944. "__type__": "cc.PrefabInfo",
  945. "root": {
  946. "__id__": 12
  947. },
  948. "asset": {
  949. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  950. },
  951. "fileId": "9846sjBxhKnLLqn64gyBsd",
  952. "sync": false,
  953. "_synced": {
  954. "default": false,
  955. "serializable": false
  956. }
  957. },
  958. {
  959. "__type__": "cc.PrefabInfo",
  960. "root": {
  961. "__id__": 12
  962. },
  963. "asset": {
  964. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  965. },
  966. "fileId": "94Nd+oMM5Iw5aHlhbAL0oK",
  967. "sync": false,
  968. "_synced": {
  969. "default": false,
  970. "serializable": false
  971. }
  972. },
  973. {
  974. "__type__": "cc.PrefabInfo",
  975. "root": {
  976. "__id__": 12
  977. },
  978. "asset": {
  979. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  980. },
  981. "fileId": "e9E6o9zeZJoZ/7iJg0dROb",
  982. "sync": false,
  983. "_synced": {
  984. "default": false,
  985. "serializable": false
  986. }
  987. },
  988. {
  989. "__type__": "cc.Node",
  990. "_name": "polySurface2",
  991. "_objFlags": 0,
  992. "_parent": {
  993. "__id__": 16
  994. },
  995. "_children": [],
  996. "_active": true,
  997. "_components": [
  998. {
  999. "__id__": 30
  1000. }
  1001. ],
  1002. "_prefab": {
  1003. "__id__": 32
  1004. },
  1005. "_lpos": {
  1006. "__type__": "cc.Vec3",
  1007. "x": -0.0919497013092041,
  1008. "y": -0.0560492798686028,
  1009. "z": -0.104193523526192
  1010. },
  1011. "_lrot": {
  1012. "__type__": "cc.Quat",
  1013. "x": -0.701581657074488,
  1014. "y": 0.11412622036854045,
  1015. "z": 0.6141477824497483,
  1016. "w": 0.34290069348583063
  1017. },
  1018. "_lscale": {
  1019. "__type__": "cc.Vec3",
  1020. "x": 0.999999821186066,
  1021. "y": 0.999999940395355,
  1022. "z": 0.999999940395355
  1023. },
  1024. "_layer": 1073741824,
  1025. "_euler": {
  1026. "__type__": "cc.Vec3",
  1027. "x": -139.93593026119527,
  1028. "y": 76.8510659142986,
  1029. "z": 15.132117863577827
  1030. },
  1031. "_id": "09veLaWIhM3JCyB1PYr8nS"
  1032. },
  1033. {
  1034. "__type__": "cc.ModelComponent",
  1035. "_name": "polySurface2<ModelComponent>",
  1036. "_objFlags": 0,
  1037. "node": {
  1038. "__id__": 29
  1039. },
  1040. "_enabled": true,
  1041. "_materials": [
  1042. {
  1043. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1044. }
  1045. ],
  1046. "_visFlags": 0,
  1047. "lightmapSettings": {
  1048. "__id__": 31
  1049. },
  1050. "_mesh": {
  1051. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@db573"
  1052. },
  1053. "_shadowCastingMode": 0,
  1054. "_enableMorph": true,
  1055. "_id": "c8URmU0ftDw7hBHejYBCvC"
  1056. },
  1057. {
  1058. "__type__": "cc.ModelLightmapSettings",
  1059. "texture": null,
  1060. "uvParam": {
  1061. "__type__": "cc.Vec4",
  1062. "x": 0,
  1063. "y": 0,
  1064. "z": 0,
  1065. "w": 0
  1066. },
  1067. "_bakeable": false,
  1068. "_castShadow": false,
  1069. "_receiveShadow": false,
  1070. "_recieveShadow": false,
  1071. "_lightmapSize": 64
  1072. },
  1073. {
  1074. "__type__": "cc.PrefabInfo",
  1075. "root": {
  1076. "__id__": 12
  1077. },
  1078. "asset": {
  1079. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1080. },
  1081. "fileId": "49ENXM+LdNNYs0PoG3dRS6",
  1082. "sync": false,
  1083. "_synced": {
  1084. "default": false,
  1085. "serializable": false
  1086. }
  1087. },
  1088. {
  1089. "__type__": "cc.PrefabInfo",
  1090. "root": {
  1091. "__id__": 12
  1092. },
  1093. "asset": {
  1094. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1095. },
  1096. "fileId": "845KcJ/fxHwYXioKKykMSa",
  1097. "sync": false,
  1098. "_synced": {
  1099. "default": false,
  1100. "serializable": false
  1101. }
  1102. },
  1103. {
  1104. "__type__": "cc.Node",
  1105. "_name": "polySurface3",
  1106. "_objFlags": 0,
  1107. "_parent": {
  1108. "__id__": 15
  1109. },
  1110. "_children": [],
  1111. "_active": true,
  1112. "_components": [
  1113. {
  1114. "__id__": 35
  1115. }
  1116. ],
  1117. "_prefab": {
  1118. "__id__": 37
  1119. },
  1120. "_lpos": {
  1121. "__type__": "cc.Vec3",
  1122. "x": -0.00320419040508568,
  1123. "y": -0.0145574426278472,
  1124. "z": 0.0598691701889038
  1125. },
  1126. "_lrot": {
  1127. "__type__": "cc.Quat",
  1128. "x": 0.7128733460429769,
  1129. "y": -0.12168294300433088,
  1130. "z": 0.6820342005829815,
  1131. "w": 0.10878512360809416
  1132. },
  1133. "_lscale": {
  1134. "__type__": "cc.Vec3",
  1135. "x": 1,
  1136. "y": 1,
  1137. "z": 1
  1138. },
  1139. "_layer": 1073741824,
  1140. "_euler": {
  1141. "__type__": "cc.Vec3",
  1142. "x": 161.26539208109207,
  1143. "y": -87.70424055853603,
  1144. "z": -1.4382008261836212
  1145. },
  1146. "_id": "72DcSBsDdHJoQK26MR9CgT"
  1147. },
  1148. {
  1149. "__type__": "cc.ModelComponent",
  1150. "_name": "polySurface3<ModelComponent>",
  1151. "_objFlags": 0,
  1152. "node": {
  1153. "__id__": 34
  1154. },
  1155. "_enabled": true,
  1156. "_materials": [
  1157. {
  1158. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1159. }
  1160. ],
  1161. "_visFlags": 0,
  1162. "lightmapSettings": {
  1163. "__id__": 36
  1164. },
  1165. "_mesh": {
  1166. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@8c3a2"
  1167. },
  1168. "_shadowCastingMode": 0,
  1169. "_enableMorph": true,
  1170. "_id": "b7hLIwvFpFSaIVGK43v9Mr"
  1171. },
  1172. {
  1173. "__type__": "cc.ModelLightmapSettings",
  1174. "texture": null,
  1175. "uvParam": {
  1176. "__type__": "cc.Vec4",
  1177. "x": 0,
  1178. "y": 0,
  1179. "z": 0,
  1180. "w": 0
  1181. },
  1182. "_bakeable": false,
  1183. "_castShadow": false,
  1184. "_receiveShadow": false,
  1185. "_recieveShadow": false,
  1186. "_lightmapSize": 64
  1187. },
  1188. {
  1189. "__type__": "cc.PrefabInfo",
  1190. "root": {
  1191. "__id__": 12
  1192. },
  1193. "asset": {
  1194. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1195. },
  1196. "fileId": "b5qCX/gV5EyqfRXoVprQdh",
  1197. "sync": false,
  1198. "_synced": {
  1199. "default": false,
  1200. "serializable": false
  1201. }
  1202. },
  1203. {
  1204. "__type__": "cc.PrefabInfo",
  1205. "root": {
  1206. "__id__": 12
  1207. },
  1208. "asset": {
  1209. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1210. },
  1211. "fileId": "a7GizojQBFlbBbgG4ZQ5nd",
  1212. "sync": false,
  1213. "_synced": {
  1214. "default": false,
  1215. "serializable": false
  1216. }
  1217. },
  1218. {
  1219. "__type__": "cc.PrefabInfo",
  1220. "root": {
  1221. "__id__": 12
  1222. },
  1223. "asset": {
  1224. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1225. },
  1226. "fileId": "13lRCYC/NCvo16Fb5Ssqeh",
  1227. "sync": false,
  1228. "_synced": {
  1229. "default": false,
  1230. "serializable": false
  1231. }
  1232. },
  1233. {
  1234. "__type__": "cc.PrefabInfo",
  1235. "root": {
  1236. "__id__": 12
  1237. },
  1238. "asset": {
  1239. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1240. },
  1241. "fileId": "a4aKfK2I9CNZuy9+WiT2Yg",
  1242. "sync": false,
  1243. "_synced": {
  1244. "default": false,
  1245. "serializable": false
  1246. }
  1247. },
  1248. {
  1249. "__type__": "cc.AnimationComponent",
  1250. "_name": "Hand_R<AnimationComponent>",
  1251. "_objFlags": 0,
  1252. "node": {
  1253. "__id__": 12
  1254. },
  1255. "_enabled": true,
  1256. "playOnLoad": true,
  1257. "_clips": [
  1258. {
  1259. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@7f91a"
  1260. },
  1261. {
  1262. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@a7884"
  1263. },
  1264. {
  1265. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@18ed3"
  1266. },
  1267. {
  1268. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@c2696"
  1269. },
  1270. {
  1271. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@50b81"
  1272. },
  1273. {
  1274. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@67bb3"
  1275. },
  1276. {
  1277. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@8c0dc"
  1278. }
  1279. ],
  1280. "_defaultClip": null,
  1281. "_id": "2cG+L9EnlJTZBGH8sNec0Y"
  1282. },
  1283. {
  1284. "__type__": "cc.PrefabInfo",
  1285. "root": {
  1286. "__id__": 12
  1287. },
  1288. "asset": {
  1289. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1290. },
  1291. "fileId": "9bHb4l/XtAn5Tv/diNe0aB",
  1292. "sync": false,
  1293. "_synced": {
  1294. "default": false,
  1295. "serializable": false
  1296. }
  1297. },
  1298. {
  1299. "__type__": "cc.Node",
  1300. "_name": "RootNode",
  1301. "_objFlags": 0,
  1302. "_parent": {
  1303. "__id__": 5
  1304. },
  1305. "_children": [
  1306. {
  1307. "__id__": 44
  1308. }
  1309. ],
  1310. "_active": true,
  1311. "_components": [],
  1312. "_prefab": {
  1313. "__id__": 70
  1314. },
  1315. "_lpos": {
  1316. "__type__": "cc.Vec3",
  1317. "x": 0,
  1318. "y": 0,
  1319. "z": 0
  1320. },
  1321. "_lrot": {
  1322. "__type__": "cc.Quat",
  1323. "x": 0,
  1324. "y": 0,
  1325. "z": 0,
  1326. "w": 1
  1327. },
  1328. "_lscale": {
  1329. "__type__": "cc.Vec3",
  1330. "x": 1,
  1331. "y": 1,
  1332. "z": 1
  1333. },
  1334. "_layer": 1073741824,
  1335. "_euler": {
  1336. "__type__": "cc.Vec3",
  1337. "x": 0,
  1338. "y": 0,
  1339. "z": 0
  1340. },
  1341. "_id": "7aDsstoypNT50MRsCClDzC"
  1342. },
  1343. {
  1344. "__type__": "cc.Node",
  1345. "_name": "Arm",
  1346. "_objFlags": 0,
  1347. "_parent": {
  1348. "__id__": 43
  1349. },
  1350. "_children": [
  1351. {
  1352. "__id__": 45
  1353. }
  1354. ],
  1355. "_active": true,
  1356. "_components": [],
  1357. "_prefab": {
  1358. "__id__": 69
  1359. },
  1360. "_lpos": {
  1361. "__type__": "cc.Vec3",
  1362. "x": 0,
  1363. "y": 0,
  1364. "z": 0
  1365. },
  1366. "_lrot": {
  1367. "__type__": "cc.Quat",
  1368. "x": -0.7071068407911907,
  1369. "y": 0,
  1370. "z": 0,
  1371. "w": 0.7071067215818994
  1372. },
  1373. "_lscale": {
  1374. "__type__": "cc.Vec3",
  1375. "x": 2.49999737739563,
  1376. "y": 2.49999737739563,
  1377. "z": 2.49999737739563
  1378. },
  1379. "_layer": 1073741824,
  1380. "_euler": {
  1381. "__type__": "cc.Vec3",
  1382. "x": -90.0000096593463,
  1383. "y": 0,
  1384. "z": 0
  1385. },
  1386. "_id": "75lWJqRVRF2q+qnAuiUrXY"
  1387. },
  1388. {
  1389. "__type__": "cc.Node",
  1390. "_name": "upper_arm_R",
  1391. "_objFlags": 0,
  1392. "_parent": {
  1393. "__id__": 44
  1394. },
  1395. "_children": [
  1396. {
  1397. "__id__": 46
  1398. },
  1399. {
  1400. "__id__": 64
  1401. }
  1402. ],
  1403. "_active": true,
  1404. "_components": [],
  1405. "_prefab": {
  1406. "__id__": 68
  1407. },
  1408. "_lpos": {
  1409. "__type__": "cc.Vec3",
  1410. "x": -0.00187119445763528,
  1411. "y": 0.0199693888425827,
  1412. "z": 0.0198789201676846
  1413. },
  1414. "_lrot": {
  1415. "__type__": "cc.Quat",
  1416. "x": 0.7128733386984368,
  1417. "y": -0.12168298645414762,
  1418. "z": 0.6820341935561695,
  1419. "w": -0.10878516719079441
  1420. },
  1421. "_lscale": {
  1422. "__type__": "cc.Vec3",
  1423. "x": 1,
  1424. "y": 1,
  1425. "z": 1
  1426. },
  1427. "_layer": 1073741824,
  1428. "_euler": {
  1429. "__type__": "cc.Vec3",
  1430. "x": 179.34133534803925,
  1431. "y": -87.57588334232474,
  1432. "z": -18.776628506046173
  1433. },
  1434. "_id": "85j8ZU1Z5C7qIzDDlJxTIm"
  1435. },
  1436. {
  1437. "__type__": "cc.Node",
  1438. "_name": "lower_arm_R",
  1439. "_objFlags": 0,
  1440. "_parent": {
  1441. "__id__": 45
  1442. },
  1443. "_children": [
  1444. {
  1445. "__id__": 47
  1446. },
  1447. {
  1448. "__id__": 59
  1449. }
  1450. ],
  1451. "_active": true,
  1452. "_components": [],
  1453. "_prefab": {
  1454. "__id__": 63
  1455. },
  1456. "_lpos": {
  1457. "__type__": "cc.Vec3",
  1458. "x": -4.76837147544984e-9,
  1459. "y": 0.122766919434071,
  1460. "z": 1.19209286886246e-9
  1461. },
  1462. "_lrot": {
  1463. "__type__": "cc.Quat",
  1464. "x": -0.4669232648894713,
  1465. "y": -0.873242672966946,
  1466. "z": -0.1000199239656695,
  1467. "w": 0.09708714448577553
  1468. },
  1469. "_lscale": {
  1470. "__type__": "cc.Vec3",
  1471. "x": 1.00000011920929,
  1472. "y": 1,
  1473. "z": 1.00000023841858
  1474. },
  1475. "_layer": 1073741824,
  1476. "_euler": {
  1477. "__type__": "cc.Vec3",
  1478. "x": -26.00358163916388,
  1479. "y": -154.24718673728168,
  1480. "z": 52.754859968015055
  1481. },
  1482. "_id": "99El8XlKBAxY1iTAbPxrAO"
  1483. },
  1484. {
  1485. "__type__": "cc.Node",
  1486. "_name": "transform1",
  1487. "_objFlags": 0,
  1488. "_parent": {
  1489. "__id__": 46
  1490. },
  1491. "_children": [
  1492. {
  1493. "__id__": 48
  1494. }
  1495. ],
  1496. "_active": true,
  1497. "_components": [],
  1498. "_prefab": {
  1499. "__id__": 58
  1500. },
  1501. "_lpos": {
  1502. "__type__": "cc.Vec3",
  1503. "x": -0.11739581823349,
  1504. "y": 0.0252596475183964,
  1505. "z": -0.094342976808548
  1506. },
  1507. "_lrot": {
  1508. "__type__": "cc.Quat",
  1509. "x": -0.5686733656216297,
  1510. "y": 0.09836318228904112,
  1511. "z": 0.7051433838438259,
  1512. "w": 0.4119564246662747
  1513. },
  1514. "_lscale": {
  1515. "__type__": "cc.Vec3",
  1516. "x": 0.999999821186066,
  1517. "y": 0.999999940395355,
  1518. "z": 0.999999940395355
  1519. },
  1520. "_layer": 1073741824,
  1521. "_euler": {
  1522. "__type__": "cc.Vec3",
  1523. "x": -136.55882415880845,
  1524. "y": 90.89566604296236,
  1525. "z": 27.976128283550537
  1526. },
  1527. "_id": "10RwjNwKJOxYr7onB/o+c0"
  1528. },
  1529. {
  1530. "__type__": "cc.Node",
  1531. "_name": "hand_R",
  1532. "_objFlags": 0,
  1533. "_parent": {
  1534. "__id__": 47
  1535. },
  1536. "_children": [
  1537. {
  1538. "__id__": 49
  1539. },
  1540. {
  1541. "__id__": 53
  1542. }
  1543. ],
  1544. "_active": true,
  1545. "_components": [],
  1546. "_prefab": {
  1547. "__id__": 57
  1548. },
  1549. "_lpos": {
  1550. "__type__": "cc.Vec3",
  1551. "x": -0.0479476489126682,
  1552. "y": -0.163001760840416,
  1553. "z": -0.00526508083567023
  1554. },
  1555. "_lrot": {
  1556. "__type__": "cc.Quat",
  1557. "x": -0.17887440785674327,
  1558. "y": -0.08786853629725089,
  1559. "z": -0.9795610561564843,
  1560. "w": 0.027261764514996373
  1561. },
  1562. "_lscale": {
  1563. "__type__": "cc.Vec3",
  1564. "x": 0.99999988079071,
  1565. "y": 0.999999940395355,
  1566. "z": 0.999999940395355
  1567. },
  1568. "_layer": 1073741824,
  1569. "_euler": {
  1570. "__type__": "cc.Vec3",
  1571. "x": -169.51710436825414,
  1572. "y": -159.18734036749785,
  1573. "z": -1.259133752988458
  1574. },
  1575. "_id": "c0gEpNS8FAL5gaaeeom8kW"
  1576. },
  1577. {
  1578. "__type__": "cc.Node",
  1579. "_name": "transform2",
  1580. "_objFlags": 0,
  1581. "_parent": {
  1582. "__id__": 48
  1583. },
  1584. "_children": [
  1585. {
  1586. "__id__": 50
  1587. }
  1588. ],
  1589. "_active": true,
  1590. "_components": [],
  1591. "_prefab": {
  1592. "__id__": 52
  1593. },
  1594. "_lpos": {
  1595. "__type__": "cc.Vec3",
  1596. "x": -0.0573748089373112,
  1597. "y": -0.168648242950439,
  1598. "z": -0.0279340911656618
  1599. },
  1600. "_lrot": {
  1601. "__type__": "cc.Quat",
  1602. "x": 0.1659847378211989,
  1603. "y": 0.7220834621029274,
  1604. "z": 0.6543067809145152,
  1605. "w": 0.15141722827063853
  1606. },
  1607. "_lscale": {
  1608. "__type__": "cc.Vec3",
  1609. "x": 0.4000004529953,
  1610. "y": 0.4000004529953,
  1611. "z": 0.4000004529953
  1612. },
  1613. "_layer": 1073741824,
  1614. "_euler": {
  1615. "__type__": "cc.Vec3",
  1616. "x": -84.34031666114561,
  1617. "y": 179.90683531759714,
  1618. "z": 25.967184866346347
  1619. },
  1620. "_id": "56kwFA0LRFSY/H/qhZpwmG"
  1621. },
  1622. {
  1623. "__type__": "cc.Node",
  1624. "_name": "Guns",
  1625. "_objFlags": 0,
  1626. "_parent": {
  1627. "__id__": 49
  1628. },
  1629. "_children": [],
  1630. "_active": true,
  1631. "_components": [],
  1632. "_prefab": {
  1633. "__id__": 51
  1634. },
  1635. "_lpos": {
  1636. "__type__": "cc.Vec3",
  1637. "x": 0.0926190093159676,
  1638. "y": 0.115806952118874,
  1639. "z": 0.477917075157166
  1640. },
  1641. "_lrot": {
  1642. "__type__": "cc.Quat",
  1643. "x": 2.140457567875746e-17,
  1644. "y": 0.2698576470782355,
  1645. "z": 7.641506964337899e-19,
  1646. "w": 0.9629002286391869
  1647. },
  1648. "_lscale": {
  1649. "__type__": "cc.Vec3",
  1650. "x": 1,
  1651. "y": 1,
  1652. "z": 1
  1653. },
  1654. "_layer": 1073741824,
  1655. "_euler": {
  1656. "__type__": "cc.Vec3",
  1657. "x": 2.33815583881749e-15,
  1658. "y": 31.311592403165022,
  1659. "z": 7.462190073589119e-16
  1660. },
  1661. "_id": "fdgWVEgBdNIYjcX9lpMEho"
  1662. },
  1663. {
  1664. "__type__": "cc.PrefabInfo",
  1665. "root": {
  1666. "__id__": 5
  1667. },
  1668. "asset": {
  1669. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1670. },
  1671. "fileId": "68MfT8AxVHm7qg9uJaGhQ1",
  1672. "sync": false,
  1673. "_synced": {
  1674. "default": false,
  1675. "serializable": false
  1676. }
  1677. },
  1678. {
  1679. "__type__": "cc.PrefabInfo",
  1680. "root": {
  1681. "__id__": 5
  1682. },
  1683. "asset": {
  1684. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1685. },
  1686. "fileId": "f8shPjlUtH65IDPHTkEB2U",
  1687. "sync": false,
  1688. "_synced": {
  1689. "default": false,
  1690. "serializable": false
  1691. }
  1692. },
  1693. {
  1694. "__type__": "cc.Node",
  1695. "_name": "polySurface1",
  1696. "_objFlags": 0,
  1697. "_parent": {
  1698. "__id__": 48
  1699. },
  1700. "_children": [],
  1701. "_active": true,
  1702. "_components": [
  1703. {
  1704. "__id__": 54
  1705. }
  1706. ],
  1707. "_prefab": {
  1708. "__id__": 56
  1709. },
  1710. "_lpos": {
  1711. "__type__": "cc.Vec3",
  1712. "x": -0.123767487704754,
  1713. "y": -0.172050505876541,
  1714. "z": -0.00599880423396826
  1715. },
  1716. "_lrot": {
  1717. "__type__": "cc.Quat",
  1718. "x": 0.010300790094140965,
  1719. "y": 0.04792535740088619,
  1720. "z": 0.9732548721471967,
  1721. "w": 0.22443709070289092
  1722. },
  1723. "_lscale": {
  1724. "__type__": "cc.Vec3",
  1725. "x": 1.00000011920929,
  1726. "y": 1.00000011920929,
  1727. "z": 1.00000011920929
  1728. },
  1729. "_layer": 1073741824,
  1730. "_euler": {
  1731. "__type__": "cc.Vec3",
  1732. "x": -174.34031597717004,
  1733. "y": 179.90683573579,
  1734. "z": 25.967185849944748
  1735. },
  1736. "_id": "f8vRqbvStDoYFCbFzwUF7J"
  1737. },
  1738. {
  1739. "__type__": "cc.ModelComponent",
  1740. "_name": "polySurface1<ModelComponent>",
  1741. "_objFlags": 0,
  1742. "node": {
  1743. "__id__": 53
  1744. },
  1745. "_enabled": true,
  1746. "_materials": [
  1747. {
  1748. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1749. }
  1750. ],
  1751. "_visFlags": 0,
  1752. "lightmapSettings": {
  1753. "__id__": 55
  1754. },
  1755. "_mesh": {
  1756. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@01a55"
  1757. },
  1758. "_shadowCastingMode": 0,
  1759. "_enableMorph": true,
  1760. "_id": "89MUNkPoxHoLs0k9nBKMRv"
  1761. },
  1762. {
  1763. "__type__": "cc.ModelLightmapSettings",
  1764. "texture": null,
  1765. "uvParam": {
  1766. "__type__": "cc.Vec4",
  1767. "x": 0,
  1768. "y": 0,
  1769. "z": 0,
  1770. "w": 0
  1771. },
  1772. "_bakeable": false,
  1773. "_castShadow": false,
  1774. "_receiveShadow": false,
  1775. "_recieveShadow": false,
  1776. "_lightmapSize": 64
  1777. },
  1778. {
  1779. "__type__": "cc.PrefabInfo",
  1780. "root": {
  1781. "__id__": 5
  1782. },
  1783. "asset": {
  1784. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1785. },
  1786. "fileId": "9846sjBxhKnLLqn64gyBsd",
  1787. "sync": false,
  1788. "_synced": {
  1789. "default": false,
  1790. "serializable": false
  1791. }
  1792. },
  1793. {
  1794. "__type__": "cc.PrefabInfo",
  1795. "root": {
  1796. "__id__": 5
  1797. },
  1798. "asset": {
  1799. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1800. },
  1801. "fileId": "94Nd+oMM5Iw5aHlhbAL0oK",
  1802. "sync": false,
  1803. "_synced": {
  1804. "default": false,
  1805. "serializable": false
  1806. }
  1807. },
  1808. {
  1809. "__type__": "cc.PrefabInfo",
  1810. "root": {
  1811. "__id__": 5
  1812. },
  1813. "asset": {
  1814. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1815. },
  1816. "fileId": "e9E6o9zeZJoZ/7iJg0dROb",
  1817. "sync": false,
  1818. "_synced": {
  1819. "default": false,
  1820. "serializable": false
  1821. }
  1822. },
  1823. {
  1824. "__type__": "cc.Node",
  1825. "_name": "polySurface2",
  1826. "_objFlags": 0,
  1827. "_parent": {
  1828. "__id__": 46
  1829. },
  1830. "_children": [],
  1831. "_active": true,
  1832. "_components": [
  1833. {
  1834. "__id__": 60
  1835. }
  1836. ],
  1837. "_prefab": {
  1838. "__id__": 62
  1839. },
  1840. "_lpos": {
  1841. "__type__": "cc.Vec3",
  1842. "x": -0.0919497013092041,
  1843. "y": -0.0560492798686028,
  1844. "z": -0.104193523526192
  1845. },
  1846. "_lrot": {
  1847. "__type__": "cc.Quat",
  1848. "x": -0.701581657074488,
  1849. "y": 0.11412622036854045,
  1850. "z": 0.6141477824497483,
  1851. "w": 0.34290069348583063
  1852. },
  1853. "_lscale": {
  1854. "__type__": "cc.Vec3",
  1855. "x": 0.999999821186066,
  1856. "y": 0.999999940395355,
  1857. "z": 0.999999940395355
  1858. },
  1859. "_layer": 1073741824,
  1860. "_euler": {
  1861. "__type__": "cc.Vec3",
  1862. "x": -139.93593026119527,
  1863. "y": 76.8510659142986,
  1864. "z": 15.132117863577827
  1865. },
  1866. "_id": "91CoN1OB1Nqq550qP2zc/3"
  1867. },
  1868. {
  1869. "__type__": "cc.ModelComponent",
  1870. "_name": "polySurface2<ModelComponent>",
  1871. "_objFlags": 0,
  1872. "node": {
  1873. "__id__": 59
  1874. },
  1875. "_enabled": true,
  1876. "_materials": [
  1877. {
  1878. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1879. }
  1880. ],
  1881. "_visFlags": 0,
  1882. "lightmapSettings": {
  1883. "__id__": 61
  1884. },
  1885. "_mesh": {
  1886. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@db573"
  1887. },
  1888. "_shadowCastingMode": 0,
  1889. "_enableMorph": true,
  1890. "_id": "f0RCQHOaFFfYNJ33eEViSk"
  1891. },
  1892. {
  1893. "__type__": "cc.ModelLightmapSettings",
  1894. "texture": null,
  1895. "uvParam": {
  1896. "__type__": "cc.Vec4",
  1897. "x": 0,
  1898. "y": 0,
  1899. "z": 0,
  1900. "w": 0
  1901. },
  1902. "_bakeable": false,
  1903. "_castShadow": false,
  1904. "_receiveShadow": false,
  1905. "_recieveShadow": false,
  1906. "_lightmapSize": 64
  1907. },
  1908. {
  1909. "__type__": "cc.PrefabInfo",
  1910. "root": {
  1911. "__id__": 5
  1912. },
  1913. "asset": {
  1914. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1915. },
  1916. "fileId": "49ENXM+LdNNYs0PoG3dRS6",
  1917. "sync": false,
  1918. "_synced": {
  1919. "default": false,
  1920. "serializable": false
  1921. }
  1922. },
  1923. {
  1924. "__type__": "cc.PrefabInfo",
  1925. "root": {
  1926. "__id__": 5
  1927. },
  1928. "asset": {
  1929. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1930. },
  1931. "fileId": "845KcJ/fxHwYXioKKykMSa",
  1932. "sync": false,
  1933. "_synced": {
  1934. "default": false,
  1935. "serializable": false
  1936. }
  1937. },
  1938. {
  1939. "__type__": "cc.Node",
  1940. "_name": "polySurface3",
  1941. "_objFlags": 0,
  1942. "_parent": {
  1943. "__id__": 45
  1944. },
  1945. "_children": [],
  1946. "_active": true,
  1947. "_components": [
  1948. {
  1949. "__id__": 65
  1950. }
  1951. ],
  1952. "_prefab": {
  1953. "__id__": 67
  1954. },
  1955. "_lpos": {
  1956. "__type__": "cc.Vec3",
  1957. "x": -0.00320419040508568,
  1958. "y": -0.0145574426278472,
  1959. "z": 0.0598691701889038
  1960. },
  1961. "_lrot": {
  1962. "__type__": "cc.Quat",
  1963. "x": 0.7128733460429769,
  1964. "y": -0.12168294300433088,
  1965. "z": 0.6820342005829815,
  1966. "w": 0.10878512360809416
  1967. },
  1968. "_lscale": {
  1969. "__type__": "cc.Vec3",
  1970. "x": 1,
  1971. "y": 1,
  1972. "z": 1
  1973. },
  1974. "_layer": 1073741824,
  1975. "_euler": {
  1976. "__type__": "cc.Vec3",
  1977. "x": 161.26539208109207,
  1978. "y": -87.70424055853603,
  1979. "z": -1.4382008261836212
  1980. },
  1981. "_id": "840jsDsLhJW5+9iSf0YpUG"
  1982. },
  1983. {
  1984. "__type__": "cc.ModelComponent",
  1985. "_name": "polySurface3<ModelComponent>",
  1986. "_objFlags": 0,
  1987. "node": {
  1988. "__id__": 64
  1989. },
  1990. "_enabled": true,
  1991. "_materials": [
  1992. {
  1993. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1994. }
  1995. ],
  1996. "_visFlags": 0,
  1997. "lightmapSettings": {
  1998. "__id__": 66
  1999. },
  2000. "_mesh": {
  2001. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@8c3a2"
  2002. },
  2003. "_shadowCastingMode": 0,
  2004. "_enableMorph": true,
  2005. "_id": "63fjrONiZHdbkZs4/2yW7x"
  2006. },
  2007. {
  2008. "__type__": "cc.ModelLightmapSettings",
  2009. "texture": null,
  2010. "uvParam": {
  2011. "__type__": "cc.Vec4",
  2012. "x": 0,
  2013. "y": 0,
  2014. "z": 0,
  2015. "w": 0
  2016. },
  2017. "_bakeable": false,
  2018. "_castShadow": false,
  2019. "_receiveShadow": false,
  2020. "_recieveShadow": false,
  2021. "_lightmapSize": 64
  2022. },
  2023. {
  2024. "__type__": "cc.PrefabInfo",
  2025. "root": {
  2026. "__id__": 5
  2027. },
  2028. "asset": {
  2029. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2030. },
  2031. "fileId": "b5qCX/gV5EyqfRXoVprQdh",
  2032. "sync": false,
  2033. "_synced": {
  2034. "default": false,
  2035. "serializable": false
  2036. }
  2037. },
  2038. {
  2039. "__type__": "cc.PrefabInfo",
  2040. "root": {
  2041. "__id__": 5
  2042. },
  2043. "asset": {
  2044. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2045. },
  2046. "fileId": "a7GizojQBFlbBbgG4ZQ5nd",
  2047. "sync": false,
  2048. "_synced": {
  2049. "default": false,
  2050. "serializable": false
  2051. }
  2052. },
  2053. {
  2054. "__type__": "cc.PrefabInfo",
  2055. "root": {
  2056. "__id__": 5
  2057. },
  2058. "asset": {
  2059. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2060. },
  2061. "fileId": "13lRCYC/NCvo16Fb5Ssqeh",
  2062. "sync": false,
  2063. "_synced": {
  2064. "default": false,
  2065. "serializable": false
  2066. }
  2067. },
  2068. {
  2069. "__type__": "cc.PrefabInfo",
  2070. "root": {
  2071. "__id__": 5
  2072. },
  2073. "asset": {
  2074. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2075. },
  2076. "fileId": "a4aKfK2I9CNZuy9+WiT2Yg",
  2077. "sync": false,
  2078. "_synced": {
  2079. "default": false,
  2080. "serializable": false
  2081. }
  2082. },
  2083. {
  2084. "__type__": "cc.PrefabInfo",
  2085. "root": {
  2086. "__id__": 5
  2087. },
  2088. "asset": {
  2089. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2090. },
  2091. "fileId": "3aC5oiKOBEBbDRpjrEmq//",
  2092. "sync": false,
  2093. "_synced": {
  2094. "default": false,
  2095. "serializable": false
  2096. }
  2097. },
  2098. {
  2099. "__type__": "cc.Node",
  2100. "_name": "LeftEndPos",
  2101. "_objFlags": 0,
  2102. "_parent": {
  2103. "__id__": 73
  2104. },
  2105. "_children": [],
  2106. "_active": true,
  2107. "_components": [
  2108. {
  2109. "__id__": 91
  2110. }
  2111. ],
  2112. "_prefab": null,
  2113. "_lpos": {
  2114. "__type__": "cc.Vec3",
  2115. "x": -0.416,
  2116. "y": 0,
  2117. "z": -3.031
  2118. },
  2119. "_lrot": {
  2120. "__type__": "cc.Quat",
  2121. "x": 0,
  2122. "y": 0,
  2123. "z": 0,
  2124. "w": 1
  2125. },
  2126. "_lscale": {
  2127. "__type__": "cc.Vec3",
  2128. "x": 0.5,
  2129. "y": 0.5,
  2130. "z": 0.5
  2131. },
  2132. "_layer": 1073741824,
  2133. "_euler": {
  2134. "__type__": "cc.Vec3",
  2135. "x": 0,
  2136. "y": 0,
  2137. "z": 0
  2138. },
  2139. "_id": "e3MPxHuLVDF7zDdYVEGYkl"
  2140. },
  2141. {
  2142. "__type__": "cc.Node",
  2143. "_name": "Ends",
  2144. "_objFlags": 0,
  2145. "_parent": {
  2146. "__id__": 74
  2147. },
  2148. "_children": [
  2149. {
  2150. "__id__": 72
  2151. },
  2152. {
  2153. "__id__": 85
  2154. },
  2155. {
  2156. "__id__": 88
  2157. }
  2158. ],
  2159. "_active": true,
  2160. "_components": [],
  2161. "_prefab": null,
  2162. "_lpos": {
  2163. "__type__": "cc.Vec3",
  2164. "x": 0,
  2165. "y": 0,
  2166. "z": 1.762
  2167. },
  2168. "_lrot": {
  2169. "__type__": "cc.Quat",
  2170. "x": 0,
  2171. "y": 0,
  2172. "z": 0,
  2173. "w": 1
  2174. },
  2175. "_lscale": {
  2176. "__type__": "cc.Vec3",
  2177. "x": 1,
  2178. "y": 1,
  2179. "z": 1
  2180. },
  2181. "_layer": 1073741824,
  2182. "_euler": {
  2183. "__type__": "cc.Vec3",
  2184. "x": 0,
  2185. "y": 0,
  2186. "z": 0
  2187. },
  2188. "_id": "c9GLBSxY1B7KNpik0L8aqk"
  2189. },
  2190. {
  2191. "__type__": "cc.Node",
  2192. "_name": "PosGroup",
  2193. "_objFlags": 0,
  2194. "_parent": {
  2195. "__id__": 1
  2196. },
  2197. "_children": [
  2198. {
  2199. "__id__": 73
  2200. },
  2201. {
  2202. "__id__": 75
  2203. }
  2204. ],
  2205. "_active": true,
  2206. "_components": [],
  2207. "_prefab": null,
  2208. "_lpos": {
  2209. "__type__": "cc.Vec3",
  2210. "x": 0,
  2211. "y": 0,
  2212. "z": 0
  2213. },
  2214. "_lrot": {
  2215. "__type__": "cc.Quat",
  2216. "x": 0,
  2217. "y": 0,
  2218. "z": 0,
  2219. "w": 1
  2220. },
  2221. "_lscale": {
  2222. "__type__": "cc.Vec3",
  2223. "x": 1,
  2224. "y": 1,
  2225. "z": 1
  2226. },
  2227. "_layer": 1073741824,
  2228. "_euler": {
  2229. "__type__": "cc.Vec3",
  2230. "x": 0,
  2231. "y": 0,
  2232. "z": 0
  2233. },
  2234. "_id": "93O/JWWfNFh4aByHCCxt1l"
  2235. },
  2236. {
  2237. "__type__": "cc.Node",
  2238. "_name": "Starts",
  2239. "_objFlags": 0,
  2240. "_parent": {
  2241. "__id__": 74
  2242. },
  2243. "_children": [
  2244. {
  2245. "__id__": 76
  2246. },
  2247. {
  2248. "__id__": 79
  2249. },
  2250. {
  2251. "__id__": 82
  2252. }
  2253. ],
  2254. "_active": true,
  2255. "_components": [],
  2256. "_prefab": null,
  2257. "_lpos": {
  2258. "__type__": "cc.Vec3",
  2259. "x": 0,
  2260. "y": 0,
  2261. "z": -10.658
  2262. },
  2263. "_lrot": {
  2264. "__type__": "cc.Quat",
  2265. "x": 0,
  2266. "y": 0,
  2267. "z": 0,
  2268. "w": 1
  2269. },
  2270. "_lscale": {
  2271. "__type__": "cc.Vec3",
  2272. "x": 1,
  2273. "y": 1,
  2274. "z": 1
  2275. },
  2276. "_layer": 1073741824,
  2277. "_euler": {
  2278. "__type__": "cc.Vec3",
  2279. "x": 0,
  2280. "y": 0,
  2281. "z": 0
  2282. },
  2283. "_id": "2dVHoQkFNIm4wRW7zLVMTs"
  2284. },
  2285. {
  2286. "__type__": "cc.Node",
  2287. "_name": "LeftStartPos",
  2288. "_objFlags": 0,
  2289. "_parent": {
  2290. "__id__": 75
  2291. },
  2292. "_children": [],
  2293. "_active": true,
  2294. "_components": [
  2295. {
  2296. "__id__": 77
  2297. }
  2298. ],
  2299. "_prefab": null,
  2300. "_lpos": {
  2301. "__type__": "cc.Vec3",
  2302. "x": -0.976,
  2303. "y": 0,
  2304. "z": -2.634
  2305. },
  2306. "_lrot": {
  2307. "__type__": "cc.Quat",
  2308. "x": 0,
  2309. "y": 0,
  2310. "z": 0,
  2311. "w": 1
  2312. },
  2313. "_lscale": {
  2314. "__type__": "cc.Vec3",
  2315. "x": 0.5,
  2316. "y": 0.5,
  2317. "z": 0.5
  2318. },
  2319. "_layer": 1073741824,
  2320. "_euler": {
  2321. "__type__": "cc.Vec3",
  2322. "x": 0,
  2323. "y": 0,
  2324. "z": 0
  2325. },
  2326. "_id": "baYblkzv5MEb4FVkG3nRx1"
  2327. },
  2328. {
  2329. "__type__": "cc.ModelComponent",
  2330. "_name": "Cube<ModelComponent>",
  2331. "_objFlags": 0,
  2332. "node": {
  2333. "__id__": 76
  2334. },
  2335. "_enabled": false,
  2336. "_materials": [
  2337. {
  2338. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2339. }
  2340. ],
  2341. "_visFlags": 0,
  2342. "lightmapSettings": {
  2343. "__id__": 78
  2344. },
  2345. "_mesh": {
  2346. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a"
  2347. },
  2348. "_shadowCastingMode": 0,
  2349. "_enableMorph": true,
  2350. "_id": "96WUSxbxBKTIxyjBNNUzi4"
  2351. },
  2352. {
  2353. "__type__": "cc.ModelLightmapSettings",
  2354. "texture": null,
  2355. "uvParam": {
  2356. "__type__": "cc.Vec4",
  2357. "x": 0,
  2358. "y": 0,
  2359. "z": 0,
  2360. "w": 0
  2361. },
  2362. "_bakeable": false,
  2363. "_castShadow": false,
  2364. "_receiveShadow": false,
  2365. "_recieveShadow": false,
  2366. "_lightmapSize": 64
  2367. },
  2368. {
  2369. "__type__": "cc.Node",
  2370. "_name": "MiddileStartPos",
  2371. "_objFlags": 0,
  2372. "_parent": {
  2373. "__id__": 75
  2374. },
  2375. "_children": [],
  2376. "_active": true,
  2377. "_components": [
  2378. {
  2379. "__id__": 80
  2380. }
  2381. ],
  2382. "_prefab": null,
  2383. "_lpos": {
  2384. "__type__": "cc.Vec3",
  2385. "x": 0,
  2386. "y": 0,
  2387. "z": -2.634
  2388. },
  2389. "_lrot": {
  2390. "__type__": "cc.Quat",
  2391. "x": 0,
  2392. "y": 0,
  2393. "z": 0,
  2394. "w": 1
  2395. },
  2396. "_lscale": {
  2397. "__type__": "cc.Vec3",
  2398. "x": 0.5,
  2399. "y": 0.5,
  2400. "z": 0.5
  2401. },
  2402. "_layer": 1073741824,
  2403. "_euler": {
  2404. "__type__": "cc.Vec3",
  2405. "x": 0,
  2406. "y": 0,
  2407. "z": 0
  2408. },
  2409. "_id": "4afGBdDRBHLrw0+DlPGKP0"
  2410. },
  2411. {
  2412. "__type__": "cc.ModelComponent",
  2413. "_name": "Cube<ModelComponent>",
  2414. "_objFlags": 0,
  2415. "node": {
  2416. "__id__": 79
  2417. },
  2418. "_enabled": false,
  2419. "_materials": [
  2420. {
  2421. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2422. }
  2423. ],
  2424. "_visFlags": 0,
  2425. "lightmapSettings": {
  2426. "__id__": 81
  2427. },
  2428. "_mesh": {
  2429. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a"
  2430. },
  2431. "_shadowCastingMode": 0,
  2432. "_enableMorph": true,
  2433. "_id": "d4bw2U7pBNH4UXbukA8ASD"
  2434. },
  2435. {
  2436. "__type__": "cc.ModelLightmapSettings",
  2437. "texture": null,
  2438. "uvParam": {
  2439. "__type__": "cc.Vec4",
  2440. "x": 0,
  2441. "y": 0,
  2442. "z": 0,
  2443. "w": 0
  2444. },
  2445. "_bakeable": false,
  2446. "_castShadow": false,
  2447. "_receiveShadow": false,
  2448. "_recieveShadow": false,
  2449. "_lightmapSize": 64
  2450. },
  2451. {
  2452. "__type__": "cc.Node",
  2453. "_name": "RightStartPos",
  2454. "_objFlags": 0,
  2455. "_parent": {
  2456. "__id__": 75
  2457. },
  2458. "_children": [],
  2459. "_active": true,
  2460. "_components": [
  2461. {
  2462. "__id__": 83
  2463. }
  2464. ],
  2465. "_prefab": null,
  2466. "_lpos": {
  2467. "__type__": "cc.Vec3",
  2468. "x": 0.962,
  2469. "y": 0,
  2470. "z": -2.634
  2471. },
  2472. "_lrot": {
  2473. "__type__": "cc.Quat",
  2474. "x": 0,
  2475. "y": 0,
  2476. "z": 0,
  2477. "w": 1
  2478. },
  2479. "_lscale": {
  2480. "__type__": "cc.Vec3",
  2481. "x": 0.5,
  2482. "y": 0.5,
  2483. "z": 0.5
  2484. },
  2485. "_layer": 1073741824,
  2486. "_euler": {
  2487. "__type__": "cc.Vec3",
  2488. "x": 0,
  2489. "y": 0,
  2490. "z": 0
  2491. },
  2492. "_id": "03eK48btpGJ6mfQrd3TGLh"
  2493. },
  2494. {
  2495. "__type__": "cc.ModelComponent",
  2496. "_name": "Cube<ModelComponent>",
  2497. "_objFlags": 0,
  2498. "node": {
  2499. "__id__": 82
  2500. },
  2501. "_enabled": false,
  2502. "_materials": [
  2503. {
  2504. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2505. }
  2506. ],
  2507. "_visFlags": 0,
  2508. "lightmapSettings": {
  2509. "__id__": 84
  2510. },
  2511. "_mesh": {
  2512. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a"
  2513. },
  2514. "_shadowCastingMode": 0,
  2515. "_enableMorph": true,
  2516. "_id": "4d2yq5y7FP+YS2x1Ji/nXe"
  2517. },
  2518. {
  2519. "__type__": "cc.ModelLightmapSettings",
  2520. "texture": null,
  2521. "uvParam": {
  2522. "__type__": "cc.Vec4",
  2523. "x": 0,
  2524. "y": 0,
  2525. "z": 0,
  2526. "w": 0
  2527. },
  2528. "_bakeable": false,
  2529. "_castShadow": false,
  2530. "_receiveShadow": false,
  2531. "_recieveShadow": false,
  2532. "_lightmapSize": 64
  2533. },
  2534. {
  2535. "__type__": "cc.Node",
  2536. "_name": "MiddleEndPos",
  2537. "_objFlags": 0,
  2538. "_parent": {
  2539. "__id__": 73
  2540. },
  2541. "_children": [],
  2542. "_active": true,
  2543. "_components": [
  2544. {
  2545. "__id__": 86
  2546. }
  2547. ],
  2548. "_prefab": null,
  2549. "_lpos": {
  2550. "__type__": "cc.Vec3",
  2551. "x": -0.014,
  2552. "y": 0,
  2553. "z": -3.031
  2554. },
  2555. "_lrot": {
  2556. "__type__": "cc.Quat",
  2557. "x": 0,
  2558. "y": 0,
  2559. "z": 0,
  2560. "w": 1
  2561. },
  2562. "_lscale": {
  2563. "__type__": "cc.Vec3",
  2564. "x": 0.5,
  2565. "y": 0.5,
  2566. "z": 0.5
  2567. },
  2568. "_layer": 1073741824,
  2569. "_euler": {
  2570. "__type__": "cc.Vec3",
  2571. "x": 0,
  2572. "y": 0,
  2573. "z": 0
  2574. },
  2575. "_id": "f8JMAUTaxFGatLoLROZVWX"
  2576. },
  2577. {
  2578. "__type__": "cc.ModelComponent",
  2579. "_name": "Cube<ModelComponent>",
  2580. "_objFlags": 0,
  2581. "node": {
  2582. "__id__": 85
  2583. },
  2584. "_enabled": true,
  2585. "_materials": [
  2586. {
  2587. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2588. }
  2589. ],
  2590. "_visFlags": 0,
  2591. "lightmapSettings": {
  2592. "__id__": 87
  2593. },
  2594. "_mesh": {
  2595. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a"
  2596. },
  2597. "_shadowCastingMode": 0,
  2598. "_enableMorph": true,
  2599. "_id": "2dQYIwDB9KOZWb3vMbFfov"
  2600. },
  2601. {
  2602. "__type__": "cc.ModelLightmapSettings",
  2603. "texture": null,
  2604. "uvParam": {
  2605. "__type__": "cc.Vec4",
  2606. "x": 0,
  2607. "y": 0,
  2608. "z": 0,
  2609. "w": 0
  2610. },
  2611. "_bakeable": false,
  2612. "_castShadow": false,
  2613. "_receiveShadow": false,
  2614. "_recieveShadow": false,
  2615. "_lightmapSize": 64
  2616. },
  2617. {
  2618. "__type__": "cc.Node",
  2619. "_name": "RightEndPos",
  2620. "_objFlags": 0,
  2621. "_parent": {
  2622. "__id__": 73
  2623. },
  2624. "_children": [],
  2625. "_active": true,
  2626. "_components": [
  2627. {
  2628. "__id__": 89
  2629. }
  2630. ],
  2631. "_prefab": null,
  2632. "_lpos": {
  2633. "__type__": "cc.Vec3",
  2634. "x": 0.438,
  2635. "y": 0,
  2636. "z": -3.031
  2637. },
  2638. "_lrot": {
  2639. "__type__": "cc.Quat",
  2640. "x": 0,
  2641. "y": 0,
  2642. "z": 0,
  2643. "w": 1
  2644. },
  2645. "_lscale": {
  2646. "__type__": "cc.Vec3",
  2647. "x": 0.5,
  2648. "y": 0.5,
  2649. "z": 0.5
  2650. },
  2651. "_layer": 1073741824,
  2652. "_euler": {
  2653. "__type__": "cc.Vec3",
  2654. "x": 0,
  2655. "y": 0,
  2656. "z": 0
  2657. },
  2658. "_id": "f7JoRfTJxPN56W/zvx1Rkc"
  2659. },
  2660. {
  2661. "__type__": "cc.ModelComponent",
  2662. "_name": "Cube<ModelComponent>",
  2663. "_objFlags": 0,
  2664. "node": {
  2665. "__id__": 88
  2666. },
  2667. "_enabled": true,
  2668. "_materials": [
  2669. {
  2670. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2671. }
  2672. ],
  2673. "_visFlags": 0,
  2674. "lightmapSettings": {
  2675. "__id__": 90
  2676. },
  2677. "_mesh": {
  2678. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a"
  2679. },
  2680. "_shadowCastingMode": 0,
  2681. "_enableMorph": true,
  2682. "_id": "16MGmkvgZLf4TTgDCONj3q"
  2683. },
  2684. {
  2685. "__type__": "cc.ModelLightmapSettings",
  2686. "texture": null,
  2687. "uvParam": {
  2688. "__type__": "cc.Vec4",
  2689. "x": 0,
  2690. "y": 0,
  2691. "z": 0,
  2692. "w": 0
  2693. },
  2694. "_bakeable": false,
  2695. "_castShadow": false,
  2696. "_receiveShadow": false,
  2697. "_recieveShadow": false,
  2698. "_lightmapSize": 64
  2699. },
  2700. {
  2701. "__type__": "cc.ModelComponent",
  2702. "_name": "Cube<ModelComponent>",
  2703. "_objFlags": 0,
  2704. "node": {
  2705. "__id__": 72
  2706. },
  2707. "_enabled": true,
  2708. "_materials": [
  2709. {
  2710. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2711. }
  2712. ],
  2713. "_visFlags": 0,
  2714. "lightmapSettings": {
  2715. "__id__": 92
  2716. },
  2717. "_mesh": {
  2718. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a"
  2719. },
  2720. "_shadowCastingMode": 0,
  2721. "_enableMorph": true,
  2722. "_id": "0dryLe2bhOH4jjm+JtwjlB"
  2723. },
  2724. {
  2725. "__type__": "cc.ModelLightmapSettings",
  2726. "texture": null,
  2727. "uvParam": {
  2728. "__type__": "cc.Vec4",
  2729. "x": 0,
  2730. "y": 0,
  2731. "z": 0,
  2732. "w": 0
  2733. },
  2734. "_bakeable": false,
  2735. "_castShadow": false,
  2736. "_receiveShadow": false,
  2737. "_recieveShadow": false,
  2738. "_lightmapSize": 64
  2739. },
  2740. {
  2741. "__type__": "cc.Node",
  2742. "_name": "Main Light",
  2743. "_objFlags": 0,
  2744. "_parent": {
  2745. "__id__": 1
  2746. },
  2747. "_children": [],
  2748. "_active": true,
  2749. "_components": [
  2750. {
  2751. "__id__": 94
  2752. }
  2753. ],
  2754. "_prefab": null,
  2755. "_lpos": {
  2756. "__type__": "cc.Vec3",
  2757. "x": 0.225,
  2758. "y": 1.212,
  2759. "z": -1.143
  2760. },
  2761. "_lrot": {
  2762. "__type__": "cc.Quat",
  2763. "x": -0.44272058798391334,
  2764. "y": 0.10030682333725705,
  2765. "z": 0.06552770568809746,
  2766. "w": 0.8886186707212608
  2767. },
  2768. "_lscale": {
  2769. "__type__": "cc.Vec3",
  2770. "x": 1,
  2771. "y": 1,
  2772. "z": 1
  2773. },
  2774. "_layer": 1073741824,
  2775. "_euler": {
  2776. "__type__": "cc.Vec3",
  2777. "x": -53.156,
  2778. "y": 13.673,
  2779. "z": 1.584
  2780. },
  2781. "_id": "c0y6F5f+pAvI805TdmxIjx"
  2782. },
  2783. {
  2784. "__type__": "cc.DirectionalLightComponent",
  2785. "_name": "Main Light<DirectionalLightComponent>",
  2786. "_objFlags": 0,
  2787. "node": {
  2788. "__id__": 93
  2789. },
  2790. "_enabled": true,
  2791. "_color": {
  2792. "__type__": "cc.Color",
  2793. "r": 255,
  2794. "g": 255,
  2795. "b": 255,
  2796. "a": 255
  2797. },
  2798. "_useColorTemperature": false,
  2799. "_colorTemperature": 8467,
  2800. "_staticSettings": {
  2801. "__id__": 95
  2802. },
  2803. "_illuminance": 100000,
  2804. "_id": "597uMYCbhEtJQc0ffJlcgA"
  2805. },
  2806. {
  2807. "__type__": "cc.StaticLightSettings",
  2808. "_editorOnly": false,
  2809. "_bakeable": false,
  2810. "_castShadow": false
  2811. },
  2812. {
  2813. "__type__": "cc.Node",
  2814. "_name": "Plane",
  2815. "_objFlags": 0,
  2816. "_parent": {
  2817. "__id__": 1
  2818. },
  2819. "_children": [],
  2820. "_active": false,
  2821. "_components": [
  2822. {
  2823. "__id__": 97
  2824. }
  2825. ],
  2826. "_prefab": null,
  2827. "_lpos": {
  2828. "__type__": "cc.Vec3",
  2829. "x": 0,
  2830. "y": 0,
  2831. "z": -100
  2832. },
  2833. "_lrot": {
  2834. "__type__": "cc.Quat",
  2835. "x": 0,
  2836. "y": 0,
  2837. "z": 0,
  2838. "w": 1
  2839. },
  2840. "_lscale": {
  2841. "__type__": "cc.Vec3",
  2842. "x": 100,
  2843. "y": 100,
  2844. "z": 100
  2845. },
  2846. "_layer": 1073741824,
  2847. "_euler": {
  2848. "__type__": "cc.Vec3",
  2849. "x": 0,
  2850. "y": 0,
  2851. "z": 0
  2852. },
  2853. "_id": "41MwJgMnJHQrRGo41ypgSD"
  2854. },
  2855. {
  2856. "__type__": "cc.ModelComponent",
  2857. "_name": "Plane<ModelComponent>",
  2858. "_objFlags": 0,
  2859. "node": {
  2860. "__id__": 96
  2861. },
  2862. "_enabled": true,
  2863. "_materials": [
  2864. {
  2865. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2866. }
  2867. ],
  2868. "_visFlags": 0,
  2869. "lightmapSettings": {
  2870. "__id__": 98
  2871. },
  2872. "_mesh": {
  2873. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e"
  2874. },
  2875. "_shadowCastingMode": 0,
  2876. "_enableMorph": true,
  2877. "_id": "dc5n8lOoFFuapKAWLgaZqH"
  2878. },
  2879. {
  2880. "__type__": "cc.ModelLightmapSettings",
  2881. "texture": null,
  2882. "uvParam": {
  2883. "__type__": "cc.Vec4",
  2884. "x": 0,
  2885. "y": 0,
  2886. "z": 0,
  2887. "w": 0
  2888. },
  2889. "_bakeable": false,
  2890. "_castShadow": false,
  2891. "_receiveShadow": false,
  2892. "_recieveShadow": false,
  2893. "_lightmapSize": 64
  2894. },
  2895. {
  2896. "__type__": "cc.Node",
  2897. "_name": "scenes001",
  2898. "_objFlags": 0,
  2899. "_parent": {
  2900. "__id__": 1
  2901. },
  2902. "_children": [
  2903. {
  2904. "__id__": 100
  2905. }
  2906. ],
  2907. "_active": true,
  2908. "_components": [],
  2909. "_prefab": {
  2910. "__id__": 148
  2911. },
  2912. "_lpos": {
  2913. "__type__": "cc.Vec3",
  2914. "x": 0,
  2915. "y": -0.192,
  2916. "z": -9.639
  2917. },
  2918. "_lrot": {
  2919. "__type__": "cc.Quat",
  2920. "x": 0,
  2921. "y": 0,
  2922. "z": 0,
  2923. "w": 1
  2924. },
  2925. "_lscale": {
  2926. "__type__": "cc.Vec3",
  2927. "x": 10,
  2928. "y": 10,
  2929. "z": 10
  2930. },
  2931. "_layer": 1073741824,
  2932. "_euler": {
  2933. "__type__": "cc.Vec3",
  2934. "x": 0,
  2935. "y": 0,
  2936. "z": 0
  2937. },
  2938. "_id": "82MoDRJXRG/JVII56V5GNn"
  2939. },
  2940. {
  2941. "__type__": "cc.Node",
  2942. "_name": "RootNode",
  2943. "_objFlags": 0,
  2944. "_parent": {
  2945. "__id__": 99
  2946. },
  2947. "_children": [
  2948. {
  2949. "__id__": 101
  2950. }
  2951. ],
  2952. "_active": true,
  2953. "_components": [],
  2954. "_prefab": {
  2955. "__id__": 147
  2956. },
  2957. "_lpos": {
  2958. "__type__": "cc.Vec3",
  2959. "x": 0,
  2960. "y": 0,
  2961. "z": 0
  2962. },
  2963. "_lrot": {
  2964. "__type__": "cc.Quat",
  2965. "x": 0,
  2966. "y": 0,
  2967. "z": 0,
  2968. "w": 1
  2969. },
  2970. "_lscale": {
  2971. "__type__": "cc.Vec3",
  2972. "x": 1,
  2973. "y": 1,
  2974. "z": 1
  2975. },
  2976. "_layer": 1073741824,
  2977. "_euler": {
  2978. "__type__": "cc.Vec3",
  2979. "x": 0,
  2980. "y": 0,
  2981. "z": 0
  2982. },
  2983. "_id": "9djpeVcl5LF7rNSshCcpQi"
  2984. },
  2985. {
  2986. "__type__": "cc.Node",
  2987. "_name": "scenes001",
  2988. "_objFlags": 0,
  2989. "_parent": {
  2990. "__id__": 100
  2991. },
  2992. "_children": [
  2993. {
  2994. "__id__": 102
  2995. },
  2996. {
  2997. "__id__": 106
  2998. },
  2999. {
  3000. "__id__": 110
  3001. },
  3002. {
  3003. "__id__": 114
  3004. },
  3005. {
  3006. "__id__": 118
  3007. },
  3008. {
  3009. "__id__": 122
  3010. },
  3011. {
  3012. "__id__": 126
  3013. },
  3014. {
  3015. "__id__": 130
  3016. },
  3017. {
  3018. "__id__": 134
  3019. },
  3020. {
  3021. "__id__": 138
  3022. },
  3023. {
  3024. "__id__": 142
  3025. }
  3026. ],
  3027. "_active": true,
  3028. "_components": [],
  3029. "_prefab": {
  3030. "__id__": 146
  3031. },
  3032. "_lpos": {
  3033. "__type__": "cc.Vec3",
  3034. "x": 0,
  3035. "y": 0,
  3036. "z": 0
  3037. },
  3038. "_lrot": {
  3039. "__type__": "cc.Quat",
  3040. "x": 0,
  3041. "y": 0,
  3042. "z": 0,
  3043. "w": 1
  3044. },
  3045. "_lscale": {
  3046. "__type__": "cc.Vec3",
  3047. "x": 1,
  3048. "y": 1,
  3049. "z": 1
  3050. },
  3051. "_layer": 1073741824,
  3052. "_euler": {
  3053. "__type__": "cc.Vec3",
  3054. "x": 0,
  3055. "y": 0,
  3056. "z": 0
  3057. },
  3058. "_id": "f8JoM3PHFBM4Es8Rlij1VC"
  3059. },
  3060. {
  3061. "__type__": "cc.Node",
  3062. "_name": "Road2",
  3063. "_objFlags": 0,
  3064. "_parent": {
  3065. "__id__": 101
  3066. },
  3067. "_children": [],
  3068. "_active": true,
  3069. "_components": [
  3070. {
  3071. "__id__": 103
  3072. }
  3073. ],
  3074. "_prefab": {
  3075. "__id__": 105
  3076. },
  3077. "_lpos": {
  3078. "__type__": "cc.Vec3",
  3079. "x": -0.081,
  3080. "y": 0.021,
  3081. "z": 0.269
  3082. },
  3083. "_lrot": {
  3084. "__type__": "cc.Quat",
  3085. "x": 0,
  3086. "y": 0.013874922329877162,
  3087. "z": 0,
  3088. "w": 0.9999037386320444
  3089. },
  3090. "_lscale": {
  3091. "__type__": "cc.Vec3",
  3092. "x": 6.02,
  3093. "y": 26.816,
  3094. "z": 154.953
  3095. },
  3096. "_layer": 1073741824,
  3097. "_euler": {
  3098. "__type__": "cc.Vec3",
  3099. "x": 0,
  3100. "y": 1.59,
  3101. "z": 0
  3102. },
  3103. "_id": "b7E+i188tFqoNXzJq2muhq"
  3104. },
  3105. {
  3106. "__type__": "cc.ModelComponent",
  3107. "_name": "Road2<ModelComponent>",
  3108. "_objFlags": 0,
  3109. "node": {
  3110. "__id__": 102
  3111. },
  3112. "_enabled": true,
  3113. "_materials": [
  3114. {
  3115. "__uuid__": "b9a39362-7593-48d8-8c20-ba06bb577682"
  3116. }
  3117. ],
  3118. "_visFlags": 0,
  3119. "lightmapSettings": {
  3120. "__id__": 104
  3121. },
  3122. "_mesh": {
  3123. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@c6933"
  3124. },
  3125. "_shadowCastingMode": 0,
  3126. "_enableMorph": true,
  3127. "_id": "3fMA6aJ1VMvocdpVHXDN+U"
  3128. },
  3129. {
  3130. "__type__": "cc.ModelLightmapSettings",
  3131. "texture": null,
  3132. "uvParam": {
  3133. "__type__": "cc.Vec4",
  3134. "x": 0,
  3135. "y": 0,
  3136. "z": 0,
  3137. "w": 0
  3138. },
  3139. "_bakeable": false,
  3140. "_castShadow": false,
  3141. "_receiveShadow": false,
  3142. "_recieveShadow": false,
  3143. "_lightmapSize": 64
  3144. },
  3145. {
  3146. "__type__": "cc.PrefabInfo",
  3147. "root": {
  3148. "__id__": 99
  3149. },
  3150. "asset": {
  3151. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  3152. },
  3153. "fileId": "bcwerkNi1CvoSL9/IDbl3w",
  3154. "sync": false,
  3155. "_synced": {
  3156. "default": false,
  3157. "serializable": false
  3158. }
  3159. },
  3160. {
  3161. "__type__": "cc.Node",
  3162. "_name": "Road1",
  3163. "_objFlags": 0,
  3164. "_parent": {
  3165. "__id__": 101
  3166. },
  3167. "_children": [],
  3168. "_active": true,
  3169. "_components": [
  3170. {
  3171. "__id__": 107
  3172. }
  3173. ],
  3174. "_prefab": {
  3175. "__id__": 109
  3176. },
  3177. "_lpos": {
  3178. "__type__": "cc.Vec3",
  3179. "x": 0,
  3180. "y": 0.021,
  3181. "z": 0.269
  3182. },
  3183. "_lrot": {
  3184. "__type__": "cc.Quat",
  3185. "x": 0,
  3186. "y": 0,
  3187. "z": 0,
  3188. "w": 1
  3189. },
  3190. "_lscale": {
  3191. "__type__": "cc.Vec3",
  3192. "x": 6.02,
  3193. "y": 26.816,
  3194. "z": 154.953
  3195. },
  3196. "_layer": 1073741824,
  3197. "_euler": {
  3198. "__type__": "cc.Vec3",
  3199. "x": 0,
  3200. "y": 0,
  3201. "z": 0
  3202. },
  3203. "_id": "35G3vacmNHvaoe7ImhpfMZ"
  3204. },
  3205. {
  3206. "__type__": "cc.ModelComponent",
  3207. "_name": "Road1<ModelComponent>",
  3208. "_objFlags": 0,
  3209. "node": {
  3210. "__id__": 106
  3211. },
  3212. "_enabled": true,
  3213. "_materials": [
  3214. {
  3215. "__uuid__": "b9a39362-7593-48d8-8c20-ba06bb577682"
  3216. }
  3217. ],
  3218. "_visFlags": 0,
  3219. "lightmapSettings": {
  3220. "__id__": 108
  3221. },
  3222. "_mesh": {
  3223. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@12440"
  3224. },
  3225. "_shadowCastingMode": 0,
  3226. "_enableMorph": true,
  3227. "_id": "9469B8Q2lMZLLz90h18Isb"
  3228. },
  3229. {
  3230. "__type__": "cc.ModelLightmapSettings",
  3231. "texture": null,
  3232. "uvParam": {
  3233. "__type__": "cc.Vec4",
  3234. "x": 0,
  3235. "y": 0,
  3236. "z": 0,
  3237. "w": 0
  3238. },
  3239. "_bakeable": false,
  3240. "_castShadow": false,
  3241. "_receiveShadow": false,
  3242. "_recieveShadow": false,
  3243. "_lightmapSize": 64
  3244. },
  3245. {
  3246. "__type__": "cc.PrefabInfo",
  3247. "root": {
  3248. "__id__": 99
  3249. },
  3250. "asset": {
  3251. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  3252. },
  3253. "fileId": "904BuBCuZKLo83y0Py5yDu",
  3254. "sync": false,
  3255. "_synced": {
  3256. "default": false,
  3257. "serializable": false
  3258. }
  3259. },
  3260. {
  3261. "__type__": "cc.Node",
  3262. "_name": "cactus05",
  3263. "_objFlags": 0,
  3264. "_parent": {
  3265. "__id__": 101
  3266. },
  3267. "_children": [],
  3268. "_active": true,
  3269. "_components": [
  3270. {
  3271. "__id__": 111
  3272. }
  3273. ],
  3274. "_prefab": {
  3275. "__id__": 113
  3276. },
  3277. "_lpos": {
  3278. "__type__": "cc.Vec3",
  3279. "x": 0.046,
  3280. "y": 0.035,
  3281. "z": 0.011
  3282. },
  3283. "_lrot": {
  3284. "__type__": "cc.Quat",
  3285. "x": 0.7071067811865477,
  3286. "y": 0,
  3287. "z": 0,
  3288. "w": 0.7071067811865474
  3289. },
  3290. "_lscale": {
  3291. "__type__": "cc.Vec3",
  3292. "x": 2.80752897262573,
  3293. "y": 2.80752897262573,
  3294. "z": 4.21207332611084
  3295. },
  3296. "_layer": 1073741824,
  3297. "_euler": {
  3298. "__type__": "cc.Vec3",
  3299. "x": 90.00000000000003,
  3300. "y": 0,
  3301. "z": 0
  3302. },
  3303. "_id": "6ebPEUQgNGIpHcrPOc+Tao"
  3304. },
  3305. {
  3306. "__type__": "cc.ModelComponent",
  3307. "_name": "cactus05<ModelComponent>",
  3308. "_objFlags": 0,
  3309. "node": {
  3310. "__id__": 110
  3311. },
  3312. "_enabled": true,
  3313. "_materials": [
  3314. {
  3315. "__uuid__": "a0f7b97d-3273-4e82-8a21-2981d5b142f3"
  3316. }
  3317. ],
  3318. "_visFlags": 0,
  3319. "lightmapSettings": {
  3320. "__id__": 112
  3321. },
  3322. "_mesh": {
  3323. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@3551d"
  3324. },
  3325. "_shadowCastingMode": 0,
  3326. "_enableMorph": true,
  3327. "_id": "71Qbv7LAVGXaXTjBBNzzCM"
  3328. },
  3329. {
  3330. "__type__": "cc.ModelLightmapSettings",
  3331. "texture": null,
  3332. "uvParam": {
  3333. "__type__": "cc.Vec4",
  3334. "x": 0,
  3335. "y": 0,
  3336. "z": 0,
  3337. "w": 0
  3338. },
  3339. "_bakeable": false,
  3340. "_castShadow": false,
  3341. "_receiveShadow": false,
  3342. "_recieveShadow": false,
  3343. "_lightmapSize": 64
  3344. },
  3345. {
  3346. "__type__": "cc.PrefabInfo",
  3347. "root": {
  3348. "__id__": 99
  3349. },
  3350. "asset": {
  3351. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  3352. },
  3353. "fileId": "bcOus6dy9Oda2MH/ZwNoHN",
  3354. "sync": false,
  3355. "_synced": {
  3356. "default": false,
  3357. "serializable": false
  3358. }
  3359. },
  3360. {
  3361. "__type__": "cc.Node",
  3362. "_name": "cactus04",
  3363. "_objFlags": 0,
  3364. "_parent": {
  3365. "__id__": 101
  3366. },
  3367. "_children": [],
  3368. "_active": true,
  3369. "_components": [
  3370. {
  3371. "__id__": 115
  3372. }
  3373. ],
  3374. "_prefab": {
  3375. "__id__": 117
  3376. },
  3377. "_lpos": {
  3378. "__type__": "cc.Vec3",
  3379. "x": 0.035,
  3380. "y": 0.035,
  3381. "z": 0.533
  3382. },
  3383. "_lrot": {
  3384. "__type__": "cc.Quat",
  3385. "x": 0.7071067811865477,
  3386. "y": 0,
  3387. "z": 0,
  3388. "w": 0.7071067811865474
  3389. },
  3390. "_lscale": {
  3391. "__type__": "cc.Vec3",
  3392. "x": 2.193,
  3393. "y": 2.193,
  3394. "z": 3.29
  3395. },
  3396. "_layer": 1073741824,
  3397. "_euler": {
  3398. "__type__": "cc.Vec3",
  3399. "x": 90.00000000000003,
  3400. "y": 0,
  3401. "z": 0
  3402. },
  3403. "_id": "c52L14SmZF3YOGJ3Q51BCH"
  3404. },
  3405. {
  3406. "__type__": "cc.ModelComponent",
  3407. "_name": "cactus04<ModelComponent>",
  3408. "_objFlags": 0,
  3409. "node": {
  3410. "__id__": 114
  3411. },
  3412. "_enabled": true,
  3413. "_materials": [
  3414. {
  3415. "__uuid__": "a0f7b97d-3273-4e82-8a21-2981d5b142f3"
  3416. }
  3417. ],
  3418. "_visFlags": 0,
  3419. "lightmapSettings": {
  3420. "__id__": 116
  3421. },
  3422. "_mesh": {
  3423. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@97744"
  3424. },
  3425. "_shadowCastingMode": 0,
  3426. "_enableMorph": true,
  3427. "_id": "4aC2obtvlOPLxzu0iYsyJ7"
  3428. },
  3429. {
  3430. "__type__": "cc.ModelLightmapSettings",
  3431. "texture": null,
  3432. "uvParam": {
  3433. "__type__": "cc.Vec4",
  3434. "x": 0,
  3435. "y": 0,
  3436. "z": 0,
  3437. "w": 0
  3438. },
  3439. "_bakeable": false,
  3440. "_castShadow": false,
  3441. "_receiveShadow": false,
  3442. "_recieveShadow": false,
  3443. "_lightmapSize": 64
  3444. },
  3445. {
  3446. "__type__": "cc.PrefabInfo",
  3447. "root": {
  3448. "__id__": 99
  3449. },
  3450. "asset": {
  3451. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  3452. },
  3453. "fileId": "5bM+7oRqdCpab8cKOGmkuE",
  3454. "sync": false,
  3455. "_synced": {
  3456. "default": false,
  3457. "serializable": false
  3458. }
  3459. },
  3460. {
  3461. "__type__": "cc.Node",
  3462. "_name": "cactus03",
  3463. "_objFlags": 0,
  3464. "_parent": {
  3465. "__id__": 101
  3466. },
  3467. "_children": [],
  3468. "_active": true,
  3469. "_components": [
  3470. {
  3471. "__id__": 119
  3472. }
  3473. ],
  3474. "_prefab": {
  3475. "__id__": 121
  3476. },
  3477. "_lpos": {
  3478. "__type__": "cc.Vec3",
  3479. "x": -0.102,
  3480. "y": 0.057,
  3481. "z": 0.5
  3482. },
  3483. "_lrot": {
  3484. "__type__": "cc.Quat",
  3485. "x": 0.7071067811865477,
  3486. "y": 0,
  3487. "z": 0,
  3488. "w": 0.7071067811865474
  3489. },
  3490. "_lscale": {
  3491. "__type__": "cc.Vec3",
  3492. "x": 5.15451622009277,
  3493. "y": 5.15451622009277,
  3494. "z": 7.73320627212524
  3495. },
  3496. "_layer": 1073741824,
  3497. "_euler": {
  3498. "__type__": "cc.Vec3",
  3499. "x": 90.00000000000003,
  3500. "y": 0,
  3501. "z": 0
  3502. },
  3503. "_id": "e5PIBTe1ZOfJbdt+7gh8NR"
  3504. },
  3505. {
  3506. "__type__": "cc.ModelComponent",
  3507. "_name": "cactus03<ModelComponent>",
  3508. "_objFlags": 0,
  3509. "node": {
  3510. "__id__": 118
  3511. },
  3512. "_enabled": true,
  3513. "_materials": [
  3514. {
  3515. "__uuid__": "a0f7b97d-3273-4e82-8a21-2981d5b142f3"
  3516. }
  3517. ],
  3518. "_visFlags": 0,
  3519. "lightmapSettings": {
  3520. "__id__": 120
  3521. },
  3522. "_mesh": {
  3523. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@efb79"
  3524. },
  3525. "_shadowCastingMode": 0,
  3526. "_enableMorph": true,
  3527. "_id": "f5lzOc46JAvrbfzoc0hfbG"
  3528. },
  3529. {
  3530. "__type__": "cc.ModelLightmapSettings",
  3531. "texture": null,
  3532. "uvParam": {
  3533. "__type__": "cc.Vec4",
  3534. "x": 0,
  3535. "y": 0,
  3536. "z": 0,
  3537. "w": 0
  3538. },
  3539. "_bakeable": false,
  3540. "_castShadow": false,
  3541. "_receiveShadow": false,
  3542. "_recieveShadow": false,
  3543. "_lightmapSize": 64
  3544. },
  3545. {
  3546. "__type__": "cc.PrefabInfo",
  3547. "root": {
  3548. "__id__": 99
  3549. },
  3550. "asset": {
  3551. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  3552. },
  3553. "fileId": "c2fgj1bHhF+qJiUltK8foz",
  3554. "sync": false,
  3555. "_synced": {
  3556. "default": false,
  3557. "serializable": false
  3558. }
  3559. },
  3560. {
  3561. "__type__": "cc.Node",
  3562. "_name": "cactus02",
  3563. "_objFlags": 0,
  3564. "_parent": {
  3565. "__id__": 101
  3566. },
  3567. "_children": [],
  3568. "_active": true,
  3569. "_components": [
  3570. {
  3571. "__id__": 123
  3572. }
  3573. ],
  3574. "_prefab": {
  3575. "__id__": 125
  3576. },
  3577. "_lpos": {
  3578. "__type__": "cc.Vec3",
  3579. "x": -0.044,
  3580. "y": 0.034,
  3581. "z": -0.2
  3582. },
  3583. "_lrot": {
  3584. "__type__": "cc.Quat",
  3585. "x": 0.7071067811865477,
  3586. "y": 0,
  3587. "z": 0,
  3588. "w": 0.7071067811865474
  3589. },
  3590. "_lscale": {
  3591. "__type__": "cc.Vec3",
  3592. "x": 5.043,
  3593. "y": 5.043,
  3594. "z": 7.566
  3595. },
  3596. "_layer": 1073741824,
  3597. "_euler": {
  3598. "__type__": "cc.Vec3",
  3599. "x": 90.00000000000003,
  3600. "y": 0,
  3601. "z": 0
  3602. },
  3603. "_id": "56ATNMd21CuaciAijg+Xhr"
  3604. },
  3605. {
  3606. "__type__": "cc.ModelComponent",
  3607. "_name": "cactus02<ModelComponent>",
  3608. "_objFlags": 0,
  3609. "node": {
  3610. "__id__": 122
  3611. },
  3612. "_enabled": true,
  3613. "_materials": [
  3614. {
  3615. "__uuid__": "a0f7b97d-3273-4e82-8a21-2981d5b142f3"
  3616. }
  3617. ],
  3618. "_visFlags": 0,
  3619. "lightmapSettings": {
  3620. "__id__": 124
  3621. },
  3622. "_mesh": {
  3623. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@ab4dd"
  3624. },
  3625. "_shadowCastingMode": 0,
  3626. "_enableMorph": true,
  3627. "_id": "6ezRMJ2KhKxqWaPUqIVzZa"
  3628. },
  3629. {
  3630. "__type__": "cc.ModelLightmapSettings",
  3631. "texture": null,
  3632. "uvParam": {
  3633. "__type__": "cc.Vec4",
  3634. "x": 0,
  3635. "y": 0,
  3636. "z": 0,
  3637. "w": 0
  3638. },
  3639. "_bakeable": false,
  3640. "_castShadow": false,
  3641. "_receiveShadow": false,
  3642. "_recieveShadow": false,
  3643. "_lightmapSize": 64
  3644. },
  3645. {
  3646. "__type__": "cc.PrefabInfo",
  3647. "root": {
  3648. "__id__": 99
  3649. },
  3650. "asset": {
  3651. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  3652. },
  3653. "fileId": "aaOjZUDgZARIgB75Mhb3+r",
  3654. "sync": false,
  3655. "_synced": {
  3656. "default": false,
  3657. "serializable": false
  3658. }
  3659. },
  3660. {
  3661. "__type__": "cc.Node",
  3662. "_name": "Sky",
  3663. "_objFlags": 0,
  3664. "_parent": {
  3665. "__id__": 101
  3666. },
  3667. "_children": [],
  3668. "_active": true,
  3669. "_components": [
  3670. {
  3671. "__id__": 127
  3672. }
  3673. ],
  3674. "_prefab": {
  3675. "__id__": 129
  3676. },
  3677. "_lpos": {
  3678. "__type__": "cc.Vec3",
  3679. "x": 0,
  3680. "y": 0.049,
  3681. "z": -1.362
  3682. },
  3683. "_lrot": {
  3684. "__type__": "cc.Quat",
  3685. "x": 0.7071067811865477,
  3686. "y": 0,
  3687. "z": 0,
  3688. "w": 0.7071067811865474
  3689. },
  3690. "_lscale": {
  3691. "__type__": "cc.Vec3",
  3692. "x": 890.349,
  3693. "y": 236.53,
  3694. "z": 584.345
  3695. },
  3696. "_layer": 1073741824,
  3697. "_euler": {
  3698. "__type__": "cc.Vec3",
  3699. "x": 90.00000000000003,
  3700. "y": 0,
  3701. "z": 0
  3702. },
  3703. "_id": "3b14O4afZBhK/fKz3C5DQ/"
  3704. },
  3705. {
  3706. "__type__": "cc.ModelComponent",
  3707. "_name": "Sky<ModelComponent>",
  3708. "_objFlags": 0,
  3709. "node": {
  3710. "__id__": 126
  3711. },
  3712. "_enabled": true,
  3713. "_materials": [
  3714. {
  3715. "__uuid__": "aafb4345-b4d9-4136-a697-2c82c5978ffc"
  3716. }
  3717. ],
  3718. "_visFlags": 0,
  3719. "lightmapSettings": {
  3720. "__id__": 128
  3721. },
  3722. "_mesh": {
  3723. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@51e08"
  3724. },
  3725. "_shadowCastingMode": 0,
  3726. "_enableMorph": true,
  3727. "_id": "6foldKFpdFLoZquBY2unch"
  3728. },
  3729. {
  3730. "__type__": "cc.ModelLightmapSettings",
  3731. "texture": null,
  3732. "uvParam": {
  3733. "__type__": "cc.Vec4",
  3734. "x": 0,
  3735. "y": 0,
  3736. "z": 0,
  3737. "w": 0
  3738. },
  3739. "_bakeable": false,
  3740. "_castShadow": false,
  3741. "_receiveShadow": false,
  3742. "_recieveShadow": false,
  3743. "_lightmapSize": 64
  3744. },
  3745. {
  3746. "__type__": "cc.PrefabInfo",
  3747. "root": {
  3748. "__id__": 99
  3749. },
  3750. "asset": {
  3751. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  3752. },
  3753. "fileId": "db8TMOSbZPzJjGX+pY7fcD",
  3754. "sync": false,
  3755. "_synced": {
  3756. "default": false,
  3757. "serializable": false
  3758. }
  3759. },
  3760. {
  3761. "__type__": "cc.Node",
  3762. "_name": "Ground",
  3763. "_objFlags": 0,
  3764. "_parent": {
  3765. "__id__": 101
  3766. },
  3767. "_children": [],
  3768. "_active": true,
  3769. "_components": [
  3770. {
  3771. "__id__": 131
  3772. }
  3773. ],
  3774. "_prefab": {
  3775. "__id__": 133
  3776. },
  3777. "_lpos": {
  3778. "__type__": "cc.Vec3",
  3779. "x": 0,
  3780. "y": 0.0198008455336094,
  3781. "z": 0.291039764881134
  3782. },
  3783. "_lrot": {
  3784. "__type__": "cc.Quat",
  3785. "x": 0,
  3786. "y": 0,
  3787. "z": 0,
  3788. "w": 1
  3789. },
  3790. "_lscale": {
  3791. "__type__": "cc.Vec3",
  3792. "x": 128.741607666016,
  3793. "y": 128.741607666016,
  3794. "z": 128.741607666016
  3795. },
  3796. "_layer": 1073741824,
  3797. "_euler": {
  3798. "__type__": "cc.Vec3",
  3799. "x": 0,
  3800. "y": 0,
  3801. "z": 0
  3802. },
  3803. "_id": "63PXwidKVIzqFAkL9EGgZa"
  3804. },
  3805. {
  3806. "__type__": "cc.ModelComponent",
  3807. "_name": "",
  3808. "_objFlags": 0,
  3809. "node": {
  3810. "__id__": 130
  3811. },
  3812. "_enabled": true,
  3813. "_materials": [
  3814. {
  3815. "__uuid__": "73e06f0b-e734-48b3-928a-553b08e6633c"
  3816. }
  3817. ],
  3818. "_visFlags": 0,
  3819. "lightmapSettings": {
  3820. "__id__": 132
  3821. },
  3822. "_mesh": {
  3823. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@74dce"
  3824. },
  3825. "_shadowCastingMode": 0,
  3826. "_enableMorph": true,
  3827. "_id": "c93J6/3+JFDZSCJ8L4QiTH"
  3828. },
  3829. {
  3830. "__type__": "cc.ModelLightmapSettings",
  3831. "texture": null,
  3832. "uvParam": {
  3833. "__type__": "cc.Vec4",
  3834. "x": 0,
  3835. "y": 0,
  3836. "z": 0,
  3837. "w": 0
  3838. },
  3839. "_bakeable": false,
  3840. "_castShadow": false,
  3841. "_receiveShadow": false,
  3842. "_recieveShadow": false,
  3843. "_lightmapSize": 64
  3844. },
  3845. {
  3846. "__type__": "cc.PrefabInfo",
  3847. "root": {
  3848. "__id__": 99
  3849. },
  3850. "asset": {
  3851. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  3852. },
  3853. "fileId": "57eo5NaB5LuIKJv63mgrnp",
  3854. "sync": false,
  3855. "_synced": {
  3856. "default": false,
  3857. "serializable": false
  3858. }
  3859. },
  3860. {
  3861. "__type__": "cc.Node",
  3862. "_name": "Hill",
  3863. "_objFlags": 0,
  3864. "_parent": {
  3865. "__id__": 101
  3866. },
  3867. "_children": [],
  3868. "_active": true,
  3869. "_components": [
  3870. {
  3871. "__id__": 135
  3872. }
  3873. ],
  3874. "_prefab": {
  3875. "__id__": 137
  3876. },
  3877. "_lpos": {
  3878. "__type__": "cc.Vec3",
  3879. "x": -0.473,
  3880. "y": 0.009,
  3881. "z": -1.078
  3882. },
  3883. "_lrot": {
  3884. "__type__": "cc.Quat",
  3885. "x": 0.4999999999999999,
  3886. "y": -0.5,
  3887. "z": -0.5,
  3888. "w": 0.5000000000000001
  3889. },
  3890. "_lscale": {
  3891. "__type__": "cc.Vec3",
  3892. "x": 83.397,
  3893. "y": 11.821,
  3894. "z": 231.695
  3895. },
  3896. "_layer": 1073741824,
  3897. "_euler": {
  3898. "__type__": "cc.Vec3",
  3899. "x": 0,
  3900. "y": -90,
  3901. "z": -90
  3902. },
  3903. "_id": "a1Mn5672tH2Jyexl4YL7Ms"
  3904. },
  3905. {
  3906. "__type__": "cc.ModelComponent",
  3907. "_name": "Hill<ModelComponent>",
  3908. "_objFlags": 0,
  3909. "node": {
  3910. "__id__": 134
  3911. },
  3912. "_enabled": true,
  3913. "_materials": [
  3914. {
  3915. "__uuid__": "e86f8f97-1784-4471-a33e-e7f016ff94c3"
  3916. }
  3917. ],
  3918. "_visFlags": 0,
  3919. "lightmapSettings": {
  3920. "__id__": 136
  3921. },
  3922. "_mesh": {
  3923. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@0464f"
  3924. },
  3925. "_shadowCastingMode": 0,
  3926. "_enableMorph": true,
  3927. "_id": "29DuE3kMVGs6N0tzb6JFS/"
  3928. },
  3929. {
  3930. "__type__": "cc.ModelLightmapSettings",
  3931. "texture": null,
  3932. "uvParam": {
  3933. "__type__": "cc.Vec4",
  3934. "x": 0,
  3935. "y": 0,
  3936. "z": 0,
  3937. "w": 0
  3938. },
  3939. "_bakeable": false,
  3940. "_castShadow": false,
  3941. "_receiveShadow": false,
  3942. "_recieveShadow": false,
  3943. "_lightmapSize": 64
  3944. },
  3945. {
  3946. "__type__": "cc.PrefabInfo",
  3947. "root": {
  3948. "__id__": 99
  3949. },
  3950. "asset": {
  3951. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  3952. },
  3953. "fileId": "48oVENrdNKbp/vuHwG5dZz",
  3954. "sync": false,
  3955. "_synced": {
  3956. "default": false,
  3957. "serializable": false
  3958. }
  3959. },
  3960. {
  3961. "__type__": "cc.Node",
  3962. "_name": "cactus01",
  3963. "_objFlags": 0,
  3964. "_parent": {
  3965. "__id__": 101
  3966. },
  3967. "_children": [],
  3968. "_active": true,
  3969. "_components": [
  3970. {
  3971. "__id__": 139
  3972. }
  3973. ],
  3974. "_prefab": {
  3975. "__id__": 141
  3976. },
  3977. "_lpos": {
  3978. "__type__": "cc.Vec3",
  3979. "x": 0.134,
  3980. "y": 0.057,
  3981. "z": 0.146
  3982. },
  3983. "_lrot": {
  3984. "__type__": "cc.Quat",
  3985. "x": 0.7071067811865476,
  3986. "y": 0,
  3987. "z": 0,
  3988. "w": 0.7071067811865476
  3989. },
  3990. "_lscale": {
  3991. "__type__": "cc.Vec3",
  3992. "x": 5.15451622009277,
  3993. "y": 5.15451622009277,
  3994. "z": 8.51833629608154
  3995. },
  3996. "_layer": 1073741824,
  3997. "_euler": {
  3998. "__type__": "cc.Vec3",
  3999. "x": 90.00000000000003,
  4000. "y": 0,
  4001. "z": 0
  4002. },
  4003. "_id": "ceRV6/R1JPv4BwmXg794R7"
  4004. },
  4005. {
  4006. "__type__": "cc.ModelComponent",
  4007. "_name": "",
  4008. "_objFlags": 0,
  4009. "node": {
  4010. "__id__": 138
  4011. },
  4012. "_enabled": true,
  4013. "_materials": [
  4014. {
  4015. "__uuid__": "a0f7b97d-3273-4e82-8a21-2981d5b142f3"
  4016. }
  4017. ],
  4018. "_visFlags": 0,
  4019. "lightmapSettings": {
  4020. "__id__": 140
  4021. },
  4022. "_mesh": {
  4023. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@62ed5"
  4024. },
  4025. "_shadowCastingMode": 0,
  4026. "_enableMorph": true,
  4027. "_id": "a7/Y51YEFI14wmRz++mhgl"
  4028. },
  4029. {
  4030. "__type__": "cc.ModelLightmapSettings",
  4031. "texture": null,
  4032. "uvParam": {
  4033. "__type__": "cc.Vec4",
  4034. "x": 0,
  4035. "y": 0,
  4036. "z": 0,
  4037. "w": 0
  4038. },
  4039. "_bakeable": false,
  4040. "_castShadow": false,
  4041. "_receiveShadow": false,
  4042. "_recieveShadow": false,
  4043. "_lightmapSize": 64
  4044. },
  4045. {
  4046. "__type__": "cc.PrefabInfo",
  4047. "root": {
  4048. "__id__": 99
  4049. },
  4050. "asset": {
  4051. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  4052. },
  4053. "fileId": "66+5IC7KNEZoS6toBRAuSE",
  4054. "sync": false,
  4055. "_synced": {
  4056. "default": false,
  4057. "serializable": false
  4058. }
  4059. },
  4060. {
  4061. "__type__": "cc.Node",
  4062. "_name": "Road3",
  4063. "_objFlags": 0,
  4064. "_parent": {
  4065. "__id__": 101
  4066. },
  4067. "_children": [],
  4068. "_active": true,
  4069. "_components": [
  4070. {
  4071. "__id__": 143
  4072. }
  4073. ],
  4074. "_prefab": {
  4075. "__id__": 145
  4076. },
  4077. "_lpos": {
  4078. "__type__": "cc.Vec3",
  4079. "x": 0.082,
  4080. "y": 0.021,
  4081. "z": 0.269
  4082. },
  4083. "_lrot": {
  4084. "__type__": "cc.Quat",
  4085. "x": 0,
  4086. "y": -0.01393600294749905,
  4087. "z": 0,
  4088. "w": 0.9999028891956695
  4089. },
  4090. "_lscale": {
  4091. "__type__": "cc.Vec3",
  4092. "x": 6.02,
  4093. "y": 26.816,
  4094. "z": 154.953
  4095. },
  4096. "_layer": 1073741824,
  4097. "_euler": {
  4098. "__type__": "cc.Vec3",
  4099. "x": 0,
  4100. "y": -1.597,
  4101. "z": 0
  4102. },
  4103. "_id": "b2Y9G4vwFOh6B4ZCu2RYjs"
  4104. },
  4105. {
  4106. "__type__": "cc.ModelComponent",
  4107. "_name": "Road3<ModelComponent>",
  4108. "_objFlags": 0,
  4109. "node": {
  4110. "__id__": 142
  4111. },
  4112. "_enabled": true,
  4113. "_materials": [
  4114. {
  4115. "__uuid__": "b9a39362-7593-48d8-8c20-ba06bb577682"
  4116. }
  4117. ],
  4118. "_visFlags": 0,
  4119. "lightmapSettings": {
  4120. "__id__": 144
  4121. },
  4122. "_mesh": {
  4123. "__uuid__": "5e7fb0a4-3cbe-41aa-bf77-fb169c212f24@434b1"
  4124. },
  4125. "_shadowCastingMode": 0,
  4126. "_enableMorph": true,
  4127. "_id": "25BeIksnBDa4zFq5otYc16"
  4128. },
  4129. {
  4130. "__type__": "cc.ModelLightmapSettings",
  4131. "texture": null,
  4132. "uvParam": {
  4133. "__type__": "cc.Vec4",
  4134. "x": 0,
  4135. "y": 0,
  4136. "z": 0,
  4137. "w": 0
  4138. },
  4139. "_bakeable": false,
  4140. "_castShadow": false,
  4141. "_receiveShadow": false,
  4142. "_recieveShadow": false,
  4143. "_lightmapSize": 64
  4144. },
  4145. {
  4146. "__type__": "cc.PrefabInfo",
  4147. "root": {
  4148. "__id__": 99
  4149. },
  4150. "asset": {
  4151. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  4152. },
  4153. "fileId": "64ZEAejOVEsLHXxKG9Skvs",
  4154. "sync": false,
  4155. "_synced": {
  4156. "default": false,
  4157. "serializable": false
  4158. }
  4159. },
  4160. {
  4161. "__type__": "cc.PrefabInfo",
  4162. "root": {
  4163. "__id__": 99
  4164. },
  4165. "asset": {
  4166. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  4167. },
  4168. "fileId": "49sHjG4cZENp3WhxN2ig+U",
  4169. "sync": false,
  4170. "_synced": {
  4171. "default": false,
  4172. "serializable": false
  4173. }
  4174. },
  4175. {
  4176. "__type__": "cc.PrefabInfo",
  4177. "root": {
  4178. "__id__": 99
  4179. },
  4180. "asset": {
  4181. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  4182. },
  4183. "fileId": "cel8iaV65FGZQZRd3nR1g6",
  4184. "sync": false,
  4185. "_synced": {
  4186. "default": false,
  4187. "serializable": false
  4188. }
  4189. },
  4190. {
  4191. "__type__": "cc.PrefabInfo",
  4192. "root": {
  4193. "__id__": 99
  4194. },
  4195. "asset": {
  4196. "__uuid__": "fabdf190-4614-47c7-8d6f-5843c53e96a6"
  4197. },
  4198. "fileId": "46iZ0LWg1I4IzKPY7y4HmM",
  4199. "sync": false,
  4200. "_synced": {
  4201. "default": false,
  4202. "serializable": false
  4203. }
  4204. },
  4205. {
  4206. "__type__": "cc.SceneGlobals",
  4207. "ambient": {
  4208. "__id__": 150
  4209. },
  4210. "planarShadows": {
  4211. "__id__": 151
  4212. },
  4213. "_skybox": {
  4214. "__id__": 152
  4215. }
  4216. },
  4217. {
  4218. "__type__": "cc.AmbientInfo",
  4219. "_skyColor": {
  4220. "__type__": "cc.Color",
  4221. "r": 51,
  4222. "g": 128,
  4223. "b": 204,
  4224. "a": 1
  4225. },
  4226. "_skyIllum": 20000,
  4227. "_groundAlbedo": {
  4228. "__type__": "cc.Color",
  4229. "r": 51,
  4230. "g": 51,
  4231. "b": 51,
  4232. "a": 255
  4233. }
  4234. },
  4235. {
  4236. "__type__": "cc.PlanarShadowInfo",
  4237. "_enabled": false,
  4238. "_normal": {
  4239. "__type__": "cc.Vec3",
  4240. "x": 0,
  4241. "y": 1,
  4242. "z": 0
  4243. },
  4244. "_distance": 0,
  4245. "_shadowColor": {
  4246. "__type__": "cc.Color",
  4247. "r": 0,
  4248. "g": 0,
  4249. "b": 0,
  4250. "a": 76
  4251. }
  4252. },
  4253. {
  4254. "__type__": "cc.SkyboxInfo",
  4255. "_envmap": null,
  4256. "_isRGBE": false,
  4257. "_enabled": false,
  4258. "_useIBL": false
  4259. }
  4260. ]