game.scene 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174
  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__": 13
  30. },
  31. {
  32. "__id__": 26
  33. },
  34. {
  35. "__id__": 28
  36. },
  37. {
  38. "__id__": 53
  39. },
  40. {
  41. "__id__": 60
  42. },
  43. {
  44. "__id__": 74
  45. }
  46. ],
  47. "_active": true,
  48. "_components": [],
  49. "_prefab": {
  50. "__id__": 81
  51. },
  52. "_lpos": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_lrot": {
  59. "__type__": "cc.Quat",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0,
  63. "w": 1
  64. },
  65. "_lscale": {
  66. "__type__": "cc.Vec3",
  67. "x": 1,
  68. "y": 1,
  69. "z": 1
  70. },
  71. "_mobility": 0,
  72. "_layer": 1073741824,
  73. "_euler": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "autoReleaseAssets": false,
  80. "_globals": {
  81. "__id__": 82
  82. },
  83. "_id": "2d0d9d79-af76-426f-8abd-3eeff0d4e1c3"
  84. },
  85. {
  86. "__type__": "cc.Node",
  87. "_name": "Main Light",
  88. "_objFlags": 0,
  89. "__editorExtras__": {},
  90. "_parent": {
  91. "__id__": 1
  92. },
  93. "_children": [],
  94. "_active": true,
  95. "_components": [
  96. {
  97. "__id__": 3
  98. }
  99. ],
  100. "_prefab": null,
  101. "_lpos": {
  102. "__type__": "cc.Vec3",
  103. "x": 0,
  104. "y": 2.787,
  105. "z": 0
  106. },
  107. "_lrot": {
  108. "__type__": "cc.Quat",
  109. "x": -0.7071067811865475,
  110. "y": 0,
  111. "z": 0,
  112. "w": 0.7071067811865476
  113. },
  114. "_lscale": {
  115. "__type__": "cc.Vec3",
  116. "x": 1,
  117. "y": 1,
  118. "z": 1
  119. },
  120. "_mobility": 0,
  121. "_layer": 1073741824,
  122. "_euler": {
  123. "__type__": "cc.Vec3",
  124. "x": -90,
  125. "y": 0,
  126. "z": 0
  127. },
  128. "_id": "c0y6F5f+pAvI805TdmxIjx"
  129. },
  130. {
  131. "__type__": "cc.DirectionalLight",
  132. "_name": "",
  133. "_objFlags": 0,
  134. "__editorExtras__": {},
  135. "node": {
  136. "__id__": 2
  137. },
  138. "_enabled": true,
  139. "__prefab": null,
  140. "_color": {
  141. "__type__": "cc.Color",
  142. "r": 255,
  143. "g": 255,
  144. "b": 255,
  145. "a": 255
  146. },
  147. "_useColorTemperature": false,
  148. "_colorTemperature": 6550,
  149. "_staticSettings": {
  150. "__id__": 4
  151. },
  152. "_visibility": -325058561,
  153. "_illuminanceHDR": 65000,
  154. "_illuminance": 65000,
  155. "_illuminanceLDR": 1.6927083333333335,
  156. "_shadowEnabled": false,
  157. "_shadowPcf": 0,
  158. "_shadowBias": 0.00001,
  159. "_shadowNormalBias": 0,
  160. "_shadowSaturation": 1,
  161. "_shadowDistance": 50,
  162. "_shadowInvisibleOcclusionRange": 200,
  163. "_csmLevel": 4,
  164. "_csmLayerLambda": 0.75,
  165. "_csmOptimizationMode": 2,
  166. "_csmAdvancedOptions": false,
  167. "_csmLayersTransition": false,
  168. "_csmTransitionRange": 0.05,
  169. "_shadowFixedArea": false,
  170. "_shadowNear": 0.1,
  171. "_shadowFar": 10,
  172. "_shadowOrthoSize": 5,
  173. "_id": "597uMYCbhEtJQc0ffJlcgA"
  174. },
  175. {
  176. "__type__": "cc.StaticLightSettings",
  177. "_baked": false,
  178. "_editorOnly": false,
  179. "_castShadow": false
  180. },
  181. {
  182. "__type__": "cc.Node",
  183. "_name": "Main Camera",
  184. "_objFlags": 0,
  185. "__editorExtras__": {},
  186. "_parent": {
  187. "__id__": 1
  188. },
  189. "_children": [],
  190. "_active": true,
  191. "_components": [
  192. {
  193. "__id__": 6
  194. }
  195. ],
  196. "_prefab": null,
  197. "_lpos": {
  198. "__type__": "cc.Vec3",
  199. "x": 0,
  200. "y": 25,
  201. "z": 0
  202. },
  203. "_lrot": {
  204. "__type__": "cc.Quat",
  205. "x": -0.7071067811865475,
  206. "y": 0,
  207. "z": 0,
  208. "w": 0.7071067811865476
  209. },
  210. "_lscale": {
  211. "__type__": "cc.Vec3",
  212. "x": 1,
  213. "y": 1,
  214. "z": 1
  215. },
  216. "_mobility": 0,
  217. "_layer": 1073741824,
  218. "_euler": {
  219. "__type__": "cc.Vec3",
  220. "x": -90,
  221. "y": 0,
  222. "z": 0
  223. },
  224. "_id": "c9DMICJLFO5IeO07EPon7U"
  225. },
  226. {
  227. "__type__": "cc.Camera",
  228. "_name": "",
  229. "_objFlags": 0,
  230. "__editorExtras__": {},
  231. "node": {
  232. "__id__": 5
  233. },
  234. "_enabled": true,
  235. "__prefab": null,
  236. "_projection": 0,
  237. "_priority": 2,
  238. "_fov": 45,
  239. "_fovAxis": 0,
  240. "_orthoHeight": 9,
  241. "_near": 0,
  242. "_far": 1000,
  243. "_color": {
  244. "__type__": "cc.Color",
  245. "r": 51,
  246. "g": 51,
  247. "b": 51,
  248. "a": 255
  249. },
  250. "_depth": 1,
  251. "_stencil": 0,
  252. "_clearFlags": 6,
  253. "_rect": {
  254. "__type__": "cc.Rect",
  255. "x": 0,
  256. "y": 0,
  257. "width": 1,
  258. "height": 1
  259. },
  260. "_aperture": 19,
  261. "_shutter": 7,
  262. "_iso": 0,
  263. "_screenScale": 1,
  264. "_visibility": 1,
  265. "_targetTexture": null,
  266. "_postProcess": null,
  267. "_usePostProcess": false,
  268. "_cameraType": -1,
  269. "_trackingType": 0,
  270. "_id": "7dWQTpwS5LrIHnc1zAPUtf"
  271. },
  272. {
  273. "__type__": "cc.Node",
  274. "_name": "Plane",
  275. "_objFlags": 0,
  276. "__editorExtras__": {},
  277. "_parent": {
  278. "__id__": 1
  279. },
  280. "_children": [],
  281. "_active": true,
  282. "_components": [
  283. {
  284. "__id__": 8
  285. },
  286. {
  287. "__id__": 10
  288. },
  289. {
  290. "__id__": 11
  291. },
  292. {
  293. "__id__": 12
  294. }
  295. ],
  296. "_prefab": null,
  297. "_lpos": {
  298. "__type__": "cc.Vec3",
  299. "x": 0,
  300. "y": 0,
  301. "z": 0
  302. },
  303. "_lrot": {
  304. "__type__": "cc.Quat",
  305. "x": 0,
  306. "y": 0,
  307. "z": 0,
  308. "w": 1
  309. },
  310. "_lscale": {
  311. "__type__": "cc.Vec3",
  312. "x": 0.8,
  313. "y": 1,
  314. "z": 0.8
  315. },
  316. "_mobility": 0,
  317. "_layer": 1,
  318. "_euler": {
  319. "__type__": "cc.Vec3",
  320. "x": 0,
  321. "y": 0,
  322. "z": 0
  323. },
  324. "_id": "72UApiG6RN5JNrOz6hZQSy"
  325. },
  326. {
  327. "__type__": "cc.MeshRenderer",
  328. "_name": "Plane<ModelComponent>",
  329. "_objFlags": 0,
  330. "__editorExtras__": {},
  331. "node": {
  332. "__id__": 7
  333. },
  334. "_enabled": false,
  335. "__prefab": null,
  336. "_materials": [
  337. {
  338. "__uuid__": "1938524c-76dc-428f-9205-03dd62d52eb7@ea6e2",
  339. "__expectedType__": "cc.Material"
  340. }
  341. ],
  342. "_visFlags": 0,
  343. "bakeSettings": {
  344. "__id__": 9
  345. },
  346. "_mesh": {
  347. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  348. "__expectedType__": "cc.Mesh"
  349. },
  350. "_shadowCastingMode": 0,
  351. "_shadowReceivingMode": 1,
  352. "_shadowBias": 0,
  353. "_shadowNormalBias": 0,
  354. "_reflectionProbeId": -1,
  355. "_reflectionProbeBlendId": -1,
  356. "_reflectionProbeBlendWeight": 0,
  357. "_enabledGlobalStandardSkinObject": false,
  358. "_enableMorph": true,
  359. "_id": "c3iKS3irtANI9sfPXQAIaw"
  360. },
  361. {
  362. "__type__": "cc.ModelBakeSettings",
  363. "texture": null,
  364. "uvParam": {
  365. "__type__": "cc.Vec4",
  366. "x": 0,
  367. "y": 0,
  368. "z": 0,
  369. "w": 0
  370. },
  371. "_bakeable": false,
  372. "_castShadow": false,
  373. "_receiveShadow": false,
  374. "_recieveShadow": false,
  375. "_lightmapSize": 64,
  376. "_useLightProbe": false,
  377. "_bakeToLightProbe": true,
  378. "_reflectionProbeType": 0,
  379. "_bakeToReflectionProbe": true
  380. },
  381. {
  382. "__type__": "cc.RigidBody",
  383. "_name": "",
  384. "_objFlags": 0,
  385. "__editorExtras__": {},
  386. "node": {
  387. "__id__": 7
  388. },
  389. "_enabled": true,
  390. "__prefab": null,
  391. "_group": 4,
  392. "_type": 2,
  393. "_mass": 30,
  394. "_allowSleep": true,
  395. "_linearDamping": 0.1,
  396. "_angularDamping": 0.1,
  397. "_useGravity": false,
  398. "_linearFactor": {
  399. "__type__": "cc.Vec3",
  400. "x": 1,
  401. "y": 1,
  402. "z": 1
  403. },
  404. "_angularFactor": {
  405. "__type__": "cc.Vec3",
  406. "x": 1,
  407. "y": 1,
  408. "z": 1
  409. },
  410. "_id": "a62aD1/GdKRIHUtNGOG8BT"
  411. },
  412. {
  413. "__type__": "cc.BoxCollider",
  414. "_name": "",
  415. "_objFlags": 0,
  416. "__editorExtras__": {},
  417. "node": {
  418. "__id__": 7
  419. },
  420. "_enabled": false,
  421. "__prefab": null,
  422. "_material": null,
  423. "_isTrigger": false,
  424. "_center": {
  425. "__type__": "cc.Vec3",
  426. "x": 0,
  427. "y": 0,
  428. "z": 0
  429. },
  430. "_size": {
  431. "__type__": "cc.Vec3",
  432. "x": 10,
  433. "y": 0.001,
  434. "z": 10
  435. },
  436. "_id": "f2bEarqZVPq4xobe/hr36u"
  437. },
  438. {
  439. "__type__": "cc.PlaneCollider",
  440. "_name": "",
  441. "_objFlags": 0,
  442. "__editorExtras__": {},
  443. "node": {
  444. "__id__": 7
  445. },
  446. "_enabled": true,
  447. "__prefab": null,
  448. "_material": null,
  449. "_isTrigger": false,
  450. "_center": {
  451. "__type__": "cc.Vec3",
  452. "x": 0,
  453. "y": 0,
  454. "z": 0
  455. },
  456. "_normal": {
  457. "__type__": "cc.Vec3",
  458. "x": 0,
  459. "y": 1,
  460. "z": 0
  461. },
  462. "_constant": 0,
  463. "_id": "70yAw7vB1BGJ4gkLouCCpl"
  464. },
  465. {
  466. "__type__": "cc.Node",
  467. "_name": "Wall",
  468. "_objFlags": 0,
  469. "__editorExtras__": {},
  470. "_parent": {
  471. "__id__": 1
  472. },
  473. "_children": [
  474. {
  475. "__id__": 14
  476. },
  477. {
  478. "__id__": 17
  479. },
  480. {
  481. "__id__": 20
  482. },
  483. {
  484. "__id__": 23
  485. }
  486. ],
  487. "_active": true,
  488. "_components": [],
  489. "_prefab": null,
  490. "_lpos": {
  491. "__type__": "cc.Vec3",
  492. "x": 0,
  493. "y": 0,
  494. "z": 0.887
  495. },
  496. "_lrot": {
  497. "__type__": "cc.Quat",
  498. "x": 0,
  499. "y": 0,
  500. "z": 0,
  501. "w": 1
  502. },
  503. "_lscale": {
  504. "__type__": "cc.Vec3",
  505. "x": 1,
  506. "y": 1,
  507. "z": 1
  508. },
  509. "_mobility": 0,
  510. "_layer": 1073741824,
  511. "_euler": {
  512. "__type__": "cc.Vec3",
  513. "x": 0,
  514. "y": 0,
  515. "z": 0
  516. },
  517. "_id": "1aV/pwjKxLIZg/J99LLmG7"
  518. },
  519. {
  520. "__type__": "cc.Node",
  521. "_name": "wall_1",
  522. "_objFlags": 0,
  523. "__editorExtras__": {},
  524. "_parent": {
  525. "__id__": 13
  526. },
  527. "_children": [],
  528. "_active": true,
  529. "_components": [
  530. {
  531. "__id__": 15
  532. },
  533. {
  534. "__id__": 16
  535. }
  536. ],
  537. "_prefab": null,
  538. "_lpos": {
  539. "__type__": "cc.Vec3",
  540. "x": -4.497,
  541. "y": 0,
  542. "z": -0.615
  543. },
  544. "_lrot": {
  545. "__type__": "cc.Quat",
  546. "x": 0,
  547. "y": 0,
  548. "z": 0,
  549. "w": 1
  550. },
  551. "_lscale": {
  552. "__type__": "cc.Vec3",
  553. "x": 1,
  554. "y": 9.987,
  555. "z": 1.031
  556. },
  557. "_mobility": 0,
  558. "_layer": 1073741824,
  559. "_euler": {
  560. "__type__": "cc.Vec3",
  561. "x": 0,
  562. "y": 0,
  563. "z": 0
  564. },
  565. "_id": "1fdbBxH8JOCK+GizXrXxYo"
  566. },
  567. {
  568. "__type__": "cc.BoxCollider",
  569. "_name": "",
  570. "_objFlags": 0,
  571. "__editorExtras__": {},
  572. "node": {
  573. "__id__": 14
  574. },
  575. "_enabled": true,
  576. "__prefab": null,
  577. "_material": null,
  578. "_isTrigger": false,
  579. "_center": {
  580. "__type__": "cc.Vec3",
  581. "x": 0,
  582. "y": 0,
  583. "z": 0
  584. },
  585. "_size": {
  586. "__type__": "cc.Vec3",
  587. "x": 1,
  588. "y": 1,
  589. "z": 9.68
  590. },
  591. "_id": "12ImR/JWxMxLwQqJ/i5rbj"
  592. },
  593. {
  594. "__type__": "cc.RigidBody",
  595. "_name": "",
  596. "_objFlags": 0,
  597. "__editorExtras__": {},
  598. "node": {
  599. "__id__": 14
  600. },
  601. "_enabled": true,
  602. "__prefab": null,
  603. "_group": 4,
  604. "_type": 2,
  605. "_mass": 1,
  606. "_allowSleep": true,
  607. "_linearDamping": 0.1,
  608. "_angularDamping": 0.1,
  609. "_useGravity": true,
  610. "_linearFactor": {
  611. "__type__": "cc.Vec3",
  612. "x": 1,
  613. "y": 1,
  614. "z": 1
  615. },
  616. "_angularFactor": {
  617. "__type__": "cc.Vec3",
  618. "x": 1,
  619. "y": 1,
  620. "z": 1
  621. },
  622. "_id": "45JLyLlhxMT7sKk8dlJ/EY"
  623. },
  624. {
  625. "__type__": "cc.Node",
  626. "_name": "wall_2",
  627. "_objFlags": 0,
  628. "__editorExtras__": {},
  629. "_parent": {
  630. "__id__": 13
  631. },
  632. "_children": [],
  633. "_active": true,
  634. "_components": [
  635. {
  636. "__id__": 18
  637. },
  638. {
  639. "__id__": 19
  640. }
  641. ],
  642. "_prefab": null,
  643. "_lpos": {
  644. "__type__": "cc.Vec3",
  645. "x": 4.864,
  646. "y": 0,
  647. "z": -0.825
  648. },
  649. "_lrot": {
  650. "__type__": "cc.Quat",
  651. "x": 0,
  652. "y": 0,
  653. "z": 0,
  654. "w": 1
  655. },
  656. "_lscale": {
  657. "__type__": "cc.Vec3",
  658. "x": 1,
  659. "y": 9.987,
  660. "z": 1.031
  661. },
  662. "_mobility": 0,
  663. "_layer": 1073741824,
  664. "_euler": {
  665. "__type__": "cc.Vec3",
  666. "x": 0,
  667. "y": 0,
  668. "z": 0
  669. },
  670. "_id": "63DtaylldKZ5h1ztxOA+fP"
  671. },
  672. {
  673. "__type__": "cc.BoxCollider",
  674. "_name": "",
  675. "_objFlags": 0,
  676. "__editorExtras__": {},
  677. "node": {
  678. "__id__": 17
  679. },
  680. "_enabled": true,
  681. "__prefab": null,
  682. "_material": null,
  683. "_isTrigger": false,
  684. "_center": {
  685. "__type__": "cc.Vec3",
  686. "x": 0,
  687. "y": 0,
  688. "z": 0
  689. },
  690. "_size": {
  691. "__type__": "cc.Vec3",
  692. "x": 1,
  693. "y": 1,
  694. "z": 9.68
  695. },
  696. "_id": "62phSnl19LTqCUypYOUG6+"
  697. },
  698. {
  699. "__type__": "cc.RigidBody",
  700. "_name": "",
  701. "_objFlags": 0,
  702. "__editorExtras__": {},
  703. "node": {
  704. "__id__": 17
  705. },
  706. "_enabled": true,
  707. "__prefab": null,
  708. "_group": 4,
  709. "_type": 2,
  710. "_mass": 1,
  711. "_allowSleep": true,
  712. "_linearDamping": 0.1,
  713. "_angularDamping": 0.1,
  714. "_useGravity": true,
  715. "_linearFactor": {
  716. "__type__": "cc.Vec3",
  717. "x": 1,
  718. "y": 1,
  719. "z": 1
  720. },
  721. "_angularFactor": {
  722. "__type__": "cc.Vec3",
  723. "x": 1,
  724. "y": 1,
  725. "z": 1
  726. },
  727. "_id": "fcTzPXNyJDk6BWETdPa6Jq"
  728. },
  729. {
  730. "__type__": "cc.Node",
  731. "_name": "wall_3",
  732. "_objFlags": 0,
  733. "__editorExtras__": {},
  734. "_parent": {
  735. "__id__": 13
  736. },
  737. "_children": [],
  738. "_active": true,
  739. "_components": [
  740. {
  741. "__id__": 21
  742. },
  743. {
  744. "__id__": 22
  745. }
  746. ],
  747. "_prefab": null,
  748. "_lpos": {
  749. "__type__": "cc.Vec3",
  750. "x": -0.04,
  751. "y": 0,
  752. "z": -5.364000000000001
  753. },
  754. "_lrot": {
  755. "__type__": "cc.Quat",
  756. "x": 0,
  757. "y": 0.7071067811865475,
  758. "z": 0,
  759. "w": 0.7071067811865476
  760. },
  761. "_lscale": {
  762. "__type__": "cc.Vec3",
  763. "x": 1,
  764. "y": 9.987,
  765. "z": 1.031
  766. },
  767. "_mobility": 0,
  768. "_layer": 1073741824,
  769. "_euler": {
  770. "__type__": "cc.Vec3",
  771. "x": 0,
  772. "y": 90,
  773. "z": 0
  774. },
  775. "_id": "43mpxeUZ5GnosHNsLRAX/9"
  776. },
  777. {
  778. "__type__": "cc.BoxCollider",
  779. "_name": "",
  780. "_objFlags": 0,
  781. "__editorExtras__": {},
  782. "node": {
  783. "__id__": 20
  784. },
  785. "_enabled": true,
  786. "__prefab": null,
  787. "_material": null,
  788. "_isTrigger": false,
  789. "_center": {
  790. "__type__": "cc.Vec3",
  791. "x": 0,
  792. "y": 0,
  793. "z": 0
  794. },
  795. "_size": {
  796. "__type__": "cc.Vec3",
  797. "x": 1,
  798. "y": 1,
  799. "z": 9.68
  800. },
  801. "_id": "f8SNz9TRhI3IauY3mvDuLo"
  802. },
  803. {
  804. "__type__": "cc.RigidBody",
  805. "_name": "",
  806. "_objFlags": 0,
  807. "__editorExtras__": {},
  808. "node": {
  809. "__id__": 20
  810. },
  811. "_enabled": true,
  812. "__prefab": null,
  813. "_group": 4,
  814. "_type": 2,
  815. "_mass": 1,
  816. "_allowSleep": true,
  817. "_linearDamping": 0.1,
  818. "_angularDamping": 0.1,
  819. "_useGravity": true,
  820. "_linearFactor": {
  821. "__type__": "cc.Vec3",
  822. "x": 1,
  823. "y": 1,
  824. "z": 1
  825. },
  826. "_angularFactor": {
  827. "__type__": "cc.Vec3",
  828. "x": 1,
  829. "y": 1,
  830. "z": 1
  831. },
  832. "_id": "5eNQN1Le9P2KybSP/Zgacv"
  833. },
  834. {
  835. "__type__": "cc.Node",
  836. "_name": "wall_4",
  837. "_objFlags": 0,
  838. "__editorExtras__": {},
  839. "_parent": {
  840. "__id__": 13
  841. },
  842. "_children": [],
  843. "_active": true,
  844. "_components": [
  845. {
  846. "__id__": 24
  847. },
  848. {
  849. "__id__": 25
  850. }
  851. ],
  852. "_prefab": null,
  853. "_lpos": {
  854. "__type__": "cc.Vec3",
  855. "x": -0.019,
  856. "y": 0,
  857. "z": 3.661
  858. },
  859. "_lrot": {
  860. "__type__": "cc.Quat",
  861. "x": 0,
  862. "y": 0.7071067811865475,
  863. "z": 0,
  864. "w": 0.7071067811865476
  865. },
  866. "_lscale": {
  867. "__type__": "cc.Vec3",
  868. "x": 1,
  869. "y": 9.987,
  870. "z": 1.031
  871. },
  872. "_mobility": 0,
  873. "_layer": 1073741824,
  874. "_euler": {
  875. "__type__": "cc.Vec3",
  876. "x": 0,
  877. "y": 90,
  878. "z": 0
  879. },
  880. "_id": "59ssmMBEBJ8rUvAJV8tW8N"
  881. },
  882. {
  883. "__type__": "cc.BoxCollider",
  884. "_name": "",
  885. "_objFlags": 0,
  886. "__editorExtras__": {},
  887. "node": {
  888. "__id__": 23
  889. },
  890. "_enabled": true,
  891. "__prefab": null,
  892. "_material": null,
  893. "_isTrigger": false,
  894. "_center": {
  895. "__type__": "cc.Vec3",
  896. "x": 0,
  897. "y": 0,
  898. "z": 0
  899. },
  900. "_size": {
  901. "__type__": "cc.Vec3",
  902. "x": 1,
  903. "y": 1,
  904. "z": 9.68
  905. },
  906. "_id": "8cZ6cQcudF2Khm/+2y0N+7"
  907. },
  908. {
  909. "__type__": "cc.RigidBody",
  910. "_name": "",
  911. "_objFlags": 0,
  912. "__editorExtras__": {},
  913. "node": {
  914. "__id__": 23
  915. },
  916. "_enabled": true,
  917. "__prefab": null,
  918. "_group": 4,
  919. "_type": 2,
  920. "_mass": 1,
  921. "_allowSleep": true,
  922. "_linearDamping": 0.1,
  923. "_angularDamping": 0.1,
  924. "_useGravity": true,
  925. "_linearFactor": {
  926. "__type__": "cc.Vec3",
  927. "x": 1,
  928. "y": 1,
  929. "z": 1
  930. },
  931. "_angularFactor": {
  932. "__type__": "cc.Vec3",
  933. "x": 1,
  934. "y": 1,
  935. "z": 1
  936. },
  937. "_id": "e76li/DwBFybE1+6n9LpTv"
  938. },
  939. {
  940. "__type__": "cc.Node",
  941. "_name": "CreateIdiom",
  942. "_objFlags": 0,
  943. "__editorExtras__": {},
  944. "_parent": {
  945. "__id__": 1
  946. },
  947. "_children": [],
  948. "_active": true,
  949. "_components": [
  950. {
  951. "__id__": 27
  952. }
  953. ],
  954. "_prefab": null,
  955. "_lpos": {
  956. "__type__": "cc.Vec3",
  957. "x": 0,
  958. "y": 0.6,
  959. "z": 0
  960. },
  961. "_lrot": {
  962. "__type__": "cc.Quat",
  963. "x": 0,
  964. "y": 0,
  965. "z": 0,
  966. "w": 1
  967. },
  968. "_lscale": {
  969. "__type__": "cc.Vec3",
  970. "x": 1,
  971. "y": 1,
  972. "z": 1
  973. },
  974. "_mobility": 0,
  975. "_layer": 1073741824,
  976. "_euler": {
  977. "__type__": "cc.Vec3",
  978. "x": 0,
  979. "y": 0,
  980. "z": 0
  981. },
  982. "_id": "d6HInZ0ShOwa2F1LFe2ddp"
  983. },
  984. {
  985. "__type__": "3b901oU5ZJHnp8TtJiYjZWZ",
  986. "_name": "",
  987. "_objFlags": 0,
  988. "__editorExtras__": {},
  989. "node": {
  990. "__id__": 26
  991. },
  992. "_enabled": true,
  993. "__prefab": null,
  994. "_id": "efM5v8ZlVIJbIGOUQXJc5T"
  995. },
  996. {
  997. "__type__": "cc.Node",
  998. "_name": "Container",
  999. "_objFlags": 0,
  1000. "__editorExtras__": {},
  1001. "_parent": {
  1002. "__id__": 1
  1003. },
  1004. "_children": [
  1005. {
  1006. "__id__": 29
  1007. },
  1008. {
  1009. "__id__": 31
  1010. },
  1011. {
  1012. "__id__": 33
  1013. },
  1014. {
  1015. "__id__": 35
  1016. },
  1017. {
  1018. "__id__": 37
  1019. },
  1020. {
  1021. "__id__": 39
  1022. },
  1023. {
  1024. "__id__": 41
  1025. },
  1026. {
  1027. "__id__": 43
  1028. },
  1029. {
  1030. "__id__": 45
  1031. },
  1032. {
  1033. "__id__": 47
  1034. }
  1035. ],
  1036. "_active": true,
  1037. "_components": [
  1038. {
  1039. "__id__": 48
  1040. },
  1041. {
  1042. "__id__": 50
  1043. },
  1044. {
  1045. "__id__": 51
  1046. },
  1047. {
  1048. "__id__": 52
  1049. }
  1050. ],
  1051. "_prefab": null,
  1052. "_lpos": {
  1053. "__type__": "cc.Vec3",
  1054. "x": 0,
  1055. "y": 0,
  1056. "z": 5.78
  1057. },
  1058. "_lrot": {
  1059. "__type__": "cc.Quat",
  1060. "x": 0,
  1061. "y": 0,
  1062. "z": 0,
  1063. "w": 1
  1064. },
  1065. "_lscale": {
  1066. "__type__": "cc.Vec3",
  1067. "x": 8.5,
  1068. "y": 1,
  1069. "z": 1
  1070. },
  1071. "_mobility": 0,
  1072. "_layer": 1073741824,
  1073. "_euler": {
  1074. "__type__": "cc.Vec3",
  1075. "x": 0,
  1076. "y": 0,
  1077. "z": 0
  1078. },
  1079. "_id": "f0GX3pCeZIV6FD3Ehumddf"
  1080. },
  1081. {
  1082. "__type__": "cc.Node",
  1083. "_name": "Cube-1",
  1084. "_objFlags": 0,
  1085. "__editorExtras__": {},
  1086. "_parent": {
  1087. "__id__": 28
  1088. },
  1089. "_children": [],
  1090. "_active": true,
  1091. "_components": [
  1092. {
  1093. "__id__": 30
  1094. }
  1095. ],
  1096. "_prefab": null,
  1097. "_lpos": {
  1098. "__type__": "cc.Vec3",
  1099. "x": -0.402,
  1100. "y": 1,
  1101. "z": 0
  1102. },
  1103. "_lrot": {
  1104. "__type__": "cc.Quat",
  1105. "x": 0,
  1106. "y": 0,
  1107. "z": 0,
  1108. "w": 1
  1109. },
  1110. "_lscale": {
  1111. "__type__": "cc.Vec3",
  1112. "x": 0.2,
  1113. "y": 1,
  1114. "z": 1
  1115. },
  1116. "_mobility": 0,
  1117. "_layer": 1073741824,
  1118. "_euler": {
  1119. "__type__": "cc.Vec3",
  1120. "x": 0,
  1121. "y": 0,
  1122. "z": 0
  1123. },
  1124. "_id": "99aW5pfcJMP6pUGU86bbN7"
  1125. },
  1126. {
  1127. "__type__": "cc.BoxCollider",
  1128. "_name": "",
  1129. "_objFlags": 0,
  1130. "__editorExtras__": {},
  1131. "node": {
  1132. "__id__": 29
  1133. },
  1134. "_enabled": true,
  1135. "__prefab": null,
  1136. "_material": null,
  1137. "_isTrigger": false,
  1138. "_center": {
  1139. "__type__": "cc.Vec3",
  1140. "x": 0,
  1141. "y": 0,
  1142. "z": 0
  1143. },
  1144. "_size": {
  1145. "__type__": "cc.Vec3",
  1146. "x": 1,
  1147. "y": 1,
  1148. "z": 1
  1149. },
  1150. "_id": "63HB4bxrJD7p/Udv5iyHUs"
  1151. },
  1152. {
  1153. "__type__": "cc.Node",
  1154. "_name": "Cube-2",
  1155. "_objFlags": 0,
  1156. "__editorExtras__": {},
  1157. "_parent": {
  1158. "__id__": 28
  1159. },
  1160. "_children": [],
  1161. "_active": true,
  1162. "_components": [
  1163. {
  1164. "__id__": 32
  1165. }
  1166. ],
  1167. "_prefab": null,
  1168. "_lpos": {
  1169. "__type__": "cc.Vec3",
  1170. "x": -0.302,
  1171. "y": 1,
  1172. "z": 0
  1173. },
  1174. "_lrot": {
  1175. "__type__": "cc.Quat",
  1176. "x": 0,
  1177. "y": 0,
  1178. "z": 0,
  1179. "w": 1
  1180. },
  1181. "_lscale": {
  1182. "__type__": "cc.Vec3",
  1183. "x": 0.2,
  1184. "y": 1,
  1185. "z": 1
  1186. },
  1187. "_mobility": 0,
  1188. "_layer": 1073741824,
  1189. "_euler": {
  1190. "__type__": "cc.Vec3",
  1191. "x": 0,
  1192. "y": 0,
  1193. "z": 0
  1194. },
  1195. "_id": "d62YPOJehC2ISNWjGXLXau"
  1196. },
  1197. {
  1198. "__type__": "cc.BoxCollider",
  1199. "_name": "",
  1200. "_objFlags": 0,
  1201. "__editorExtras__": {},
  1202. "node": {
  1203. "__id__": 31
  1204. },
  1205. "_enabled": true,
  1206. "__prefab": null,
  1207. "_material": null,
  1208. "_isTrigger": false,
  1209. "_center": {
  1210. "__type__": "cc.Vec3",
  1211. "x": 0,
  1212. "y": 0,
  1213. "z": 0
  1214. },
  1215. "_size": {
  1216. "__type__": "cc.Vec3",
  1217. "x": 1,
  1218. "y": 1,
  1219. "z": 1
  1220. },
  1221. "_id": "26R/XnKbdLdLejy6WEHXi5"
  1222. },
  1223. {
  1224. "__type__": "cc.Node",
  1225. "_name": "Cube-3",
  1226. "_objFlags": 0,
  1227. "__editorExtras__": {},
  1228. "_parent": {
  1229. "__id__": 28
  1230. },
  1231. "_children": [],
  1232. "_active": true,
  1233. "_components": [
  1234. {
  1235. "__id__": 34
  1236. }
  1237. ],
  1238. "_prefab": null,
  1239. "_lpos": {
  1240. "__type__": "cc.Vec3",
  1241. "x": -0.202,
  1242. "y": 1,
  1243. "z": 0
  1244. },
  1245. "_lrot": {
  1246. "__type__": "cc.Quat",
  1247. "x": 0,
  1248. "y": 0,
  1249. "z": 0,
  1250. "w": 1
  1251. },
  1252. "_lscale": {
  1253. "__type__": "cc.Vec3",
  1254. "x": 0.2,
  1255. "y": 1,
  1256. "z": 1
  1257. },
  1258. "_mobility": 0,
  1259. "_layer": 1073741824,
  1260. "_euler": {
  1261. "__type__": "cc.Vec3",
  1262. "x": 0,
  1263. "y": 0,
  1264. "z": 0
  1265. },
  1266. "_id": "a4qdABMLxPRKBB1WrSEAYS"
  1267. },
  1268. {
  1269. "__type__": "cc.BoxCollider",
  1270. "_name": "",
  1271. "_objFlags": 0,
  1272. "__editorExtras__": {},
  1273. "node": {
  1274. "__id__": 33
  1275. },
  1276. "_enabled": true,
  1277. "__prefab": null,
  1278. "_material": null,
  1279. "_isTrigger": false,
  1280. "_center": {
  1281. "__type__": "cc.Vec3",
  1282. "x": 0,
  1283. "y": 0,
  1284. "z": 0
  1285. },
  1286. "_size": {
  1287. "__type__": "cc.Vec3",
  1288. "x": 1,
  1289. "y": 1,
  1290. "z": 1
  1291. },
  1292. "_id": "2b+uJrPXdJeqEhXopaJ07g"
  1293. },
  1294. {
  1295. "__type__": "cc.Node",
  1296. "_name": "Cube-4",
  1297. "_objFlags": 0,
  1298. "__editorExtras__": {},
  1299. "_parent": {
  1300. "__id__": 28
  1301. },
  1302. "_children": [],
  1303. "_active": true,
  1304. "_components": [
  1305. {
  1306. "__id__": 36
  1307. }
  1308. ],
  1309. "_prefab": null,
  1310. "_lpos": {
  1311. "__type__": "cc.Vec3",
  1312. "x": -0.102,
  1313. "y": 1,
  1314. "z": 0
  1315. },
  1316. "_lrot": {
  1317. "__type__": "cc.Quat",
  1318. "x": 0,
  1319. "y": 0,
  1320. "z": 0,
  1321. "w": 1
  1322. },
  1323. "_lscale": {
  1324. "__type__": "cc.Vec3",
  1325. "x": 0.2,
  1326. "y": 1,
  1327. "z": 1
  1328. },
  1329. "_mobility": 0,
  1330. "_layer": 1073741824,
  1331. "_euler": {
  1332. "__type__": "cc.Vec3",
  1333. "x": 0,
  1334. "y": 0,
  1335. "z": 0
  1336. },
  1337. "_id": "ceeYrvP6tKKIOzdpsWVYzK"
  1338. },
  1339. {
  1340. "__type__": "cc.BoxCollider",
  1341. "_name": "",
  1342. "_objFlags": 0,
  1343. "__editorExtras__": {},
  1344. "node": {
  1345. "__id__": 35
  1346. },
  1347. "_enabled": true,
  1348. "__prefab": null,
  1349. "_material": null,
  1350. "_isTrigger": false,
  1351. "_center": {
  1352. "__type__": "cc.Vec3",
  1353. "x": 0,
  1354. "y": 0,
  1355. "z": 0
  1356. },
  1357. "_size": {
  1358. "__type__": "cc.Vec3",
  1359. "x": 1,
  1360. "y": 1,
  1361. "z": 1
  1362. },
  1363. "_id": "6aENIbsXhIao7pRtHPu7vB"
  1364. },
  1365. {
  1366. "__type__": "cc.Node",
  1367. "_name": "Cube-5",
  1368. "_objFlags": 0,
  1369. "__editorExtras__": {},
  1370. "_parent": {
  1371. "__id__": 28
  1372. },
  1373. "_children": [],
  1374. "_active": true,
  1375. "_components": [
  1376. {
  1377. "__id__": 38
  1378. }
  1379. ],
  1380. "_prefab": null,
  1381. "_lpos": {
  1382. "__type__": "cc.Vec3",
  1383. "x": -0.002,
  1384. "y": 1,
  1385. "z": 0
  1386. },
  1387. "_lrot": {
  1388. "__type__": "cc.Quat",
  1389. "x": 0,
  1390. "y": 0,
  1391. "z": 0,
  1392. "w": 1
  1393. },
  1394. "_lscale": {
  1395. "__type__": "cc.Vec3",
  1396. "x": 0.2,
  1397. "y": 1,
  1398. "z": 1
  1399. },
  1400. "_mobility": 0,
  1401. "_layer": 1073741824,
  1402. "_euler": {
  1403. "__type__": "cc.Vec3",
  1404. "x": 0,
  1405. "y": 0,
  1406. "z": 0
  1407. },
  1408. "_id": "3dGYXjWPBNgK26wQmlVDNr"
  1409. },
  1410. {
  1411. "__type__": "cc.BoxCollider",
  1412. "_name": "",
  1413. "_objFlags": 0,
  1414. "__editorExtras__": {},
  1415. "node": {
  1416. "__id__": 37
  1417. },
  1418. "_enabled": true,
  1419. "__prefab": null,
  1420. "_material": null,
  1421. "_isTrigger": false,
  1422. "_center": {
  1423. "__type__": "cc.Vec3",
  1424. "x": 0,
  1425. "y": 0,
  1426. "z": 0
  1427. },
  1428. "_size": {
  1429. "__type__": "cc.Vec3",
  1430. "x": 1,
  1431. "y": 1,
  1432. "z": 1
  1433. },
  1434. "_id": "2fZ26wbKJFyIWniWWfoFh6"
  1435. },
  1436. {
  1437. "__type__": "cc.Node",
  1438. "_name": "Cube-6",
  1439. "_objFlags": 0,
  1440. "__editorExtras__": {},
  1441. "_parent": {
  1442. "__id__": 28
  1443. },
  1444. "_children": [],
  1445. "_active": true,
  1446. "_components": [
  1447. {
  1448. "__id__": 40
  1449. }
  1450. ],
  1451. "_prefab": null,
  1452. "_lpos": {
  1453. "__type__": "cc.Vec3",
  1454. "x": 0.098,
  1455. "y": 1,
  1456. "z": 0
  1457. },
  1458. "_lrot": {
  1459. "__type__": "cc.Quat",
  1460. "x": 0,
  1461. "y": 0,
  1462. "z": 0,
  1463. "w": 1
  1464. },
  1465. "_lscale": {
  1466. "__type__": "cc.Vec3",
  1467. "x": 0.2,
  1468. "y": 1,
  1469. "z": 1
  1470. },
  1471. "_mobility": 0,
  1472. "_layer": 1073741824,
  1473. "_euler": {
  1474. "__type__": "cc.Vec3",
  1475. "x": 0,
  1476. "y": 0,
  1477. "z": 0
  1478. },
  1479. "_id": "43ayxvUI9MMbSQdT9LXJ3l"
  1480. },
  1481. {
  1482. "__type__": "cc.BoxCollider",
  1483. "_name": "",
  1484. "_objFlags": 0,
  1485. "__editorExtras__": {},
  1486. "node": {
  1487. "__id__": 39
  1488. },
  1489. "_enabled": true,
  1490. "__prefab": null,
  1491. "_material": null,
  1492. "_isTrigger": false,
  1493. "_center": {
  1494. "__type__": "cc.Vec3",
  1495. "x": 0,
  1496. "y": 0,
  1497. "z": 0
  1498. },
  1499. "_size": {
  1500. "__type__": "cc.Vec3",
  1501. "x": 1,
  1502. "y": 1,
  1503. "z": 1
  1504. },
  1505. "_id": "dfR4u0t69I9b7Glk7J0nw0"
  1506. },
  1507. {
  1508. "__type__": "cc.Node",
  1509. "_name": "Cube-7",
  1510. "_objFlags": 0,
  1511. "__editorExtras__": {},
  1512. "_parent": {
  1513. "__id__": 28
  1514. },
  1515. "_children": [],
  1516. "_active": true,
  1517. "_components": [
  1518. {
  1519. "__id__": 42
  1520. }
  1521. ],
  1522. "_prefab": null,
  1523. "_lpos": {
  1524. "__type__": "cc.Vec3",
  1525. "x": 0.198,
  1526. "y": 1,
  1527. "z": 0
  1528. },
  1529. "_lrot": {
  1530. "__type__": "cc.Quat",
  1531. "x": 0,
  1532. "y": 0,
  1533. "z": 0,
  1534. "w": 1
  1535. },
  1536. "_lscale": {
  1537. "__type__": "cc.Vec3",
  1538. "x": 0.2,
  1539. "y": 1,
  1540. "z": 1
  1541. },
  1542. "_mobility": 0,
  1543. "_layer": 1073741824,
  1544. "_euler": {
  1545. "__type__": "cc.Vec3",
  1546. "x": 0,
  1547. "y": 0,
  1548. "z": 0
  1549. },
  1550. "_id": "70kjTNmahDQ6uBPi/Oa07q"
  1551. },
  1552. {
  1553. "__type__": "cc.BoxCollider",
  1554. "_name": "",
  1555. "_objFlags": 0,
  1556. "__editorExtras__": {},
  1557. "node": {
  1558. "__id__": 41
  1559. },
  1560. "_enabled": true,
  1561. "__prefab": null,
  1562. "_material": null,
  1563. "_isTrigger": false,
  1564. "_center": {
  1565. "__type__": "cc.Vec3",
  1566. "x": 0,
  1567. "y": 0,
  1568. "z": 0
  1569. },
  1570. "_size": {
  1571. "__type__": "cc.Vec3",
  1572. "x": 1,
  1573. "y": 1,
  1574. "z": 1
  1575. },
  1576. "_id": "21csd6OR5OV6wB7c2ZClcJ"
  1577. },
  1578. {
  1579. "__type__": "cc.Node",
  1580. "_name": "Cube-8",
  1581. "_objFlags": 0,
  1582. "__editorExtras__": {},
  1583. "_parent": {
  1584. "__id__": 28
  1585. },
  1586. "_children": [],
  1587. "_active": true,
  1588. "_components": [
  1589. {
  1590. "__id__": 44
  1591. }
  1592. ],
  1593. "_prefab": null,
  1594. "_lpos": {
  1595. "__type__": "cc.Vec3",
  1596. "x": 0.298,
  1597. "y": 1,
  1598. "z": 0
  1599. },
  1600. "_lrot": {
  1601. "__type__": "cc.Quat",
  1602. "x": 0,
  1603. "y": 0,
  1604. "z": 0,
  1605. "w": 1
  1606. },
  1607. "_lscale": {
  1608. "__type__": "cc.Vec3",
  1609. "x": 0.2,
  1610. "y": 1,
  1611. "z": 1
  1612. },
  1613. "_mobility": 0,
  1614. "_layer": 1073741824,
  1615. "_euler": {
  1616. "__type__": "cc.Vec3",
  1617. "x": 0,
  1618. "y": 0,
  1619. "z": 0
  1620. },
  1621. "_id": "18yNJIp6dI2I9IPFaTQh+D"
  1622. },
  1623. {
  1624. "__type__": "cc.BoxCollider",
  1625. "_name": "",
  1626. "_objFlags": 0,
  1627. "__editorExtras__": {},
  1628. "node": {
  1629. "__id__": 43
  1630. },
  1631. "_enabled": true,
  1632. "__prefab": null,
  1633. "_material": null,
  1634. "_isTrigger": false,
  1635. "_center": {
  1636. "__type__": "cc.Vec3",
  1637. "x": 0,
  1638. "y": 0,
  1639. "z": 0
  1640. },
  1641. "_size": {
  1642. "__type__": "cc.Vec3",
  1643. "x": 1,
  1644. "y": 1,
  1645. "z": 1
  1646. },
  1647. "_id": "9bR+736L9PIJRIyAVkZdW9"
  1648. },
  1649. {
  1650. "__type__": "cc.Node",
  1651. "_name": "Cube-9",
  1652. "_objFlags": 0,
  1653. "__editorExtras__": {},
  1654. "_parent": {
  1655. "__id__": 28
  1656. },
  1657. "_children": [],
  1658. "_active": true,
  1659. "_components": [
  1660. {
  1661. "__id__": 46
  1662. }
  1663. ],
  1664. "_prefab": null,
  1665. "_lpos": {
  1666. "__type__": "cc.Vec3",
  1667. "x": 0.398,
  1668. "y": 1,
  1669. "z": 0
  1670. },
  1671. "_lrot": {
  1672. "__type__": "cc.Quat",
  1673. "x": 0,
  1674. "y": 0,
  1675. "z": 0,
  1676. "w": 1
  1677. },
  1678. "_lscale": {
  1679. "__type__": "cc.Vec3",
  1680. "x": 0.2,
  1681. "y": 1,
  1682. "z": 1
  1683. },
  1684. "_mobility": 0,
  1685. "_layer": 1073741824,
  1686. "_euler": {
  1687. "__type__": "cc.Vec3",
  1688. "x": 0,
  1689. "y": 0,
  1690. "z": 0
  1691. },
  1692. "_id": "ad0LgQ1P9LQYpS18pemSI3"
  1693. },
  1694. {
  1695. "__type__": "cc.BoxCollider",
  1696. "_name": "",
  1697. "_objFlags": 0,
  1698. "__editorExtras__": {},
  1699. "node": {
  1700. "__id__": 45
  1701. },
  1702. "_enabled": true,
  1703. "__prefab": null,
  1704. "_material": null,
  1705. "_isTrigger": false,
  1706. "_center": {
  1707. "__type__": "cc.Vec3",
  1708. "x": 0,
  1709. "y": 0,
  1710. "z": 0
  1711. },
  1712. "_size": {
  1713. "__type__": "cc.Vec3",
  1714. "x": 1,
  1715. "y": 1,
  1716. "z": 1
  1717. },
  1718. "_id": "58O1fWqudOoJLtQ7xeizi1"
  1719. },
  1720. {
  1721. "__type__": "cc.Node",
  1722. "_name": "Cube-10",
  1723. "_objFlags": 0,
  1724. "__editorExtras__": {},
  1725. "_parent": {
  1726. "__id__": 28
  1727. },
  1728. "_children": [],
  1729. "_active": false,
  1730. "_components": [],
  1731. "_prefab": null,
  1732. "_lpos": {
  1733. "__type__": "cc.Vec3",
  1734. "x": 0.45,
  1735. "y": 1,
  1736. "z": 0
  1737. },
  1738. "_lrot": {
  1739. "__type__": "cc.Quat",
  1740. "x": 0,
  1741. "y": 0,
  1742. "z": 0,
  1743. "w": 1
  1744. },
  1745. "_lscale": {
  1746. "__type__": "cc.Vec3",
  1747. "x": 0.1,
  1748. "y": 1,
  1749. "z": 1
  1750. },
  1751. "_mobility": 0,
  1752. "_layer": 1073741824,
  1753. "_euler": {
  1754. "__type__": "cc.Vec3",
  1755. "x": 0,
  1756. "y": 0,
  1757. "z": 0
  1758. },
  1759. "_id": "ffCNsEjwtKoKCdxZ3Hh6Ks"
  1760. },
  1761. {
  1762. "__type__": "cc.MeshRenderer",
  1763. "_name": "Cube<ModelComponent>",
  1764. "_objFlags": 0,
  1765. "__editorExtras__": {},
  1766. "node": {
  1767. "__id__": 28
  1768. },
  1769. "_enabled": true,
  1770. "__prefab": null,
  1771. "_materials": [
  1772. {
  1773. "__uuid__": "1938524c-76dc-428f-9205-03dd62d52eb7@ea6e2",
  1774. "__expectedType__": "cc.Material"
  1775. }
  1776. ],
  1777. "_visFlags": 0,
  1778. "bakeSettings": {
  1779. "__id__": 49
  1780. },
  1781. "_mesh": {
  1782. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a",
  1783. "__expectedType__": "cc.Mesh"
  1784. },
  1785. "_shadowCastingMode": 0,
  1786. "_shadowReceivingMode": 1,
  1787. "_shadowBias": 0,
  1788. "_shadowNormalBias": 0,
  1789. "_reflectionProbeId": -1,
  1790. "_reflectionProbeBlendId": -1,
  1791. "_reflectionProbeBlendWeight": 0,
  1792. "_enabledGlobalStandardSkinObject": false,
  1793. "_enableMorph": true,
  1794. "_id": "9cbwsfxj1O7pzuD49orLzT"
  1795. },
  1796. {
  1797. "__type__": "cc.ModelBakeSettings",
  1798. "texture": null,
  1799. "uvParam": {
  1800. "__type__": "cc.Vec4",
  1801. "x": 0,
  1802. "y": 0,
  1803. "z": 0,
  1804. "w": 0
  1805. },
  1806. "_bakeable": false,
  1807. "_castShadow": false,
  1808. "_receiveShadow": false,
  1809. "_recieveShadow": false,
  1810. "_lightmapSize": 64,
  1811. "_useLightProbe": false,
  1812. "_bakeToLightProbe": true,
  1813. "_reflectionProbeType": 0,
  1814. "_bakeToReflectionProbe": true
  1815. },
  1816. {
  1817. "__type__": "cc.RigidBody",
  1818. "_name": "",
  1819. "_objFlags": 0,
  1820. "__editorExtras__": {},
  1821. "node": {
  1822. "__id__": 28
  1823. },
  1824. "_enabled": true,
  1825. "__prefab": null,
  1826. "_group": 4,
  1827. "_type": 2,
  1828. "_mass": 1,
  1829. "_allowSleep": true,
  1830. "_linearDamping": 0.1,
  1831. "_angularDamping": 0.1,
  1832. "_useGravity": true,
  1833. "_linearFactor": {
  1834. "__type__": "cc.Vec3",
  1835. "x": 1,
  1836. "y": 1,
  1837. "z": 1
  1838. },
  1839. "_angularFactor": {
  1840. "__type__": "cc.Vec3",
  1841. "x": 1,
  1842. "y": 1,
  1843. "z": 1
  1844. },
  1845. "_id": "42uJwRu9JGpJ6jLuBGkba/"
  1846. },
  1847. {
  1848. "__type__": "cc.BoxCollider",
  1849. "_name": "",
  1850. "_objFlags": 0,
  1851. "__editorExtras__": {},
  1852. "node": {
  1853. "__id__": 28
  1854. },
  1855. "_enabled": true,
  1856. "__prefab": null,
  1857. "_material": null,
  1858. "_isTrigger": false,
  1859. "_center": {
  1860. "__type__": "cc.Vec3",
  1861. "x": 0,
  1862. "y": 0,
  1863. "z": 0
  1864. },
  1865. "_size": {
  1866. "__type__": "cc.Vec3",
  1867. "x": 1,
  1868. "y": 1,
  1869. "z": 1
  1870. },
  1871. "_id": "deHcP+5JhDEavrLvDR2oFL"
  1872. },
  1873. {
  1874. "__type__": "e84de8IXbZDjZbYlbQpevuI",
  1875. "_name": "",
  1876. "_objFlags": 0,
  1877. "__editorExtras__": {},
  1878. "node": {
  1879. "__id__": 28
  1880. },
  1881. "_enabled": true,
  1882. "__prefab": null,
  1883. "prefabs": [
  1884. {
  1885. "__uuid__": "3c69bdd9-9253-4a9b-b85d-00e2f21f1f64",
  1886. "__expectedType__": "cc.Prefab"
  1887. },
  1888. {
  1889. "__uuid__": "41eb0633-f2e4-4574-a710-0c91f6f75219",
  1890. "__expectedType__": "cc.Prefab"
  1891. },
  1892. {
  1893. "__uuid__": "a8e941cd-b9b3-44a7-be2c-bbdd51115fb9",
  1894. "__expectedType__": "cc.Prefab"
  1895. }
  1896. ],
  1897. "create_node": {
  1898. "__id__": 27
  1899. },
  1900. "nodes": [
  1901. {
  1902. "__id__": 29
  1903. },
  1904. {
  1905. "__id__": 31
  1906. },
  1907. {
  1908. "__id__": 33
  1909. },
  1910. {
  1911. "__id__": 35
  1912. },
  1913. {
  1914. "__id__": 37
  1915. },
  1916. {
  1917. "__id__": 39
  1918. },
  1919. {
  1920. "__id__": 41
  1921. },
  1922. {
  1923. "__id__": 43
  1924. },
  1925. {
  1926. "__id__": 45
  1927. }
  1928. ],
  1929. "_id": "8cfN3dvDROQYDO19DC8RV6"
  1930. },
  1931. {
  1932. "__type__": "cc.Node",
  1933. "_name": "Ani",
  1934. "_objFlags": 0,
  1935. "__editorExtras__": {},
  1936. "_parent": {
  1937. "__id__": 1
  1938. },
  1939. "_children": [
  1940. {
  1941. "__id__": 54
  1942. },
  1943. {
  1944. "__id__": 55
  1945. },
  1946. {
  1947. "__id__": 56
  1948. },
  1949. {
  1950. "__id__": 57
  1951. },
  1952. {
  1953. "__id__": 58
  1954. },
  1955. {
  1956. "__id__": 59
  1957. }
  1958. ],
  1959. "_active": true,
  1960. "_components": [],
  1961. "_prefab": null,
  1962. "_lpos": {
  1963. "__type__": "cc.Vec3",
  1964. "x": 0,
  1965. "y": 0,
  1966. "z": 0
  1967. },
  1968. "_lrot": {
  1969. "__type__": "cc.Quat",
  1970. "x": 0,
  1971. "y": 0,
  1972. "z": 0,
  1973. "w": 1
  1974. },
  1975. "_lscale": {
  1976. "__type__": "cc.Vec3",
  1977. "x": 1,
  1978. "y": 1,
  1979. "z": 1
  1980. },
  1981. "_mobility": 0,
  1982. "_layer": 1073741824,
  1983. "_euler": {
  1984. "__type__": "cc.Vec3",
  1985. "x": 0,
  1986. "y": 0,
  1987. "z": 0
  1988. },
  1989. "_id": "417c0rPiZDc4MTo9kvQHju"
  1990. },
  1991. {
  1992. "__type__": "cc.Node",
  1993. "_name": "ani_0_left",
  1994. "_objFlags": 0,
  1995. "__editorExtras__": {},
  1996. "_parent": {
  1997. "__id__": 53
  1998. },
  1999. "_children": [],
  2000. "_active": true,
  2001. "_components": [],
  2002. "_prefab": null,
  2003. "_lpos": {
  2004. "__type__": "cc.Vec3",
  2005. "x": -0.993,
  2006. "y": 5,
  2007. "z": 0
  2008. },
  2009. "_lrot": {
  2010. "__type__": "cc.Quat",
  2011. "x": 0,
  2012. "y": 0,
  2013. "z": 0,
  2014. "w": 1
  2015. },
  2016. "_lscale": {
  2017. "__type__": "cc.Vec3",
  2018. "x": 1,
  2019. "y": 1,
  2020. "z": 1
  2021. },
  2022. "_mobility": 0,
  2023. "_layer": 1073741824,
  2024. "_euler": {
  2025. "__type__": "cc.Vec3",
  2026. "x": 0,
  2027. "y": 0,
  2028. "z": 0
  2029. },
  2030. "_id": "82dzpTpmJIKrnidmO3x257"
  2031. },
  2032. {
  2033. "__type__": "cc.Node",
  2034. "_name": "ani_1_right",
  2035. "_objFlags": 0,
  2036. "__editorExtras__": {},
  2037. "_parent": {
  2038. "__id__": 53
  2039. },
  2040. "_children": [],
  2041. "_active": true,
  2042. "_components": [],
  2043. "_prefab": null,
  2044. "_lpos": {
  2045. "__type__": "cc.Vec3",
  2046. "x": 0.5,
  2047. "y": 5,
  2048. "z": 0
  2049. },
  2050. "_lrot": {
  2051. "__type__": "cc.Quat",
  2052. "x": 0,
  2053. "y": 0,
  2054. "z": 0,
  2055. "w": 1
  2056. },
  2057. "_lscale": {
  2058. "__type__": "cc.Vec3",
  2059. "x": 1,
  2060. "y": 1,
  2061. "z": 1
  2062. },
  2063. "_mobility": 0,
  2064. "_layer": 1073741824,
  2065. "_euler": {
  2066. "__type__": "cc.Vec3",
  2067. "x": 0,
  2068. "y": 0,
  2069. "z": 0
  2070. },
  2071. "_id": "c1VvYO4QROA6Cx/TjpLrY0"
  2072. },
  2073. {
  2074. "__type__": "cc.Node",
  2075. "_name": "ani_2_left",
  2076. "_objFlags": 0,
  2077. "__editorExtras__": {},
  2078. "_parent": {
  2079. "__id__": 53
  2080. },
  2081. "_children": [],
  2082. "_active": true,
  2083. "_components": [],
  2084. "_prefab": null,
  2085. "_lpos": {
  2086. "__type__": "cc.Vec3",
  2087. "x": -0.418,
  2088. "y": 5,
  2089. "z": 0
  2090. },
  2091. "_lrot": {
  2092. "__type__": "cc.Quat",
  2093. "x": 0,
  2094. "y": 0,
  2095. "z": 0,
  2096. "w": 1
  2097. },
  2098. "_lscale": {
  2099. "__type__": "cc.Vec3",
  2100. "x": 1,
  2101. "y": 1,
  2102. "z": 1
  2103. },
  2104. "_mobility": 0,
  2105. "_layer": 1073741824,
  2106. "_euler": {
  2107. "__type__": "cc.Vec3",
  2108. "x": 0,
  2109. "y": 0,
  2110. "z": 0
  2111. },
  2112. "_id": "acwxSl2XNCwpftPvFaEsJS"
  2113. },
  2114. {
  2115. "__type__": "cc.Node",
  2116. "_name": "ani_3_right",
  2117. "_objFlags": 0,
  2118. "__editorExtras__": {},
  2119. "_parent": {
  2120. "__id__": 53
  2121. },
  2122. "_children": [],
  2123. "_active": true,
  2124. "_components": [],
  2125. "_prefab": null,
  2126. "_lpos": {
  2127. "__type__": "cc.Vec3",
  2128. "x": 0.624,
  2129. "y": 5,
  2130. "z": 0
  2131. },
  2132. "_lrot": {
  2133. "__type__": "cc.Quat",
  2134. "x": 0,
  2135. "y": 0,
  2136. "z": 0,
  2137. "w": 1
  2138. },
  2139. "_lscale": {
  2140. "__type__": "cc.Vec3",
  2141. "x": 1,
  2142. "y": 1,
  2143. "z": 1
  2144. },
  2145. "_mobility": 0,
  2146. "_layer": 1073741824,
  2147. "_euler": {
  2148. "__type__": "cc.Vec3",
  2149. "x": 0,
  2150. "y": 0,
  2151. "z": 0
  2152. },
  2153. "_id": "c3Ysq+p2BDqIB5linseJym"
  2154. },
  2155. {
  2156. "__type__": "cc.Node",
  2157. "_name": "ani_4_left",
  2158. "_objFlags": 0,
  2159. "__editorExtras__": {},
  2160. "_parent": {
  2161. "__id__": 53
  2162. },
  2163. "_children": [],
  2164. "_active": true,
  2165. "_components": [],
  2166. "_prefab": null,
  2167. "_lpos": {
  2168. "__type__": "cc.Vec3",
  2169. "x": -0.666,
  2170. "y": 5,
  2171. "z": 0
  2172. },
  2173. "_lrot": {
  2174. "__type__": "cc.Quat",
  2175. "x": 0,
  2176. "y": 0,
  2177. "z": 0,
  2178. "w": 1
  2179. },
  2180. "_lscale": {
  2181. "__type__": "cc.Vec3",
  2182. "x": 1,
  2183. "y": 1,
  2184. "z": 1
  2185. },
  2186. "_mobility": 0,
  2187. "_layer": 1073741824,
  2188. "_euler": {
  2189. "__type__": "cc.Vec3",
  2190. "x": 0,
  2191. "y": 0,
  2192. "z": 0
  2193. },
  2194. "_id": "bbYIWxH2JBmLhTyQAZ3P/X"
  2195. },
  2196. {
  2197. "__type__": "cc.Node",
  2198. "_name": "ani_5_right",
  2199. "_objFlags": 0,
  2200. "__editorExtras__": {},
  2201. "_parent": {
  2202. "__id__": 53
  2203. },
  2204. "_children": [],
  2205. "_active": true,
  2206. "_components": [],
  2207. "_prefab": null,
  2208. "_lpos": {
  2209. "__type__": "cc.Vec3",
  2210. "x": 0.288,
  2211. "y": 5,
  2212. "z": 0
  2213. },
  2214. "_lrot": {
  2215. "__type__": "cc.Quat",
  2216. "x": 0,
  2217. "y": 0,
  2218. "z": 0,
  2219. "w": 1
  2220. },
  2221. "_lscale": {
  2222. "__type__": "cc.Vec3",
  2223. "x": 1,
  2224. "y": 1,
  2225. "z": 1
  2226. },
  2227. "_mobility": 0,
  2228. "_layer": 1073741824,
  2229. "_euler": {
  2230. "__type__": "cc.Vec3",
  2231. "x": 0,
  2232. "y": 0,
  2233. "z": 0
  2234. },
  2235. "_id": "5eikzbo4FCpr6HHA89hirt"
  2236. },
  2237. {
  2238. "__type__": "cc.Node",
  2239. "_name": "Under_Canvas",
  2240. "_objFlags": 0,
  2241. "__editorExtras__": {},
  2242. "_parent": {
  2243. "__id__": 1
  2244. },
  2245. "_children": [
  2246. {
  2247. "__id__": 61
  2248. },
  2249. {
  2250. "__id__": 63
  2251. },
  2252. {
  2253. "__id__": 67
  2254. }
  2255. ],
  2256. "_active": true,
  2257. "_components": [
  2258. {
  2259. "__id__": 71
  2260. },
  2261. {
  2262. "__id__": 72
  2263. },
  2264. {
  2265. "__id__": 73
  2266. }
  2267. ],
  2268. "_prefab": null,
  2269. "_lpos": {
  2270. "__type__": "cc.Vec3",
  2271. "x": 375,
  2272. "y": 817,
  2273. "z": 0
  2274. },
  2275. "_lrot": {
  2276. "__type__": "cc.Quat",
  2277. "x": 0,
  2278. "y": 0,
  2279. "z": 0,
  2280. "w": 1
  2281. },
  2282. "_lscale": {
  2283. "__type__": "cc.Vec3",
  2284. "x": 1,
  2285. "y": 1,
  2286. "z": 1
  2287. },
  2288. "_mobility": 0,
  2289. "_layer": 4,
  2290. "_euler": {
  2291. "__type__": "cc.Vec3",
  2292. "x": 0,
  2293. "y": 0,
  2294. "z": 0
  2295. },
  2296. "_id": "46yp+URDRGIZoBsXFEb11O"
  2297. },
  2298. {
  2299. "__type__": "cc.Node",
  2300. "_name": "Camera",
  2301. "_objFlags": 0,
  2302. "__editorExtras__": {},
  2303. "_parent": {
  2304. "__id__": 60
  2305. },
  2306. "_children": [],
  2307. "_active": true,
  2308. "_components": [
  2309. {
  2310. "__id__": 62
  2311. }
  2312. ],
  2313. "_prefab": null,
  2314. "_lpos": {
  2315. "__type__": "cc.Vec3",
  2316. "x": 0,
  2317. "y": 0,
  2318. "z": 1000
  2319. },
  2320. "_lrot": {
  2321. "__type__": "cc.Quat",
  2322. "x": 0,
  2323. "y": 0,
  2324. "z": 0,
  2325. "w": 1
  2326. },
  2327. "_lscale": {
  2328. "__type__": "cc.Vec3",
  2329. "x": 1,
  2330. "y": 1,
  2331. "z": 1
  2332. },
  2333. "_mobility": 0,
  2334. "_layer": 4,
  2335. "_euler": {
  2336. "__type__": "cc.Vec3",
  2337. "x": 0,
  2338. "y": 0,
  2339. "z": 0
  2340. },
  2341. "_id": "1bIuKFt5hCSoQSy+4CeAxL"
  2342. },
  2343. {
  2344. "__type__": "cc.Camera",
  2345. "_name": "",
  2346. "_objFlags": 0,
  2347. "__editorExtras__": {},
  2348. "node": {
  2349. "__id__": 61
  2350. },
  2351. "_enabled": true,
  2352. "__prefab": null,
  2353. "_projection": 0,
  2354. "_priority": 0,
  2355. "_fov": 45,
  2356. "_fovAxis": 0,
  2357. "_orthoHeight": 817,
  2358. "_near": 1,
  2359. "_far": 2000,
  2360. "_color": {
  2361. "__type__": "cc.Color",
  2362. "r": 0,
  2363. "g": 0,
  2364. "b": 0,
  2365. "a": 255
  2366. },
  2367. "_depth": 1,
  2368. "_stencil": 0,
  2369. "_clearFlags": 6,
  2370. "_rect": {
  2371. "__type__": "cc.Rect",
  2372. "x": 0,
  2373. "y": 0,
  2374. "width": 1,
  2375. "height": 1
  2376. },
  2377. "_aperture": 19,
  2378. "_shutter": 7,
  2379. "_iso": 0,
  2380. "_screenScale": 1,
  2381. "_visibility": 4,
  2382. "_targetTexture": null,
  2383. "_postProcess": null,
  2384. "_usePostProcess": false,
  2385. "_cameraType": -1,
  2386. "_trackingType": 0,
  2387. "_id": "14PMN5oWBJ0JBKSLv+yMT7"
  2388. },
  2389. {
  2390. "__type__": "cc.Node",
  2391. "_name": "Bg",
  2392. "_objFlags": 0,
  2393. "__editorExtras__": {},
  2394. "_parent": {
  2395. "__id__": 60
  2396. },
  2397. "_children": [],
  2398. "_active": true,
  2399. "_components": [
  2400. {
  2401. "__id__": 64
  2402. },
  2403. {
  2404. "__id__": 65
  2405. },
  2406. {
  2407. "__id__": 66
  2408. }
  2409. ],
  2410. "_prefab": null,
  2411. "_lpos": {
  2412. "__type__": "cc.Vec3",
  2413. "x": 0,
  2414. "y": 0,
  2415. "z": 0
  2416. },
  2417. "_lrot": {
  2418. "__type__": "cc.Quat",
  2419. "x": 0,
  2420. "y": 0,
  2421. "z": 0,
  2422. "w": 1
  2423. },
  2424. "_lscale": {
  2425. "__type__": "cc.Vec3",
  2426. "x": 1,
  2427. "y": 1,
  2428. "z": 1
  2429. },
  2430. "_mobility": 0,
  2431. "_layer": 4,
  2432. "_euler": {
  2433. "__type__": "cc.Vec3",
  2434. "x": 0,
  2435. "y": 0,
  2436. "z": 0
  2437. },
  2438. "_id": "9c7UcxrhVHzZbY7w0a9ZFI"
  2439. },
  2440. {
  2441. "__type__": "cc.UITransform",
  2442. "_name": "",
  2443. "_objFlags": 0,
  2444. "__editorExtras__": {},
  2445. "node": {
  2446. "__id__": 63
  2447. },
  2448. "_enabled": true,
  2449. "__prefab": null,
  2450. "_contentSize": {
  2451. "__type__": "cc.Size",
  2452. "width": 750,
  2453. "height": 1634
  2454. },
  2455. "_anchorPoint": {
  2456. "__type__": "cc.Vec2",
  2457. "x": 0.5,
  2458. "y": 0.5
  2459. },
  2460. "_id": "d8JY4iFA5Cu4eaM6hHT79j"
  2461. },
  2462. {
  2463. "__type__": "cc.Sprite",
  2464. "_name": "",
  2465. "_objFlags": 0,
  2466. "__editorExtras__": {},
  2467. "node": {
  2468. "__id__": 63
  2469. },
  2470. "_enabled": true,
  2471. "__prefab": null,
  2472. "_customMaterial": null,
  2473. "_srcBlendFactor": 2,
  2474. "_dstBlendFactor": 4,
  2475. "_color": {
  2476. "__type__": "cc.Color",
  2477. "r": 255,
  2478. "g": 255,
  2479. "b": 255,
  2480. "a": 255
  2481. },
  2482. "_spriteFrame": {
  2483. "__uuid__": "15f82935-2383-423a-adec-8329320b9049@f9941",
  2484. "__expectedType__": "cc.SpriteFrame"
  2485. },
  2486. "_type": 0,
  2487. "_fillType": 0,
  2488. "_sizeMode": 1,
  2489. "_fillCenter": {
  2490. "__type__": "cc.Vec2",
  2491. "x": 0,
  2492. "y": 0
  2493. },
  2494. "_fillStart": 0,
  2495. "_fillRange": 0,
  2496. "_isTrimmedMode": true,
  2497. "_useGrayscale": false,
  2498. "_atlas": null,
  2499. "_id": "1dTMcv1BZLHqNXIBvjVIPv"
  2500. },
  2501. {
  2502. "__type__": "cc.Widget",
  2503. "_name": "",
  2504. "_objFlags": 0,
  2505. "__editorExtras__": {},
  2506. "node": {
  2507. "__id__": 63
  2508. },
  2509. "_enabled": true,
  2510. "__prefab": null,
  2511. "_alignFlags": 45,
  2512. "_target": null,
  2513. "_left": 0,
  2514. "_right": 0,
  2515. "_top": 0,
  2516. "_bottom": 0,
  2517. "_horizontalCenter": 0,
  2518. "_verticalCenter": 0,
  2519. "_isAbsLeft": true,
  2520. "_isAbsRight": true,
  2521. "_isAbsTop": true,
  2522. "_isAbsBottom": true,
  2523. "_isAbsHorizontalCenter": true,
  2524. "_isAbsVerticalCenter": true,
  2525. "_originalWidth": 750,
  2526. "_originalHeight": 1634,
  2527. "_alignMode": 2,
  2528. "_lockFlags": 0,
  2529. "_id": "a1Ej+q1p5OyK1d0m5lfeFj"
  2530. },
  2531. {
  2532. "__type__": "cc.Node",
  2533. "_name": "Container",
  2534. "_objFlags": 0,
  2535. "__editorExtras__": {},
  2536. "_parent": {
  2537. "__id__": 60
  2538. },
  2539. "_children": [],
  2540. "_active": true,
  2541. "_components": [
  2542. {
  2543. "__id__": 68
  2544. },
  2545. {
  2546. "__id__": 69
  2547. },
  2548. {
  2549. "__id__": 70
  2550. }
  2551. ],
  2552. "_prefab": null,
  2553. "_lpos": {
  2554. "__type__": "cc.Vec3",
  2555. "x": 0,
  2556. "y": -562.5740000000001,
  2557. "z": 0
  2558. },
  2559. "_lrot": {
  2560. "__type__": "cc.Quat",
  2561. "x": 0,
  2562. "y": 0,
  2563. "z": 0,
  2564. "w": 1
  2565. },
  2566. "_lscale": {
  2567. "__type__": "cc.Vec3",
  2568. "x": 1,
  2569. "y": 1,
  2570. "z": 1
  2571. },
  2572. "_mobility": 0,
  2573. "_layer": 4,
  2574. "_euler": {
  2575. "__type__": "cc.Vec3",
  2576. "x": 0,
  2577. "y": 0,
  2578. "z": 0
  2579. },
  2580. "_id": "dalYLP9ERKM4Y1QEabPIjk"
  2581. },
  2582. {
  2583. "__type__": "cc.UITransform",
  2584. "_name": "",
  2585. "_objFlags": 0,
  2586. "__editorExtras__": {},
  2587. "node": {
  2588. "__id__": 67
  2589. },
  2590. "_enabled": true,
  2591. "__prefab": null,
  2592. "_contentSize": {
  2593. "__type__": "cc.Size",
  2594. "width": 701,
  2595. "height": 100
  2596. },
  2597. "_anchorPoint": {
  2598. "__type__": "cc.Vec2",
  2599. "x": 0.5,
  2600. "y": 0.5
  2601. },
  2602. "_id": "55w4mtJbxLpItN8v+AlgWi"
  2603. },
  2604. {
  2605. "__type__": "cc.Sprite",
  2606. "_name": "",
  2607. "_objFlags": 0,
  2608. "__editorExtras__": {},
  2609. "node": {
  2610. "__id__": 67
  2611. },
  2612. "_enabled": true,
  2613. "__prefab": null,
  2614. "_customMaterial": null,
  2615. "_srcBlendFactor": 2,
  2616. "_dstBlendFactor": 4,
  2617. "_color": {
  2618. "__type__": "cc.Color",
  2619. "r": 255,
  2620. "g": 255,
  2621. "b": 255,
  2622. "a": 255
  2623. },
  2624. "_spriteFrame": {
  2625. "__uuid__": "1524965e-6c53-4d2c-8c94-78b8369fc44a@f9941",
  2626. "__expectedType__": "cc.SpriteFrame"
  2627. },
  2628. "_type": 0,
  2629. "_fillType": 0,
  2630. "_sizeMode": 1,
  2631. "_fillCenter": {
  2632. "__type__": "cc.Vec2",
  2633. "x": 0,
  2634. "y": 0
  2635. },
  2636. "_fillStart": 0,
  2637. "_fillRange": 0,
  2638. "_isTrimmedMode": true,
  2639. "_useGrayscale": false,
  2640. "_atlas": null,
  2641. "_id": "9fuezC3RFHVqG7Vet2nGJl"
  2642. },
  2643. {
  2644. "__type__": "cc.Widget",
  2645. "_name": "",
  2646. "_objFlags": 0,
  2647. "__editorExtras__": {},
  2648. "node": {
  2649. "__id__": 67
  2650. },
  2651. "_enabled": true,
  2652. "__prefab": null,
  2653. "_alignFlags": 20,
  2654. "_target": null,
  2655. "_left": 24.5,
  2656. "_right": 24.5,
  2657. "_top": 0,
  2658. "_bottom": 204.42599999999993,
  2659. "_horizontalCenter": 0,
  2660. "_verticalCenter": 0,
  2661. "_isAbsLeft": true,
  2662. "_isAbsRight": true,
  2663. "_isAbsTop": true,
  2664. "_isAbsBottom": true,
  2665. "_isAbsHorizontalCenter": true,
  2666. "_isAbsVerticalCenter": true,
  2667. "_originalWidth": 701,
  2668. "_originalHeight": 0,
  2669. "_alignMode": 2,
  2670. "_lockFlags": 0,
  2671. "_id": "09kLwdW7xNB7wvtiSEuxIp"
  2672. },
  2673. {
  2674. "__type__": "cc.UITransform",
  2675. "_name": "",
  2676. "_objFlags": 0,
  2677. "__editorExtras__": {},
  2678. "node": {
  2679. "__id__": 60
  2680. },
  2681. "_enabled": true,
  2682. "__prefab": null,
  2683. "_contentSize": {
  2684. "__type__": "cc.Size",
  2685. "width": 750,
  2686. "height": 1634
  2687. },
  2688. "_anchorPoint": {
  2689. "__type__": "cc.Vec2",
  2690. "x": 0.5,
  2691. "y": 0.5
  2692. },
  2693. "_id": "f5FqtIaiRJfJr4YRo3tpyE"
  2694. },
  2695. {
  2696. "__type__": "cc.Canvas",
  2697. "_name": "",
  2698. "_objFlags": 0,
  2699. "__editorExtras__": {},
  2700. "node": {
  2701. "__id__": 60
  2702. },
  2703. "_enabled": true,
  2704. "__prefab": null,
  2705. "_cameraComponent": {
  2706. "__id__": 62
  2707. },
  2708. "_alignCanvasWithScreen": true,
  2709. "_id": "23r6Xd+g9I0qESsGsRKCjN"
  2710. },
  2711. {
  2712. "__type__": "cc.Widget",
  2713. "_name": "",
  2714. "_objFlags": 0,
  2715. "__editorExtras__": {},
  2716. "node": {
  2717. "__id__": 60
  2718. },
  2719. "_enabled": true,
  2720. "__prefab": null,
  2721. "_alignFlags": 45,
  2722. "_target": null,
  2723. "_left": 0,
  2724. "_right": 0,
  2725. "_top": 0,
  2726. "_bottom": 0,
  2727. "_horizontalCenter": 0,
  2728. "_verticalCenter": 0,
  2729. "_isAbsLeft": true,
  2730. "_isAbsRight": true,
  2731. "_isAbsTop": true,
  2732. "_isAbsBottom": true,
  2733. "_isAbsHorizontalCenter": true,
  2734. "_isAbsVerticalCenter": true,
  2735. "_originalWidth": 0,
  2736. "_originalHeight": 0,
  2737. "_alignMode": 2,
  2738. "_lockFlags": 0,
  2739. "_id": "54MG4ULIdO6KcOI3q0KqVK"
  2740. },
  2741. {
  2742. "__type__": "cc.Node",
  2743. "_name": "Canvas",
  2744. "_objFlags": 0,
  2745. "__editorExtras__": {},
  2746. "_parent": {
  2747. "__id__": 1
  2748. },
  2749. "_children": [
  2750. {
  2751. "__id__": 75
  2752. }
  2753. ],
  2754. "_active": true,
  2755. "_components": [
  2756. {
  2757. "__id__": 77
  2758. },
  2759. {
  2760. "__id__": 78
  2761. },
  2762. {
  2763. "__id__": 79
  2764. },
  2765. {
  2766. "__id__": 80
  2767. }
  2768. ],
  2769. "_prefab": null,
  2770. "_lpos": {
  2771. "__type__": "cc.Vec3",
  2772. "x": 375,
  2773. "y": 817,
  2774. "z": 0
  2775. },
  2776. "_lrot": {
  2777. "__type__": "cc.Quat",
  2778. "x": 0,
  2779. "y": 0,
  2780. "z": 0,
  2781. "w": 1
  2782. },
  2783. "_lscale": {
  2784. "__type__": "cc.Vec3",
  2785. "x": 1,
  2786. "y": 1,
  2787. "z": 1
  2788. },
  2789. "_mobility": 0,
  2790. "_layer": 2,
  2791. "_euler": {
  2792. "__type__": "cc.Vec3",
  2793. "x": 0,
  2794. "y": 0,
  2795. "z": 0
  2796. },
  2797. "_id": "2ccI2NU/NG3bQ2G95CJb6L"
  2798. },
  2799. {
  2800. "__type__": "cc.Node",
  2801. "_name": "Camera",
  2802. "_objFlags": 0,
  2803. "__editorExtras__": {},
  2804. "_parent": {
  2805. "__id__": 74
  2806. },
  2807. "_children": [],
  2808. "_active": true,
  2809. "_components": [
  2810. {
  2811. "__id__": 76
  2812. }
  2813. ],
  2814. "_prefab": null,
  2815. "_lpos": {
  2816. "__type__": "cc.Vec3",
  2817. "x": 0,
  2818. "y": 0,
  2819. "z": 1000
  2820. },
  2821. "_lrot": {
  2822. "__type__": "cc.Quat",
  2823. "x": 0,
  2824. "y": 0,
  2825. "z": 0,
  2826. "w": 1
  2827. },
  2828. "_lscale": {
  2829. "__type__": "cc.Vec3",
  2830. "x": 1,
  2831. "y": 1,
  2832. "z": 1
  2833. },
  2834. "_mobility": 0,
  2835. "_layer": 2,
  2836. "_euler": {
  2837. "__type__": "cc.Vec3",
  2838. "x": 0,
  2839. "y": 0,
  2840. "z": 0
  2841. },
  2842. "_id": "bbVbEUd0pNl7UqyodkpP9D"
  2843. },
  2844. {
  2845. "__type__": "cc.Camera",
  2846. "_name": "",
  2847. "_objFlags": 0,
  2848. "__editorExtras__": {},
  2849. "node": {
  2850. "__id__": 75
  2851. },
  2852. "_enabled": true,
  2853. "__prefab": null,
  2854. "_projection": 0,
  2855. "_priority": 3,
  2856. "_fov": 45,
  2857. "_fovAxis": 0,
  2858. "_orthoHeight": 817,
  2859. "_near": 1,
  2860. "_far": 2000,
  2861. "_color": {
  2862. "__type__": "cc.Color",
  2863. "r": 0,
  2864. "g": 0,
  2865. "b": 0,
  2866. "a": 255
  2867. },
  2868. "_depth": 1,
  2869. "_stencil": 0,
  2870. "_clearFlags": 6,
  2871. "_rect": {
  2872. "__type__": "cc.Rect",
  2873. "x": 0,
  2874. "y": 0,
  2875. "width": 1,
  2876. "height": 1
  2877. },
  2878. "_aperture": 19,
  2879. "_shutter": 7,
  2880. "_iso": 0,
  2881. "_screenScale": 1,
  2882. "_visibility": 2,
  2883. "_targetTexture": null,
  2884. "_postProcess": null,
  2885. "_usePostProcess": false,
  2886. "_cameraType": -1,
  2887. "_trackingType": 0,
  2888. "_id": "017o30o5JFpZE+kwX7Dk5V"
  2889. },
  2890. {
  2891. "__type__": "cc.UITransform",
  2892. "_name": "",
  2893. "_objFlags": 0,
  2894. "__editorExtras__": {},
  2895. "node": {
  2896. "__id__": 74
  2897. },
  2898. "_enabled": true,
  2899. "__prefab": null,
  2900. "_contentSize": {
  2901. "__type__": "cc.Size",
  2902. "width": 750,
  2903. "height": 1634
  2904. },
  2905. "_anchorPoint": {
  2906. "__type__": "cc.Vec2",
  2907. "x": 0.5,
  2908. "y": 0.5
  2909. },
  2910. "_id": "7fELdB0UJBMK7drwEOw6SG"
  2911. },
  2912. {
  2913. "__type__": "cc.Canvas",
  2914. "_name": "",
  2915. "_objFlags": 0,
  2916. "__editorExtras__": {},
  2917. "node": {
  2918. "__id__": 74
  2919. },
  2920. "_enabled": true,
  2921. "__prefab": null,
  2922. "_cameraComponent": {
  2923. "__id__": 76
  2924. },
  2925. "_alignCanvasWithScreen": true,
  2926. "_id": "e1DA/ae0tIbpm8A4PVszy4"
  2927. },
  2928. {
  2929. "__type__": "cc.Widget",
  2930. "_name": "",
  2931. "_objFlags": 0,
  2932. "__editorExtras__": {},
  2933. "node": {
  2934. "__id__": 74
  2935. },
  2936. "_enabled": true,
  2937. "__prefab": null,
  2938. "_alignFlags": 45,
  2939. "_target": null,
  2940. "_left": 0,
  2941. "_right": 0,
  2942. "_top": 0,
  2943. "_bottom": 0,
  2944. "_horizontalCenter": 0,
  2945. "_verticalCenter": 0,
  2946. "_isAbsLeft": true,
  2947. "_isAbsRight": true,
  2948. "_isAbsTop": true,
  2949. "_isAbsBottom": true,
  2950. "_isAbsHorizontalCenter": true,
  2951. "_isAbsVerticalCenter": true,
  2952. "_originalWidth": 0,
  2953. "_originalHeight": 0,
  2954. "_alignMode": 2,
  2955. "_lockFlags": 0,
  2956. "_id": "5efzlNbHVBp7vGRPnKwjKb"
  2957. },
  2958. {
  2959. "__type__": "5237f+4/ftIlKW+rC062l8C",
  2960. "_name": "",
  2961. "_objFlags": 0,
  2962. "__editorExtras__": {},
  2963. "node": {
  2964. "__id__": 74
  2965. },
  2966. "_enabled": true,
  2967. "__prefab": null,
  2968. "camera": {
  2969. "__id__": 6
  2970. },
  2971. "Ani": [
  2972. {
  2973. "__id__": 54
  2974. },
  2975. {
  2976. "__id__": 55
  2977. }
  2978. ],
  2979. "_id": "e09AWWjYBKPZAm3bEqdHW7"
  2980. },
  2981. {
  2982. "__type__": "cc.PrefabInfo",
  2983. "root": null,
  2984. "asset": null,
  2985. "fileId": "2d0d9d79-af76-426f-8abd-3eeff0d4e1c3",
  2986. "instance": null,
  2987. "targetOverrides": null
  2988. },
  2989. {
  2990. "__type__": "cc.SceneGlobals",
  2991. "ambient": {
  2992. "__id__": 83
  2993. },
  2994. "shadows": {
  2995. "__id__": 84
  2996. },
  2997. "_skybox": {
  2998. "__id__": 85
  2999. },
  3000. "fog": {
  3001. "__id__": 86
  3002. },
  3003. "octree": {
  3004. "__id__": 87
  3005. },
  3006. "skin": {
  3007. "__id__": 88
  3008. },
  3009. "lightProbeInfo": {
  3010. "__id__": 89
  3011. },
  3012. "postSettings": {
  3013. "__id__": 90
  3014. },
  3015. "bakedWithStationaryMainLight": false,
  3016. "bakedWithHighpLightmap": false
  3017. },
  3018. {
  3019. "__type__": "cc.AmbientInfo",
  3020. "_skyColorHDR": {
  3021. "__type__": "cc.Vec4",
  3022. "x": 0.2,
  3023. "y": 0.5,
  3024. "z": 0.8,
  3025. "w": 0.520833125
  3026. },
  3027. "_skyColor": {
  3028. "__type__": "cc.Vec4",
  3029. "x": 0.2,
  3030. "y": 0.5,
  3031. "z": 0.8,
  3032. "w": 0.520833125
  3033. },
  3034. "_skyIllumHDR": 20000,
  3035. "_skyIllum": 20000,
  3036. "_groundAlbedoHDR": {
  3037. "__type__": "cc.Vec4",
  3038. "x": 0.2,
  3039. "y": 0.2,
  3040. "z": 0.2,
  3041. "w": 1
  3042. },
  3043. "_groundAlbedo": {
  3044. "__type__": "cc.Vec4",
  3045. "x": 0.2,
  3046. "y": 0.2,
  3047. "z": 0.2,
  3048. "w": 1
  3049. },
  3050. "_skyColorLDR": {
  3051. "__type__": "cc.Vec4",
  3052. "x": 0.452588,
  3053. "y": 0.607642,
  3054. "z": 0.755699,
  3055. "w": 0
  3056. },
  3057. "_skyIllumLDR": 0.8,
  3058. "_groundAlbedoLDR": {
  3059. "__type__": "cc.Vec4",
  3060. "x": 0.618555,
  3061. "y": 0.577848,
  3062. "z": 0.544564,
  3063. "w": 0
  3064. }
  3065. },
  3066. {
  3067. "__type__": "cc.ShadowsInfo",
  3068. "_enabled": false,
  3069. "_type": 0,
  3070. "_normal": {
  3071. "__type__": "cc.Vec3",
  3072. "x": 0,
  3073. "y": 1,
  3074. "z": 0
  3075. },
  3076. "_distance": 0,
  3077. "_planeBias": 1,
  3078. "_shadowColor": {
  3079. "__type__": "cc.Color",
  3080. "r": 76,
  3081. "g": 76,
  3082. "b": 76,
  3083. "a": 255
  3084. },
  3085. "_maxReceived": 4,
  3086. "_size": {
  3087. "__type__": "cc.Vec2",
  3088. "x": 1024,
  3089. "y": 1024
  3090. }
  3091. },
  3092. {
  3093. "__type__": "cc.SkyboxInfo",
  3094. "_envLightingType": 0,
  3095. "_envmapHDR": {
  3096. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  3097. "__expectedType__": "cc.TextureCube"
  3098. },
  3099. "_envmap": {
  3100. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  3101. "__expectedType__": "cc.TextureCube"
  3102. },
  3103. "_envmapLDR": {
  3104. "__uuid__": "6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0",
  3105. "__expectedType__": "cc.TextureCube"
  3106. },
  3107. "_diffuseMapHDR": null,
  3108. "_diffuseMapLDR": null,
  3109. "_enabled": false,
  3110. "_useHDR": true,
  3111. "_editableMaterial": null,
  3112. "_reflectionHDR": null,
  3113. "_reflectionLDR": null,
  3114. "_rotationAngle": 0
  3115. },
  3116. {
  3117. "__type__": "cc.FogInfo",
  3118. "_type": 0,
  3119. "_fogColor": {
  3120. "__type__": "cc.Color",
  3121. "r": 200,
  3122. "g": 200,
  3123. "b": 200,
  3124. "a": 255
  3125. },
  3126. "_enabled": false,
  3127. "_fogDensity": 0.3,
  3128. "_fogStart": 0.5,
  3129. "_fogEnd": 300,
  3130. "_fogAtten": 5,
  3131. "_fogTop": 1.5,
  3132. "_fogRange": 1.2,
  3133. "_accurate": false
  3134. },
  3135. {
  3136. "__type__": "cc.OctreeInfo",
  3137. "_enabled": false,
  3138. "_minPos": {
  3139. "__type__": "cc.Vec3",
  3140. "x": -1024,
  3141. "y": -1024,
  3142. "z": -1024
  3143. },
  3144. "_maxPos": {
  3145. "__type__": "cc.Vec3",
  3146. "x": 1024,
  3147. "y": 1024,
  3148. "z": 1024
  3149. },
  3150. "_depth": 8
  3151. },
  3152. {
  3153. "__type__": "cc.SkinInfo",
  3154. "_enabled": true,
  3155. "_blurRadius": 0.01,
  3156. "_sssIntensity": 3
  3157. },
  3158. {
  3159. "__type__": "cc.LightProbeInfo",
  3160. "_giScale": 1,
  3161. "_giSamples": 1024,
  3162. "_bounces": 2,
  3163. "_reduceRinging": 0,
  3164. "_showProbe": true,
  3165. "_showWireframe": true,
  3166. "_showConvex": false,
  3167. "_data": null,
  3168. "_lightProbeSphereVolume": 1
  3169. },
  3170. {
  3171. "__type__": "cc.PostSettingsInfo",
  3172. "_toneMappingType": 0
  3173. }
  3174. ]