FightingScene.scene 78 KB

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