game.scene 56 KB

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