2d0d9d79-af76-426f-8abd-3eeff0d4e1c3.json 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "game",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "game",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 5
  24. },
  25. {
  26. "__id__": 7
  27. },
  28. {
  29. "__id__": 10
  30. },
  31. {
  32. "__id__": 23
  33. },
  34. {
  35. "__id__": 32
  36. },
  37. {
  38. "__id__": 64
  39. },
  40. {
  41. "__id__": 75
  42. },
  43. {
  44. "__id__": 83
  45. },
  46. {
  47. "__id__": 47
  48. },
  49. {
  50. "__id__": 56
  51. },
  52. {
  53. "__id__": 70
  54. },
  55. {
  56. "__id__": 71
  57. },
  58. {
  59. "__id__": 93
  60. },
  61. {
  62. "__id__": 26
  63. }
  64. ],
  65. "_active": true,
  66. "_components": [],
  67. "_prefab": null,
  68. "_lpos": {
  69. "__type__": "cc.Vec3",
  70. "x": 0,
  71. "y": 0,
  72. "z": 0
  73. },
  74. "_lrot": {
  75. "__type__": "cc.Quat",
  76. "x": 0,
  77. "y": 0,
  78. "z": 0,
  79. "w": 1
  80. },
  81. "_lscale": {
  82. "__type__": "cc.Vec3",
  83. "x": 1,
  84. "y": 1,
  85. "z": 1
  86. },
  87. "_mobility": 0,
  88. "_layer": 1073741824,
  89. "_euler": {
  90. "__type__": "cc.Vec3",
  91. "x": 0,
  92. "y": 0,
  93. "z": 0
  94. },
  95. "autoReleaseAssets": false,
  96. "_globals": {
  97. "__id__": 95
  98. },
  99. "_id": "2d0d9d79-af76-426f-8abd-3eeff0d4e1c3"
  100. },
  101. {
  102. "__type__": "cc.Node",
  103. "_name": "Main Light",
  104. "_objFlags": 0,
  105. "__editorExtras__": {},
  106. "_parent": {
  107. "__id__": 1
  108. },
  109. "_children": [],
  110. "_active": true,
  111. "_components": [
  112. {
  113. "__id__": 3
  114. }
  115. ],
  116. "_prefab": null,
  117. "_lpos": {
  118. "__type__": "cc.Vec3",
  119. "x": 0,
  120. "y": 0,
  121. "z": 0
  122. },
  123. "_lrot": {
  124. "__type__": "cc.Quat",
  125. "x": -0.7071067811865475,
  126. "y": 0,
  127. "z": 0,
  128. "w": 0.7071067811865476
  129. },
  130. "_lscale": {
  131. "__type__": "cc.Vec3",
  132. "x": 1,
  133. "y": 1,
  134. "z": 1
  135. },
  136. "_mobility": 0,
  137. "_layer": 1073741824,
  138. "_euler": {
  139. "__type__": "cc.Vec3",
  140. "x": -90,
  141. "y": 0,
  142. "z": 0
  143. },
  144. "_id": "c0y6F5f+pAvI805TdmxIjx"
  145. },
  146. {
  147. "__type__": "cc.DirectionalLight",
  148. "_name": "",
  149. "_objFlags": 0,
  150. "__editorExtras__": {},
  151. "node": {
  152. "__id__": 2
  153. },
  154. "_enabled": true,
  155. "__prefab": null,
  156. "_color": {
  157. "__type__": "cc.Color",
  158. "r": 213,
  159. "g": 213,
  160. "b": 213,
  161. "a": 255
  162. },
  163. "_useColorTemperature": false,
  164. "_colorTemperature": 6550,
  165. "_staticSettings": {
  166. "__id__": 4
  167. },
  168. "_visibility": -325058561,
  169. "_illuminanceHDR": 60000,
  170. "_illuminance": 60000,
  171. "_illuminanceLDR": 1.6927083333333335,
  172. "_shadowEnabled": true,
  173. "_shadowPcf": 0,
  174. "_shadowBias": 0.00001,
  175. "_shadowNormalBias": 0,
  176. "_shadowSaturation": 1,
  177. "_shadowDistance": 50,
  178. "_shadowInvisibleOcclusionRange": 200,
  179. "_csmLevel": 4,
  180. "_csmLayerLambda": 0.75,
  181. "_csmOptimizationMode": 2,
  182. "_csmAdvancedOptions": false,
  183. "_csmLayersTransition": false,
  184. "_csmTransitionRange": 0.05,
  185. "_shadowFixedArea": false,
  186. "_shadowNear": 0.1,
  187. "_shadowFar": 10,
  188. "_shadowOrthoSize": 5,
  189. "_id": "597uMYCbhEtJQc0ffJlcgA"
  190. },
  191. {
  192. "__type__": "cc.StaticLightSettings",
  193. "_baked": false,
  194. "_editorOnly": false,
  195. "_castShadow": false
  196. },
  197. {
  198. "__type__": "cc.Node",
  199. "_name": "Main Camera",
  200. "_objFlags": 0,
  201. "__editorExtras__": {},
  202. "_parent": {
  203. "__id__": 1
  204. },
  205. "_children": [],
  206. "_active": true,
  207. "_components": [
  208. {
  209. "__id__": 6
  210. }
  211. ],
  212. "_prefab": null,
  213. "_lpos": {
  214. "__type__": "cc.Vec3",
  215. "x": 0,
  216. "y": 25,
  217. "z": 0
  218. },
  219. "_lrot": {
  220. "__type__": "cc.Quat",
  221. "x": -0.7071067811865475,
  222. "y": 0,
  223. "z": 0,
  224. "w": 0.7071067811865476
  225. },
  226. "_lscale": {
  227. "__type__": "cc.Vec3",
  228. "x": 1,
  229. "y": 1,
  230. "z": 1
  231. },
  232. "_mobility": 0,
  233. "_layer": 1,
  234. "_euler": {
  235. "__type__": "cc.Vec3",
  236. "x": -90,
  237. "y": 0,
  238. "z": 0
  239. },
  240. "_id": "c9DMICJLFO5IeO07EPon7U"
  241. },
  242. {
  243. "__type__": "cc.Camera",
  244. "_name": "",
  245. "_objFlags": 0,
  246. "__editorExtras__": {},
  247. "node": {
  248. "__id__": 5
  249. },
  250. "_enabled": true,
  251. "__prefab": null,
  252. "_projection": 0,
  253. "_priority": 3,
  254. "_fov": 45,
  255. "_fovAxis": 0,
  256. "_orthoHeight": 9.5,
  257. "_near": 1,
  258. "_far": 1000,
  259. "_color": {
  260. "__type__": "cc.Color",
  261. "r": 51,
  262. "g": 51,
  263. "b": 51,
  264. "a": 255
  265. },
  266. "_depth": 1,
  267. "_stencil": 0,
  268. "_clearFlags": 0,
  269. "_rect": {
  270. "__type__": "cc.Rect",
  271. "x": 0,
  272. "y": 0,
  273. "width": 1,
  274. "height": 1
  275. },
  276. "_aperture": 19,
  277. "_shutter": 7,
  278. "_iso": 0,
  279. "_screenScale": 1,
  280. "_visibility": 1048577,
  281. "_targetTexture": null,
  282. "_postProcess": null,
  283. "_usePostProcess": false,
  284. "_cameraType": -1,
  285. "_trackingType": 0,
  286. "_id": "7dWQTpwS5LrIHnc1zAPUtf"
  287. },
  288. {
  289. "__type__": "cc.Node",
  290. "_name": "Plane",
  291. "_objFlags": 0,
  292. "__editorExtras__": {},
  293. "_parent": {
  294. "__id__": 1
  295. },
  296. "_children": [],
  297. "_active": true,
  298. "_components": [
  299. {
  300. "__id__": 8
  301. },
  302. {
  303. "__id__": 9
  304. }
  305. ],
  306. "_prefab": null,
  307. "_lpos": {
  308. "__type__": "cc.Vec3",
  309. "x": 0,
  310. "y": 0,
  311. "z": 0.242
  312. },
  313. "_lrot": {
  314. "__type__": "cc.Quat",
  315. "x": 0,
  316. "y": 0,
  317. "z": 0,
  318. "w": 1
  319. },
  320. "_lscale": {
  321. "__type__": "cc.Vec3",
  322. "x": 0.8,
  323. "y": 1,
  324. "z": 0.8
  325. },
  326. "_mobility": 0,
  327. "_layer": 1048576,
  328. "_euler": {
  329. "__type__": "cc.Vec3",
  330. "x": 0,
  331. "y": 0,
  332. "z": 0
  333. },
  334. "_id": "72UApiG6RN5JNrOz6hZQSy"
  335. },
  336. {
  337. "__type__": "cc.RigidBody",
  338. "_name": "",
  339. "_objFlags": 0,
  340. "__editorExtras__": {},
  341. "node": {
  342. "__id__": 7
  343. },
  344. "_enabled": true,
  345. "__prefab": null,
  346. "_group": 4,
  347. "_type": 2,
  348. "_mass": 30,
  349. "_allowSleep": true,
  350. "_linearDamping": 0.1,
  351. "_angularDamping": 0.1,
  352. "_useGravity": false,
  353. "_linearFactor": {
  354. "__type__": "cc.Vec3",
  355. "x": 1,
  356. "y": 1,
  357. "z": 1
  358. },
  359. "_angularFactor": {
  360. "__type__": "cc.Vec3",
  361. "x": 1,
  362. "y": 1,
  363. "z": 1
  364. },
  365. "_id": "a62aD1/GdKRIHUtNGOG8BT"
  366. },
  367. {
  368. "__type__": "cc.PlaneCollider",
  369. "_name": "",
  370. "_objFlags": 0,
  371. "__editorExtras__": {},
  372. "node": {
  373. "__id__": 7
  374. },
  375. "_enabled": true,
  376. "__prefab": null,
  377. "_material": null,
  378. "_isTrigger": false,
  379. "_center": {
  380. "__type__": "cc.Vec3",
  381. "x": 0,
  382. "y": 0,
  383. "z": 0
  384. },
  385. "_normal": {
  386. "__type__": "cc.Vec3",
  387. "x": 0,
  388. "y": 1,
  389. "z": 0
  390. },
  391. "_constant": 0,
  392. "_id": "70yAw7vB1BGJ4gkLouCCpl"
  393. },
  394. {
  395. "__type__": "cc.Node",
  396. "_name": "Wall",
  397. "_objFlags": 0,
  398. "__editorExtras__": {},
  399. "_parent": {
  400. "__id__": 1
  401. },
  402. "_children": [
  403. {
  404. "__id__": 11
  405. },
  406. {
  407. "__id__": 14
  408. },
  409. {
  410. "__id__": 17
  411. },
  412. {
  413. "__id__": 20
  414. }
  415. ],
  416. "_active": true,
  417. "_components": [],
  418. "_prefab": null,
  419. "_lpos": {
  420. "__type__": "cc.Vec3",
  421. "x": 0,
  422. "y": 0,
  423. "z": 0.242
  424. },
  425. "_lrot": {
  426. "__type__": "cc.Quat",
  427. "x": 0,
  428. "y": 0,
  429. "z": 0,
  430. "w": 1
  431. },
  432. "_lscale": {
  433. "__type__": "cc.Vec3",
  434. "x": 1,
  435. "y": 1,
  436. "z": 1
  437. },
  438. "_mobility": 0,
  439. "_layer": 1048576,
  440. "_euler": {
  441. "__type__": "cc.Vec3",
  442. "x": 0,
  443. "y": 0,
  444. "z": 0
  445. },
  446. "_id": "1aV/pwjKxLIZg/J99LLmG7"
  447. },
  448. {
  449. "__type__": "cc.Node",
  450. "_name": "wall_1",
  451. "_objFlags": 0,
  452. "__editorExtras__": {},
  453. "_parent": {
  454. "__id__": 10
  455. },
  456. "_children": [],
  457. "_active": true,
  458. "_components": [
  459. {
  460. "__id__": 12
  461. },
  462. {
  463. "__id__": 13
  464. }
  465. ],
  466. "_prefab": null,
  467. "_lpos": {
  468. "__type__": "cc.Vec3",
  469. "x": -4.692,
  470. "y": 0,
  471. "z": -1.114
  472. },
  473. "_lrot": {
  474. "__type__": "cc.Quat",
  475. "x": 0,
  476. "y": 0,
  477. "z": 0,
  478. "w": 1
  479. },
  480. "_lscale": {
  481. "__type__": "cc.Vec3",
  482. "x": 1,
  483. "y": 10,
  484. "z": 1
  485. },
  486. "_mobility": 0,
  487. "_layer": 1048576,
  488. "_euler": {
  489. "__type__": "cc.Vec3",
  490. "x": 0,
  491. "y": 0,
  492. "z": 0
  493. },
  494. "_id": "1fdbBxH8JOCK+GizXrXxYo"
  495. },
  496. {
  497. "__type__": "cc.BoxCollider",
  498. "_name": "",
  499. "_objFlags": 0,
  500. "__editorExtras__": {},
  501. "node": {
  502. "__id__": 11
  503. },
  504. "_enabled": true,
  505. "__prefab": null,
  506. "_material": null,
  507. "_isTrigger": false,
  508. "_center": {
  509. "__type__": "cc.Vec3",
  510. "x": 0,
  511. "y": 0,
  512. "z": 0
  513. },
  514. "_size": {
  515. "__type__": "cc.Vec3",
  516. "x": 1,
  517. "y": 1.994,
  518. "z": 17.957
  519. },
  520. "_id": "12ImR/JWxMxLwQqJ/i5rbj"
  521. },
  522. {
  523. "__type__": "cc.RigidBody",
  524. "_name": "",
  525. "_objFlags": 0,
  526. "__editorExtras__": {},
  527. "node": {
  528. "__id__": 11
  529. },
  530. "_enabled": true,
  531. "__prefab": null,
  532. "_group": 4,
  533. "_type": 2,
  534. "_mass": 1,
  535. "_allowSleep": true,
  536. "_linearDamping": 0.1,
  537. "_angularDamping": 0.1,
  538. "_useGravity": true,
  539. "_linearFactor": {
  540. "__type__": "cc.Vec3",
  541. "x": 1,
  542. "y": 1,
  543. "z": 1
  544. },
  545. "_angularFactor": {
  546. "__type__": "cc.Vec3",
  547. "x": 1,
  548. "y": 1,
  549. "z": 1
  550. },
  551. "_id": "45JLyLlhxMT7sKk8dlJ/EY"
  552. },
  553. {
  554. "__type__": "cc.Node",
  555. "_name": "wall_2",
  556. "_objFlags": 0,
  557. "__editorExtras__": {},
  558. "_parent": {
  559. "__id__": 10
  560. },
  561. "_children": [],
  562. "_active": true,
  563. "_components": [
  564. {
  565. "__id__": 15
  566. },
  567. {
  568. "__id__": 16
  569. }
  570. ],
  571. "_prefab": null,
  572. "_lpos": {
  573. "__type__": "cc.Vec3",
  574. "x": 4.675,
  575. "y": 0,
  576. "z": -0.926
  577. },
  578. "_lrot": {
  579. "__type__": "cc.Quat",
  580. "x": 0,
  581. "y": 0,
  582. "z": 0,
  583. "w": 1
  584. },
  585. "_lscale": {
  586. "__type__": "cc.Vec3",
  587. "x": 1,
  588. "y": 10,
  589. "z": 1
  590. },
  591. "_mobility": 0,
  592. "_layer": 1048576,
  593. "_euler": {
  594. "__type__": "cc.Vec3",
  595. "x": 0,
  596. "y": 0,
  597. "z": 0
  598. },
  599. "_id": "63DtaylldKZ5h1ztxOA+fP"
  600. },
  601. {
  602. "__type__": "cc.BoxCollider",
  603. "_name": "",
  604. "_objFlags": 0,
  605. "__editorExtras__": {},
  606. "node": {
  607. "__id__": 14
  608. },
  609. "_enabled": true,
  610. "__prefab": null,
  611. "_material": null,
  612. "_isTrigger": false,
  613. "_center": {
  614. "__type__": "cc.Vec3",
  615. "x": 0,
  616. "y": 0,
  617. "z": 0
  618. },
  619. "_size": {
  620. "__type__": "cc.Vec3",
  621. "x": 1,
  622. "y": 2.187,
  623. "z": 15.099
  624. },
  625. "_id": "62phSnl19LTqCUypYOUG6+"
  626. },
  627. {
  628. "__type__": "cc.RigidBody",
  629. "_name": "",
  630. "_objFlags": 0,
  631. "__editorExtras__": {},
  632. "node": {
  633. "__id__": 14
  634. },
  635. "_enabled": true,
  636. "__prefab": null,
  637. "_group": 4,
  638. "_type": 2,
  639. "_mass": 1,
  640. "_allowSleep": true,
  641. "_linearDamping": 0.1,
  642. "_angularDamping": 0.1,
  643. "_useGravity": true,
  644. "_linearFactor": {
  645. "__type__": "cc.Vec3",
  646. "x": 1,
  647. "y": 1,
  648. "z": 1
  649. },
  650. "_angularFactor": {
  651. "__type__": "cc.Vec3",
  652. "x": 1,
  653. "y": 1,
  654. "z": 1
  655. },
  656. "_id": "fcTzPXNyJDk6BWETdPa6Jq"
  657. },
  658. {
  659. "__type__": "cc.Node",
  660. "_name": "wall_3",
  661. "_objFlags": 0,
  662. "__editorExtras__": {},
  663. "_parent": {
  664. "__id__": 10
  665. },
  666. "_children": [],
  667. "_active": true,
  668. "_components": [
  669. {
  670. "__id__": 18
  671. },
  672. {
  673. "__id__": 19
  674. }
  675. ],
  676. "_prefab": null,
  677. "_lpos": {
  678. "__type__": "cc.Vec3",
  679. "x": 0.019,
  680. "y": 0,
  681. "z": -5.256
  682. },
  683. "_lrot": {
  684. "__type__": "cc.Quat",
  685. "x": 0,
  686. "y": 0.7071067811865475,
  687. "z": 0,
  688. "w": 0.7071067811865476
  689. },
  690. "_lscale": {
  691. "__type__": "cc.Vec3",
  692. "x": 1,
  693. "y": 10,
  694. "z": 1
  695. },
  696. "_mobility": 0,
  697. "_layer": 1048576,
  698. "_euler": {
  699. "__type__": "cc.Vec3",
  700. "x": 0,
  701. "y": 90,
  702. "z": 0
  703. },
  704. "_id": "43mpxeUZ5GnosHNsLRAX/9"
  705. },
  706. {
  707. "__type__": "cc.BoxCollider",
  708. "_name": "",
  709. "_objFlags": 0,
  710. "__editorExtras__": {},
  711. "node": {
  712. "__id__": 17
  713. },
  714. "_enabled": true,
  715. "__prefab": null,
  716. "_material": null,
  717. "_isTrigger": false,
  718. "_center": {
  719. "__type__": "cc.Vec3",
  720. "x": 0,
  721. "y": 0,
  722. "z": 0
  723. },
  724. "_size": {
  725. "__type__": "cc.Vec3",
  726. "x": 1,
  727. "y": 2.019,
  728. "z": 16.646
  729. },
  730. "_id": "f8SNz9TRhI3IauY3mvDuLo"
  731. },
  732. {
  733. "__type__": "cc.RigidBody",
  734. "_name": "",
  735. "_objFlags": 0,
  736. "__editorExtras__": {},
  737. "node": {
  738. "__id__": 17
  739. },
  740. "_enabled": true,
  741. "__prefab": null,
  742. "_group": 4,
  743. "_type": 2,
  744. "_mass": 1,
  745. "_allowSleep": true,
  746. "_linearDamping": 0.1,
  747. "_angularDamping": 0.1,
  748. "_useGravity": true,
  749. "_linearFactor": {
  750. "__type__": "cc.Vec3",
  751. "x": 1,
  752. "y": 1,
  753. "z": 1
  754. },
  755. "_angularFactor": {
  756. "__type__": "cc.Vec3",
  757. "x": 1,
  758. "y": 1,
  759. "z": 1
  760. },
  761. "_id": "5eNQN1Le9P2KybSP/Zgacv"
  762. },
  763. {
  764. "__type__": "cc.Node",
  765. "_name": "wall_4",
  766. "_objFlags": 0,
  767. "__editorExtras__": {},
  768. "_parent": {
  769. "__id__": 10
  770. },
  771. "_children": [],
  772. "_active": true,
  773. "_components": [
  774. {
  775. "__id__": 21
  776. },
  777. {
  778. "__id__": 22
  779. }
  780. ],
  781. "_prefab": null,
  782. "_lpos": {
  783. "__type__": "cc.Vec3",
  784. "x": -0.019,
  785. "y": 0,
  786. "z": 6.195
  787. },
  788. "_lrot": {
  789. "__type__": "cc.Quat",
  790. "x": 0,
  791. "y": 0.7071067811865475,
  792. "z": 0,
  793. "w": 0.7071067811865476
  794. },
  795. "_lscale": {
  796. "__type__": "cc.Vec3",
  797. "x": 1,
  798. "y": 10,
  799. "z": 1
  800. },
  801. "_mobility": 0,
  802. "_layer": 1048576,
  803. "_euler": {
  804. "__type__": "cc.Vec3",
  805. "x": 0,
  806. "y": 90,
  807. "z": 0
  808. },
  809. "_id": "59ssmMBEBJ8rUvAJV8tW8N"
  810. },
  811. {
  812. "__type__": "cc.BoxCollider",
  813. "_name": "",
  814. "_objFlags": 0,
  815. "__editorExtras__": {},
  816. "node": {
  817. "__id__": 20
  818. },
  819. "_enabled": true,
  820. "__prefab": null,
  821. "_material": null,
  822. "_isTrigger": false,
  823. "_center": {
  824. "__type__": "cc.Vec3",
  825. "x": 0,
  826. "y": 0,
  827. "z": 0
  828. },
  829. "_size": {
  830. "__type__": "cc.Vec3",
  831. "x": 0.5,
  832. "y": 2.215,
  833. "z": 16.677
  834. },
  835. "_id": "8cZ6cQcudF2Khm/+2y0N+7"
  836. },
  837. {
  838. "__type__": "cc.RigidBody",
  839. "_name": "",
  840. "_objFlags": 0,
  841. "__editorExtras__": {},
  842. "node": {
  843. "__id__": 20
  844. },
  845. "_enabled": true,
  846. "__prefab": null,
  847. "_group": 4,
  848. "_type": 2,
  849. "_mass": 1,
  850. "_allowSleep": true,
  851. "_linearDamping": 0.1,
  852. "_angularDamping": 0.1,
  853. "_useGravity": true,
  854. "_linearFactor": {
  855. "__type__": "cc.Vec3",
  856. "x": 1,
  857. "y": 1,
  858. "z": 1
  859. },
  860. "_angularFactor": {
  861. "__type__": "cc.Vec3",
  862. "x": 1,
  863. "y": 1,
  864. "z": 1
  865. },
  866. "_id": "e76li/DwBFybE1+6n9LpTv"
  867. },
  868. {
  869. "__type__": "cc.Node",
  870. "_name": "CreateIdiom",
  871. "_objFlags": 0,
  872. "__editorExtras__": {},
  873. "_parent": {
  874. "__id__": 1
  875. },
  876. "_children": [],
  877. "_active": true,
  878. "_components": [
  879. {
  880. "__id__": 24
  881. }
  882. ],
  883. "_prefab": null,
  884. "_lpos": {
  885. "__type__": "cc.Vec3",
  886. "x": 0,
  887. "y": 5,
  888. "z": 0.15
  889. },
  890. "_lrot": {
  891. "__type__": "cc.Quat",
  892. "x": 0,
  893. "y": 0,
  894. "z": 0,
  895. "w": 1
  896. },
  897. "_lscale": {
  898. "__type__": "cc.Vec3",
  899. "x": 1,
  900. "y": 1,
  901. "z": 1
  902. },
  903. "_mobility": 0,
  904. "_layer": 1073741824,
  905. "_euler": {
  906. "__type__": "cc.Vec3",
  907. "x": 0,
  908. "y": 0,
  909. "z": 0
  910. },
  911. "_id": "d6HInZ0ShOwa2F1LFe2ddp"
  912. },
  913. {
  914. "__type__": "3b901oU5ZJHnp8TtJiYjZWZ",
  915. "_name": "",
  916. "_objFlags": 0,
  917. "__editorExtras__": {},
  918. "node": {
  919. "__id__": 23
  920. },
  921. "_enabled": true,
  922. "__prefab": null,
  923. "startPos": [
  924. {
  925. "__id__": 25
  926. },
  927. {
  928. "__id__": 27
  929. },
  930. {
  931. "__id__": 28
  932. },
  933. {
  934. "__id__": 29
  935. },
  936. {
  937. "__id__": 30
  938. },
  939. {
  940. "__id__": 31
  941. }
  942. ],
  943. "_id": "efM5v8ZlVIJbIGOUQXJc5T"
  944. },
  945. {
  946. "__type__": "cc.Node",
  947. "_name": "Pos1",
  948. "_objFlags": 0,
  949. "__editorExtras__": {},
  950. "_parent": {
  951. "__id__": 26
  952. },
  953. "_children": [],
  954. "_active": true,
  955. "_components": [],
  956. "_prefab": null,
  957. "_lpos": {
  958. "__type__": "cc.Vec3",
  959. "x": -2.088,
  960. "y": 1,
  961. "z": -2.969
  962. },
  963. "_lrot": {
  964. "__type__": "cc.Quat",
  965. "x": 0,
  966. "y": 0,
  967. "z": 0,
  968. "w": 1
  969. },
  970. "_lscale": {
  971. "__type__": "cc.Vec3",
  972. "x": 1,
  973. "y": 1,
  974. "z": 1
  975. },
  976. "_mobility": 0,
  977. "_layer": 1073741824,
  978. "_euler": {
  979. "__type__": "cc.Vec3",
  980. "x": 0,
  981. "y": 0,
  982. "z": 0
  983. },
  984. "_id": "68fzHI8UJPZqRdZNzvU92E"
  985. },
  986. {
  987. "__type__": "cc.Node",
  988. "_name": "Guide_Level",
  989. "_objFlags": 0,
  990. "__editorExtras__": {},
  991. "_parent": {
  992. "__id__": 1
  993. },
  994. "_children": [
  995. {
  996. "__id__": 25
  997. },
  998. {
  999. "__id__": 27
  1000. },
  1001. {
  1002. "__id__": 28
  1003. },
  1004. {
  1005. "__id__": 29
  1006. },
  1007. {
  1008. "__id__": 30
  1009. },
  1010. {
  1011. "__id__": 31
  1012. }
  1013. ],
  1014. "_active": true,
  1015. "_components": [],
  1016. "_prefab": null,
  1017. "_lpos": {
  1018. "__type__": "cc.Vec3",
  1019. "x": 0,
  1020. "y": 0,
  1021. "z": 0
  1022. },
  1023. "_lrot": {
  1024. "__type__": "cc.Quat",
  1025. "x": 0,
  1026. "y": 0,
  1027. "z": 0,
  1028. "w": 1
  1029. },
  1030. "_lscale": {
  1031. "__type__": "cc.Vec3",
  1032. "x": 1,
  1033. "y": 1,
  1034. "z": 1
  1035. },
  1036. "_mobility": 0,
  1037. "_layer": 1073741824,
  1038. "_euler": {
  1039. "__type__": "cc.Vec3",
  1040. "x": 0,
  1041. "y": 0,
  1042. "z": 0
  1043. },
  1044. "_id": "02EFxTXvtEaqy6T8Rs4W3W"
  1045. },
  1046. {
  1047. "__type__": "cc.Node",
  1048. "_name": "Pos2",
  1049. "_objFlags": 0,
  1050. "__editorExtras__": {},
  1051. "_parent": {
  1052. "__id__": 26
  1053. },
  1054. "_children": [],
  1055. "_active": true,
  1056. "_components": [],
  1057. "_prefab": null,
  1058. "_lpos": {
  1059. "__type__": "cc.Vec3",
  1060. "x": 2.257,
  1061. "y": 1,
  1062. "z": 4.185
  1063. },
  1064. "_lrot": {
  1065. "__type__": "cc.Quat",
  1066. "x": 0,
  1067. "y": 0,
  1068. "z": 0,
  1069. "w": 1
  1070. },
  1071. "_lscale": {
  1072. "__type__": "cc.Vec3",
  1073. "x": 1,
  1074. "y": 1,
  1075. "z": 1
  1076. },
  1077. "_mobility": 0,
  1078. "_layer": 1073741824,
  1079. "_euler": {
  1080. "__type__": "cc.Vec3",
  1081. "x": 0,
  1082. "y": 0,
  1083. "z": 0
  1084. },
  1085. "_id": "b8pmZLW4BNyqs0BDfv0NxT"
  1086. },
  1087. {
  1088. "__type__": "cc.Node",
  1089. "_name": "Pos3",
  1090. "_objFlags": 0,
  1091. "__editorExtras__": {},
  1092. "_parent": {
  1093. "__id__": 26
  1094. },
  1095. "_children": [],
  1096. "_active": true,
  1097. "_components": [],
  1098. "_prefab": null,
  1099. "_lpos": {
  1100. "__type__": "cc.Vec3",
  1101. "x": -2.716,
  1102. "y": 1,
  1103. "z": 3.865
  1104. },
  1105. "_lrot": {
  1106. "__type__": "cc.Quat",
  1107. "x": 0,
  1108. "y": 0,
  1109. "z": 0,
  1110. "w": 1
  1111. },
  1112. "_lscale": {
  1113. "__type__": "cc.Vec3",
  1114. "x": 1,
  1115. "y": 1,
  1116. "z": 1
  1117. },
  1118. "_mobility": 0,
  1119. "_layer": 1073741824,
  1120. "_euler": {
  1121. "__type__": "cc.Vec3",
  1122. "x": 0,
  1123. "y": 0,
  1124. "z": 0
  1125. },
  1126. "_id": "cbMC0tzaBFcaQknaKglwdl"
  1127. },
  1128. {
  1129. "__type__": "cc.Node",
  1130. "_name": "Pos4",
  1131. "_objFlags": 0,
  1132. "__editorExtras__": {},
  1133. "_parent": {
  1134. "__id__": 26
  1135. },
  1136. "_children": [],
  1137. "_active": true,
  1138. "_components": [],
  1139. "_prefab": null,
  1140. "_lpos": {
  1141. "__type__": "cc.Vec3",
  1142. "x": 2.301,
  1143. "y": 1,
  1144. "z": -1.729
  1145. },
  1146. "_lrot": {
  1147. "__type__": "cc.Quat",
  1148. "x": 0,
  1149. "y": 0,
  1150. "z": 0,
  1151. "w": 1
  1152. },
  1153. "_lscale": {
  1154. "__type__": "cc.Vec3",
  1155. "x": 1,
  1156. "y": 1,
  1157. "z": 1
  1158. },
  1159. "_mobility": 0,
  1160. "_layer": 1073741824,
  1161. "_euler": {
  1162. "__type__": "cc.Vec3",
  1163. "x": 0,
  1164. "y": 0,
  1165. "z": 0
  1166. },
  1167. "_id": "0aA/mm7SJBtahHtJeoktEw"
  1168. },
  1169. {
  1170. "__type__": "cc.Node",
  1171. "_name": "Pos5",
  1172. "_objFlags": 0,
  1173. "__editorExtras__": {},
  1174. "_parent": {
  1175. "__id__": 26
  1176. },
  1177. "_children": [],
  1178. "_active": true,
  1179. "_components": [],
  1180. "_prefab": null,
  1181. "_lpos": {
  1182. "__type__": "cc.Vec3",
  1183. "x": -3.836,
  1184. "y": 1,
  1185. "z": 0
  1186. },
  1187. "_lrot": {
  1188. "__type__": "cc.Quat",
  1189. "x": 0,
  1190. "y": 0,
  1191. "z": 0,
  1192. "w": 1
  1193. },
  1194. "_lscale": {
  1195. "__type__": "cc.Vec3",
  1196. "x": 1,
  1197. "y": 1,
  1198. "z": 1
  1199. },
  1200. "_mobility": 0,
  1201. "_layer": 1073741824,
  1202. "_euler": {
  1203. "__type__": "cc.Vec3",
  1204. "x": 0,
  1205. "y": 0,
  1206. "z": 0
  1207. },
  1208. "_id": "36Y6yv6Q9Fd67urMdDkKPy"
  1209. },
  1210. {
  1211. "__type__": "cc.Node",
  1212. "_name": "Pos6",
  1213. "_objFlags": 0,
  1214. "__editorExtras__": {},
  1215. "_parent": {
  1216. "__id__": 26
  1217. },
  1218. "_children": [],
  1219. "_active": true,
  1220. "_components": [],
  1221. "_prefab": null,
  1222. "_lpos": {
  1223. "__type__": "cc.Vec3",
  1224. "x": 0,
  1225. "y": 1,
  1226. "z": 2.568
  1227. },
  1228. "_lrot": {
  1229. "__type__": "cc.Quat",
  1230. "x": 0,
  1231. "y": 0,
  1232. "z": 0,
  1233. "w": 1
  1234. },
  1235. "_lscale": {
  1236. "__type__": "cc.Vec3",
  1237. "x": 1,
  1238. "y": 1,
  1239. "z": 1
  1240. },
  1241. "_mobility": 0,
  1242. "_layer": 1073741824,
  1243. "_euler": {
  1244. "__type__": "cc.Vec3",
  1245. "x": 0,
  1246. "y": 0,
  1247. "z": 0
  1248. },
  1249. "_id": "8fJoWHdc5NOYLRX69U7qvo"
  1250. },
  1251. {
  1252. "__type__": "cc.Node",
  1253. "_name": "Container",
  1254. "_objFlags": 0,
  1255. "__editorExtras__": {},
  1256. "_parent": {
  1257. "__id__": 1
  1258. },
  1259. "_children": [
  1260. {
  1261. "__id__": 33
  1262. },
  1263. {
  1264. "__id__": 34
  1265. },
  1266. {
  1267. "__id__": 35
  1268. },
  1269. {
  1270. "__id__": 36
  1271. },
  1272. {
  1273. "__id__": 37
  1274. },
  1275. {
  1276. "__id__": 38
  1277. },
  1278. {
  1279. "__id__": 39
  1280. },
  1281. {
  1282. "__id__": 40
  1283. },
  1284. {
  1285. "__id__": 41
  1286. },
  1287. {
  1288. "__id__": 42
  1289. }
  1290. ],
  1291. "_active": true,
  1292. "_components": [
  1293. {
  1294. "__id__": 43
  1295. },
  1296. {
  1297. "__id__": 45
  1298. }
  1299. ],
  1300. "_prefab": null,
  1301. "_lpos": {
  1302. "__type__": "cc.Vec3",
  1303. "x": 0,
  1304. "y": 0.022,
  1305. "z": 7.219
  1306. },
  1307. "_lrot": {
  1308. "__type__": "cc.Quat",
  1309. "x": 0,
  1310. "y": 0,
  1311. "z": 0,
  1312. "w": 1
  1313. },
  1314. "_lscale": {
  1315. "__type__": "cc.Vec3",
  1316. "x": 8.3,
  1317. "y": 0.01,
  1318. "z": 1.2
  1319. },
  1320. "_mobility": 0,
  1321. "_layer": 1048576,
  1322. "_euler": {
  1323. "__type__": "cc.Vec3",
  1324. "x": 0,
  1325. "y": 0,
  1326. "z": 0
  1327. },
  1328. "_id": "f0GX3pCeZIV6FD3Ehumddf"
  1329. },
  1330. {
  1331. "__type__": "cc.Node",
  1332. "_name": "Cube-1",
  1333. "_objFlags": 0,
  1334. "__editorExtras__": {},
  1335. "_parent": {
  1336. "__id__": 32
  1337. },
  1338. "_children": [],
  1339. "_active": true,
  1340. "_components": [],
  1341. "_prefab": null,
  1342. "_lpos": {
  1343. "__type__": "cc.Vec3",
  1344. "x": -0.438,
  1345. "y": 1,
  1346. "z": -0.354
  1347. },
  1348. "_lrot": {
  1349. "__type__": "cc.Quat",
  1350. "x": 0,
  1351. "y": 0,
  1352. "z": 0,
  1353. "w": 1
  1354. },
  1355. "_lscale": {
  1356. "__type__": "cc.Vec3",
  1357. "x": 0.1,
  1358. "y": 1,
  1359. "z": 1
  1360. },
  1361. "_mobility": 0,
  1362. "_layer": 1048576,
  1363. "_euler": {
  1364. "__type__": "cc.Vec3",
  1365. "x": 0,
  1366. "y": 0,
  1367. "z": 0
  1368. },
  1369. "_id": "99aW5pfcJMP6pUGU86bbN7"
  1370. },
  1371. {
  1372. "__type__": "cc.Node",
  1373. "_name": "Cube-2",
  1374. "_objFlags": 0,
  1375. "__editorExtras__": {},
  1376. "_parent": {
  1377. "__id__": 32
  1378. },
  1379. "_children": [],
  1380. "_active": true,
  1381. "_components": [],
  1382. "_prefab": null,
  1383. "_lpos": {
  1384. "__type__": "cc.Vec3",
  1385. "x": -0.329,
  1386. "y": 1,
  1387. "z": -0.354
  1388. },
  1389. "_lrot": {
  1390. "__type__": "cc.Quat",
  1391. "x": 0,
  1392. "y": 0,
  1393. "z": 0,
  1394. "w": 1
  1395. },
  1396. "_lscale": {
  1397. "__type__": "cc.Vec3",
  1398. "x": 0.1,
  1399. "y": 1,
  1400. "z": 1
  1401. },
  1402. "_mobility": 0,
  1403. "_layer": 1048576,
  1404. "_euler": {
  1405. "__type__": "cc.Vec3",
  1406. "x": 0,
  1407. "y": 0,
  1408. "z": 0
  1409. },
  1410. "_id": "d62YPOJehC2ISNWjGXLXau"
  1411. },
  1412. {
  1413. "__type__": "cc.Node",
  1414. "_name": "Cube-3",
  1415. "_objFlags": 0,
  1416. "__editorExtras__": {},
  1417. "_parent": {
  1418. "__id__": 32
  1419. },
  1420. "_children": [],
  1421. "_active": true,
  1422. "_components": [],
  1423. "_prefab": null,
  1424. "_lpos": {
  1425. "__type__": "cc.Vec3",
  1426. "x": -0.22,
  1427. "y": 1,
  1428. "z": -0.354
  1429. },
  1430. "_lrot": {
  1431. "__type__": "cc.Quat",
  1432. "x": 0,
  1433. "y": 0,
  1434. "z": 0,
  1435. "w": 1
  1436. },
  1437. "_lscale": {
  1438. "__type__": "cc.Vec3",
  1439. "x": 0.1,
  1440. "y": 1,
  1441. "z": 1
  1442. },
  1443. "_mobility": 0,
  1444. "_layer": 1048576,
  1445. "_euler": {
  1446. "__type__": "cc.Vec3",
  1447. "x": 0,
  1448. "y": 0,
  1449. "z": 0
  1450. },
  1451. "_id": "a4qdABMLxPRKBB1WrSEAYS"
  1452. },
  1453. {
  1454. "__type__": "cc.Node",
  1455. "_name": "Cube-4",
  1456. "_objFlags": 0,
  1457. "__editorExtras__": {},
  1458. "_parent": {
  1459. "__id__": 32
  1460. },
  1461. "_children": [],
  1462. "_active": true,
  1463. "_components": [],
  1464. "_prefab": null,
  1465. "_lpos": {
  1466. "__type__": "cc.Vec3",
  1467. "x": -0.111,
  1468. "y": 1,
  1469. "z": -0.354
  1470. },
  1471. "_lrot": {
  1472. "__type__": "cc.Quat",
  1473. "x": 0,
  1474. "y": 0,
  1475. "z": 0,
  1476. "w": 1
  1477. },
  1478. "_lscale": {
  1479. "__type__": "cc.Vec3",
  1480. "x": 0.1,
  1481. "y": 1,
  1482. "z": 1
  1483. },
  1484. "_mobility": 0,
  1485. "_layer": 1048576,
  1486. "_euler": {
  1487. "__type__": "cc.Vec3",
  1488. "x": 0,
  1489. "y": 0,
  1490. "z": 0
  1491. },
  1492. "_id": "ceeYrvP6tKKIOzdpsWVYzK"
  1493. },
  1494. {
  1495. "__type__": "cc.Node",
  1496. "_name": "Cube-5",
  1497. "_objFlags": 0,
  1498. "__editorExtras__": {},
  1499. "_parent": {
  1500. "__id__": 32
  1501. },
  1502. "_children": [],
  1503. "_active": true,
  1504. "_components": [],
  1505. "_prefab": null,
  1506. "_lpos": {
  1507. "__type__": "cc.Vec3",
  1508. "x": -0.002,
  1509. "y": 1,
  1510. "z": -0.354
  1511. },
  1512. "_lrot": {
  1513. "__type__": "cc.Quat",
  1514. "x": 0,
  1515. "y": 0,
  1516. "z": 0,
  1517. "w": 1
  1518. },
  1519. "_lscale": {
  1520. "__type__": "cc.Vec3",
  1521. "x": 0.1,
  1522. "y": 1,
  1523. "z": 1
  1524. },
  1525. "_mobility": 0,
  1526. "_layer": 1048576,
  1527. "_euler": {
  1528. "__type__": "cc.Vec3",
  1529. "x": 0,
  1530. "y": 0,
  1531. "z": 0
  1532. },
  1533. "_id": "3dGYXjWPBNgK26wQmlVDNr"
  1534. },
  1535. {
  1536. "__type__": "cc.Node",
  1537. "_name": "Cube-6",
  1538. "_objFlags": 0,
  1539. "__editorExtras__": {},
  1540. "_parent": {
  1541. "__id__": 32
  1542. },
  1543. "_children": [],
  1544. "_active": true,
  1545. "_components": [],
  1546. "_prefab": null,
  1547. "_lpos": {
  1548. "__type__": "cc.Vec3",
  1549. "x": 0.107,
  1550. "y": 1,
  1551. "z": -0.354
  1552. },
  1553. "_lrot": {
  1554. "__type__": "cc.Quat",
  1555. "x": 0,
  1556. "y": 0,
  1557. "z": 0,
  1558. "w": 1
  1559. },
  1560. "_lscale": {
  1561. "__type__": "cc.Vec3",
  1562. "x": 0.1,
  1563. "y": 1,
  1564. "z": 1
  1565. },
  1566. "_mobility": 0,
  1567. "_layer": 1048576,
  1568. "_euler": {
  1569. "__type__": "cc.Vec3",
  1570. "x": 0,
  1571. "y": 0,
  1572. "z": 0
  1573. },
  1574. "_id": "43ayxvUI9MMbSQdT9LXJ3l"
  1575. },
  1576. {
  1577. "__type__": "cc.Node",
  1578. "_name": "Cube-7",
  1579. "_objFlags": 0,
  1580. "__editorExtras__": {},
  1581. "_parent": {
  1582. "__id__": 32
  1583. },
  1584. "_children": [],
  1585. "_active": true,
  1586. "_components": [],
  1587. "_prefab": null,
  1588. "_lpos": {
  1589. "__type__": "cc.Vec3",
  1590. "x": 0.216,
  1591. "y": 1,
  1592. "z": -0.354
  1593. },
  1594. "_lrot": {
  1595. "__type__": "cc.Quat",
  1596. "x": 0,
  1597. "y": 0,
  1598. "z": 0,
  1599. "w": 1
  1600. },
  1601. "_lscale": {
  1602. "__type__": "cc.Vec3",
  1603. "x": 0.1,
  1604. "y": 1,
  1605. "z": 1
  1606. },
  1607. "_mobility": 0,
  1608. "_layer": 1048576,
  1609. "_euler": {
  1610. "__type__": "cc.Vec3",
  1611. "x": 0,
  1612. "y": 0,
  1613. "z": 0
  1614. },
  1615. "_id": "70kjTNmahDQ6uBPi/Oa07q"
  1616. },
  1617. {
  1618. "__type__": "cc.Node",
  1619. "_name": "Cube-8",
  1620. "_objFlags": 0,
  1621. "__editorExtras__": {},
  1622. "_parent": {
  1623. "__id__": 32
  1624. },
  1625. "_children": [],
  1626. "_active": true,
  1627. "_components": [],
  1628. "_prefab": null,
  1629. "_lpos": {
  1630. "__type__": "cc.Vec3",
  1631. "x": 0.325,
  1632. "y": 1,
  1633. "z": -0.354
  1634. },
  1635. "_lrot": {
  1636. "__type__": "cc.Quat",
  1637. "x": 0,
  1638. "y": 0,
  1639. "z": 0,
  1640. "w": 1
  1641. },
  1642. "_lscale": {
  1643. "__type__": "cc.Vec3",
  1644. "x": 0.1,
  1645. "y": 1,
  1646. "z": 1
  1647. },
  1648. "_mobility": 0,
  1649. "_layer": 1048576,
  1650. "_euler": {
  1651. "__type__": "cc.Vec3",
  1652. "x": 0,
  1653. "y": 0,
  1654. "z": 0
  1655. },
  1656. "_id": "18yNJIp6dI2I9IPFaTQh+D"
  1657. },
  1658. {
  1659. "__type__": "cc.Node",
  1660. "_name": "Cube-9",
  1661. "_objFlags": 0,
  1662. "__editorExtras__": {},
  1663. "_parent": {
  1664. "__id__": 32
  1665. },
  1666. "_children": [],
  1667. "_active": true,
  1668. "_components": [],
  1669. "_prefab": null,
  1670. "_lpos": {
  1671. "__type__": "cc.Vec3",
  1672. "x": 0.434,
  1673. "y": 1,
  1674. "z": -0.354
  1675. },
  1676. "_lrot": {
  1677. "__type__": "cc.Quat",
  1678. "x": 0,
  1679. "y": 0,
  1680. "z": 0,
  1681. "w": 1
  1682. },
  1683. "_lscale": {
  1684. "__type__": "cc.Vec3",
  1685. "x": 0.1,
  1686. "y": 1,
  1687. "z": 1
  1688. },
  1689. "_mobility": 0,
  1690. "_layer": 1048576,
  1691. "_euler": {
  1692. "__type__": "cc.Vec3",
  1693. "x": 0,
  1694. "y": 0,
  1695. "z": 0
  1696. },
  1697. "_id": "ad0LgQ1P9LQYpS18pemSI3"
  1698. },
  1699. {
  1700. "__type__": "cc.Node",
  1701. "_name": "Cube-10",
  1702. "_objFlags": 0,
  1703. "__editorExtras__": {},
  1704. "_parent": {
  1705. "__id__": 32
  1706. },
  1707. "_children": [],
  1708. "_active": false,
  1709. "_components": [],
  1710. "_prefab": null,
  1711. "_lpos": {
  1712. "__type__": "cc.Vec3",
  1713. "x": 0.45,
  1714. "y": 1,
  1715. "z": 0
  1716. },
  1717. "_lrot": {
  1718. "__type__": "cc.Quat",
  1719. "x": 0,
  1720. "y": 0,
  1721. "z": 0,
  1722. "w": 1
  1723. },
  1724. "_lscale": {
  1725. "__type__": "cc.Vec3",
  1726. "x": 0.1,
  1727. "y": 1,
  1728. "z": 1
  1729. },
  1730. "_mobility": 0,
  1731. "_layer": 1048576,
  1732. "_euler": {
  1733. "__type__": "cc.Vec3",
  1734. "x": 0,
  1735. "y": 0,
  1736. "z": 0
  1737. },
  1738. "_id": "ffCNsEjwtKoKCdxZ3Hh6Ks"
  1739. },
  1740. {
  1741. "__type__": "cc.MeshRenderer",
  1742. "_name": "Cube<ModelComponent>",
  1743. "_objFlags": 0,
  1744. "__editorExtras__": {},
  1745. "node": {
  1746. "__id__": 32
  1747. },
  1748. "_enabled": true,
  1749. "__prefab": null,
  1750. "_materials": [
  1751. {
  1752. "__uuid__": "d25e737c-0b70-4830-b728-a723509a532e",
  1753. "__expectedType__": "cc.Material"
  1754. }
  1755. ],
  1756. "_visFlags": 0,
  1757. "bakeSettings": {
  1758. "__id__": 44
  1759. },
  1760. "_mesh": {
  1761. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a",
  1762. "__expectedType__": "cc.Mesh"
  1763. },
  1764. "_shadowCastingMode": 0,
  1765. "_shadowReceivingMode": 1,
  1766. "_shadowBias": 0,
  1767. "_shadowNormalBias": 0,
  1768. "_reflectionProbeId": -1,
  1769. "_reflectionProbeBlendId": -1,
  1770. "_reflectionProbeBlendWeight": 0,
  1771. "_enabledGlobalStandardSkinObject": false,
  1772. "_enableMorph": true,
  1773. "_id": "9cbwsfxj1O7pzuD49orLzT"
  1774. },
  1775. {
  1776. "__type__": "cc.ModelBakeSettings",
  1777. "texture": null,
  1778. "uvParam": {
  1779. "__type__": "cc.Vec4",
  1780. "x": 0,
  1781. "y": 0,
  1782. "z": 0,
  1783. "w": 0
  1784. },
  1785. "_bakeable": false,
  1786. "_castShadow": false,
  1787. "_receiveShadow": false,
  1788. "_recieveShadow": false,
  1789. "_lightmapSize": 64,
  1790. "_useLightProbe": false,
  1791. "_bakeToLightProbe": true,
  1792. "_reflectionProbeType": 0,
  1793. "_bakeToReflectionProbe": true
  1794. },
  1795. {
  1796. "__type__": "e84de8IXbZDjZbYlbQpevuI",
  1797. "_name": "",
  1798. "_objFlags": 0,
  1799. "__editorExtras__": {},
  1800. "node": {
  1801. "__id__": 32
  1802. },
  1803. "_enabled": true,
  1804. "__prefab": null,
  1805. "skeleton1": {
  1806. "__id__": 46
  1807. },
  1808. "skeleton2": {
  1809. "__id__": 55
  1810. },
  1811. "Lock_node": [
  1812. {
  1813. "__id__": 74
  1814. },
  1815. {
  1816. "__id__": 76
  1817. }
  1818. ],
  1819. "prefabs": [
  1820. {
  1821. "__uuid__": "3c69bdd9-9253-4a9b-b85d-00e2f21f1f64",
  1822. "__expectedType__": "cc.Prefab"
  1823. },
  1824. {
  1825. "__uuid__": "41eb0633-f2e4-4574-a710-0c91f6f75219",
  1826. "__expectedType__": "cc.Prefab"
  1827. },
  1828. {
  1829. "__uuid__": "a8e941cd-b9b3-44a7-be2c-bbdd51115fb9",
  1830. "__expectedType__": "cc.Prefab"
  1831. }
  1832. ],
  1833. "create_node": {
  1834. "__id__": 24
  1835. },
  1836. "nodes": [
  1837. {
  1838. "__id__": 33
  1839. },
  1840. {
  1841. "__id__": 34
  1842. },
  1843. {
  1844. "__id__": 35
  1845. },
  1846. {
  1847. "__id__": 36
  1848. },
  1849. {
  1850. "__id__": 37
  1851. },
  1852. {
  1853. "__id__": 38
  1854. },
  1855. {
  1856. "__id__": 39
  1857. },
  1858. {
  1859. "__id__": 40
  1860. },
  1861. {
  1862. "__id__": 41
  1863. }
  1864. ],
  1865. "_id": "8cfN3dvDROQYDO19DC8RV6"
  1866. },
  1867. {
  1868. "__type__": "cc.Node",
  1869. "_name": "Node",
  1870. "_objFlags": 0,
  1871. "__editorExtras__": {},
  1872. "_parent": {
  1873. "__id__": 47
  1874. },
  1875. "_children": [],
  1876. "_active": true,
  1877. "_components": [
  1878. {
  1879. "__id__": 53
  1880. },
  1881. {
  1882. "__id__": 54
  1883. }
  1884. ],
  1885. "_prefab": null,
  1886. "_lpos": {
  1887. "__type__": "cc.Vec3",
  1888. "x": 0,
  1889. "y": 0,
  1890. "z": 15
  1891. },
  1892. "_lrot": {
  1893. "__type__": "cc.Quat",
  1894. "x": 0,
  1895. "y": 0,
  1896. "z": 0,
  1897. "w": 1
  1898. },
  1899. "_lscale": {
  1900. "__type__": "cc.Vec3",
  1901. "x": 1,
  1902. "y": 1,
  1903. "z": 1
  1904. },
  1905. "_mobility": 0,
  1906. "_layer": 2,
  1907. "_euler": {
  1908. "__type__": "cc.Vec3",
  1909. "x": 0,
  1910. "y": 0,
  1911. "z": 0
  1912. },
  1913. "_id": "a8ALriGCpCIpVtqn2VF4Gw"
  1914. },
  1915. {
  1916. "__type__": "cc.Node",
  1917. "_name": "Canvas1",
  1918. "_objFlags": 0,
  1919. "__editorExtras__": {},
  1920. "_parent": {
  1921. "__id__": 1
  1922. },
  1923. "_children": [
  1924. {
  1925. "__id__": 48
  1926. },
  1927. {
  1928. "__id__": 46
  1929. }
  1930. ],
  1931. "_active": true,
  1932. "_components": [
  1933. {
  1934. "__id__": 50
  1935. },
  1936. {
  1937. "__id__": 51
  1938. },
  1939. {
  1940. "__id__": 52
  1941. }
  1942. ],
  1943. "_prefab": null,
  1944. "_lpos": {
  1945. "__type__": "cc.Vec3",
  1946. "x": 375,
  1947. "y": 817,
  1948. "z": 0
  1949. },
  1950. "_lrot": {
  1951. "__type__": "cc.Quat",
  1952. "x": 0,
  1953. "y": 0,
  1954. "z": 0,
  1955. "w": 1
  1956. },
  1957. "_lscale": {
  1958. "__type__": "cc.Vec3",
  1959. "x": 1,
  1960. "y": 1,
  1961. "z": 1
  1962. },
  1963. "_mobility": 0,
  1964. "_layer": 2,
  1965. "_euler": {
  1966. "__type__": "cc.Vec3",
  1967. "x": 0,
  1968. "y": 0,
  1969. "z": 0
  1970. },
  1971. "_id": "b9G6G1WgNFfZqgqa0oKysk"
  1972. },
  1973. {
  1974. "__type__": "cc.Node",
  1975. "_name": "Camera",
  1976. "_objFlags": 0,
  1977. "__editorExtras__": {},
  1978. "_parent": {
  1979. "__id__": 47
  1980. },
  1981. "_children": [],
  1982. "_active": true,
  1983. "_components": [
  1984. {
  1985. "__id__": 49
  1986. }
  1987. ],
  1988. "_prefab": null,
  1989. "_lpos": {
  1990. "__type__": "cc.Vec3",
  1991. "x": 0,
  1992. "y": 0,
  1993. "z": 1000
  1994. },
  1995. "_lrot": {
  1996. "__type__": "cc.Quat",
  1997. "x": 0,
  1998. "y": 0,
  1999. "z": 0,
  2000. "w": 1
  2001. },
  2002. "_lscale": {
  2003. "__type__": "cc.Vec3",
  2004. "x": 1,
  2005. "y": 1,
  2006. "z": 1
  2007. },
  2008. "_mobility": 0,
  2009. "_layer": 2,
  2010. "_euler": {
  2011. "__type__": "cc.Vec3",
  2012. "x": 0,
  2013. "y": 0,
  2014. "z": 0
  2015. },
  2016. "_id": "47CiyaHDFPQbEgmR7FnkmD"
  2017. },
  2018. {
  2019. "__type__": "cc.Camera",
  2020. "_name": "",
  2021. "_objFlags": 0,
  2022. "__editorExtras__": {},
  2023. "node": {
  2024. "__id__": 48
  2025. },
  2026. "_enabled": true,
  2027. "__prefab": null,
  2028. "_projection": 0,
  2029. "_priority": 4,
  2030. "_fov": 45,
  2031. "_fovAxis": 0,
  2032. "_orthoHeight": 817,
  2033. "_near": 1,
  2034. "_far": 2000,
  2035. "_color": {
  2036. "__type__": "cc.Color",
  2037. "r": 0,
  2038. "g": 0,
  2039. "b": 0,
  2040. "a": 255
  2041. },
  2042. "_depth": 1,
  2043. "_stencil": 0,
  2044. "_clearFlags": 6,
  2045. "_rect": {
  2046. "__type__": "cc.Rect",
  2047. "x": 0,
  2048. "y": 0,
  2049. "width": 1,
  2050. "height": 1
  2051. },
  2052. "_aperture": 19,
  2053. "_shutter": 7,
  2054. "_iso": 0,
  2055. "_screenScale": 1,
  2056. "_visibility": 2,
  2057. "_targetTexture": null,
  2058. "_postProcess": null,
  2059. "_usePostProcess": false,
  2060. "_cameraType": -1,
  2061. "_trackingType": 0,
  2062. "_id": "06MqP+4r5K+aYC9QtXDBBu"
  2063. },
  2064. {
  2065. "__type__": "cc.UITransform",
  2066. "_name": "",
  2067. "_objFlags": 0,
  2068. "__editorExtras__": {},
  2069. "node": {
  2070. "__id__": 47
  2071. },
  2072. "_enabled": true,
  2073. "__prefab": null,
  2074. "_contentSize": {
  2075. "__type__": "cc.Size",
  2076. "width": 750,
  2077. "height": 1634
  2078. },
  2079. "_anchorPoint": {
  2080. "__type__": "cc.Vec2",
  2081. "x": 0.5,
  2082. "y": 0.5
  2083. },
  2084. "_id": "68nwnMZppMQ5Y/C36lDnqI"
  2085. },
  2086. {
  2087. "__type__": "cc.Canvas",
  2088. "_name": "",
  2089. "_objFlags": 0,
  2090. "__editorExtras__": {},
  2091. "node": {
  2092. "__id__": 47
  2093. },
  2094. "_enabled": true,
  2095. "__prefab": null,
  2096. "_cameraComponent": {
  2097. "__id__": 49
  2098. },
  2099. "_alignCanvasWithScreen": true,
  2100. "_id": "c3HrQR8BRDTr3umC+6eN+P"
  2101. },
  2102. {
  2103. "__type__": "cc.Widget",
  2104. "_name": "",
  2105. "_objFlags": 0,
  2106. "__editorExtras__": {},
  2107. "node": {
  2108. "__id__": 47
  2109. },
  2110. "_enabled": true,
  2111. "__prefab": null,
  2112. "_alignFlags": 45,
  2113. "_target": null,
  2114. "_left": 0,
  2115. "_right": 0,
  2116. "_top": 0,
  2117. "_bottom": 0,
  2118. "_horizontalCenter": 0,
  2119. "_verticalCenter": 0,
  2120. "_isAbsLeft": true,
  2121. "_isAbsRight": true,
  2122. "_isAbsTop": true,
  2123. "_isAbsBottom": true,
  2124. "_isAbsHorizontalCenter": true,
  2125. "_isAbsVerticalCenter": true,
  2126. "_originalWidth": 0,
  2127. "_originalHeight": 0,
  2128. "_alignMode": 2,
  2129. "_lockFlags": 0,
  2130. "_id": "1604jsVxBF+6hytvBfuwFG"
  2131. },
  2132. {
  2133. "__type__": "cc.UITransform",
  2134. "_name": "",
  2135. "_objFlags": 0,
  2136. "__editorExtras__": {},
  2137. "node": {
  2138. "__id__": 46
  2139. },
  2140. "_enabled": true,
  2141. "__prefab": null,
  2142. "_contentSize": {
  2143. "__type__": "cc.Size",
  2144. "width": 100,
  2145. "height": 100
  2146. },
  2147. "_anchorPoint": {
  2148. "__type__": "cc.Vec2",
  2149. "x": 0.5,
  2150. "y": 0.5
  2151. },
  2152. "_id": "21ypePWGRIerKxaaXe3DVX"
  2153. },
  2154. {
  2155. "__type__": "sp.Skeleton",
  2156. "_name": "",
  2157. "_objFlags": 0,
  2158. "__editorExtras__": {},
  2159. "node": {
  2160. "__id__": 46
  2161. },
  2162. "_enabled": true,
  2163. "__prefab": null,
  2164. "_customMaterial": null,
  2165. "_srcBlendFactor": 2,
  2166. "_dstBlendFactor": 4,
  2167. "_color": {
  2168. "__type__": "cc.Color",
  2169. "r": 255,
  2170. "g": 255,
  2171. "b": 255,
  2172. "a": 255
  2173. },
  2174. "_skeletonData": {
  2175. "__uuid__": "a8ceab25-13ca-491e-8f5a-c5d87094e300",
  2176. "__expectedType__": "sp.SkeletonData"
  2177. },
  2178. "defaultSkin": "default",
  2179. "defaultAnimation": "<None>",
  2180. "_premultipliedAlpha": true,
  2181. "_timeScale": 1,
  2182. "_preCacheMode": 0,
  2183. "_cacheMode": 0,
  2184. "_sockets": [],
  2185. "_useTint": false,
  2186. "_debugMesh": false,
  2187. "_debugBones": false,
  2188. "_debugSlots": false,
  2189. "_enableBatch": false,
  2190. "loop": false,
  2191. "_id": "06gWc3+FdMDLwZLqs9BCVc"
  2192. },
  2193. {
  2194. "__type__": "cc.Node",
  2195. "_name": "Node",
  2196. "_objFlags": 0,
  2197. "__editorExtras__": {},
  2198. "_parent": {
  2199. "__id__": 56
  2200. },
  2201. "_children": [],
  2202. "_active": false,
  2203. "_components": [
  2204. {
  2205. "__id__": 72
  2206. },
  2207. {
  2208. "__id__": 73
  2209. }
  2210. ],
  2211. "_prefab": null,
  2212. "_lpos": {
  2213. "__type__": "cc.Vec3",
  2214. "x": 0,
  2215. "y": 0,
  2216. "z": 30
  2217. },
  2218. "_lrot": {
  2219. "__type__": "cc.Quat",
  2220. "x": 0,
  2221. "y": 0,
  2222. "z": 0,
  2223. "w": 1
  2224. },
  2225. "_lscale": {
  2226. "__type__": "cc.Vec3",
  2227. "x": 1,
  2228. "y": 1,
  2229. "z": 1
  2230. },
  2231. "_mobility": 0,
  2232. "_layer": 4,
  2233. "_euler": {
  2234. "__type__": "cc.Vec3",
  2235. "x": 0,
  2236. "y": 0,
  2237. "z": 0
  2238. },
  2239. "_id": "67bZTIbJVGtKMBEL2ZryXU"
  2240. },
  2241. {
  2242. "__type__": "cc.Node",
  2243. "_name": "Canvas2",
  2244. "_objFlags": 0,
  2245. "__editorExtras__": {},
  2246. "_parent": {
  2247. "__id__": 1
  2248. },
  2249. "_children": [
  2250. {
  2251. "__id__": 57
  2252. },
  2253. {
  2254. "__id__": 55
  2255. }
  2256. ],
  2257. "_active": true,
  2258. "_components": [
  2259. {
  2260. "__id__": 59
  2261. },
  2262. {
  2263. "__id__": 60
  2264. },
  2265. {
  2266. "__id__": 61
  2267. },
  2268. {
  2269. "__id__": 62
  2270. }
  2271. ],
  2272. "_prefab": null,
  2273. "_lpos": {
  2274. "__type__": "cc.Vec3",
  2275. "x": 375,
  2276. "y": 817,
  2277. "z": 0
  2278. },
  2279. "_lrot": {
  2280. "__type__": "cc.Quat",
  2281. "x": 0,
  2282. "y": 0,
  2283. "z": 0,
  2284. "w": 1
  2285. },
  2286. "_lscale": {
  2287. "__type__": "cc.Vec3",
  2288. "x": 1,
  2289. "y": 1,
  2290. "z": 1
  2291. },
  2292. "_mobility": 0,
  2293. "_layer": 4,
  2294. "_euler": {
  2295. "__type__": "cc.Vec3",
  2296. "x": 0,
  2297. "y": 0,
  2298. "z": 0
  2299. },
  2300. "_id": "2ccI2NU/NG3bQ2G95CJb6L"
  2301. },
  2302. {
  2303. "__type__": "cc.Node",
  2304. "_name": "Camera",
  2305. "_objFlags": 0,
  2306. "__editorExtras__": {},
  2307. "_parent": {
  2308. "__id__": 56
  2309. },
  2310. "_children": [],
  2311. "_active": true,
  2312. "_components": [
  2313. {
  2314. "__id__": 58
  2315. }
  2316. ],
  2317. "_prefab": null,
  2318. "_lpos": {
  2319. "__type__": "cc.Vec3",
  2320. "x": 0,
  2321. "y": 0,
  2322. "z": 1000
  2323. },
  2324. "_lrot": {
  2325. "__type__": "cc.Quat",
  2326. "x": 0,
  2327. "y": 0,
  2328. "z": 0,
  2329. "w": 1
  2330. },
  2331. "_lscale": {
  2332. "__type__": "cc.Vec3",
  2333. "x": 1,
  2334. "y": 1,
  2335. "z": 1
  2336. },
  2337. "_mobility": 0,
  2338. "_layer": 4,
  2339. "_euler": {
  2340. "__type__": "cc.Vec3",
  2341. "x": 0,
  2342. "y": 0,
  2343. "z": 0
  2344. },
  2345. "_id": "bbVbEUd0pNl7UqyodkpP9D"
  2346. },
  2347. {
  2348. "__type__": "cc.Camera",
  2349. "_name": "",
  2350. "_objFlags": 0,
  2351. "__editorExtras__": {},
  2352. "node": {
  2353. "__id__": 57
  2354. },
  2355. "_enabled": true,
  2356. "__prefab": null,
  2357. "_projection": 0,
  2358. "_priority": 6,
  2359. "_fov": 45,
  2360. "_fovAxis": 0,
  2361. "_orthoHeight": 817,
  2362. "_near": 1,
  2363. "_far": 2000,
  2364. "_color": {
  2365. "__type__": "cc.Color",
  2366. "r": 0,
  2367. "g": 0,
  2368. "b": 0,
  2369. "a": 255
  2370. },
  2371. "_depth": 1,
  2372. "_stencil": 0,
  2373. "_clearFlags": 6,
  2374. "_rect": {
  2375. "__type__": "cc.Rect",
  2376. "x": 0,
  2377. "y": 0,
  2378. "width": 1,
  2379. "height": 1
  2380. },
  2381. "_aperture": 19,
  2382. "_shutter": 7,
  2383. "_iso": 0,
  2384. "_screenScale": 1,
  2385. "_visibility": 4,
  2386. "_targetTexture": null,
  2387. "_postProcess": null,
  2388. "_usePostProcess": false,
  2389. "_cameraType": -1,
  2390. "_trackingType": 0,
  2391. "_id": "017o30o5JFpZE+kwX7Dk5V"
  2392. },
  2393. {
  2394. "__type__": "cc.UITransform",
  2395. "_name": "",
  2396. "_objFlags": 0,
  2397. "__editorExtras__": {},
  2398. "node": {
  2399. "__id__": 56
  2400. },
  2401. "_enabled": true,
  2402. "__prefab": null,
  2403. "_contentSize": {
  2404. "__type__": "cc.Size",
  2405. "width": 750,
  2406. "height": 1634
  2407. },
  2408. "_anchorPoint": {
  2409. "__type__": "cc.Vec2",
  2410. "x": 0.5,
  2411. "y": 0.5
  2412. },
  2413. "_id": "7fELdB0UJBMK7drwEOw6SG"
  2414. },
  2415. {
  2416. "__type__": "cc.Canvas",
  2417. "_name": "",
  2418. "_objFlags": 0,
  2419. "__editorExtras__": {},
  2420. "node": {
  2421. "__id__": 56
  2422. },
  2423. "_enabled": true,
  2424. "__prefab": null,
  2425. "_cameraComponent": {
  2426. "__id__": 58
  2427. },
  2428. "_alignCanvasWithScreen": true,
  2429. "_id": "e1DA/ae0tIbpm8A4PVszy4"
  2430. },
  2431. {
  2432. "__type__": "cc.Widget",
  2433. "_name": "",
  2434. "_objFlags": 0,
  2435. "__editorExtras__": {},
  2436. "node": {
  2437. "__id__": 56
  2438. },
  2439. "_enabled": true,
  2440. "__prefab": null,
  2441. "_alignFlags": 45,
  2442. "_target": null,
  2443. "_left": 0,
  2444. "_right": 0,
  2445. "_top": 0,
  2446. "_bottom": 0,
  2447. "_horizontalCenter": 0,
  2448. "_verticalCenter": 0,
  2449. "_isAbsLeft": true,
  2450. "_isAbsRight": true,
  2451. "_isAbsTop": true,
  2452. "_isAbsBottom": true,
  2453. "_isAbsHorizontalCenter": true,
  2454. "_isAbsVerticalCenter": true,
  2455. "_originalWidth": 0,
  2456. "_originalHeight": 0,
  2457. "_alignMode": 2,
  2458. "_lockFlags": 0,
  2459. "_id": "5efzlNbHVBp7vGRPnKwjKb"
  2460. },
  2461. {
  2462. "__type__": "5237f+4/ftIlKW+rC062l8C",
  2463. "_name": "",
  2464. "_objFlags": 0,
  2465. "__editorExtras__": {},
  2466. "node": {
  2467. "__id__": 56
  2468. },
  2469. "_enabled": true,
  2470. "__prefab": null,
  2471. "camera": {
  2472. "__id__": 6
  2473. },
  2474. "Ani": [
  2475. {
  2476. "__id__": 63
  2477. },
  2478. {
  2479. "__id__": 65
  2480. },
  2481. {
  2482. "__id__": 66
  2483. },
  2484. {
  2485. "__id__": 67
  2486. },
  2487. {
  2488. "__id__": 68
  2489. },
  2490. {
  2491. "__id__": 69
  2492. }
  2493. ],
  2494. "Mid": [
  2495. {
  2496. "__id__": 70
  2497. },
  2498. {
  2499. "__id__": 71
  2500. }
  2501. ],
  2502. "_id": "ccqbAKTepOl4B69VRcy+Gu"
  2503. },
  2504. {
  2505. "__type__": "cc.Node",
  2506. "_name": "ani_0_left",
  2507. "_objFlags": 0,
  2508. "__editorExtras__": {},
  2509. "_parent": {
  2510. "__id__": 64
  2511. },
  2512. "_children": [],
  2513. "_active": true,
  2514. "_components": [],
  2515. "_prefab": null,
  2516. "_lpos": {
  2517. "__type__": "cc.Vec3",
  2518. "x": -1.471,
  2519. "y": 5,
  2520. "z": -0.401
  2521. },
  2522. "_lrot": {
  2523. "__type__": "cc.Quat",
  2524. "x": 0,
  2525. "y": 0,
  2526. "z": 0,
  2527. "w": 1
  2528. },
  2529. "_lscale": {
  2530. "__type__": "cc.Vec3",
  2531. "x": 1,
  2532. "y": 1,
  2533. "z": 1
  2534. },
  2535. "_mobility": 0,
  2536. "_layer": 1,
  2537. "_euler": {
  2538. "__type__": "cc.Vec3",
  2539. "x": 0,
  2540. "y": 0,
  2541. "z": 0
  2542. },
  2543. "_id": "82dzpTpmJIKrnidmO3x257"
  2544. },
  2545. {
  2546. "__type__": "cc.Node",
  2547. "_name": "Ani",
  2548. "_objFlags": 0,
  2549. "__editorExtras__": {},
  2550. "_parent": {
  2551. "__id__": 1
  2552. },
  2553. "_children": [
  2554. {
  2555. "__id__": 63
  2556. },
  2557. {
  2558. "__id__": 65
  2559. },
  2560. {
  2561. "__id__": 66
  2562. },
  2563. {
  2564. "__id__": 67
  2565. },
  2566. {
  2567. "__id__": 68
  2568. },
  2569. {
  2570. "__id__": 69
  2571. }
  2572. ],
  2573. "_active": true,
  2574. "_components": [],
  2575. "_prefab": null,
  2576. "_lpos": {
  2577. "__type__": "cc.Vec3",
  2578. "x": 0,
  2579. "y": 0,
  2580. "z": 0
  2581. },
  2582. "_lrot": {
  2583. "__type__": "cc.Quat",
  2584. "x": 0,
  2585. "y": 0,
  2586. "z": 0,
  2587. "w": 1
  2588. },
  2589. "_lscale": {
  2590. "__type__": "cc.Vec3",
  2591. "x": 1,
  2592. "y": 1,
  2593. "z": 1
  2594. },
  2595. "_mobility": 0,
  2596. "_layer": 1,
  2597. "_euler": {
  2598. "__type__": "cc.Vec3",
  2599. "x": 0,
  2600. "y": 0,
  2601. "z": 0
  2602. },
  2603. "_id": "417c0rPiZDc4MTo9kvQHju"
  2604. },
  2605. {
  2606. "__type__": "cc.Node",
  2607. "_name": "ani_1_right",
  2608. "_objFlags": 0,
  2609. "__editorExtras__": {},
  2610. "_parent": {
  2611. "__id__": 64
  2612. },
  2613. "_children": [],
  2614. "_active": true,
  2615. "_components": [],
  2616. "_prefab": null,
  2617. "_lpos": {
  2618. "__type__": "cc.Vec3",
  2619. "x": 0.192,
  2620. "y": 5,
  2621. "z": -0.401
  2622. },
  2623. "_lrot": {
  2624. "__type__": "cc.Quat",
  2625. "x": 0,
  2626. "y": 0,
  2627. "z": 0,
  2628. "w": 1
  2629. },
  2630. "_lscale": {
  2631. "__type__": "cc.Vec3",
  2632. "x": 1,
  2633. "y": 1,
  2634. "z": 1
  2635. },
  2636. "_mobility": 0,
  2637. "_layer": 1,
  2638. "_euler": {
  2639. "__type__": "cc.Vec3",
  2640. "x": 0,
  2641. "y": 0,
  2642. "z": 0
  2643. },
  2644. "_id": "c1VvYO4QROA6Cx/TjpLrY0"
  2645. },
  2646. {
  2647. "__type__": "cc.Node",
  2648. "_name": "ani_2_left",
  2649. "_objFlags": 0,
  2650. "__editorExtras__": {},
  2651. "_parent": {
  2652. "__id__": 64
  2653. },
  2654. "_children": [],
  2655. "_active": true,
  2656. "_components": [],
  2657. "_prefab": null,
  2658. "_lpos": {
  2659. "__type__": "cc.Vec3",
  2660. "x": -1.042,
  2661. "y": 5,
  2662. "z": -0.401
  2663. },
  2664. "_lrot": {
  2665. "__type__": "cc.Quat",
  2666. "x": 0,
  2667. "y": 0,
  2668. "z": 0,
  2669. "w": 1
  2670. },
  2671. "_lscale": {
  2672. "__type__": "cc.Vec3",
  2673. "x": 1,
  2674. "y": 1,
  2675. "z": 1
  2676. },
  2677. "_mobility": 0,
  2678. "_layer": 1,
  2679. "_euler": {
  2680. "__type__": "cc.Vec3",
  2681. "x": 0,
  2682. "y": 0,
  2683. "z": 0
  2684. },
  2685. "_id": "acwxSl2XNCwpftPvFaEsJS"
  2686. },
  2687. {
  2688. "__type__": "cc.Node",
  2689. "_name": "ani_3_right",
  2690. "_objFlags": 0,
  2691. "__editorExtras__": {},
  2692. "_parent": {
  2693. "__id__": 64
  2694. },
  2695. "_children": [],
  2696. "_active": true,
  2697. "_components": [],
  2698. "_prefab": null,
  2699. "_lpos": {
  2700. "__type__": "cc.Vec3",
  2701. "x": 0.634,
  2702. "y": 5,
  2703. "z": -0.401
  2704. },
  2705. "_lrot": {
  2706. "__type__": "cc.Quat",
  2707. "x": 0,
  2708. "y": 0,
  2709. "z": 0,
  2710. "w": 1
  2711. },
  2712. "_lscale": {
  2713. "__type__": "cc.Vec3",
  2714. "x": 1,
  2715. "y": 1,
  2716. "z": 1
  2717. },
  2718. "_mobility": 0,
  2719. "_layer": 1,
  2720. "_euler": {
  2721. "__type__": "cc.Vec3",
  2722. "x": 0,
  2723. "y": 0,
  2724. "z": 0
  2725. },
  2726. "_id": "c3Ysq+p2BDqIB5linseJym"
  2727. },
  2728. {
  2729. "__type__": "cc.Node",
  2730. "_name": "ani_4_left",
  2731. "_objFlags": 0,
  2732. "__editorExtras__": {},
  2733. "_parent": {
  2734. "__id__": 64
  2735. },
  2736. "_children": [],
  2737. "_active": true,
  2738. "_components": [],
  2739. "_prefab": null,
  2740. "_lpos": {
  2741. "__type__": "cc.Vec3",
  2742. "x": -0.572,
  2743. "y": 5,
  2744. "z": -0.401
  2745. },
  2746. "_lrot": {
  2747. "__type__": "cc.Quat",
  2748. "x": 0,
  2749. "y": 0,
  2750. "z": 0,
  2751. "w": 1
  2752. },
  2753. "_lscale": {
  2754. "__type__": "cc.Vec3",
  2755. "x": 1,
  2756. "y": 1,
  2757. "z": 1
  2758. },
  2759. "_mobility": 0,
  2760. "_layer": 1,
  2761. "_euler": {
  2762. "__type__": "cc.Vec3",
  2763. "x": 0,
  2764. "y": 0,
  2765. "z": 0
  2766. },
  2767. "_id": "bbYIWxH2JBmLhTyQAZ3P/X"
  2768. },
  2769. {
  2770. "__type__": "cc.Node",
  2771. "_name": "ani_5_right",
  2772. "_objFlags": 0,
  2773. "__editorExtras__": {},
  2774. "_parent": {
  2775. "__id__": 64
  2776. },
  2777. "_children": [],
  2778. "_active": true,
  2779. "_components": [],
  2780. "_prefab": null,
  2781. "_lpos": {
  2782. "__type__": "cc.Vec3",
  2783. "x": 1.052,
  2784. "y": 5,
  2785. "z": -0.401
  2786. },
  2787. "_lrot": {
  2788. "__type__": "cc.Quat",
  2789. "x": 0,
  2790. "y": 0,
  2791. "z": 0,
  2792. "w": 1
  2793. },
  2794. "_lscale": {
  2795. "__type__": "cc.Vec3",
  2796. "x": 1,
  2797. "y": 1,
  2798. "z": 1
  2799. },
  2800. "_mobility": 0,
  2801. "_layer": 1,
  2802. "_euler": {
  2803. "__type__": "cc.Vec3",
  2804. "x": 0,
  2805. "y": 0,
  2806. "z": 0
  2807. },
  2808. "_id": "5eikzbo4FCpr6HHA89hirt"
  2809. },
  2810. {
  2811. "__type__": "cc.Node",
  2812. "_name": "Left",
  2813. "_objFlags": 0,
  2814. "__editorExtras__": {},
  2815. "_parent": {
  2816. "__id__": 1
  2817. },
  2818. "_children": [],
  2819. "_active": true,
  2820. "_components": [],
  2821. "_prefab": null,
  2822. "_lpos": {
  2823. "__type__": "cc.Vec3",
  2824. "x": -3.5,
  2825. "y": 5,
  2826. "z": 2.467
  2827. },
  2828. "_lrot": {
  2829. "__type__": "cc.Quat",
  2830. "x": 0,
  2831. "y": 0,
  2832. "z": 0,
  2833. "w": 1
  2834. },
  2835. "_lscale": {
  2836. "__type__": "cc.Vec3",
  2837. "x": 1,
  2838. "y": 1,
  2839. "z": 1
  2840. },
  2841. "_mobility": 0,
  2842. "_layer": 1073741824,
  2843. "_euler": {
  2844. "__type__": "cc.Vec3",
  2845. "x": 0,
  2846. "y": 0,
  2847. "z": 0
  2848. },
  2849. "_id": "95vG4yVW1OOr/7kVPbWO9t"
  2850. },
  2851. {
  2852. "__type__": "cc.Node",
  2853. "_name": "Right",
  2854. "_objFlags": 0,
  2855. "__editorExtras__": {},
  2856. "_parent": {
  2857. "__id__": 1
  2858. },
  2859. "_children": [],
  2860. "_active": true,
  2861. "_components": [],
  2862. "_prefab": null,
  2863. "_lpos": {
  2864. "__type__": "cc.Vec3",
  2865. "x": 3.5,
  2866. "y": 5,
  2867. "z": 2.467
  2868. },
  2869. "_lrot": {
  2870. "__type__": "cc.Quat",
  2871. "x": 0,
  2872. "y": 0,
  2873. "z": 0,
  2874. "w": 1
  2875. },
  2876. "_lscale": {
  2877. "__type__": "cc.Vec3",
  2878. "x": 1,
  2879. "y": 1,
  2880. "z": 1
  2881. },
  2882. "_mobility": 0,
  2883. "_layer": 1073741824,
  2884. "_euler": {
  2885. "__type__": "cc.Vec3",
  2886. "x": 0,
  2887. "y": 0,
  2888. "z": 0
  2889. },
  2890. "_id": "5011Fct7RNLoQanx2HYFyV"
  2891. },
  2892. {
  2893. "__type__": "cc.UITransform",
  2894. "_name": "",
  2895. "_objFlags": 0,
  2896. "__editorExtras__": {},
  2897. "node": {
  2898. "__id__": 55
  2899. },
  2900. "_enabled": true,
  2901. "__prefab": null,
  2902. "_contentSize": {
  2903. "__type__": "cc.Size",
  2904. "width": 100,
  2905. "height": 100
  2906. },
  2907. "_anchorPoint": {
  2908. "__type__": "cc.Vec2",
  2909. "x": 0.5,
  2910. "y": 0.5
  2911. },
  2912. "_id": "27+UmHnlxCk4Cv4Nq0oZ7n"
  2913. },
  2914. {
  2915. "__type__": "sp.Skeleton",
  2916. "_name": "",
  2917. "_objFlags": 0,
  2918. "__editorExtras__": {},
  2919. "node": {
  2920. "__id__": 55
  2921. },
  2922. "_enabled": true,
  2923. "__prefab": null,
  2924. "_customMaterial": null,
  2925. "_srcBlendFactor": 2,
  2926. "_dstBlendFactor": 4,
  2927. "_color": {
  2928. "__type__": "cc.Color",
  2929. "r": 255,
  2930. "g": 255,
  2931. "b": 255,
  2932. "a": 255
  2933. },
  2934. "_skeletonData": {
  2935. "__uuid__": "032218e7-6f9c-4ab3-b50a-e286e558c35f",
  2936. "__expectedType__": "sp.SkeletonData"
  2937. },
  2938. "defaultSkin": "default",
  2939. "defaultAnimation": "<None>",
  2940. "_premultipliedAlpha": true,
  2941. "_timeScale": 1,
  2942. "_preCacheMode": 0,
  2943. "_cacheMode": 0,
  2944. "_sockets": [],
  2945. "_useTint": false,
  2946. "_debugMesh": false,
  2947. "_debugBones": false,
  2948. "_debugSlots": false,
  2949. "_enableBatch": false,
  2950. "loop": false,
  2951. "_id": "8dStnANDVDibQXiF7T1FAO"
  2952. },
  2953. {
  2954. "__type__": "cc.Node",
  2955. "_name": "Lock",
  2956. "_objFlags": 0,
  2957. "__editorExtras__": {},
  2958. "_parent": {
  2959. "__id__": 75
  2960. },
  2961. "_children": [],
  2962. "_active": true,
  2963. "_components": [
  2964. {
  2965. "__id__": 80
  2966. },
  2967. {
  2968. "__id__": 82
  2969. }
  2970. ],
  2971. "_prefab": null,
  2972. "_lpos": {
  2973. "__type__": "cc.Vec3",
  2974. "x": -1.287,
  2975. "y": 0,
  2976. "z": 0
  2977. },
  2978. "_lrot": {
  2979. "__type__": "cc.Quat",
  2980. "x": -0.7071067811865475,
  2981. "y": 0,
  2982. "z": 0,
  2983. "w": 0.7071067811865476
  2984. },
  2985. "_lscale": {
  2986. "__type__": "cc.Vec3",
  2987. "x": 0.8,
  2988. "y": 1,
  2989. "z": 1
  2990. },
  2991. "_mobility": 0,
  2992. "_layer": 1,
  2993. "_euler": {
  2994. "__type__": "cc.Vec3",
  2995. "x": -90,
  2996. "y": 0,
  2997. "z": 0
  2998. },
  2999. "_id": "a3V1tiJnFFMJWuB+XLPG0N"
  3000. },
  3001. {
  3002. "__type__": "cc.Node",
  3003. "_name": "Locks",
  3004. "_objFlags": 0,
  3005. "__editorExtras__": {},
  3006. "_parent": {
  3007. "__id__": 1
  3008. },
  3009. "_children": [
  3010. {
  3011. "__id__": 74
  3012. },
  3013. {
  3014. "__id__": 76
  3015. }
  3016. ],
  3017. "_active": true,
  3018. "_components": [],
  3019. "_prefab": null,
  3020. "_lpos": {
  3021. "__type__": "cc.Vec3",
  3022. "x": 4.017,
  3023. "y": 0.312,
  3024. "z": 7.225
  3025. },
  3026. "_lrot": {
  3027. "__type__": "cc.Quat",
  3028. "x": 0,
  3029. "y": 0,
  3030. "z": 0,
  3031. "w": 1
  3032. },
  3033. "_lscale": {
  3034. "__type__": "cc.Vec3",
  3035. "x": 1,
  3036. "y": 1,
  3037. "z": 1
  3038. },
  3039. "_mobility": 0,
  3040. "_layer": 1,
  3041. "_euler": {
  3042. "__type__": "cc.Vec3",
  3043. "x": 0,
  3044. "y": 0,
  3045. "z": 0
  3046. },
  3047. "_id": "62ka42c8BIlp2sH5In/LAP"
  3048. },
  3049. {
  3050. "__type__": "cc.Node",
  3051. "_name": "Lock",
  3052. "_objFlags": 0,
  3053. "__editorExtras__": {},
  3054. "_parent": {
  3055. "__id__": 75
  3056. },
  3057. "_children": [],
  3058. "_active": true,
  3059. "_components": [
  3060. {
  3061. "__id__": 77
  3062. },
  3063. {
  3064. "__id__": 79
  3065. }
  3066. ],
  3067. "_prefab": null,
  3068. "_lpos": {
  3069. "__type__": "cc.Vec3",
  3070. "x": -0.37100000000000044,
  3071. "y": 0,
  3072. "z": 0
  3073. },
  3074. "_lrot": {
  3075. "__type__": "cc.Quat",
  3076. "x": -0.7071067811865475,
  3077. "y": 0,
  3078. "z": 0,
  3079. "w": 0.7071067811865476
  3080. },
  3081. "_lscale": {
  3082. "__type__": "cc.Vec3",
  3083. "x": 0.8,
  3084. "y": 1,
  3085. "z": 1
  3086. },
  3087. "_mobility": 0,
  3088. "_layer": 1,
  3089. "_euler": {
  3090. "__type__": "cc.Vec3",
  3091. "x": -90,
  3092. "y": 0,
  3093. "z": 0
  3094. },
  3095. "_id": "41+jXXyQlDEbV0IdvJbfKs"
  3096. },
  3097. {
  3098. "__type__": "cc.MeshRenderer",
  3099. "_name": "Quad<ModelComponent>",
  3100. "_objFlags": 0,
  3101. "__editorExtras__": {},
  3102. "node": {
  3103. "__id__": 76
  3104. },
  3105. "_enabled": true,
  3106. "__prefab": null,
  3107. "_materials": [
  3108. {
  3109. "__uuid__": "2b946975-a591-429e-b272-83f6417deb44",
  3110. "__expectedType__": "cc.Material"
  3111. }
  3112. ],
  3113. "_visFlags": 0,
  3114. "bakeSettings": {
  3115. "__id__": 78
  3116. },
  3117. "_mesh": {
  3118. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@fc873",
  3119. "__expectedType__": "cc.Mesh"
  3120. },
  3121. "_shadowCastingMode": 0,
  3122. "_shadowReceivingMode": 1,
  3123. "_shadowBias": 0,
  3124. "_shadowNormalBias": 0,
  3125. "_reflectionProbeId": -1,
  3126. "_reflectionProbeBlendId": -1,
  3127. "_reflectionProbeBlendWeight": 0,
  3128. "_enabledGlobalStandardSkinObject": false,
  3129. "_enableMorph": true,
  3130. "_id": "dcRcXPqu9KHpvvQMkGfs74"
  3131. },
  3132. {
  3133. "__type__": "cc.ModelBakeSettings",
  3134. "texture": null,
  3135. "uvParam": {
  3136. "__type__": "cc.Vec4",
  3137. "x": 0,
  3138. "y": 0,
  3139. "z": 0,
  3140. "w": 0
  3141. },
  3142. "_bakeable": false,
  3143. "_castShadow": false,
  3144. "_receiveShadow": false,
  3145. "_recieveShadow": false,
  3146. "_lightmapSize": 64,
  3147. "_useLightProbe": false,
  3148. "_bakeToLightProbe": true,
  3149. "_reflectionProbeType": 0,
  3150. "_bakeToReflectionProbe": true
  3151. },
  3152. {
  3153. "__type__": "cc.BoxCollider",
  3154. "_name": "",
  3155. "_objFlags": 0,
  3156. "__editorExtras__": {},
  3157. "node": {
  3158. "__id__": 76
  3159. },
  3160. "_enabled": true,
  3161. "__prefab": null,
  3162. "_material": null,
  3163. "_isTrigger": false,
  3164. "_center": {
  3165. "__type__": "cc.Vec3",
  3166. "x": 0,
  3167. "y": 0,
  3168. "z": 0
  3169. },
  3170. "_size": {
  3171. "__type__": "cc.Vec3",
  3172. "x": 1,
  3173. "y": 1,
  3174. "z": 0.001
  3175. },
  3176. "_id": "b6S610d6tBGY4fHlyQOuDM"
  3177. },
  3178. {
  3179. "__type__": "cc.MeshRenderer",
  3180. "_name": "Quad<ModelComponent>",
  3181. "_objFlags": 0,
  3182. "__editorExtras__": {},
  3183. "node": {
  3184. "__id__": 74
  3185. },
  3186. "_enabled": true,
  3187. "__prefab": null,
  3188. "_materials": [
  3189. {
  3190. "__uuid__": "2b946975-a591-429e-b272-83f6417deb44",
  3191. "__expectedType__": "cc.Material"
  3192. }
  3193. ],
  3194. "_visFlags": 0,
  3195. "bakeSettings": {
  3196. "__id__": 81
  3197. },
  3198. "_mesh": {
  3199. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@fc873",
  3200. "__expectedType__": "cc.Mesh"
  3201. },
  3202. "_shadowCastingMode": 0,
  3203. "_shadowReceivingMode": 1,
  3204. "_shadowBias": 0,
  3205. "_shadowNormalBias": 0,
  3206. "_reflectionProbeId": -1,
  3207. "_reflectionProbeBlendId": -1,
  3208. "_reflectionProbeBlendWeight": 0,
  3209. "_enabledGlobalStandardSkinObject": false,
  3210. "_enableMorph": true,
  3211. "_id": "10cyW853xE7LdZCWJaZUU1"
  3212. },
  3213. {
  3214. "__type__": "cc.ModelBakeSettings",
  3215. "texture": null,
  3216. "uvParam": {
  3217. "__type__": "cc.Vec4",
  3218. "x": 0,
  3219. "y": 0,
  3220. "z": 0,
  3221. "w": 0
  3222. },
  3223. "_bakeable": false,
  3224. "_castShadow": false,
  3225. "_receiveShadow": false,
  3226. "_recieveShadow": false,
  3227. "_lightmapSize": 64,
  3228. "_useLightProbe": false,
  3229. "_bakeToLightProbe": true,
  3230. "_reflectionProbeType": 0,
  3231. "_bakeToReflectionProbe": true
  3232. },
  3233. {
  3234. "__type__": "cc.BoxCollider",
  3235. "_name": "",
  3236. "_objFlags": 0,
  3237. "__editorExtras__": {},
  3238. "node": {
  3239. "__id__": 74
  3240. },
  3241. "_enabled": true,
  3242. "__prefab": null,
  3243. "_material": null,
  3244. "_isTrigger": false,
  3245. "_center": {
  3246. "__type__": "cc.Vec3",
  3247. "x": 0,
  3248. "y": 0,
  3249. "z": 0
  3250. },
  3251. "_size": {
  3252. "__type__": "cc.Vec3",
  3253. "x": 1,
  3254. "y": 1,
  3255. "z": 0.001
  3256. },
  3257. "_id": "3494oVSNRL3IoU1uM0gXtZ"
  3258. },
  3259. {
  3260. "__type__": "cc.Node",
  3261. "_name": "Under_Canvas",
  3262. "_objFlags": 0,
  3263. "__editorExtras__": {},
  3264. "_parent": {
  3265. "__id__": 1
  3266. },
  3267. "_children": [
  3268. {
  3269. "__id__": 84
  3270. },
  3271. {
  3272. "__id__": 86
  3273. }
  3274. ],
  3275. "_active": true,
  3276. "_components": [
  3277. {
  3278. "__id__": 90
  3279. },
  3280. {
  3281. "__id__": 91
  3282. },
  3283. {
  3284. "__id__": 92
  3285. }
  3286. ],
  3287. "_prefab": null,
  3288. "_lpos": {
  3289. "__type__": "cc.Vec3",
  3290. "x": 375,
  3291. "y": 817,
  3292. "z": 0
  3293. },
  3294. "_lrot": {
  3295. "__type__": "cc.Quat",
  3296. "x": 0,
  3297. "y": 0,
  3298. "z": 0,
  3299. "w": 1
  3300. },
  3301. "_lscale": {
  3302. "__type__": "cc.Vec3",
  3303. "x": 1,
  3304. "y": 1,
  3305. "z": 1
  3306. },
  3307. "_mobility": 0,
  3308. "_layer": 1048576,
  3309. "_euler": {
  3310. "__type__": "cc.Vec3",
  3311. "x": 0,
  3312. "y": 0,
  3313. "z": 0
  3314. },
  3315. "_id": "46yp+URDRGIZoBsXFEb11O"
  3316. },
  3317. {
  3318. "__type__": "cc.Node",
  3319. "_name": "Camera",
  3320. "_objFlags": 0,
  3321. "__editorExtras__": {},
  3322. "_parent": {
  3323. "__id__": 83
  3324. },
  3325. "_children": [],
  3326. "_active": true,
  3327. "_components": [
  3328. {
  3329. "__id__": 85
  3330. }
  3331. ],
  3332. "_prefab": null,
  3333. "_lpos": {
  3334. "__type__": "cc.Vec3",
  3335. "x": 0,
  3336. "y": 0,
  3337. "z": 1000
  3338. },
  3339. "_lrot": {
  3340. "__type__": "cc.Quat",
  3341. "x": 0,
  3342. "y": 0,
  3343. "z": 0,
  3344. "w": 1
  3345. },
  3346. "_lscale": {
  3347. "__type__": "cc.Vec3",
  3348. "x": 1,
  3349. "y": 1,
  3350. "z": 1
  3351. },
  3352. "_mobility": 0,
  3353. "_layer": 1048576,
  3354. "_euler": {
  3355. "__type__": "cc.Vec3",
  3356. "x": 0,
  3357. "y": 0,
  3358. "z": 0
  3359. },
  3360. "_id": "1bIuKFt5hCSoQSy+4CeAxL"
  3361. },
  3362. {
  3363. "__type__": "cc.Camera",
  3364. "_name": "",
  3365. "_objFlags": 0,
  3366. "__editorExtras__": {},
  3367. "node": {
  3368. "__id__": 84
  3369. },
  3370. "_enabled": true,
  3371. "__prefab": null,
  3372. "_projection": 0,
  3373. "_priority": 0,
  3374. "_fov": 45,
  3375. "_fovAxis": 0,
  3376. "_orthoHeight": 817,
  3377. "_near": 1,
  3378. "_far": 2000,
  3379. "_color": {
  3380. "__type__": "cc.Color",
  3381. "r": 0,
  3382. "g": 0,
  3383. "b": 0,
  3384. "a": 255
  3385. },
  3386. "_depth": 1,
  3387. "_stencil": 0,
  3388. "_clearFlags": 6,
  3389. "_rect": {
  3390. "__type__": "cc.Rect",
  3391. "x": 0,
  3392. "y": 0,
  3393. "width": 1,
  3394. "height": 1
  3395. },
  3396. "_aperture": 19,
  3397. "_shutter": 7,
  3398. "_iso": 0,
  3399. "_screenScale": 1,
  3400. "_visibility": 1048576,
  3401. "_targetTexture": null,
  3402. "_postProcess": null,
  3403. "_usePostProcess": false,
  3404. "_cameraType": -1,
  3405. "_trackingType": 0,
  3406. "_id": "14PMN5oWBJ0JBKSLv+yMT7"
  3407. },
  3408. {
  3409. "__type__": "cc.Node",
  3410. "_name": "Bg",
  3411. "_objFlags": 0,
  3412. "__editorExtras__": {},
  3413. "_parent": {
  3414. "__id__": 83
  3415. },
  3416. "_children": [],
  3417. "_active": true,
  3418. "_components": [
  3419. {
  3420. "__id__": 87
  3421. },
  3422. {
  3423. "__id__": 88
  3424. },
  3425. {
  3426. "__id__": 89
  3427. }
  3428. ],
  3429. "_prefab": null,
  3430. "_lpos": {
  3431. "__type__": "cc.Vec3",
  3432. "x": 0,
  3433. "y": 0,
  3434. "z": 0
  3435. },
  3436. "_lrot": {
  3437. "__type__": "cc.Quat",
  3438. "x": 0,
  3439. "y": 0,
  3440. "z": 0,
  3441. "w": 1
  3442. },
  3443. "_lscale": {
  3444. "__type__": "cc.Vec3",
  3445. "x": 1,
  3446. "y": 1,
  3447. "z": 1
  3448. },
  3449. "_mobility": 0,
  3450. "_layer": 1048576,
  3451. "_euler": {
  3452. "__type__": "cc.Vec3",
  3453. "x": 0,
  3454. "y": 0,
  3455. "z": 0
  3456. },
  3457. "_id": "9c7UcxrhVHzZbY7w0a9ZFI"
  3458. },
  3459. {
  3460. "__type__": "cc.UITransform",
  3461. "_name": "",
  3462. "_objFlags": 0,
  3463. "__editorExtras__": {},
  3464. "node": {
  3465. "__id__": 86
  3466. },
  3467. "_enabled": true,
  3468. "__prefab": null,
  3469. "_contentSize": {
  3470. "__type__": "cc.Size",
  3471. "width": 750,
  3472. "height": 1634
  3473. },
  3474. "_anchorPoint": {
  3475. "__type__": "cc.Vec2",
  3476. "x": 0.5,
  3477. "y": 0.5
  3478. },
  3479. "_id": "d8JY4iFA5Cu4eaM6hHT79j"
  3480. },
  3481. {
  3482. "__type__": "cc.Sprite",
  3483. "_name": "",
  3484. "_objFlags": 0,
  3485. "__editorExtras__": {},
  3486. "node": {
  3487. "__id__": 86
  3488. },
  3489. "_enabled": true,
  3490. "__prefab": null,
  3491. "_customMaterial": null,
  3492. "_srcBlendFactor": 2,
  3493. "_dstBlendFactor": 4,
  3494. "_color": {
  3495. "__type__": "cc.Color",
  3496. "r": 255,
  3497. "g": 255,
  3498. "b": 255,
  3499. "a": 255
  3500. },
  3501. "_spriteFrame": {
  3502. "__uuid__": "15f82935-2383-423a-adec-8329320b9049@f9941",
  3503. "__expectedType__": "cc.SpriteFrame"
  3504. },
  3505. "_type": 0,
  3506. "_fillType": 0,
  3507. "_sizeMode": 1,
  3508. "_fillCenter": {
  3509. "__type__": "cc.Vec2",
  3510. "x": 0,
  3511. "y": 0
  3512. },
  3513. "_fillStart": 0,
  3514. "_fillRange": 0,
  3515. "_isTrimmedMode": true,
  3516. "_useGrayscale": false,
  3517. "_atlas": null,
  3518. "_id": "1dTMcv1BZLHqNXIBvjVIPv"
  3519. },
  3520. {
  3521. "__type__": "cc.Widget",
  3522. "_name": "",
  3523. "_objFlags": 0,
  3524. "__editorExtras__": {},
  3525. "node": {
  3526. "__id__": 86
  3527. },
  3528. "_enabled": true,
  3529. "__prefab": null,
  3530. "_alignFlags": 45,
  3531. "_target": null,
  3532. "_left": 0,
  3533. "_right": 0,
  3534. "_top": 0,
  3535. "_bottom": 0,
  3536. "_horizontalCenter": 0,
  3537. "_verticalCenter": 0,
  3538. "_isAbsLeft": true,
  3539. "_isAbsRight": true,
  3540. "_isAbsTop": true,
  3541. "_isAbsBottom": true,
  3542. "_isAbsHorizontalCenter": true,
  3543. "_isAbsVerticalCenter": true,
  3544. "_originalWidth": 750,
  3545. "_originalHeight": 1634,
  3546. "_alignMode": 2,
  3547. "_lockFlags": 0,
  3548. "_id": "a1Ej+q1p5OyK1d0m5lfeFj"
  3549. },
  3550. {
  3551. "__type__": "cc.UITransform",
  3552. "_name": "",
  3553. "_objFlags": 0,
  3554. "__editorExtras__": {},
  3555. "node": {
  3556. "__id__": 83
  3557. },
  3558. "_enabled": true,
  3559. "__prefab": null,
  3560. "_contentSize": {
  3561. "__type__": "cc.Size",
  3562. "width": 750,
  3563. "height": 1634
  3564. },
  3565. "_anchorPoint": {
  3566. "__type__": "cc.Vec2",
  3567. "x": 0.5,
  3568. "y": 0.5
  3569. },
  3570. "_id": "f5FqtIaiRJfJr4YRo3tpyE"
  3571. },
  3572. {
  3573. "__type__": "cc.Canvas",
  3574. "_name": "",
  3575. "_objFlags": 0,
  3576. "__editorExtras__": {},
  3577. "node": {
  3578. "__id__": 83
  3579. },
  3580. "_enabled": true,
  3581. "__prefab": null,
  3582. "_cameraComponent": {
  3583. "__id__": 85
  3584. },
  3585. "_alignCanvasWithScreen": true,
  3586. "_id": "23r6Xd+g9I0qESsGsRKCjN"
  3587. },
  3588. {
  3589. "__type__": "cc.Widget",
  3590. "_name": "",
  3591. "_objFlags": 0,
  3592. "__editorExtras__": {},
  3593. "node": {
  3594. "__id__": 83
  3595. },
  3596. "_enabled": true,
  3597. "__prefab": null,
  3598. "_alignFlags": 45,
  3599. "_target": null,
  3600. "_left": 0,
  3601. "_right": 0,
  3602. "_top": 0,
  3603. "_bottom": 0,
  3604. "_horizontalCenter": 0,
  3605. "_verticalCenter": 0,
  3606. "_isAbsLeft": true,
  3607. "_isAbsRight": true,
  3608. "_isAbsTop": true,
  3609. "_isAbsBottom": true,
  3610. "_isAbsHorizontalCenter": true,
  3611. "_isAbsVerticalCenter": true,
  3612. "_originalWidth": 0,
  3613. "_originalHeight": 0,
  3614. "_alignMode": 2,
  3615. "_lockFlags": 0,
  3616. "_id": "54MG4ULIdO6KcOI3q0KqVK"
  3617. },
  3618. {
  3619. "__type__": "cc.Node",
  3620. "_name": "Camera",
  3621. "_objFlags": 0,
  3622. "__editorExtras__": {},
  3623. "_parent": {
  3624. "__id__": 1
  3625. },
  3626. "_children": [],
  3627. "_active": true,
  3628. "_components": [
  3629. {
  3630. "__id__": 94
  3631. }
  3632. ],
  3633. "_prefab": null,
  3634. "_lpos": {
  3635. "__type__": "cc.Vec3",
  3636. "x": 0,
  3637. "y": 25,
  3638. "z": 0
  3639. },
  3640. "_lrot": {
  3641. "__type__": "cc.Quat",
  3642. "x": -0.7071067811865475,
  3643. "y": 0,
  3644. "z": 0,
  3645. "w": 0.7071067811865476
  3646. },
  3647. "_lscale": {
  3648. "__type__": "cc.Vec3",
  3649. "x": 1,
  3650. "y": 1,
  3651. "z": 1
  3652. },
  3653. "_mobility": 0,
  3654. "_layer": 1073741824,
  3655. "_euler": {
  3656. "__type__": "cc.Vec3",
  3657. "x": -90,
  3658. "y": 0,
  3659. "z": 0
  3660. },
  3661. "_id": "79qu5dHNFO0r7jcjjmEhya"
  3662. },
  3663. {
  3664. "__type__": "cc.Camera",
  3665. "_name": "Camera<CameraComponent>",
  3666. "_objFlags": 0,
  3667. "__editorExtras__": {},
  3668. "node": {
  3669. "__id__": 93
  3670. },
  3671. "_enabled": true,
  3672. "__prefab": null,
  3673. "_projection": 0,
  3674. "_priority": 5,
  3675. "_fov": 45,
  3676. "_fovAxis": 0,
  3677. "_orthoHeight": 9.5,
  3678. "_near": 0.1,
  3679. "_far": 1000,
  3680. "_color": {
  3681. "__type__": "cc.Color",
  3682. "r": 51,
  3683. "g": 76,
  3684. "b": 120,
  3685. "a": 255
  3686. },
  3687. "_depth": 1,
  3688. "_stencil": 0,
  3689. "_clearFlags": 0,
  3690. "_rect": {
  3691. "__type__": "cc.Rect",
  3692. "x": 0,
  3693. "y": 0,
  3694. "width": 1,
  3695. "height": 1
  3696. },
  3697. "_aperture": 19,
  3698. "_shutter": 7,
  3699. "_iso": 0,
  3700. "_screenScale": 1,
  3701. "_visibility": 8,
  3702. "_targetTexture": null,
  3703. "_postProcess": null,
  3704. "_usePostProcess": false,
  3705. "_cameraType": -1,
  3706. "_trackingType": 0,
  3707. "_id": "5e0F3eWTFJG59sYSMYUzx0"
  3708. },
  3709. {
  3710. "__type__": "cc.SceneGlobals",
  3711. "ambient": {
  3712. "__id__": 96
  3713. },
  3714. "shadows": {
  3715. "__id__": 97
  3716. },
  3717. "_skybox": {
  3718. "__id__": 98
  3719. },
  3720. "fog": {
  3721. "__id__": 99
  3722. },
  3723. "octree": {
  3724. "__id__": 100
  3725. },
  3726. "skin": {
  3727. "__id__": 101
  3728. },
  3729. "lightProbeInfo": {
  3730. "__id__": 102
  3731. },
  3732. "postSettings": {
  3733. "__id__": 103
  3734. },
  3735. "bakedWithStationaryMainLight": false,
  3736. "bakedWithHighpLightmap": false
  3737. },
  3738. {
  3739. "__type__": "cc.AmbientInfo",
  3740. "_skyColorHDR": {
  3741. "__type__": "cc.Vec4",
  3742. "x": 0.2,
  3743. "y": 0.5,
  3744. "z": 0.8,
  3745. "w": 0.520833125
  3746. },
  3747. "_skyColor": {
  3748. "__type__": "cc.Vec4",
  3749. "x": 0.2,
  3750. "y": 0.5,
  3751. "z": 0.8,
  3752. "w": 0.520833125
  3753. },
  3754. "_skyIllumHDR": 20000,
  3755. "_skyIllum": 20000,
  3756. "_groundAlbedoHDR": {
  3757. "__type__": "cc.Vec4",
  3758. "x": 0.2,
  3759. "y": 0.2,
  3760. "z": 0.2,
  3761. "w": 1
  3762. },
  3763. "_groundAlbedo": {
  3764. "__type__": "cc.Vec4",
  3765. "x": 0.2,
  3766. "y": 0.2,
  3767. "z": 0.2,
  3768. "w": 1
  3769. },
  3770. "_skyColorLDR": {
  3771. "__type__": "cc.Vec4",
  3772. "x": 0.452588,
  3773. "y": 0.607642,
  3774. "z": 0.755699,
  3775. "w": 0
  3776. },
  3777. "_skyIllumLDR": 0.8,
  3778. "_groundAlbedoLDR": {
  3779. "__type__": "cc.Vec4",
  3780. "x": 0.618555,
  3781. "y": 0.577848,
  3782. "z": 0.544564,
  3783. "w": 0
  3784. }
  3785. },
  3786. {
  3787. "__type__": "cc.ShadowsInfo",
  3788. "_enabled": false,
  3789. "_type": 1,
  3790. "_normal": {
  3791. "__type__": "cc.Vec3",
  3792. "x": 0,
  3793. "y": 1,
  3794. "z": 0
  3795. },
  3796. "_distance": 0,
  3797. "_planeBias": 1,
  3798. "_shadowColor": {
  3799. "__type__": "cc.Color",
  3800. "r": 92,
  3801. "g": 92,
  3802. "b": 92,
  3803. "a": 255
  3804. },
  3805. "_maxReceived": 4,
  3806. "_size": {
  3807. "__type__": "cc.Vec2",
  3808. "x": 2048,
  3809. "y": 2048
  3810. }
  3811. },
  3812. {
  3813. "__type__": "cc.SkyboxInfo",
  3814. "_envLightingType": 2,
  3815. "_envmapHDR": {
  3816. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  3817. "__expectedType__": "cc.TextureCube"
  3818. },
  3819. "_envmap": {
  3820. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  3821. "__expectedType__": "cc.TextureCube"
  3822. },
  3823. "_envmapLDR": {
  3824. "__uuid__": "6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0",
  3825. "__expectedType__": "cc.TextureCube"
  3826. },
  3827. "_diffuseMapHDR": {
  3828. "__uuid__": "80b1958b-b484-4f81-9da2-7fb88dd6d31a@b47c0",
  3829. "__expectedType__": "cc.TextureCube"
  3830. },
  3831. "_diffuseMapLDR": null,
  3832. "_enabled": false,
  3833. "_useHDR": true,
  3834. "_editableMaterial": null,
  3835. "_reflectionHDR": null,
  3836. "_reflectionLDR": null,
  3837. "_rotationAngle": 0
  3838. },
  3839. {
  3840. "__type__": "cc.FogInfo",
  3841. "_type": 0,
  3842. "_fogColor": {
  3843. "__type__": "cc.Color",
  3844. "r": 255,
  3845. "g": 255,
  3846. "b": 255,
  3847. "a": 255
  3848. },
  3849. "_enabled": false,
  3850. "_fogDensity": 0.3,
  3851. "_fogStart": 0.5,
  3852. "_fogEnd": 300,
  3853. "_fogAtten": 5,
  3854. "_fogTop": 1.5,
  3855. "_fogRange": 1.2,
  3856. "_accurate": false
  3857. },
  3858. {
  3859. "__type__": "cc.OctreeInfo",
  3860. "_enabled": false,
  3861. "_minPos": {
  3862. "__type__": "cc.Vec3",
  3863. "x": -1024,
  3864. "y": -1024,
  3865. "z": -1024
  3866. },
  3867. "_maxPos": {
  3868. "__type__": "cc.Vec3",
  3869. "x": 1024,
  3870. "y": 1024,
  3871. "z": 1024
  3872. },
  3873. "_depth": 8
  3874. },
  3875. {
  3876. "__type__": "cc.SkinInfo",
  3877. "_enabled": true,
  3878. "_blurRadius": 0.01,
  3879. "_sssIntensity": 3
  3880. },
  3881. {
  3882. "__type__": "cc.LightProbeInfo",
  3883. "_giScale": 1,
  3884. "_giSamples": 1024,
  3885. "_bounces": 2,
  3886. "_reduceRinging": 0,
  3887. "_showProbe": true,
  3888. "_showWireframe": true,
  3889. "_showConvex": false,
  3890. "_data": null,
  3891. "_lightProbeSphereVolume": 1
  3892. },
  3893. {
  3894. "__type__": "cc.PostSettingsInfo",
  3895. "_toneMappingType": 0
  3896. }
  3897. ]