FightingScene.scene 79 KB

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