FightingScene.scene 79 KB

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