game.scene 56 KB

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