├── README.md ├── assets ├── MyTest.meta ├── MyTest │ ├── Lib.meta │ └── Lib │ │ ├── state-machine.js │ │ └── state-machine.js.meta ├── StickHero.meta ├── StickHero │ ├── MainGameScene.fire │ ├── MainGameScene.fire.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── backgroundLoader.js │ │ ├── backgroundLoader.js.meta │ │ ├── btn.js │ │ ├── btn.js.meta │ │ ├── landMaker.js │ │ ├── landMaker.js.meta │ │ ├── perfectLabel.js │ │ ├── perfectLabel.js.meta │ │ ├── spriteCreator.js │ │ ├── spriteCreator.js.meta │ │ ├── storageManager.js │ │ └── storageManager.js.meta │ ├── StartScene.fire │ ├── StartScene.fire.meta │ ├── startButton_anim.anim │ └── startButton_anim.anim.meta ├── heroPush.anim ├── heroPush.anim.meta ├── heroRun.anim ├── heroRun.anim.meta ├── heroTick.anim ├── heroTick.anim.meta ├── perfect_anim.anim ├── perfect_anim.anim.meta ├── res.meta ├── res │ ├── animation.meta │ ├── animation │ │ ├── animEvent.meta │ │ ├── animEvent │ │ │ ├── step_1.anim │ │ │ ├── step_1.anim.meta │ │ │ ├── step_2.anim │ │ │ ├── step_2.anim.meta │ │ │ ├── step_3.anim │ │ │ ├── step_3.anim.meta │ │ │ ├── step_4.anim │ │ │ └── step_4.anim.meta │ │ ├── customProperty.meta │ │ ├── customProperty │ │ │ ├── customAnim.anim │ │ │ └── customAnim.anim.meta │ │ ├── motionStreak.meta │ │ ├── motionStreak │ │ │ ├── move_around.anim │ │ │ └── move_around.anim.meta │ │ ├── move.meta │ │ ├── move │ │ │ ├── back-forward.anim │ │ │ ├── back-forward.anim.meta │ │ │ ├── caseIn-expo.anim │ │ │ ├── caseIn-expo.anim.meta │ │ │ ├── caseInOut-expo.anim │ │ │ ├── caseInOut-expo.anim.meta │ │ │ ├── caseOut-expo.anim │ │ │ ├── caseOut-expo.anim.meta │ │ │ ├── linear.anim │ │ │ └── linear.anim.meta │ │ ├── sheep_hit.anim │ │ ├── sheep_hit.anim.meta │ │ ├── sheep_jump.anim │ │ ├── sheep_jump.anim.meta │ │ ├── sheep_run.anim │ │ ├── sheep_run.anim.meta │ │ ├── tipsAnim.anim │ │ ├── tipsAnim.anim.meta │ │ ├── trimmedSprite.meta │ │ ├── trimmedSprite │ │ │ ├── sheepRun.anim │ │ │ └── sheepRun.anim.meta │ │ ├── widget.meta │ │ └── widget │ │ │ ├── alignOnce_scale.anim │ │ │ ├── alignOnce_scale.anim.meta │ │ │ ├── rightWidget.anim │ │ │ ├── rightWidget.anim.meta │ │ │ ├── topWidget.anim │ │ │ └── topWidget.anim.meta │ ├── atlas.meta │ ├── atlas │ │ ├── emoji.plist │ │ ├── emoji.plist.meta │ │ ├── emoji.png │ │ ├── emoji.png.meta │ │ ├── sheep.plist │ │ ├── sheep.plist.meta │ │ ├── sheep.png │ │ ├── sheep.png.meta │ │ ├── ui.plist │ │ ├── ui.plist.meta │ │ ├── ui.png │ │ └── ui.png.meta │ ├── cocosvideo.mp4 │ ├── cocosvideo.mp4.meta │ ├── dragonbones.meta │ ├── dragonbones │ │ ├── CoreElement.json │ │ ├── CoreElement.json.meta │ │ ├── CoreElement_texture_1.json │ │ ├── CoreElement_texture_1.json.meta │ │ ├── CoreElement_texture_1.png │ │ ├── CoreElement_texture_1.png.meta │ │ ├── NewDragonTest.json │ │ ├── NewDragonTest.json.meta │ │ ├── texture.json │ │ ├── texture.json.meta │ │ ├── texture.png │ │ └── texture.png.meta │ ├── imported.meta │ ├── imported │ │ ├── barriers.png │ │ ├── barriers.png.meta │ │ ├── ground.png │ │ ├── ground.png.meta │ │ ├── iso-test.png │ │ ├── iso-test.png.meta │ │ ├── iso-test.tmx │ │ ├── iso-test.tmx.meta │ │ ├── map.tmx │ │ ├── map.tmx.meta │ │ ├── particle.meta │ │ └── particle │ │ │ ├── atom.plist │ │ │ ├── atom.plist.meta │ │ │ ├── smoke.plist │ │ │ ├── smoke.plist.meta │ │ │ ├── smoke.png │ │ │ └── smoke.png.meta │ ├── prefabs.meta │ ├── prefabs │ │ ├── AnySDKItem.prefab │ │ ├── AnySDKItem.prefab.meta │ │ ├── Background.prefab │ │ ├── Background.prefab.meta │ │ ├── ListItem.prefab │ │ ├── ListItem.prefab.meta │ │ ├── Monster.prefab │ │ ├── Monster.prefab.meta │ │ ├── Page.prefab │ │ ├── Page.prefab.meta │ │ ├── SuspensionTips.prefab │ │ ├── SuspensionTips.prefab.meta │ │ ├── Tips.prefab │ │ ├── Tips.prefab.meta │ │ ├── TipsManager.prefab │ │ ├── TipsManager.prefab.meta │ │ ├── item0.prefab │ │ ├── item0.prefab.meta │ │ ├── loadAnimTest.prefab │ │ ├── loadAnimTest.prefab.meta │ │ ├── loadItem.prefab │ │ └── loadItem.prefab.meta │ ├── textures.meta │ └── textures │ │ ├── bg.png │ │ ├── bg.png.meta │ │ ├── cocos_creator.jpg │ │ ├── cocos_creator.jpg.meta │ │ ├── cocos_creator_white.jpg │ │ ├── cocos_creator_white.jpg.meta │ │ ├── content.png │ │ ├── content.png.meta │ │ ├── default_scrollbar_bg.png │ │ ├── default_scrollbar_bg.png.meta │ │ ├── default_scrollbar_vertical_bg.png │ │ ├── default_scrollbar_vertical_bg.png.meta │ │ ├── filled.meta │ │ ├── filled │ │ ├── filled_bg.png │ │ ├── filled_bg.png.meta │ │ ├── filled_h_fg.png │ │ ├── filled_h_fg.png.meta │ │ ├── filled_round_bg.png │ │ ├── filled_round_bg.png.meta │ │ ├── filled_round_fg.png │ │ ├── filled_round_fg.png.meta │ │ ├── filled_v_fg.png │ │ └── filled_v_fg.png.meta │ │ ├── gold.png │ │ ├── gold.png.meta │ │ ├── goldcoin.png │ │ ├── goldcoin.png.meta │ │ ├── monster-icon.meta │ │ ├── monster-icon │ │ ├── BuleMonster.png │ │ ├── BuleMonster.png.meta │ │ ├── GreenMonster.png │ │ ├── GreenMonster.png.meta │ │ ├── PurpleMonster.png │ │ ├── PurpleMonster.png.meta │ │ ├── RedMonster.png │ │ ├── RedMonster.png.meta │ │ ├── YellowMonster.png │ │ └── YellowMonster.png.meta │ │ ├── scrollbar.png │ │ ├── scrollbar.png.meta │ │ ├── scrollbarVertical.png │ │ ├── scrollbarVertical.png.meta │ │ ├── scrollviewbg.png │ │ ├── scrollviewbg.png.meta │ │ ├── sheep.meta │ │ ├── sheep │ │ ├── AutoAtlas.pac │ │ ├── AutoAtlas.pac.meta │ │ ├── sheep_down_0.png │ │ ├── sheep_down_0.png.meta │ │ ├── sheep_down_1.png │ │ ├── sheep_down_1.png.meta │ │ ├── sheep_down_2.png │ │ ├── sheep_down_2.png.meta │ │ ├── sheep_jump_0.png │ │ ├── sheep_jump_0.png.meta │ │ ├── sheep_jump_1.png │ │ ├── sheep_jump_1.png.meta │ │ ├── sheep_jump_2.png │ │ ├── sheep_jump_2.png.meta │ │ ├── sheep_jump_3.png │ │ ├── sheep_jump_3.png.meta │ │ ├── sheep_jump_4.png │ │ ├── sheep_jump_4.png.meta │ │ ├── sheep_run_0.png │ │ ├── sheep_run_0.png.meta │ │ ├── sheep_run_1.png │ │ ├── sheep_run_1.png.meta │ │ ├── sheep_run_2.png │ │ ├── sheep_run_2.png.meta │ │ ├── sheep_run_3.png │ │ ├── sheep_run_3.png.meta │ │ ├── sheep_touch_0.png │ │ └── sheep_touch_0.png.meta │ │ ├── singleColor.png │ │ ├── singleColor.png.meta │ │ ├── sliced.meta │ │ ├── sliced │ │ ├── button_empty.png │ │ ├── button_empty.png.meta │ │ ├── button_green.png │ │ ├── button_green.png.meta │ │ ├── button_green_p2.png │ │ ├── button_green_p2.png.meta │ │ ├── button_green_un2.png │ │ ├── button_green_un2.png.meta │ │ ├── panel_bg.png │ │ ├── panel_bg.png.meta │ │ ├── panel_black.png │ │ ├── panel_black.png.meta │ │ ├── panel_highlight.png │ │ ├── panel_highlight.png.meta │ │ ├── ui_panel.png │ │ └── ui_panel.png.meta │ │ ├── star.png │ │ ├── star.png.meta │ │ ├── star_slot.png │ │ ├── star_slot.png.meta │ │ ├── tab-bg.png │ │ ├── tab-bg.png.meta │ │ ├── tiled.meta │ │ ├── tiled │ │ ├── barBg.png │ │ ├── barBg.png.meta │ │ ├── barFg.png │ │ ├── barFg.png.meta │ │ ├── ground.png │ │ └── ground.png.meta │ │ ├── ui.meta │ │ ├── ui │ │ ├── style1.meta │ │ ├── style1 │ │ │ ├── add.png │ │ │ ├── add.png.meta │ │ │ ├── attention.png │ │ │ ├── attention.png.meta │ │ │ ├── btn_options.png │ │ │ ├── btn_options.png.meta │ │ │ ├── btn_play.png │ │ │ ├── btn_play.png.meta │ │ │ ├── cancel.png │ │ │ ├── cancel.png.meta │ │ │ ├── panelBG.png │ │ │ ├── panelBG.png.meta │ │ │ ├── question.png │ │ │ ├── question.png.meta │ │ │ ├── restart.png │ │ │ ├── restart.png.meta │ │ │ ├── setup.png │ │ │ └── setup.png.meta │ │ ├── style2.meta │ │ └── style2 │ │ │ ├── bg.png │ │ │ ├── bg.png.meta │ │ │ ├── btn_normal.png │ │ │ ├── btn_normal.png.meta │ │ │ ├── btn_pressed.png │ │ │ ├── btn_pressed.png.meta │ │ │ ├── scrollview_bar.png │ │ │ ├── scrollview_bar.png.meta │ │ │ ├── scrollview_barBg.png │ │ │ ├── scrollview_barBg.png.meta │ │ │ ├── scrollview_bg.png │ │ │ └── scrollview_bg.png.meta │ │ ├── webp.meta │ │ └── webp │ │ ├── Lenna.webp │ │ └── Lenna.webp.meta ├── resources.meta └── resources │ ├── hero.meta │ └── hero │ ├── bg1.png │ ├── bg1.png.meta │ ├── bg2.png │ ├── bg2.png.meta │ ├── bg3.png │ ├── bg3.png.meta │ ├── blank.png │ ├── blank.png.meta │ ├── hero.png │ ├── hero.png.meta │ ├── hero1.png │ ├── hero1.png.meta │ ├── run1.png │ ├── run1.png.meta │ ├── run2.png │ ├── run2.png.meta │ ├── tick.png │ └── tick.png.meta ├── jsconfig.json ├── library ├── bundle.project.js ├── imports │ ├── 10 │ │ ├── 107100b3-f194-42a8-b955-b42cb87dc698.js │ │ └── 107100b3-f194-42a8-b955-b42cb87dc698.js.map │ ├── 12 │ │ ├── 1228ce55-ab81-40eb-8b0b-43fbcfe38d58.json │ │ └── 12338a2e-5046-4a92-987c-8ece8fd2fc31.json │ ├── 14 │ │ └── 142dce2a-9f39-49e2-91c4-b62c5781d1a7.json │ ├── 16 │ │ ├── 169b5aa9-3be1-492b-bf3c-e149fadd5d95.json │ │ └── 16bb2ab3-4126-4d8f-b2aa-80a216048bfa.json │ ├── 17 │ │ └── 171a4ae8-770d-4963-ba5c-88d3d93b1a65.json │ ├── 18 │ │ └── 18148035-bffd-4418-ac8e-10adafd388c3.json │ ├── 20 │ │ └── 203bd4eb-e251-48cf-9bb5-5d5ab81cc24b.json │ ├── 23 │ │ ├── 232d2782-c4bd-4bb4-9e01-909f03d6d3b9.json │ │ ├── 2349e917-5cb4-44bd-98ae-81fbad154586.json │ │ ├── 2396da30-5f0b-4418-894e-3a57259bc334.json │ │ └── 23eb8387-ca49-4121-be68-56054ee539d8.json │ ├── 27 │ │ ├── 27756ebb-3d33-44b0-9b96-e858fadd4dd4.json │ │ └── 27cff904-4850-4343-a3e2-2871e4b7d4a1.json │ ├── 28 │ │ └── 28275995-c6bb-4db7-8c7a-8cfc1853abfe.json │ ├── 29 │ │ └── 29158224-f8dd-4661-a796-1ffab537140e.json │ ├── 31 │ │ └── 31d8962d-babb-4ec7-be19-8e9f54a4ea99.json │ ├── 32 │ │ └── 32044bd2-481f-4cf1-a656-e2b2fb1594eb.json │ ├── 33 │ │ ├── 3387601e-3d35-446c-8972-d38ef90d8d2e.json │ │ └── 33b23c50-d7b5-4df6-a861-d2e76565fdca.json │ ├── 38 │ │ └── 38446e6f-cf23-4add-8038-174b7f8146e0.json │ ├── 42 │ │ └── 42041434-3d6c-46ed-acb7-272b5a383576.json │ ├── 43 │ │ ├── 4310c78e-46eb-450a-b504-0694e8cae4dd.js │ │ └── 4310c78e-46eb-450a-b504-0694e8cae4dd.js.map │ ├── 44 │ │ └── 449c763b-2b89-4afc-89ca-e7b8d189d6e2.json │ ├── 45 │ │ └── 4590c703-f457-4e19-b1a7-5af81ae0850e.json │ ├── 46 │ │ ├── 460588c6-f354-4f3d-9e80-eae387ded2fe.json │ │ └── 461276b0-f667-4939-b50e-eafa62de71dc.json │ ├── 48 │ │ └── 4828fd1a-a912-4bfa-8ace-c6e5a02c0e24.json │ ├── 49 │ │ └── 49c166a6-94ae-4b97-ab22-b1b46e001d73.json │ ├── 50 │ │ ├── 505e368d-fa55-41f0-934a-4625cc196c6e.json │ │ └── 50c117d4-d396-4b6d-97f9-b34b03a4f796.json │ ├── 51 │ │ └── 510d7b72-47d0-4c89-944b-b083e2bae766.json │ ├── 55 │ │ ├── 5597fdf5-3cfc-45e5-b989-320c6a359428.json │ │ ├── 55b9cd01-551c-48f1-a9d7-6e940c7ac81d.json │ │ └── 55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d.json │ ├── 58 │ │ └── 585f0220-7c2a-4b74-a562-a8eea45d5e9c.json │ ├── 59 │ │ └── 5965ffac-69da-4b55-bcde-9225d0613c28.json │ ├── 61 │ │ └── 61aeb05b-3b32-452b-8eed-2b76deeed554.json │ ├── 62 │ │ └── 6224a554-fc2b-4b9d-a2de-43fd81a31850.json │ ├── 63 │ │ └── 63dd3ec4-30f7-45dd-a28f-3e16d2d33367.json │ ├── 67 │ │ └── 67e68bc9-dad5-4ad9-a2d8-7e03d458e32f.json │ ├── 68 │ │ ├── 6827ca32-0107-4552-bab2-dfb31799bb44.json │ │ ├── 68d3c98a-411c-4cc4-9c0c-e4c7ea66b3e1.js │ │ └── 68d3c98a-411c-4cc4-9c0c-e4c7ea66b3e1.js.map │ ├── 71 │ │ └── 7168db62-0edc-42e5-be5d-682cf6c4a165.json │ ├── 73 │ │ └── 73034713-ab4b-4fba-953b-5f7d4c36320c.json │ ├── 77 │ │ └── 77216d51-3efe-4be5-8e3a-40536959a284.json │ ├── 78 │ │ └── 785a442c-3ceb-45be-a46e-7317f625f3b9.json │ ├── 79 │ │ └── 79a0b94a-3b68-47cb-b94a-d0dbadf0788b.json │ ├── 80 │ │ └── 8026fa0b-21e9-4784-8044-cd7ac2819df6.json │ ├── 81 │ │ ├── 816c0a7d-da26-4c81-9fcc-0eb02173b99d.json │ │ └── 81e4b8dd-4d1c-471a-a2eb-7b1a4bfe8c00.json │ ├── 84 │ │ └── 8456f3b4-0998-49ea-aeae-d5e8985ad816.json │ ├── 88 │ │ ├── 88171a38-e2a9-464f-84fc-854c4a99fcf7.json │ │ └── 88e79fd5-96b4-4a77-a1f4-312467171014.json │ ├── 90 │ │ └── 90004ad6-2f6d-40e1-93ef-b714375c6f06.json │ ├── 93 │ │ └── 9320f0a4-5719-47a8-8f67-624a72c356f0.json │ ├── 95 │ │ ├── 9545dbe5-183b-420a-8610-07b70c938504.json │ │ └── 9563cb61-be04-40b0-9b0a-c721c057f21d.json │ ├── 96 │ │ └── 96083d03-c332-4a3f-9386-d03e2d19e8ee.json │ ├── 97 │ │ ├── 972b9a4d-47ee-4c74-b5c3-61d8a69bc29f.json │ │ └── 974e77fc-01b1-4828-be55-a5adc76e15c6.json │ ├── 99 │ │ └── 990be1b5-a3d9-4cb9-a5fa-51cd31fed591.json │ ├── 00 │ │ ├── 0004d1cf-a0ad-47d8-ab17-34d3db9d35a3.json │ │ └── 008611f6-7f64-4f7b-aef3-440e0e0b32db.json │ ├── 02 │ │ └── 025224c7-e24b-47ae-b56d-0b514b14b504.json │ ├── 03 │ │ └── 0387392a-226a-42dd-9bf4-19faf18abb89.json │ ├── 04 │ │ ├── 0439d97a-4924-4764-9b12-aea48bb17072.json │ │ ├── 0467443e-6fb8-4d7b-a34f-57b3e5c149fb.json │ │ └── 0493e26c-2921-47e4-961c-e636c3d43701.json │ ├── 05 │ │ └── 050adbf6-bd66-4a26-ac79-d68c00ad7812.json │ ├── 07 │ │ └── 07325f10-94ec-4946-ac64-9f3240aad44d.json │ ├── 0a │ │ ├── 0a37fd50-dd9b-4330-b15c-32be85ecbe72.json │ │ ├── 0aa0b36c-c4a9-4ce2-ab3b-efede708e6d4.json │ │ └── 0af72c6c-2b37-4fab-be5b-b4534dba795e.json │ ├── 0d │ │ └── 0d784963-d024-4ea6-a7db-03be0ad63010.json │ ├── 0e │ │ └── 0ee46d3e-e838-41ae-9725-11eb2b683ba6.json │ ├── 1a │ │ ├── 1a32fc76-f0bd-4f66-980f-56929c0ca0b3.json │ │ └── 1a4c9585-9c4e-4d61-aa28-166b52945322.json │ ├── 1b │ │ ├── 1b3109fa-d7db-4c0c-a236-92eeb51e1972.json │ │ ├── 1ba56f69-593d-4d5b-816f-8326ed43f609.js │ │ └── 1ba56f69-593d-4d5b-816f-8326ed43f609.js.map │ ├── 1c │ │ └── 1c2a9087-adac-458b-9cd0-e3a2c745e3b8.json │ ├── 1d │ │ ├── 1d0db5b6-122b-4920-88d1-620c53a32a27.json │ │ ├── 1d5f7f3e-d4b5-43c4-9b09-5b8325870b89.json │ │ └── 1d89d22e-a3da-44c8-b3aa-591b40fa714d.json │ ├── 1e │ │ ├── 1ea21a34-ca68-4880-8df6-05abb19079fd.json │ │ └── 1eda363f-6200-4822-b297-4bf308291d9d.json │ ├── 1f │ │ └── 1f55e3be-b89b-4b79-88de-47fd31018044.json │ ├── 2a │ │ └── 2aa370a7-1efa-445c-93a4-11824635a8b8.json │ ├── 2c │ │ ├── 2c937608-2562-40ea-b264-7395df6f0cea.json │ │ └── 2cf8f988-a7d3-491c-bd4b-6d0eaabd9108.json │ ├── 2d │ │ ├── 2d5e6098-b017-4b27-b0d1-ad58ebf2095a.json │ │ ├── 2da0d053-47db-4312-80ca-6bc0ac84d5f8.js │ │ └── 2da0d053-47db-4312-80ca-6bc0ac84d5f8.js.map │ ├── 2e │ │ └── 2e246ade-7131-4cc5-82eb-38ce75ee6d22.json │ ├── 3c │ │ └── 3cfdb519-2f4e-4b8f-a3b6-bc3d55d6ffae.json │ ├── 3e │ │ └── 3ec63f7b-d183-4037-8d10-689631640620.json │ ├── 4a │ │ └── 4a37dd57-78cd-4cec-aad4-f11a73d12b63.json │ ├── 4b │ │ ├── 4bb25e27-63ac-4ec7-aec9-d89d1cc5b619.json │ │ └── 4bffeeee-f2c6-4bec-ba74-cd671d12709b.json │ ├── 4d │ │ └── 4dd22357-345b-4ef3-be5b-8af3d5053897.json │ ├── 4e │ │ ├── 4e04607f-1e4b-4513-8e9b-d9793044a8b3.json │ │ └── 4e1e1021-4bf0-4a5a-b833-8016a9c49831.json │ ├── 5a │ │ └── 5a1a86c4-108f-442e-adbc-697f68e9f781.json │ ├── 5c │ │ └── 5c3bb932-6c3c-468f-88a9-c8c61d458641.json │ ├── 5d │ │ ├── 5d0f5d8c-368f-4b56-820f-d846602301a8.json │ │ └── 5d29daeb-8963-4e11-8a16-9a1194ee58ca.json │ ├── 5f │ │ ├── 5f1c3f47-0c2a-4ade-ad0e-453aed86d224.json │ │ └── 5fe5dcaa-b513-4dc5-a166-573627b3a159.json │ ├── 6a │ │ ├── 6a754d42-47d2-40c1-9a71-9d398894c8e4.json │ │ └── 6aff97f1-ff94-4582-9422-f3eb1670dc44.json │ ├── 6c │ │ └── 6ce20f13-4a4b-43b2-91bd-95c0c60a8176.json │ ├── 6d │ │ └── 6dc05d62-dd10-4a6b-a05c-ed926b4f3142.json │ ├── 6f │ │ └── 6f48c6a4-606a-45f9-bcca-fa269dee0060.json │ ├── 7a │ │ └── 7af761f8-3675-4467-80fe-2da7debeef3f.json │ ├── 7c │ │ └── 7ccb784f-7c51-4a0b-a59e-e95da40f3013.json │ ├── 7d │ │ ├── 7d4ffd94-42d6-4045-9db7-a744229adfc4.json │ │ ├── 7de03a80-4457-438d-95a7-3e7cdffd6086.json │ │ └── 7de714e2-e3c2-49dc-b021-9012203f9e96.json │ ├── 7e │ │ ├── 7e1e776a-f1cf-4bec-96ab-6f4b6197b475.json │ │ └── 7ec2e3b4-8ec1-4888-abf9-b18c9e2a4e93.json │ ├── 8c │ │ ├── 8c5001fd-07ee-4a4b-a8a0-63e15195e94d.json │ │ ├── 8c511e9b-ed58-46f6-b5f7-0053e666b8ed.json │ │ └── 8cdb44ac-a3f6-449f-b354-7cd48cf84061.json │ ├── 9b │ │ ├── 9b0754b9-bbfc-4259-8e63-91f3436f8679.json │ │ └── 9bbda31e-ad49-43c9-aaf2-f7d9896bac69.json │ ├── 9d │ │ └── 9d241a7c-3e6d-44a1-95c3-bcd03c111845.json │ ├── 9f │ │ └── 9f1c8acd-ed6c-4328-9a0d-16dc5c57b3a0.json │ ├── a0 │ │ └── a0c9aeaf-0a1c-4aec-8877-f4c97e0a7895.json │ ├── a2 │ │ └── a23235d1-15db-4b95-8439-a2e005bfff91.json │ ├── a3 │ │ └── a31dfd3f-1734-4fc2-a75e-acf961ab7b85.json │ ├── a5 │ │ └── a57012ff-2334-4d99-a651-62ccbf1444c8.json │ ├── a6 │ │ └── a6cc59e8-9837-4c14-9c1e-e028a26fbce3.json │ ├── a7 │ │ ├── a711f9d8-7304-4890-8c14-e25a23a44a1a.json │ │ └── a717766a-81bb-4c67-b417-6aee005b5254.json │ ├── a8 │ │ └── a8accd2e-6622-4c31-8a1e-4db5f2b568b5.json │ ├── aa │ │ ├── aaeb4f99-c04c-4862-8205-82bdecfbc525.json │ │ └── aaf71854-d55f-43e8-92aa-ec6c71177195.json │ ├── ab │ │ ├── ab3ae5d9-3703-40be-a3cf-87d36a4f6029.json │ │ └── ab53cc17-5b11-4346-867d-d624c0e55a6b.json │ ├── ac │ │ ├── ac240d30-1c28-42e2-85d9-f1ea4f9f2525.json │ │ └── acd38863-4643-44cb-88f0-f479ecaf550c.json │ ├── ad │ │ └── ad1ec109-d5fd-4738-aafd-31d2e939acc6.json │ ├── b2 │ │ └── b230b669-ae59-4030-96c3-95585ce54cdb.json │ ├── b8 │ │ ├── b8392351-be97-4f01-985e-3e7d2118f3c9.json │ │ ├── b86b93bb-d782-4efa-9008-17e6357df45a.json │ │ └── b8b42435-f5f6-4af1-ae80-0a2d6d18bb58.json │ ├── ba │ │ └── ba9dc5f7-45ab-4ff5-be92-97c7a73b8ad5.json │ ├── bb │ │ ├── bb17971e-c86f-4b8f-ab66-84baf1704b64.json │ │ └── bb6469f0-6339-4ca8-8744-74211f590860.json │ ├── bc │ │ └── bc09c410-3796-4348-aab4-dc8750fec33f.json │ ├── bf │ │ ├── bf0a434c-84dd-4a8e-a08a-7a36f180cc75.json │ │ └── bf867cae-8a21-4fff-9dad-d21b5098a1a6.json │ ├── c0 │ │ ├── c018f035-3e32-40ed-b962-e171205633d0.json │ │ └── c0dcd181-8289-4a0a-a9e3-31bd10f2ff3f.json │ ├── c2 │ │ ├── c2037678-65b3-4b0b-8b66-fee835a46f94.json │ │ └── c2163afb-762d-45f9-97c0-896fd6d51252.json │ ├── c5 │ │ └── c59ffaf5-2689-4433-b6fa-c48003827afa.json │ ├── c6 │ │ └── c6322309-085e-49d1-a5e3-40d71598fd1f.json │ ├── c7 │ │ └── c7e3ed03-c568-4a97-8a49-a00c74ea6856.json │ ├── c9 │ │ ├── c9bc7a69-8d59-4ad6-8d7e-6c7c9016c200.json │ │ └── c9fa51ff-3f01-4601-8f80-325d1b11dab7.json │ ├── ca │ │ └── ca8401fe-ad6e-41a8-bd46-8e3e4e9945be.json │ ├── cb │ │ └── cb79e92b-2b6b-4445-91cc-6276f7496ddc.json │ ├── cd │ │ └── cd33edea-55f5-46c2-958d-357a01384a36.json │ ├── ce │ │ └── ce3733eb-cd7d-4a80-b69d-913cb16d3dee.json │ ├── cf │ │ └── cfe22ad2-a3c6-45e3-bb47-b39927265c7a.json │ ├── d0 │ │ ├── d00790ca-ae20-4d97-af77-8e81121472f2.js │ │ └── d00790ca-ae20-4d97-af77-8e81121472f2.js.map │ ├── d1 │ │ └── d167a975-8455-49e7-b48d-5cac118f3677.json │ ├── d2 │ │ ├── d2a987c6-3fd9-4642-a2ea-72a2fed6400b.json │ │ └── d2d40ff9-a8bf-4044-b593-65e39aeb1f66.json │ ├── d5 │ │ ├── d55da879-01d3-4c68-9750-c0eeb65a3e33.json │ │ └── d5c269b5-931f-467e-9437-faa130ac5c6d.json │ ├── d7 │ │ └── d7687dfb-167e-40ce-b2ae-16494926e632.json │ ├── d8 │ │ └── d8aab4d3-9fae-453e-966f-240c07879120.json │ ├── d9 │ │ └── d9345fc0-c742-47c3-af71-0ef3321ced79.json │ ├── da │ │ └── da9b7d82-4bdd-454b-ad4b-6cf7cad644ed.json │ ├── db │ │ └── db9392e5-3721-45ad-b7e2-0ec30b1aa6d3.json │ ├── dc │ │ └── dce845ca-66a7-44dd-b18c-bd49876e1a9a.json │ ├── e1 │ │ └── e14544db-56d7-472d-aaad-b5bc5f233aa4.json │ ├── e3 │ │ └── e304a643-7e04-4e85-a821-d14986bb562c.json │ ├── e5 │ │ └── e50f8a41-9ab5-450a-a125-2ebefa30854e.json │ ├── e6 │ │ └── e612e1d7-9279-4656-8b07-f80c978c5e7a.json │ ├── e7 │ │ └── e7aba14b-f956-4480-b254-8d57832e273f.json │ ├── e9 │ │ ├── e9df0c26-631b-4dcc-aa69-cd136d2042c8.json │ │ └── e9ec654c-97a2-4787-9325-e6a10375219a.json │ ├── eb │ │ └── eb7d8739-6ded-4970-9fdf-026258c03fe5.json │ ├── ee │ │ └── ee942c08-c2a8-421e-bfbe-498229084afe.json │ ├── ef │ │ └── efc1bbab-8753-4506-859f-0558eb86db31.json │ ├── f0 │ │ └── f0048c10-f03e-4c97-b9d3-3506e1d58952.json │ ├── f3 │ │ └── f3d82727-2391-4031-bd33-55f614523669.json │ ├── f6 │ │ └── f6b3551c-1db7-4f25-80a9-dffee8002b39.json │ ├── f9 │ │ └── f9c17ce1-0783-4a8b-8623-3ea10352958f.json │ ├── fa │ │ └── fa9f2200-78ba-4e24-9b4a-48a7d2da2e07.json │ ├── fc │ │ └── fc7a980a-0b25-411e-beb7-97b6e4545b13.json │ └── fd │ │ └── fd8fcb0a-429d-495b-8bf1-76027880f06b.json └── uuid-to-mtime.json ├── project.json └── settings ├── builder.json ├── builder.panel.json └── project.json /README.md: -------------------------------------------------------------------------------- 1 | # StickHero create by Cocos Creator. 2 | 3 | 自己练手的作品,分享给大家,希望可以帮助到到家。 4 | 5 | 效果演示:http://ihacker.club/stickhero/ 6 | -------------------------------------------------------------------------------- /assets/MyTest.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "61fc670d-48c4-4f58-8b8c-33b7682974a7", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/MyTest/Lib.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "e553db92-b890-40e9-91c4-ff4bb00b1f73", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/MyTest/Lib/state-machine.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "0ff2482e-ffc6-4442-9109-7bc4032d2ea2", 4 | "isPlugin": true, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/StickHero.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "36cdbc71-4324-4bdf-8fac-5fb0a68ef45e", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/StickHero/MainGameScene.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b86b93bb-d782-4efa-9008-17e6357df45a", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/StickHero/Scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "20a8a17c-9f63-4eb2-bc34-d580e1857b71", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/StickHero/Scripts/backgroundLoader.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | 6 | }, 7 | 8 | // use this for initialization 9 | onLoad: function () { 10 | var randomNum = "bg" + ((Math.random()*100|0)%3+1); 11 | var bgSprite = this.node.getComponent(cc.Sprite); 12 | cc.loader.loadRes("hero/"+randomNum, cc.SpriteFrame, (err, SpriteFrame) => { 13 | bgSprite.spriteFrame = SpriteFrame; 14 | }); 15 | cc.log(randomNum); 16 | }, 17 | // called every frame, uncomment this function to activate update callback 18 | // update: function (dt) { 19 | 20 | // }, 21 | }); 22 | -------------------------------------------------------------------------------- /assets/StickHero/Scripts/backgroundLoader.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "1ba56f69-593d-4d5b-816f-8326ed43f609", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/StickHero/Scripts/btn.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "2da0d053-47db-4312-80ca-6bc0ac84d5f8", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/StickHero/Scripts/landMaker.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "d00790ca-ae20-4d97-af77-8e81121472f2", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/StickHero/Scripts/perfectLabel.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "68d3c98a-411c-4cc4-9c0c-e4c7ea66b3e1", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/StickHero/Scripts/spriteCreator.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "4310c78e-46eb-450a-b504-0694e8cae4dd", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/StickHero/Scripts/storageManager.js: -------------------------------------------------------------------------------- 1 | var storageManager = (function (){ 2 | var spriteFrameCache = null; 3 | if(!cc.sys.localStorage.highestScore) 4 | { 5 | cc.sys.localStorage.highestScore = 0; 6 | } 7 | return { 8 | getHighestScore:function(){ 9 | return cc.sys.localStorage.highestScore; 10 | }, 11 | setHighestScore:function(score){ 12 | cc.sys.localStorage.highestScore = score; 13 | } 14 | }; 15 | })(); 16 | module.exports = storageManager; -------------------------------------------------------------------------------- /assets/StickHero/Scripts/storageManager.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "107100b3-f194-42a8-b955-b42cb87dc698", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/StickHero/StartScene.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "203bd4eb-e251-48cf-9bb5-5d5ab81cc24b", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/StickHero/startButton_anim.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "startButton_anim", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 6, 7 | "sample": 2, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "props": { 12 | "y": [ 13 | { 14 | "frame": 0, 15 | "value": 80 16 | }, 17 | { 18 | "frame": 1.5, 19 | "value": 100 20 | }, 21 | { 22 | "frame": 4.5, 23 | "value": 60 24 | }, 25 | { 26 | "frame": 6, 27 | "value": 80 28 | } 29 | ] 30 | } 31 | }, 32 | "events": [] 33 | } -------------------------------------------------------------------------------- /assets/StickHero/startButton_anim.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "2d5e6098-b017-4b27-b0d1-ad58ebf2095a", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/heroPush.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "81e4b8dd-4d1c-471a-a2eb-7b1a4bfe8c00", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/heroRun.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ab3ae5d9-3703-40be-a3cf-87d36a4f6029", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/heroTick.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "510d7b72-47d0-4c89-944b-b083e2bae766", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/perfect_anim.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "perfect_anim", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "opacity": [ 13 | { 14 | "frame": 0, 15 | "value": 0 16 | }, 17 | { 18 | "frame": 1, 19 | "value": 255 20 | } 21 | ] 22 | } 23 | }, 24 | "events": [ 25 | { 26 | "frame": 0, 27 | "func": "showLabel", 28 | "params": [] 29 | }, 30 | { 31 | "frame": 1, 32 | "func": "removeLabel", 33 | "params": [] 34 | } 35 | ] 36 | } -------------------------------------------------------------------------------- /assets/perfect_anim.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0493e26c-2921-47e4-961c-e636c3d43701", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "edd58aec-0cf0-4987-a716-c02424554b43", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/animation.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "75ee948e-47bf-42f8-a2ea-55ad58c8dbfc", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/animation/animEvent.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "7c8d49cf-50ad-4f6d-9e6c-b3a2201f32ab", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/animation/animEvent/step_1.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "step_1", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -360, 17 | 150 18 | ], 19 | "motionPath": [] 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | 386, 25 | 150 26 | ], 27 | "motionPath": [] 28 | } 29 | ] 30 | } 31 | }, 32 | "events": [ 33 | { 34 | "frame": 1, 35 | "func": "onNextAnimation", 36 | "params": [ 37 | 2 38 | ] 39 | } 40 | ] 41 | } -------------------------------------------------------------------------------- /assets/res/animation/animEvent/step_1.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ee942c08-c2a8-421e-bfbe-498229084afe", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/animEvent/step_2.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "step_2", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | 386, 17 | 174 18 | ], 19 | "curve": "quartOut" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | 386, 25 | -240 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [ 32 | { 33 | "frame": 1, 34 | "func": "onNextAnimation", 35 | "params": [ 36 | 3 37 | ] 38 | } 39 | ] 40 | } -------------------------------------------------------------------------------- /assets/res/animation/animEvent/step_2.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "142dce2a-9f39-49e2-91c4-b62c5781d1a7", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/animEvent/step_3.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "step_3", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | 386, 17 | -236 18 | ], 19 | "curve": "quartOut" 20 | }, 21 | { 22 | "frame": 0.9833333333333333, 23 | "value": [ 24 | -360, 25 | -230 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [ 32 | { 33 | "frame": 1, 34 | "func": "onNextAnimation", 35 | "params": [ 36 | 4 37 | ] 38 | } 39 | ] 40 | } -------------------------------------------------------------------------------- /assets/res/animation/animEvent/step_3.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8456f3b4-0998-49ea-aeae-d5e8985ad816", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/animEvent/step_4.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "step_4", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -360, 17 | -230 18 | ], 19 | "curve": "quintOut" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | -360, 25 | 150 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [ 32 | { 33 | "frame": 1, 34 | "func": "onNextAnimation", 35 | "params": [ 36 | 1 37 | ] 38 | } 39 | ] 40 | } -------------------------------------------------------------------------------- /assets/res/animation/animEvent/step_4.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c6322309-085e-49d1-a5e3-40d71598fd1f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/customProperty.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "cd5ab7aa-2ac6-404f-92ea-7d986fdaba7e", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/animation/customProperty/customAnim.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "9b0754b9-bbfc-4259-8e63-91f3436f8679", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/motionStreak.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "518bd3b1-c11f-4af2-b4b8-519514d5ee44", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/animation/motionStreak/move_around.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1228ce55-ab81-40eb-8b0b-43fbcfe38d58", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/move.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "2ae95637-6571-4060-b4d5-f91c0b4170a3", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/animation/move/back-forward.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "back-forward", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": "22", 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ], 19 | "curve": [ 20 | 0.18, 21 | 0.89, 22 | 0.31, 23 | 1.21 24 | ] 25 | }, 26 | { 27 | "frame": 1, 28 | "value": [ 29 | 151, 30 | 243 31 | ] 32 | } 33 | ] 34 | } 35 | }, 36 | "events": [] 37 | } -------------------------------------------------------------------------------- /assets/res/animation/move/back-forward.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3cfdb519-2f4e-4b8f-a3b6-bc3d55d6ffae", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/move/caseIn-expo.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "caseIn-expo", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": "22", 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ], 19 | "curve": "expoIn" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | 151, 25 | 243 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [] 32 | } -------------------------------------------------------------------------------- /assets/res/animation/move/caseIn-expo.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5d29daeb-8963-4e11-8a16-9a1194ee58ca", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/move/caseInOut-expo.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "caseInOut-expo", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": 22, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ], 19 | "curve": "expoInOut" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | 155, 25 | 243 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [] 32 | } -------------------------------------------------------------------------------- /assets/res/animation/move/caseInOut-expo.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4bffeeee-f2c6-4bec-ba74-cd671d12709b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/move/caseOut-expo.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "caseOut-expo", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": 22, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ], 19 | "curve": "circOut" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | 155, 25 | 243 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [] 32 | } -------------------------------------------------------------------------------- /assets/res/animation/move/caseOut-expo.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "49c166a6-94ae-4b97-ab22-b1b46e001d73", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/move/linear.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "linear", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": "22", 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ] 19 | }, 20 | { 21 | "frame": 1, 22 | "value": [ 23 | 151, 24 | 243 25 | ] 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /assets/res/animation/move/linear.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4bb25e27-63ac-4ec7-aec9-d89d1cc5b619", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/sheep_hit.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "sheep_hit", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": {}, 11 | "events": [] 12 | } -------------------------------------------------------------------------------- /assets/res/animation/sheep_hit.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "050adbf6-bd66-4a26-ac79-d68c00ad7812", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/sheep_jump.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "16bb2ab3-4126-4d8f-b2aa-80a216048bfa", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/sheep_run.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "dce845ca-66a7-44dd-b18c-bd49876e1a9a", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/tipsAnim.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "tipsAnim", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 0.5, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "y": [ 13 | { 14 | "frame": 0, 15 | "value": 0 16 | }, 17 | { 18 | "frame": 1, 19 | "value": 200 20 | } 21 | ], 22 | "opacity": [ 23 | { 24 | "frame": 0.13333333333333333, 25 | "value": 255 26 | }, 27 | { 28 | "frame": 1, 29 | "value": 0 30 | } 31 | ] 32 | } 33 | }, 34 | "events": [ 35 | { 36 | "frame": 1, 37 | "func": "onFinish", 38 | "params": [] 39 | } 40 | ] 41 | } -------------------------------------------------------------------------------- /assets/res/animation/tipsAnim.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "171a4ae8-770d-4963-ba5c-88d3d93b1a65", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/trimmedSprite.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "570fd951-e9b9-4b89-ba28-0e2ffe51e3c9", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/animation/trimmedSprite/sheepRun.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "aaeb4f99-c04c-4862-8205-82bdecfbc525", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/widget.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "e450c70d-f9aa-4514-9247-5481d9d9086f", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/animation/widget/alignOnce_scale.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "alignOnce_scale", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.9833333333333333, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 22, 10 | "curveData": { 11 | "props": { 12 | "width": [ 13 | { 14 | "frame": 0, 15 | "value": 800 16 | }, 17 | { 18 | "frame": 0.9833333333333333, 19 | "value": 270 20 | } 21 | ] 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/res/animation/widget/alignOnce_scale.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c0dcd181-8289-4a0a-a9e3-31bd10f2ff3f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/widget/rightWidget.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "rightWidget", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": "22", 10 | "curveData": { 11 | "comps": { 12 | "cc.Widget": { 13 | "right": [ 14 | { 15 | "frame": 0, 16 | "value": 850 17 | }, 18 | { 19 | "frame": 1, 20 | "value": 30 21 | } 22 | ] 23 | } 24 | } 25 | }, 26 | "events": [] 27 | } -------------------------------------------------------------------------------- /assets/res/animation/widget/rightWidget.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "33b23c50-d7b5-4df6-a861-d2e76565fdca", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/animation/widget/topWidget.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "topWidget", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 22, 10 | "curveData": { 11 | "comps": { 12 | "cc.Widget": { 13 | "top": [ 14 | { 15 | "frame": 0, 16 | "value": 550 17 | }, 18 | { 19 | "frame": 1, 20 | "value": 200 21 | } 22 | ] 23 | } 24 | }, 25 | "props": { 26 | "scaleY": [ 27 | { 28 | "frame": 0, 29 | "value": 1 30 | }, 31 | { 32 | "frame": 0.5, 33 | "value": 0 34 | } 35 | ] 36 | } 37 | }, 38 | "events": [] 39 | } -------------------------------------------------------------------------------- /assets/res/animation/widget/topWidget.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5d0f5d8c-368f-4b56-820f-d846602301a8", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/atlas.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "c14ac7b2-1c82-4c75-a747-3762e49cfd5d", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/atlas/emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/atlas/emoji.png -------------------------------------------------------------------------------- /assets/res/atlas/emoji.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "224ce6e8-0e32-430a-9807-9452fc769ac9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "emoji": { 9 | "ver": "1.0.3", 10 | "uuid": "2aa370a7-1efa-445c-93a4-11824635a8b8", 11 | "rawTextureUuid": "224ce6e8-0e32-430a-9807-9452fc769ac9", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 206, 20 | "height": 70, 21 | "rawWidth": 208, 22 | "rawHeight": 70, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/atlas/sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/atlas/sheep.png -------------------------------------------------------------------------------- /assets/res/atlas/sheep.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep": { 9 | "ver": "1.0.3", 10 | "uuid": "aaf71854-d55f-43e8-92aa-ec6c71177195", 11 | "rawTextureUuid": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": 203, 17 | "trimX": 2, 18 | "trimY": 2, 19 | "width": 506, 20 | "height": 614, 21 | "rawWidth": 512, 22 | "rawHeight": 1024, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/atlas/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/atlas/ui.png -------------------------------------------------------------------------------- /assets/res/atlas/ui.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "ui": { 9 | "ver": "1.0.3", 10 | "uuid": "9d241a7c-3e6d-44a1-95c3-bcd03c111845", 11 | "rawTextureUuid": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 1, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 257, 20 | "height": 59, 21 | "rawWidth": 257, 22 | "rawHeight": 61, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/cocosvideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/cocosvideo.mp4 -------------------------------------------------------------------------------- /assets/res/cocosvideo.mp4.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7b92981b-aaea-4c77-b86d-0142991ac334", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/dragonbones.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "5f61a31e-678b-4d93-9e45-599409e7cf72", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/dragonbones/CoreElement_texture_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/dragonbones/CoreElement_texture_1.png -------------------------------------------------------------------------------- /assets/res/dragonbones/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/dragonbones/texture.png -------------------------------------------------------------------------------- /assets/res/dragonbones/texture.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7e31a28d-8fbd-4bb2-8969-de857fee3876", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "texture": { 9 | "ver": "1.0.3", 10 | "uuid": "7e1e776a-f1cf-4bec-96ab-6f4b6197b475", 11 | "rawTextureUuid": "7e31a28d-8fbd-4bb2-8969-de857fee3876", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -3, 16 | "offsetY": 100, 17 | "trimX": 1, 18 | "trimY": 1, 19 | "width": 1016, 20 | "height": 822, 21 | "rawWidth": 1024, 22 | "rawHeight": 1024, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/imported.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "ef81b175-c8f7-4df9-936a-361bd1d7d3b9", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/imported/barriers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/imported/barriers.png -------------------------------------------------------------------------------- /assets/res/imported/barriers.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7d44317c-27c2-4cf6-a1b8-b2258eb74322", 4 | "type": "raw", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/res/imported/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/imported/ground.png -------------------------------------------------------------------------------- /assets/res/imported/ground.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "64912915-8f49-4b57-abed-8c6ea1d41ae0", 4 | "type": "raw", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/res/imported/iso-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/imported/iso-test.png -------------------------------------------------------------------------------- /assets/res/imported/iso-test.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0cf752c8-2374-4e99-b7dd-20069221ff8b", 4 | "type": "raw", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/res/imported/iso-test.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "6a754d42-47d2-40c1-9a71-9d398894c8e4", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/imported/map.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "1a4c9585-9c4e-4d61-aa28-166b52945322", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/imported/particle.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "701414e0-36ee-4efb-ad1f-e95a55d44a0b", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/imported/particle/atom.plist.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e24fa342-815a-4478-b9db-ed592e7c0293", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/imported/particle/smoke.plist.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "bbf8cf2e-79ac-4dba-b059-768cbb44e3d1", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/imported/particle/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/imported/particle/smoke.png -------------------------------------------------------------------------------- /assets/res/imported/particle/smoke.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6f932e68-4c0f-4291-9759-852e509d2e83", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "smoke": { 9 | "ver": "1.0.3", 10 | "uuid": "8c511e9b-ed58-46f6-b5f7-0053e666b8ed", 11 | "rawTextureUuid": "6f932e68-4c0f-4291-9759-852e509d2e83", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 56, 20 | "height": 56, 21 | "rawWidth": 56, 22 | "rawHeight": 56, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "d0bafb4d-a2b8-45e6-9d73-1414eecf2fe6", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/prefabs/AnySDKItem.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ac240d30-1c28-42e2-85d9-f1ea4f9f2525", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/Background.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b8392351-be97-4f01-985e-3e7d2118f3c9", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/ListItem.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1ea21a34-ca68-4880-8df6-05abb19079fd", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/Monster.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "460588c6-f354-4f3d-9e80-eae387ded2fe", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/Page.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "9545dbe5-183b-420a-8610-07b70c938504", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/SuspensionTips.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1c2a9087-adac-458b-9cd0-e3a2c745e3b8", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/Tips.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e14544db-56d7-472d-aaad-b5bc5f233aa4", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/TipsManager.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a6cc59e8-9837-4c14-9c1e-e028a26fbce3", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/item0.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a8accd2e-6622-4c31-8a1e-4db5f2b568b5", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/loadAnimTest.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f6b3551c-1db7-4f25-80a9-dffee8002b39", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/prefabs/loadItem.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6dc05d62-dd10-4a6b-a05c-ed926b4f3142", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/res/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "ae91fecc-fbdf-4dae-a060-3b3079eb7a0b", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/bg.png -------------------------------------------------------------------------------- /assets/res/textures/bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e4e220ed-9718-4587-9b54-82ac98f477d4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bg": { 9 | "ver": "1.0.3", 10 | "uuid": "4590c703-f457-4e19-b1a7-5af81ae0850e", 11 | "rawTextureUuid": "e4e220ed-9718-4587-9b54-82ac98f477d4", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 600, 20 | "height": 600, 21 | "rawWidth": 600, 22 | "rawHeight": 600, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/cocos_creator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/cocos_creator.jpg -------------------------------------------------------------------------------- /assets/res/textures/cocos_creator.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "86678c0e-f8e7-409c-9ddf-e0a9bf555269", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "cocos_creator": { 9 | "ver": "1.0.3", 10 | "uuid": "ad1ec109-d5fd-4738-aafd-31d2e939acc6", 11 | "rawTextureUuid": "86678c0e-f8e7-409c-9ddf-e0a9bf555269", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 800, 20 | "height": 480, 21 | "rawWidth": 800, 22 | "rawHeight": 480, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/cocos_creator_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/cocos_creator_white.jpg -------------------------------------------------------------------------------- /assets/res/textures/cocos_creator_white.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7b31062d-9e8e-4805-b77a-739a8295d9d0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "cocos_creator_white": { 9 | "ver": "1.0.3", 10 | "uuid": "0387392a-226a-42dd-9bf4-19faf18abb89", 11 | "rawTextureUuid": "7b31062d-9e8e-4805-b77a-739a8295d9d0", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 800, 20 | "height": 480, 21 | "rawWidth": 800, 22 | "rawHeight": 480, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/content.png -------------------------------------------------------------------------------- /assets/res/textures/content.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6b4faed5-abc3-4a77-af9d-35ed67a5a48b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "content": { 9 | "ver": "1.0.3", 10 | "uuid": "bf867cae-8a21-4fff-9dad-d21b5098a1a6", 11 | "rawTextureUuid": "6b4faed5-abc3-4a77-af9d-35ed67a5a48b", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 512, 20 | "height": 512, 21 | "rawWidth": 512, 22 | "rawHeight": 512, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/default_scrollbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/default_scrollbar_bg.png -------------------------------------------------------------------------------- /assets/res/textures/default_scrollbar_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "206c3040-b374-40dc-a9ca-8800e556fba6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "default_scrollbar_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "b8b42435-f5f6-4af1-ae80-0a2d6d18bb58", 11 | "rawTextureUuid": "206c3040-b374-40dc-a9ca-8800e556fba6", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 30, 20 | "height": 15, 21 | "rawWidth": 30, 22 | "rawHeight": 15, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 2, 26 | "borderRight": 3, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/default_scrollbar_vertical_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/default_scrollbar_vertical_bg.png -------------------------------------------------------------------------------- /assets/res/textures/filled.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "89faedde-8d46-428e-b9fc-ffab90ea5636", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/filled/filled_bg.png -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0f313a01-15aa-4d03-b0be-6624e3998860", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "filled_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "38446e6f-cf23-4add-8038-174b7f8146e0", 11 | "rawTextureUuid": "0f313a01-15aa-4d03-b0be-6624e3998860", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 14, 20 | "height": 14, 21 | "rawWidth": 14, 22 | "rawHeight": 14, 23 | "borderTop": 5, 24 | "borderBottom": 5, 25 | "borderLeft": 5, 26 | "borderRight": 5, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_h_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/filled/filled_h_fg.png -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_h_fg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "70e86065-6677-4ab9-b63b-0117b4e60d76", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "filled_h_fg": { 9 | "ver": "1.0.3", 10 | "uuid": "6aff97f1-ff94-4582-9422-f3eb1670dc44", 11 | "rawTextureUuid": "70e86065-6677-4ab9-b63b-0117b4e60d76", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 402, 20 | "height": 31, 21 | "rawWidth": 402, 22 | "rawHeight": 31, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_round_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/filled/filled_round_bg.png -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_round_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5cc6354a-2762-45fe-bdc3-ba659747ad23", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "filled_round_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "c9bc7a69-8d59-4ad6-8d7e-6c7c9016c200", 11 | "rawTextureUuid": "5cc6354a-2762-45fe-bdc3-ba659747ad23", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 140, 20 | "height": 140, 21 | "rawWidth": 140, 22 | "rawHeight": 140, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_round_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/filled/filled_round_fg.png -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_round_fg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "770bf63f-6722-4d9a-9aa9-3009ba65be29", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "filled_round_fg": { 9 | "ver": "1.0.3", 10 | "uuid": "4e1e1021-4bf0-4a5a-b833-8016a9c49831", 11 | "rawTextureUuid": "770bf63f-6722-4d9a-9aa9-3009ba65be29", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 132, 20 | "height": 132, 21 | "rawWidth": 132, 22 | "rawHeight": 132, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_v_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/filled/filled_v_fg.png -------------------------------------------------------------------------------- /assets/res/textures/filled/filled_v_fg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c1d929f9-82db-4326-9436-3c1a0cb9ba50", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "filled_v_fg": { 9 | "ver": "1.0.3", 10 | "uuid": "cfe22ad2-a3c6-45e3-bb47-b39927265c7a", 11 | "rawTextureUuid": "c1d929f9-82db-4326-9436-3c1a0cb9ba50", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 31, 20 | "height": 402, 21 | "rawWidth": 31, 22 | "rawHeight": 402, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/gold.png -------------------------------------------------------------------------------- /assets/res/textures/gold.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "99ce2773-c288-4d67-9868-27bb8d5e9ea9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "gold": { 9 | "ver": "1.0.3", 10 | "uuid": "a717766a-81bb-4c67-b417-6aee005b5254", 11 | "rawTextureUuid": "99ce2773-c288-4d67-9868-27bb8d5e9ea9", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 80, 20 | "height": 80, 21 | "rawWidth": 80, 22 | "rawHeight": 80, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/goldcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/goldcoin.png -------------------------------------------------------------------------------- /assets/res/textures/goldcoin.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6ee311af-2e56-480a-98dd-ee63e3d5b24c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "goldcoin": { 9 | "ver": "1.0.3", 10 | "uuid": "e304a643-7e04-4e85-a821-d14986bb562c", 11 | "rawTextureUuid": "6ee311af-2e56-480a-98dd-ee63e3d5b24c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 80, 20 | "height": 80, 21 | "rawWidth": 80, 22 | "rawHeight": 80, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/monster-icon.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "da3a339b-f03b-42b8-a3b6-2efcaaba7022", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/BuleMonster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/monster-icon/BuleMonster.png -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/BuleMonster.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c09681b1-0c3e-4794-b687-1756e646d970", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "BuleMonster": { 9 | "ver": "1.0.3", 10 | "uuid": "d8aab4d3-9fae-453e-966f-240c07879120", 11 | "rawTextureUuid": "c09681b1-0c3e-4794-b687-1756e646d970", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 77, 20 | "height": 77, 21 | "rawWidth": 77, 22 | "rawHeight": 77, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/GreenMonster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/monster-icon/GreenMonster.png -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/GreenMonster.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "08c1edea-46d4-41de-99dd-4f8b7f6b43b3", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "GreenMonster": { 9 | "ver": "1.0.3", 10 | "uuid": "0467443e-6fb8-4d7b-a34f-57b3e5c149fb", 11 | "rawTextureUuid": "08c1edea-46d4-41de-99dd-4f8b7f6b43b3", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 68, 20 | "height": 71, 21 | "rawWidth": 68, 22 | "rawHeight": 71, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/PurpleMonster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/monster-icon/PurpleMonster.png -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/PurpleMonster.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "18041d7f-7c6a-47bd-ab6f-7a18b404a214", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "PurpleMonster": { 9 | "ver": "1.0.3", 10 | "uuid": "0439d97a-4924-4764-9b12-aea48bb17072", 11 | "rawTextureUuid": "18041d7f-7c6a-47bd-ab6f-7a18b404a214", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 78, 20 | "height": 67, 21 | "rawWidth": 78, 22 | "rawHeight": 67, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/RedMonster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/monster-icon/RedMonster.png -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/RedMonster.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8a6c5830-4127-4ddb-a3e6-028b3f793e83", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "RedMonster": { 9 | "ver": "1.0.3", 10 | "uuid": "1d5f7f3e-d4b5-43c4-9b09-5b8325870b89", 11 | "rawTextureUuid": "8a6c5830-4127-4ddb-a3e6-028b3f793e83", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 68, 20 | "height": 75, 21 | "rawWidth": 68, 22 | "rawHeight": 75, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/YellowMonster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/monster-icon/YellowMonster.png -------------------------------------------------------------------------------- /assets/res/textures/monster-icon/YellowMonster.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "15ade27e-0212-4775-b5e4-8a8a258e8b63", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "YellowMonster": { 9 | "ver": "1.0.3", 10 | "uuid": "0a37fd50-dd9b-4330-b15c-32be85ecbe72", 11 | "rawTextureUuid": "15ade27e-0212-4775-b5e4-8a8a258e8b63", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 80, 20 | "height": 71, 21 | "rawWidth": 80, 22 | "rawHeight": 71, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/scrollbar.png -------------------------------------------------------------------------------- /assets/res/textures/scrollbar.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4177692d-029f-445b-979b-f64421e6eafe", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "scrollbar": { 9 | "ver": "1.0.3", 10 | "uuid": "2cf8f988-a7d3-491c-bd4b-6d0eaabd9108", 11 | "rawTextureUuid": "4177692d-029f-445b-979b-f64421e6eafe", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 17, 20 | "height": 13, 21 | "rawWidth": 17, 22 | "rawHeight": 13, 23 | "borderTop": 3, 24 | "borderBottom": 4, 25 | "borderLeft": 4, 26 | "borderRight": 4, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/scrollbarVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/scrollbarVertical.png -------------------------------------------------------------------------------- /assets/res/textures/scrollbarVertical.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1c211f8f-6068-423b-8de2-9c4735427d7d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "scrollbarVertical": { 9 | "ver": "1.0.3", 10 | "uuid": "4828fd1a-a912-4bfa-8ace-c6e5a02c0e24", 11 | "rawTextureUuid": "1c211f8f-6068-423b-8de2-9c4735427d7d", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 13, 20 | "height": 17, 21 | "rawWidth": 13, 22 | "rawHeight": 17, 23 | "borderTop": 4, 24 | "borderBottom": 4, 25 | "borderLeft": 4, 26 | "borderRight": 5, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/scrollviewbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/scrollviewbg.png -------------------------------------------------------------------------------- /assets/res/textures/scrollviewbg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "da3df600-014d-40e1-8d48-c3800523e5e3", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "scrollviewbg": { 9 | "ver": "1.0.3", 10 | "uuid": "5f1c3f47-0c2a-4ade-ad0e-453aed86d224", 11 | "rawTextureUuid": "da3df600-014d-40e1-8d48-c3800523e5e3", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 184, 20 | "height": 180, 21 | "rawWidth": 184, 22 | "rawHeight": 180, 23 | "borderTop": 9, 24 | "borderBottom": 14, 25 | "borderLeft": 12, 26 | "borderRight": 15, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "13f3d416-99a7-42e6-9f56-e3340270da0a", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/AutoAtlas.pac: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AutoAtlas" 3 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/AutoAtlas.pac.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0ee46d3e-e838-41ae-9725-11eb2b683ba6", 4 | "maxWidth": 1024, 5 | "maxHeight": 1024, 6 | "padding": 2, 7 | "allowRotation": true, 8 | "forceSquared": false, 9 | "powerOfTwo": true, 10 | "heuristices": "BestAreaFit", 11 | "format": "png", 12 | "quality": 80, 13 | "filterUnused": false, 14 | "subMetas": {} 15 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_down_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_down_0.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_down_0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0e4e6493-4250-4ed9-9a37-d0a9f0663113", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_down_0": { 9 | "ver": "1.0.3", 10 | "uuid": "5a1a86c4-108f-442e-adbc-697f68e9f781", 11 | "rawTextureUuid": "0e4e6493-4250-4ed9-9a37-d0a9f0663113", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -25, 17 | "trimX": 2, 18 | "trimY": 61, 19 | "width": 224, 20 | "height": 87, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_down_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_down_1.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_down_1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8557c6d3-9eef-4b28-ac59-5d7337da100b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_down_1": { 9 | "ver": "1.0.3", 10 | "uuid": "c59ffaf5-2689-4433-b6fa-c48003827afa", 11 | "rawTextureUuid": "8557c6d3-9eef-4b28-ac59-5d7337da100b", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -6, 16 | "offsetY": -8, 17 | "trimX": 32, 18 | "trimY": 36, 19 | "width": 152, 20 | "height": 103, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_down_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_down_2.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_down_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "dca29d40-5407-41b4-939d-34e72d3b00c2", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_down_2": { 9 | "ver": "1.0.3", 10 | "uuid": "7af761f8-3675-4467-80fe-2da7debeef3f", 11 | "rawTextureUuid": "dca29d40-5407-41b4-939d-34e72d3b00c2", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -6.5, 16 | "offsetY": -3.5, 17 | "trimX": 25, 18 | "trimY": 31, 19 | "width": 165, 20 | "height": 104, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_jump_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_jump_0.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_jump_0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "34ee9b9b-b514-4973-9cd4-cd15aafffe8b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_jump_0": { 9 | "ver": "1.0.3", 10 | "uuid": "0af72c6c-2b37-4fab-be5b-b4534dba795e", 11 | "rawTextureUuid": "34ee9b9b-b514-4973-9cd4-cd15aafffe8b", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -9.5, 16 | "offsetY": -0.5, 17 | "trimX": 33, 18 | "trimY": 5, 19 | "width": 143, 20 | "height": 150, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_jump_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_jump_1.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_jump_1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a8f423a1-2069-4df5-a3a8-ea3ca8e11a6c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_jump_1": { 9 | "ver": "1.0.3", 10 | "uuid": "18148035-bffd-4418-ac8e-10adafd388c3", 11 | "rawTextureUuid": "a8f423a1-2069-4df5-a3a8-ea3ca8e11a6c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -13, 16 | "offsetY": 2, 17 | "trimX": 24, 18 | "trimY": 12, 19 | "width": 154, 20 | "height": 131, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_jump_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_jump_2.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_jump_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c06cee9f-0b1a-41ea-9c1b-6dfeed3b3661", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_jump_2": { 9 | "ver": "1.0.3", 10 | "uuid": "77216d51-3efe-4be5-8e3a-40536959a284", 11 | "rawTextureUuid": "c06cee9f-0b1a-41ea-9c1b-6dfeed3b3661", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -10, 16 | "offsetY": 3.5, 17 | "trimX": 24, 18 | "trimY": 24, 19 | "width": 160, 20 | "height": 104, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_jump_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_jump_3.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_jump_3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ecf333cf-99ed-4814-990d-3109890fbd5e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_jump_3": { 9 | "ver": "1.0.3", 10 | "uuid": "7de714e2-e3c2-49dc-b021-9012203f9e96", 11 | "rawTextureUuid": "ecf333cf-99ed-4814-990d-3109890fbd5e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -12, 16 | "offsetY": -2, 17 | "trimX": 26, 18 | "trimY": 24, 19 | "width": 152, 20 | "height": 115, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_jump_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_jump_4.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_run_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_run_0.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_run_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_run_1.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_run_1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c5a5b09c-e012-4da8-a31b-d1f541f64bf4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_run_1": { 9 | "ver": "1.0.3", 10 | "uuid": "a57012ff-2334-4d99-a651-62ccbf1444c8", 11 | "rawTextureUuid": "c5a5b09c-e012-4da8-a31b-d1f541f64bf4", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 1, 16 | "offsetY": 2, 17 | "trimX": 27, 18 | "trimY": 20, 19 | "width": 176, 20 | "height": 115, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_run_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_run_2.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_run_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1ba0dabd-fc65-4172-adee-e9167c6eb9ad", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_run_2": { 9 | "ver": "1.0.3", 10 | "uuid": "5597fdf5-3cfc-45e5-b989-320c6a359428", 11 | "rawTextureUuid": "1ba0dabd-fc65-4172-adee-e9167c6eb9ad", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 1.5, 16 | "offsetY": 10.5, 17 | "trimX": 27, 18 | "trimY": 12, 19 | "width": 177, 20 | "height": 114, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_run_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_run_3.png -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_run_3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7f97cb41-6ad1-45f7-afd9-3f9428490731", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sheep_run_3": { 9 | "ver": "1.0.3", 10 | "uuid": "1d0db5b6-122b-4920-88d1-620c53a32a27", 11 | "rawTextureUuid": "7f97cb41-6ad1-45f7-afd9-3f9428490731", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 2, 16 | "offsetY": 1, 17 | "trimX": 27, 18 | "trimY": 22, 19 | "width": 178, 20 | "height": 113, 21 | "rawWidth": 228, 22 | "rawHeight": 159, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sheep/sheep_touch_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sheep/sheep_touch_0.png -------------------------------------------------------------------------------- /assets/res/textures/singleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/singleColor.png -------------------------------------------------------------------------------- /assets/res/textures/singleColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1b6a0b3c-2a0e-410a-95ab-53dc9a03a360", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "singleColor": { 9 | "ver": "1.0.3", 10 | "uuid": "0aa0b36c-c4a9-4ce2-ab3b-efede708e6d4", 11 | "rawTextureUuid": "1b6a0b3c-2a0e-410a-95ab-53dc9a03a360", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 2, 20 | "height": 2, 21 | "rawWidth": 2, 22 | "rawHeight": 2, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sliced.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "80e23f32-593e-4e0f-8622-f760e2918838", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/sliced/button_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sliced/button_empty.png -------------------------------------------------------------------------------- /assets/res/textures/sliced/button_empty.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "dadab157-3ee8-4617-a29c-54d5b4fb7aa8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_empty": { 9 | "ver": "1.0.3", 10 | "uuid": "da9b7d82-4bdd-454b-ad4b-6cf7cad644ed", 11 | "rawTextureUuid": "dadab157-3ee8-4617-a29c-54d5b4fb7aa8", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 442, 20 | "height": 141, 21 | "rawWidth": 442, 22 | "rawHeight": 141, 23 | "borderTop": 34, 24 | "borderBottom": 63, 25 | "borderLeft": 43, 26 | "borderRight": 52, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sliced/button_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sliced/button_green.png -------------------------------------------------------------------------------- /assets/res/textures/sliced/button_green.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c82179a5-676d-423c-8de2-22874b5f4a6d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_green": { 9 | "ver": "1.0.3", 10 | "uuid": "db9392e5-3721-45ad-b7e2-0ec30b1aa6d3", 11 | "rawTextureUuid": "c82179a5-676d-423c-8de2-22874b5f4a6d", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 30, 20 | "height": 22, 21 | "rawWidth": 30, 22 | "rawHeight": 22, 23 | "borderTop": 7, 24 | "borderBottom": 12, 25 | "borderLeft": 8, 26 | "borderRight": 7, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sliced/button_green_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sliced/button_green_p2.png -------------------------------------------------------------------------------- /assets/res/textures/sliced/button_green_p2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "87589cb6-1ba7-4961-83ec-bb8e7edb1991", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_green_p2": { 9 | "ver": "1.0.3", 10 | "uuid": "50c117d4-d396-4b6d-97f9-b34b03a4f796", 11 | "rawTextureUuid": "87589cb6-1ba7-4961-83ec-bb8e7edb1991", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 30, 20 | "height": 22, 21 | "rawWidth": 30, 22 | "rawHeight": 22, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sliced/button_green_un2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sliced/button_green_un2.png -------------------------------------------------------------------------------- /assets/res/textures/sliced/button_green_un2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ca4be22c-42c0-4632-9225-cd95960fdd79", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_green_un2": { 9 | "ver": "1.0.3", 10 | "uuid": "b230b669-ae59-4030-96c3-95585ce54cdb", 11 | "rawTextureUuid": "ca4be22c-42c0-4632-9225-cd95960fdd79", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 33, 20 | "height": 24, 21 | "rawWidth": 33, 22 | "rawHeight": 24, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sliced/panel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sliced/panel_bg.png -------------------------------------------------------------------------------- /assets/res/textures/sliced/panel_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6fd1ec90-efab-41ec-ab6b-4cd6a085951d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "panel_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "008611f6-7f64-4f7b-aef3-440e0e0b32db", 11 | "rawTextureUuid": "6fd1ec90-efab-41ec-ab6b-4cd6a085951d", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 20, 20 | "height": 20, 21 | "rawWidth": 20, 22 | "rawHeight": 20, 23 | "borderTop": 4, 24 | "borderBottom": 6, 25 | "borderLeft": 5, 26 | "borderRight": 5, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sliced/panel_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sliced/panel_black.png -------------------------------------------------------------------------------- /assets/res/textures/sliced/panel_black.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "993f03a1-0964-4c0e-913b-344be7363e8c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "panel_black": { 9 | "ver": "1.0.3", 10 | "uuid": "d2d40ff9-a8bf-4044-b593-65e39aeb1f66", 11 | "rawTextureUuid": "993f03a1-0964-4c0e-913b-344be7363e8c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 15, 20 | "height": 32, 21 | "rawWidth": 15, 22 | "rawHeight": 32, 23 | "borderTop": 5, 24 | "borderBottom": 7, 25 | "borderLeft": 5, 26 | "borderRight": 5, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sliced/panel_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sliced/panel_highlight.png -------------------------------------------------------------------------------- /assets/res/textures/sliced/panel_highlight.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5b540dd3-1633-495a-9c83-4e62cdd75faa", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "panel_highlight": { 9 | "ver": "1.0.3", 10 | "uuid": "461276b0-f667-4939-b50e-eafa62de71dc", 11 | "rawTextureUuid": "5b540dd3-1633-495a-9c83-4e62cdd75faa", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 15, 20 | "height": 32, 21 | "rawWidth": 15, 22 | "rawHeight": 32, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/sliced/ui_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/sliced/ui_panel.png -------------------------------------------------------------------------------- /assets/res/textures/sliced/ui_panel.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e2f89568-b554-41b7-a21a-b3a03b3c5431", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "ui_panel": { 9 | "ver": "1.0.3", 10 | "uuid": "c7e3ed03-c568-4a97-8a49-a00c74ea6856", 11 | "rawTextureUuid": "e2f89568-b554-41b7-a21a-b3a03b3c5431", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 151, 20 | "height": 101, 21 | "rawWidth": 151, 22 | "rawHeight": 101, 23 | "borderTop": 29, 24 | "borderBottom": 54, 25 | "borderLeft": 23, 26 | "borderRight": 22, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/star.png -------------------------------------------------------------------------------- /assets/res/textures/star.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b11c4d7c-b15b-4eb6-883b-1697c1388e21", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "star": { 9 | "ver": "1.0.3", 10 | "uuid": "28275995-c6bb-4db7-8c7a-8cfc1853abfe", 11 | "rawTextureUuid": "b11c4d7c-b15b-4eb6-883b-1697c1388e21", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -4, 17 | "trimX": 0, 18 | "trimY": 12, 19 | "width": 169, 20 | "height": 185, 21 | "rawWidth": 169, 22 | "rawHeight": 201, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/star_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/star_slot.png -------------------------------------------------------------------------------- /assets/res/textures/star_slot.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3a46cb4c-2b90-46b1-8079-3465930c1de5", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "star_slot": { 9 | "ver": "1.0.3", 10 | "uuid": "3ec63f7b-d183-4037-8d10-689631640620", 11 | "rawTextureUuid": "3a46cb4c-2b90-46b1-8079-3465930c1de5", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 2, 17 | "trimX": 0, 18 | "trimY": 12, 19 | "width": 169, 20 | "height": 173, 21 | "rawWidth": 169, 22 | "rawHeight": 201, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/tab-bg.png -------------------------------------------------------------------------------- /assets/res/textures/tab-bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "513b8e0b-2ccd-4001-bfac-d3637a7cbdac", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "tab-bg": { 9 | "ver": "1.0.3", 10 | "uuid": "eb7d8739-6ded-4970-9fdf-026258c03fe5", 11 | "rawTextureUuid": "513b8e0b-2ccd-4001-bfac-d3637a7cbdac", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 84, 20 | "height": 84, 21 | "rawWidth": 84, 22 | "rawHeight": 84, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/tiled.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "747701e6-82c5-43a2-8c65-7cc18dad3e14", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/tiled/barBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/tiled/barBg.png -------------------------------------------------------------------------------- /assets/res/textures/tiled/barBg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e51ceb1c-f6c3-43f4-813b-a8d78bb48259", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "barBg": { 9 | "ver": "1.0.3", 10 | "uuid": "ce3733eb-cd7d-4a80-b69d-913cb16d3dee", 11 | "rawTextureUuid": "e51ceb1c-f6c3-43f4-813b-a8d78bb48259", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 10, 20 | "height": 29, 21 | "rawWidth": 10, 22 | "rawHeight": 29, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/tiled/barFg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/tiled/barFg.png -------------------------------------------------------------------------------- /assets/res/textures/tiled/barFg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "2d36c0f8-75c0-4569-8c3b-6c0676340644", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "barFg": { 9 | "ver": "1.0.3", 10 | "uuid": "a711f9d8-7304-4890-8c14-e25a23a44a1a", 11 | "rawTextureUuid": "2d36c0f8-75c0-4569-8c3b-6c0676340644", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 15, 20 | "height": 31, 21 | "rawWidth": 15, 22 | "rawHeight": 31, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/tiled/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/tiled/ground.png -------------------------------------------------------------------------------- /assets/res/textures/tiled/ground.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "2584024f-936a-4325-95f4-38570796a81c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "ground": { 9 | "ver": "1.0.3", 10 | "uuid": "4e04607f-1e4b-4513-8e9b-d9793044a8b3", 11 | "rawTextureUuid": "2584024f-936a-4325-95f4-38570796a81c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 256, 20 | "height": 256, 21 | "rawWidth": 256, 22 | "rawHeight": 256, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "7c1e1f28-2b46-41e5-9508-3785f296ab86", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "3d0e20c4-2b7c-4c2a-ab25-9d612ee93ceb", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style1/add.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/add.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1d99a296-6ea0-4346-bd03-1b13c518f3aa", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "add": { 9 | "ver": "1.0.3", 10 | "uuid": "ab53cc17-5b11-4346-867d-d624c0e55a6b", 11 | "rawTextureUuid": "1d99a296-6ea0-4346-bd03-1b13c518f3aa", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 94, 20 | "height": 94, 21 | "rawWidth": 94, 22 | "rawHeight": 94, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style1/attention.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/attention.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c5faabeb-c5b8-4134-8226-44164d39aa37", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "attention": { 9 | "ver": "1.0.3", 10 | "uuid": "e612e1d7-9279-4656-8b07-f80c978c5e7a", 11 | "rawTextureUuid": "c5faabeb-c5b8-4134-8226-44164d39aa37", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 94, 20 | "height": 94, 21 | "rawWidth": 94, 22 | "rawHeight": 94, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/btn_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style1/btn_options.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/btn_options.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "2ae62c6d-8c27-4800-827a-1986615bcd74", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "btn_options": { 9 | "ver": "1.0.3", 10 | "uuid": "d2a987c6-3fd9-4642-a2ea-72a2fed6400b", 11 | "rawTextureUuid": "2ae62c6d-8c27-4800-827a-1986615bcd74", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 195, 20 | "height": 57, 21 | "rawWidth": 195, 22 | "rawHeight": 57, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style1/btn_play.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/btn_play.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c04ffa62-4ce9-4e03-a89d-3f7602790c0a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "btn_play": { 9 | "ver": "1.0.3", 10 | "uuid": "d167a975-8455-49e7-b48d-5cac118f3677", 11 | "rawTextureUuid": "c04ffa62-4ce9-4e03-a89d-3f7602790c0a", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 195, 20 | "height": 57, 21 | "rawWidth": 195, 22 | "rawHeight": 57, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style1/cancel.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/cancel.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "791ab0b9-e42f-43ec-b3f3-9fd72ea55a61", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "cancel": { 9 | "ver": "1.0.3", 10 | "uuid": "d55da879-01d3-4c68-9750-c0eeb65a3e33", 11 | "rawTextureUuid": "791ab0b9-e42f-43ec-b3f3-9fd72ea55a61", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 94, 20 | "height": 94, 21 | "rawWidth": 94, 22 | "rawHeight": 94, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/panelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style1/panelBG.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/panelBG.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3229feab-b062-4c75-ad91-b962602def21", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "panelBG": { 9 | "ver": "1.0.3", 10 | "uuid": "9320f0a4-5719-47a8-8f67-624a72c356f0", 11 | "rawTextureUuid": "3229feab-b062-4c75-ad91-b962602def21", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 27, 20 | "height": 30, 21 | "rawWidth": 27, 22 | "rawHeight": 30, 23 | "borderTop": 12, 24 | "borderBottom": 15, 25 | "borderLeft": 11, 26 | "borderRight": 11, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style1/question.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/question.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "69eedb09-a9f2-4027-8d1d-d694f811cd82", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "question": { 9 | "ver": "1.0.3", 10 | "uuid": "025224c7-e24b-47ae-b56d-0b514b14b504", 11 | "rawTextureUuid": "69eedb09-a9f2-4027-8d1d-d694f811cd82", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 94, 20 | "height": 94, 21 | "rawWidth": 94, 22 | "rawHeight": 94, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style1/restart.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/restart.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "88ef086b-eac8-4c51-988f-daa12ea2123e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "restart": { 9 | "ver": "1.0.3", 10 | "uuid": "d9345fc0-c742-47c3-af71-0ef3321ced79", 11 | "rawTextureUuid": "88ef086b-eac8-4c51-988f-daa12ea2123e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 94, 20 | "height": 94, 21 | "rawWidth": 94, 22 | "rawHeight": 94, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style1/setup.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style1/setup.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "96b543c4-0236-4db7-81ad-f4a420be6dcb", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "setup": { 9 | "ver": "1.0.3", 10 | "uuid": "816c0a7d-da26-4c81-9fcc-0eb02173b99d", 11 | "rawTextureUuid": "96b543c4-0236-4db7-81ad-f4a420be6dcb", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 94, 20 | "height": 94, 21 | "rawWidth": 94, 22 | "rawHeight": 94, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style2.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "630271f9-20cc-43e0-a031-dcbe0744776e", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style2/bg.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5c4847ba-7145-41ca-b78a-26a44dbda85b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bg": { 9 | "ver": "1.0.3", 10 | "uuid": "c018f035-3e32-40ed-b962-e171205633d0", 11 | "rawTextureUuid": "5c4847ba-7145-41ca-b78a-26a44dbda85b", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 14, 20 | "height": 14, 21 | "rawWidth": 14, 22 | "rawHeight": 14, 23 | "borderTop": 5, 24 | "borderBottom": 5, 25 | "borderLeft": 5, 26 | "borderRight": 5, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style2/btn_normal.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/btn_normal.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7aff329d-5d53-4659-8a29-5403bcc104a0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "btn_normal": { 9 | "ver": "1.0.3", 10 | "uuid": "cb79e92b-2b6b-4445-91cc-6276f7496ddc", 11 | "rawTextureUuid": "7aff329d-5d53-4659-8a29-5403bcc104a0", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 194, 20 | "height": 68, 21 | "rawWidth": 194, 22 | "rawHeight": 68, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/btn_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style2/btn_pressed.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/btn_pressed.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e832cb5b-fd18-4945-8b55-7e620519a260", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "btn_pressed": { 9 | "ver": "1.0.3", 10 | "uuid": "ba9dc5f7-45ab-4ff5-be92-97c7a73b8ad5", 11 | "rawTextureUuid": "e832cb5b-fd18-4945-8b55-7e620519a260", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 194, 20 | "height": 68, 21 | "rawWidth": 194, 22 | "rawHeight": 68, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/scrollview_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style2/scrollview_bar.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/scrollview_bar.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "53e8405d-866f-4771-921d-1c059e8849ce", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "scrollview_bar": { 9 | "ver": "1.0.3", 10 | "uuid": "fa9f2200-78ba-4e24-9b4a-48a7d2da2e07", 11 | "rawTextureUuid": "53e8405d-866f-4771-921d-1c059e8849ce", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 19, 20 | "height": 57, 21 | "rawWidth": 19, 22 | "rawHeight": 57, 23 | "borderTop": 8, 24 | "borderBottom": 8, 25 | "borderLeft": 7, 26 | "borderRight": 7, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/scrollview_barBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style2/scrollview_barBg.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/scrollview_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/ui/style2/scrollview_bg.png -------------------------------------------------------------------------------- /assets/res/textures/ui/style2/scrollview_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "068000cd-e4ad-47b6-8634-ea4c5fe11f4d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "scrollview_bg": { 9 | "ver": "1.0.3", 10 | "uuid": "7ec2e3b4-8ec1-4888-abf9-b18c9e2a4e93", 11 | "rawTextureUuid": "068000cd-e4ad-47b6-8634-ea4c5fe11f4d", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 14, 20 | "height": 14, 21 | "rawWidth": 14, 22 | "rawHeight": 14, 23 | "borderTop": 5, 24 | "borderBottom": 5, 25 | "borderLeft": 5, 26 | "borderRight": 5, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/res/textures/webp.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "7d67f79f-175e-4fdd-80e5-996ba15fe5f1", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/res/textures/webp/Lenna.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/res/textures/webp/Lenna.webp -------------------------------------------------------------------------------- /assets/res/textures/webp/Lenna.webp.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "316905eb-3abb-4b43-a086-f9d434a0f2f2", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "Lenna": { 9 | "ver": "1.0.3", 10 | "uuid": "c2163afb-762d-45f9-97c0-896fd6d51252", 11 | "rawTextureUuid": "316905eb-3abb-4b43-a086-f9d434a0f2f2", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 512, 20 | "height": 512, 21 | "rawWidth": 512, 22 | "rawHeight": 512, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/resources.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "4ee1c760-a8b0-49bc-92b2-e5e87ec697a3", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/resources/hero.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "d0202a85-a76c-49f8-ad84-61799495bdc9", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/resources/hero/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/resources/hero/bg1.png -------------------------------------------------------------------------------- /assets/resources/hero/bg1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a0ec546b-77b8-41a4-b7be-240803ac85bf", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bg1": { 9 | "ver": "1.0.3", 10 | "uuid": "6ce20f13-4a4b-43b2-91bd-95c0c60a8176", 11 | "rawTextureUuid": "a0ec546b-77b8-41a4-b7be-240803ac85bf", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 840, 20 | "height": 1160, 21 | "rawWidth": 840, 22 | "rawHeight": 1160, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/resources/hero/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/resources/hero/bg2.png -------------------------------------------------------------------------------- /assets/resources/hero/bg2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e6d19352-095c-4315-b0c7-2662e13d8567", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bg2": { 9 | "ver": "1.0.3", 10 | "uuid": "4dd22357-345b-4ef3-be5b-8af3d5053897", 11 | "rawTextureUuid": "e6d19352-095c-4315-b0c7-2662e13d8567", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 840, 20 | "height": 1160, 21 | "rawWidth": 840, 22 | "rawHeight": 1160, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/resources/hero/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/resources/hero/bg3.png -------------------------------------------------------------------------------- /assets/resources/hero/bg3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a2f97e6f-ed9f-41c1-a201-d5559331ad67", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bg3": { 9 | "ver": "1.0.3", 10 | "uuid": "88171a38-e2a9-464f-84fc-854c4a99fcf7", 11 | "rawTextureUuid": "a2f97e6f-ed9f-41c1-a201-d5559331ad67", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 840, 20 | "height": 1160, 21 | "rawWidth": 840, 22 | "rawHeight": 1160, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/resources/hero/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/resources/hero/blank.png -------------------------------------------------------------------------------- /assets/resources/hero/blank.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "27156dad-efd0-4222-bdef-29ce5d550593", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "blank": { 9 | "ver": "1.0.3", 10 | "uuid": "f9c17ce1-0783-4a8b-8623-3ea10352958f", 11 | "rawTextureUuid": "27156dad-efd0-4222-bdef-29ce5d550593", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 10, 20 | "height": 10, 21 | "rawWidth": 10, 22 | "rawHeight": 10, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/resources/hero/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/resources/hero/hero.png -------------------------------------------------------------------------------- /assets/resources/hero/hero.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3e58734b-e29e-44c2-a16c-e3e2f6b14235", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "hero": { 9 | "ver": "1.0.3", 10 | "uuid": "bb6469f0-6339-4ca8-8744-74211f590860", 11 | "rawTextureUuid": "3e58734b-e29e-44c2-a16c-e3e2f6b14235", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0.5, 17 | "trimX": 1, 18 | "trimY": 7, 19 | "width": 28, 20 | "height": 35, 21 | "rawWidth": 30, 22 | "rawHeight": 50, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/resources/hero/hero1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/resources/hero/hero1.png -------------------------------------------------------------------------------- /assets/resources/hero/hero1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0b188ecb-df61-4dc3-a55e-5e590ac32003", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "hero1": { 9 | "ver": "1.0.3", 10 | "uuid": "2396da30-5f0b-4418-894e-3a57259bc334", 11 | "rawTextureUuid": "0b188ecb-df61-4dc3-a55e-5e590ac32003", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -1, 17 | "trimX": 1, 18 | "trimY": 10, 19 | "width": 28, 20 | "height": 32, 21 | "rawWidth": 30, 22 | "rawHeight": 50, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/resources/hero/run1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/resources/hero/run1.png -------------------------------------------------------------------------------- /assets/resources/hero/run1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "891a5ae0-7a2b-4365-b96a-9e2ea8de3d2f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "run1": { 9 | "ver": "1.0.3", 10 | "uuid": "a0c9aeaf-0a1c-4aec-8877-f4c97e0a7895", 11 | "rawTextureUuid": "891a5ae0-7a2b-4365-b96a-9e2ea8de3d2f", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0.5, 17 | "trimX": 2, 18 | "trimY": 7, 19 | "width": 27, 20 | "height": 35, 21 | "rawWidth": 30, 22 | "rawHeight": 50, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/resources/hero/run2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/resources/hero/run2.png -------------------------------------------------------------------------------- /assets/resources/hero/run2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "586362c7-2ea3-43c2-83aa-a39073314733", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "run2": { 9 | "ver": "1.0.3", 10 | "uuid": "fc7a980a-0b25-411e-beb7-97b6e4545b13", 11 | "rawTextureUuid": "586362c7-2ea3-43c2-83aa-a39073314733", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0.5, 17 | "trimX": 2, 18 | "trimY": 7, 19 | "width": 27, 20 | "height": 35, 21 | "rawWidth": 30, 22 | "rawHeight": 50, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/resources/hero/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxin09pp/StickHero/8caad9b964a98e2943d9db0317fbb2811e87f7ba/assets/resources/hero/tick.png -------------------------------------------------------------------------------- /assets/resources/hero/tick.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1bca2533-8e67-4c81-84c3-da0641dfa150", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "tick": { 9 | "ver": "1.0.3", 10 | "uuid": "63dd3ec4-30f7-45dd-a28f-3e16d2d33367", 11 | "rawTextureUuid": "1bca2533-8e67-4c81-84c3-da0641dfa150", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0.5, 17 | "trimX": 0, 18 | "trimY": 7, 19 | "width": 30, 20 | "height": 35, 21 | "rawWidth": 30, 22 | "rawHeight": 50, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs" 5 | }, 6 | "exclude": [ 7 | "node_modules", 8 | "library", 9 | "local", 10 | "settings", 11 | "temp" 12 | ] 13 | } -------------------------------------------------------------------------------- /library/imports/00/008611f6-7f64-4f7b-aef3-440e0e0b32db.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "panel_bg", 5 | "texture": "6fd1ec90-efab-41ec-ab6b-4cd6a085951d", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 20, 11 | 20 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 20, 19 | 20 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 4, 24 | 5, 25 | 6 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/02/025224c7-e24b-47ae-b56d-0b514b14b504.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "question", 5 | "texture": "69eedb09-a9f2-4027-8d1d-d694f811cd82", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 94, 11 | 94 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 94, 19 | 94 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/03/0387392a-226a-42dd-9bf4-19faf18abb89.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "cocos_creator_white", 5 | "texture": "7b31062d-9e8e-4805-b77a-739a8295d9d0", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 800, 11 | 480 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 800, 19 | 480 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/04/0439d97a-4924-4764-9b12-aea48bb17072.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "PurpleMonster", 5 | "texture": "18041d7f-7c6a-47bd-ab6f-7a18b404a214", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 78, 11 | 67 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 78, 19 | 67 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/04/0467443e-6fb8-4d7b-a34f-57b3e5c149fb.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "GreenMonster", 5 | "texture": "08c1edea-46d4-41de-99dd-4f8b7f6b43b3", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 68, 11 | 71 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 68, 19 | 71 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/04/0493e26c-2921-47e4-961c-e636c3d43701.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "perfect_anim", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "opacity": [ 13 | { 14 | "frame": 0, 15 | "value": 0 16 | }, 17 | { 18 | "frame": 1, 19 | "value": 255 20 | } 21 | ] 22 | } 23 | }, 24 | "events": [ 25 | { 26 | "frame": 0, 27 | "func": "showLabel", 28 | "params": [] 29 | }, 30 | { 31 | "frame": 1, 32 | "func": "removeLabel", 33 | "params": [] 34 | } 35 | ] 36 | } -------------------------------------------------------------------------------- /library/imports/05/050adbf6-bd66-4a26-ac79-d68c00ad7812.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "sheep_hit", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": {}, 11 | "events": [] 12 | } -------------------------------------------------------------------------------- /library/imports/07/07325f10-94ec-4946-ac64-9f3240aad44d.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_touch_0", 5 | "texture": "58fccb23-5c29-47f0-9545-7a82f23ca5ae", 6 | "atlas": "", 7 | "rect": [ 8 | 23, 9 | 1, 10 | 173, 11 | 126 12 | ], 13 | "offset": [ 14 | -4.5, 15 | 15.5 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/0a/0a37fd50-dd9b-4330-b15c-32be85ecbe72.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "YellowMonster", 5 | "texture": "15ade27e-0212-4775-b5e4-8a8a258e8b63", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 80, 11 | 71 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 80, 19 | 71 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/0a/0aa0b36c-c4a9-4ce2-ab3b-efede708e6d4.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "singleColor", 5 | "texture": "1b6a0b3c-2a0e-410a-95ab-53dc9a03a360", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 2, 11 | 2 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 2, 19 | 2 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/0a/0af72c6c-2b37-4fab-be5b-b4534dba795e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_0", 5 | "texture": "34ee9b9b-b514-4973-9cd4-cd15aafffe8b", 6 | "atlas": "", 7 | "rect": [ 8 | 33, 9 | 5, 10 | 143, 11 | 150 12 | ], 13 | "offset": [ 14 | -9.5, 15 | -0.5 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/0e/0ee46d3e-e838-41ae-9725-11eb2b683ba6.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AutoAtlas", 3 | "_name": "AutoAtlas" 4 | } -------------------------------------------------------------------------------- /library/imports/10/107100b3-f194-42a8-b955-b42cb87dc698.js: -------------------------------------------------------------------------------- 1 | var storageManager = (function () { 2 | var spriteFrameCache = null; 3 | if (!cc.sys.localStorage.highestScore) { 4 | cc.sys.localStorage.highestScore = 0; 5 | } 6 | return { 7 | getHighestScore: function getHighestScore() { 8 | return cc.sys.localStorage.highestScore; 9 | }, 10 | setHighestScore: function setHighestScore(score) { 11 | cc.sys.localStorage.highestScore = score; 12 | } 13 | }; 14 | })(); 15 | module.exports = storageManager; -------------------------------------------------------------------------------- /library/imports/14/142dce2a-9f39-49e2-91c4-b62c5781d1a7.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "step_2", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | 386, 17 | 174 18 | ], 19 | "curve": "quartOut" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | 386, 25 | -240 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [ 32 | { 33 | "frame": 1, 34 | "func": "onNextAnimation", 35 | "params": [ 36 | 3 37 | ] 38 | } 39 | ] 40 | } -------------------------------------------------------------------------------- /library/imports/16/169b5aa9-3be1-492b-bf3c-e149fadd5d95.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "scrollview_barBg", 5 | "texture": "271269d4-6d55-40c8-b0bc-13b75a920423", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 19, 11 | 22 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 19, 19 | 22 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 6, 24 | 5, 25 | 8 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/18/18148035-bffd-4418-ac8e-10adafd388c3.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_1", 5 | "texture": "a8f423a1-2069-4df5-a3a8-ea3ca8e11a6c", 6 | "atlas": "", 7 | "rect": [ 8 | 24, 9 | 12, 10 | 154, 11 | 131 12 | ], 13 | "offset": [ 14 | -13, 15 | 2 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/1a/1a32fc76-f0bd-4f66-980f-56929c0ca0b3.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_radio_button_on", 5 | "texture": "9d60001f-b5f4-4726-a629-2659e3ded0b8", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 32, 11 | 32 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 32, 19 | 32 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/1b/1b3109fa-d7db-4c0c-a236-92eeb51e1972.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "radio_button_off", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 187, 9 | 14, 10 | 30, 11 | 32 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 32, 19 | 32 20 | ], 21 | "capInsets": [ 22 | 6, 23 | 9, 24 | 6, 25 | 9 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/1b/1ba56f69-593d-4d5b-816f-8326ed43f609.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | "extends": cc.Component, 3 | 4 | properties: {}, 5 | 6 | // use this for initialization 7 | onLoad: function onLoad() { 8 | var randomNum = "bg" + ((Math.random() * 100 | 0) % 3 + 1); 9 | var bgSprite = this.node.getComponent(cc.Sprite); 10 | cc.loader.loadRes("hero/" + randomNum, cc.SpriteFrame, function (err, SpriteFrame) { 11 | bgSprite.spriteFrame = SpriteFrame; 12 | }); 13 | cc.log(randomNum); 14 | } 15 | }); 16 | // called every frame, uncomment this function to activate update callback 17 | // update: function (dt) { 18 | 19 | // }, -------------------------------------------------------------------------------- /library/imports/1d/1d0db5b6-122b-4920-88d1-620c53a32a27.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_run_3", 5 | "texture": "7f97cb41-6ad1-45f7-afd9-3f9428490731", 6 | "atlas": "", 7 | "rect": [ 8 | 27, 9 | 22, 10 | 178, 11 | 113 12 | ], 13 | "offset": [ 14 | 2, 15 | 1 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/1d/1d5f7f3e-d4b5-43c4-9b09-5b8325870b89.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "RedMonster", 5 | "texture": "8a6c5830-4127-4ddb-a3e6-028b3f793e83", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 68, 11 | 75 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 68, 19 | 75 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/1d/1d89d22e-a3da-44c8-b3aa-591b40fa714d.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_0", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 326, 9 | 472, 10 | 144, 11 | 151 12 | ], 13 | "offset": [ 14 | -10, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ], 21 | "rotated": 1 22 | } 23 | } -------------------------------------------------------------------------------- /library/imports/1e/1eda363f-6200-4822-b297-4bf308291d9d.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteAtlas", 3 | "_name": "emoji.plist", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_spriteFrames": { 7 | "emoji1": { 8 | "__uuid__": "bc09c410-3796-4348-aab4-dc8750fec33f" 9 | }, 10 | "emoji2": { 11 | "__uuid__": "f3d82727-2391-4031-bd33-55f614523669" 12 | }, 13 | "emoji3": { 14 | "__uuid__": "505e368d-fa55-41f0-934a-4625cc196c6e" 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /library/imports/23/2396da30-5f0b-4418-894e-3a57259bc334.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "hero1", 5 | "texture": "0b188ecb-df61-4dc3-a55e-5e590ac32003", 6 | "atlas": "", 7 | "rect": [ 8 | 1, 9 | 10, 10 | 28, 11 | 32 12 | ], 13 | "offset": [ 14 | 0, 15 | -1 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 50 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/23/23eb8387-ca49-4121-be68-56054ee539d8.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_run_0", 5 | "texture": "c6e4d9aa-bab9-4b01-974e-1ba6747af9c1", 6 | "atlas": "", 7 | "rect": [ 8 | 27, 9 | 24, 10 | 167, 11 | 112 12 | ], 13 | "offset": [ 14 | -3.5, 15 | -0.5 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/27/27cff904-4850-4343-a3e2-2871e4b7d4a1.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar_vertical_bg", 5 | "texture": "10f4622b-d456-4ba5-a166-e99804d9c397", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 15, 11 | 30 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 15, 19 | 30 20 | ], 21 | "capInsets": [ 22 | 0, 23 | 7, 24 | 0, 25 | 7 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/28/28275995-c6bb-4db7-8c7a-8cfc1853abfe.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "star", 5 | "texture": "b11c4d7c-b15b-4eb6-883b-1697c1388e21", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 12, 10 | 169, 11 | 185 12 | ], 13 | "offset": [ 14 | 0, 15 | -4 16 | ], 17 | "originalSize": [ 18 | 169, 19 | 201 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/29/29158224-f8dd-4661-a796-1ffab537140e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_btn_disabled", 5 | "texture": "71561142-4c83-4933-afca-cb7a17f67053", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 40, 11 | 40 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ], 21 | "capInsets": [ 22 | 4, 23 | 4, 24 | 4, 25 | 8 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/2a/2aa370a7-1efa-445c-93a4-11824635a8b8.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "emoji", 5 | "texture": "224ce6e8-0e32-430a-9807-9452fc769ac9", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 206, 11 | 70 12 | ], 13 | "offset": [ 14 | -1, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 208, 19 | 70 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/2c/2cf8f988-a7d3-491c-bd4b-6d0eaabd9108.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "scrollbar", 5 | "texture": "4177692d-029f-445b-979b-f64421e6eafe", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 17, 11 | 13 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 17, 19 | 13 20 | ], 21 | "capInsets": [ 22 | 4, 23 | 3, 24 | 4, 25 | 4 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/2d/2d5e6098-b017-4b27-b0d1-ad58ebf2095a.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "startButton_anim", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 6, 7 | "sample": 2, 8 | "speed": 1, 9 | "wrapMode": 2, 10 | "curveData": { 11 | "props": { 12 | "y": [ 13 | { 14 | "frame": 0, 15 | "value": 80 16 | }, 17 | { 18 | "frame": 1.5, 19 | "value": 100 20 | }, 21 | { 22 | "frame": 4.5, 23 | "value": 60 24 | }, 25 | { 26 | "frame": 6, 27 | "value": 80 28 | } 29 | ] 30 | } 31 | }, 32 | "events": [] 33 | } -------------------------------------------------------------------------------- /library/imports/2e/2e246ade-7131-4cc5-82eb-38ce75ee6d22.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_4", 5 | "texture": "b976bd65-a4ca-467f-bca0-11f0ebea51f0", 6 | "atlas": "", 7 | "rect": [ 8 | 29, 9 | 13, 10 | 147, 11 | 138 12 | ], 13 | "offset": [ 14 | -11.5, 15 | -2.5 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/31/31d8962d-babb-4ec7-be19-8e9f54a4ea99.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar", 5 | "texture": "0291c134-b3da-4098-b7b5-e397edbe947f", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 2, 10 | 30, 11 | 11 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 15 20 | ], 21 | "capInsets": [ 22 | 10, 23 | 0, 24 | 10, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/33/3387601e-3d35-446c-8972-d38ef90d8d2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "radio_button_on", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 153, 9 | 14, 10 | 32, 11 | 32 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 32, 19 | 32 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/33/33b23c50-d7b5-4df6-a861-d2e76565fdca.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "rightWidget", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": "22", 10 | "curveData": { 11 | "comps": { 12 | "cc.Widget": { 13 | "right": [ 14 | { 15 | "frame": 0, 16 | "value": 850 17 | }, 18 | { 19 | "frame": 1, 20 | "value": 30 21 | } 22 | ] 23 | } 24 | } 25 | }, 26 | "events": [] 27 | } -------------------------------------------------------------------------------- /library/imports/38/38446e6f-cf23-4add-8038-174b7f8146e0.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "filled_bg", 5 | "texture": "0f313a01-15aa-4d03-b0be-6624e3998860", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 14, 11 | 14 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 14, 19 | 14 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 5, 24 | 5, 25 | 5 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/3c/3cfdb519-2f4e-4b8f-a3b6-bc3d55d6ffae.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "back-forward", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": "22", 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ], 19 | "curve": [ 20 | 0.18, 21 | 0.89, 22 | 0.31, 23 | 1.21 24 | ] 25 | }, 26 | { 27 | "frame": 1, 28 | "value": [ 29 | 151, 30 | 243 31 | ] 32 | } 33 | ] 34 | } 35 | }, 36 | "events": [] 37 | } -------------------------------------------------------------------------------- /library/imports/3e/3ec63f7b-d183-4037-8d10-689631640620.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "star_slot", 5 | "texture": "3a46cb4c-2b90-46b1-8079-3465930c1de5", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 12, 10 | 169, 11 | 173 12 | ], 13 | "offset": [ 14 | 0, 15 | 2 16 | ], 17 | "originalSize": [ 18 | 169, 19 | 201 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/42/42041434-3d6c-46ed-acb7-272b5a383576.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_1", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 170, 9 | 351, 10 | 154, 11 | 131 12 | ], 13 | "offset": [ 14 | -13, 15 | 2 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/44/449c763b-2b89-4afc-89ca-e7b8d189d6e2.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_down_2", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 2, 9 | 335, 10 | 166, 11 | 105 12 | ], 13 | "offset": [ 14 | -7, 15 | -3 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/45/4590c703-f457-4e19-b1a7-5af81ae0850e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "bg", 5 | "texture": "e4e220ed-9718-4587-9b54-82ac98f477d4", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 600, 11 | 600 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 600, 19 | 600 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/46/461276b0-f667-4939-b50e-eafa62de71dc.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "panel_highlight", 5 | "texture": "5b540dd3-1633-495a-9c83-4e62cdd75faa", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 15, 11 | 32 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 15, 19 | 32 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/48/4828fd1a-a912-4bfa-8ace-c6e5a02c0e24.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "scrollbarVertical", 5 | "texture": "1c211f8f-6068-423b-8de2-9c4735427d7d", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 13, 11 | 17 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 13, 19 | 17 20 | ], 21 | "capInsets": [ 22 | 4, 23 | 4, 24 | 5, 25 | 4 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/49/49c166a6-94ae-4b97-ab22-b1b46e001d73.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "caseOut-expo", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": 22, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ], 19 | "curve": "circOut" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | 155, 25 | 243 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [] 32 | } -------------------------------------------------------------------------------- /library/imports/4b/4bb25e27-63ac-4ec7-aec9-d89d1cc5b619.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "linear", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": "22", 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ] 19 | }, 20 | { 21 | "frame": 1, 22 | "value": [ 23 | 151, 24 | 243 25 | ] 26 | } 27 | ] 28 | } 29 | }, 30 | "events": [] 31 | } -------------------------------------------------------------------------------- /library/imports/4b/4bffeeee-f2c6-4bec-ba74-cd671d12709b.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "caseInOut-expo", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": 22, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ], 19 | "curve": "expoInOut" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | 155, 25 | 243 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [] 32 | } -------------------------------------------------------------------------------- /library/imports/4d/4dd22357-345b-4ef3-be5b-8af3d5053897.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "bg2", 5 | "texture": "e6d19352-095c-4315-b0c7-2662e13d8567", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 840, 11 | 1160 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 840, 19 | 1160 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/4e/4e04607f-1e4b-4513-8e9b-d9793044a8b3.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "ground", 5 | "texture": "2584024f-936a-4325-95f4-38570796a81c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 256, 11 | 256 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 256, 19 | 256 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/4e/4e1e1021-4bf0-4a5a-b833-8016a9c49831.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "filled_round_fg", 5 | "texture": "770bf63f-6722-4d9a-9aa9-3009ba65be29", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 132, 11 | 132 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 132, 19 | 132 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/50/505e368d-fa55-41f0-934a-4625cc196c6e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "emoji3", 5 | "texture": "224ce6e8-0e32-430a-9807-9452fc769ac9", 6 | "atlas": "1eda363f-6200-4822-b297-4bf308291d9d", 7 | "rect": [ 8 | 71, 9 | 1, 10 | 68, 11 | 68 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 68, 19 | 68 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/50/50c117d4-d396-4b6d-97f9-b34b03a4f796.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_green_p2", 5 | "texture": "87589cb6-1ba7-4961-83ec-bb8e7edb1991", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 30, 11 | 22 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 22 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/55/5597fdf5-3cfc-45e5-b989-320c6a359428.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_run_2", 5 | "texture": "1ba0dabd-fc65-4172-adee-e9167c6eb9ad", 6 | "atlas": "", 7 | "rect": [ 8 | 27, 9 | 12, 10 | 177, 11 | 114 12 | ], 13 | "offset": [ 14 | 1.5, 15 | 10.5 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/55/55b9cd01-551c-48f1-a9d7-6e940c7ac81d.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "CheckBox_Disable", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 1, 9 | 1, 10 | 40, 11 | 40 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/58/585f0220-7c2a-4b74-a562-a8eea45d5e9c.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sliderThumb", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 125, 9 | 14, 10 | 26, 11 | 26 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 26, 19 | 26 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/5a/5a1a86c4-108f-442e-adbc-697f68e9f781.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_down_0", 5 | "texture": "0e4e6493-4250-4ed9-9a37-d0a9f0663113", 6 | "atlas": "", 7 | "rect": [ 8 | 2, 9 | 61, 10 | 224, 11 | 87 12 | ], 13 | "offset": [ 14 | 0, 15 | -25 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/5c/5c3bb932-6c3c-468f-88a9-c8c61d458641.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar_vertical", 5 | "texture": "d6d3ca85-4681-47c1-b5dd-d036a9d39ea2", 6 | "atlas": "", 7 | "rect": [ 8 | 2, 9 | 0, 10 | 11, 11 | 30 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 15, 19 | 30 20 | ], 21 | "capInsets": [ 22 | 0, 23 | 5, 24 | 0, 25 | 5 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/5d/5d0f5d8c-368f-4b56-820f-d846602301a8.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "topWidget", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 22, 10 | "curveData": { 11 | "comps": { 12 | "cc.Widget": { 13 | "top": [ 14 | { 15 | "frame": 0, 16 | "value": 550 17 | }, 18 | { 19 | "frame": 1, 20 | "value": 200 21 | } 22 | ] 23 | } 24 | }, 25 | "props": { 26 | "scaleY": [ 27 | { 28 | "frame": 0, 29 | "value": 1 30 | }, 31 | { 32 | "frame": 0.5, 33 | "value": 0 34 | } 35 | ] 36 | } 37 | }, 38 | "events": [] 39 | } -------------------------------------------------------------------------------- /library/imports/5d/5d29daeb-8963-4e11-8a16-9a1194ee58ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "caseIn-expo", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": "22", 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -400, 17 | -246 18 | ], 19 | "curve": "expoIn" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | 151, 25 | 243 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [] 32 | } -------------------------------------------------------------------------------- /library/imports/5f/5f1c3f47-0c2a-4ade-ad0e-453aed86d224.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "scrollviewbg", 5 | "texture": "da3df600-014d-40e1-8d48-c3800523e5e3", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 184, 11 | 180 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 184, 19 | 180 20 | ], 21 | "capInsets": [ 22 | 12, 23 | 9, 24 | 15, 25 | 14 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/5f/5fe5dcaa-b513-4dc5-a166-573627b3a159.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar_vertical_bg", 5 | "texture": "617323dd-11f4-4dd3-8eec-0caf6b3b45b9", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 15, 11 | 30 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 15, 19 | 30 20 | ], 21 | "capInsets": [ 22 | 0, 23 | 7, 24 | 0, 25 | 8 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/62/6224a554-fc2b-4b9d-a2de-43fd81a31850.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_2", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 348, 9 | 260, 10 | 160, 11 | 105 12 | ], 13 | "offset": [ 14 | -10, 15 | 4 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/63/63dd3ec4-30f7-45dd-a28f-3e16d2d33367.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "tick", 5 | "texture": "1bca2533-8e67-4c81-84c3-da0641dfa150", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 7, 10 | 30, 11 | 35 12 | ], 13 | "offset": [ 14 | 0, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 50 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/67/67e68bc9-dad5-4ad9-a2d8-7e03d458e32f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_progressbar", 5 | "texture": "cfef78f1-c8df-49b7-8ed0-4c953ace2621", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 30, 11 | 15 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 15 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 0, 24 | 5, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/68/6827ca32-0107-4552-bab2-dfb31799bb44.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_toggle_normal", 5 | "texture": "d29077ba-1627-4a72-9579-7b56a235340c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 28, 11 | 28 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 28, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/6a/6aff97f1-ff94-4582-9422-f3eb1670dc44.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "filled_h_fg", 5 | "texture": "70e86065-6677-4ab9-b63b-0117b4e60d76", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 402, 11 | 31 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 402, 19 | 31 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/6c/6ce20f13-4a4b-43b2-91bd-95c0c60a8176.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "bg1", 5 | "texture": "a0ec546b-77b8-41a4-b7be-240803ac85bf", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 840, 11 | 1160 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 840, 19 | 1160 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/6f/6f48c6a4-606a-45f9-bcca-fa269dee0060.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "CheckBox_Normal", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 43, 9 | 1, 10 | 40, 11 | 40 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/71/7168db62-0edc-42e5-be5d-682cf6c4a165.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_toggle_disabled", 5 | "texture": "c25b9d50-c8fc-4d27-beeb-6e7c1f2e5c0f", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 28, 11 | 28 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 28, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/73/73034713-ab4b-4fba-953b-5f7d4c36320c.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_run_3", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 2, 9 | 91, 10 | 178, 11 | 113 12 | ], 13 | "offset": [ 14 | 2, 15 | 1 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/77/77216d51-3efe-4be5-8e3a-40536959a284.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_2", 5 | "texture": "c06cee9f-0b1a-41ea-9c1b-6dfeed3b3661", 6 | "atlas": "", 7 | "rect": [ 8 | 24, 9 | 24, 10 | 160, 11 | 104 12 | ], 13 | "offset": [ 14 | -10, 15 | 3.5 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/79/79a0b94a-3b68-47cb-b94a-d0dbadf0788b.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "CheckBox_Press", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 85, 9 | 1, 10 | 38, 11 | 38 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/7a/7af761f8-3675-4467-80fe-2da7debeef3f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_down_2", 5 | "texture": "dca29d40-5407-41b4-939d-34e72d3b00c2", 6 | "atlas": "", 7 | "rect": [ 8 | 25, 9 | 31, 10 | 165, 11 | 104 12 | ], 13 | "offset": [ 14 | -6.5, 15 | -3.5 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/7c/7ccb784f-7c51-4a0b-a59e-e95da40f3013.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_run_0", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 178, 9 | 236, 10 | 168, 11 | 113 12 | ], 13 | "offset": [ 14 | -4, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/7d/7d4ffd94-42d6-4045-9db7-a744229adfc4.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_toggle_pressed", 5 | "texture": "b181c1e4-0a72-4a91-bfb0-ae6f36ca60bd", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 28, 11 | 28 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 28, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/7d/7de714e2-e3c2-49dc-b021-9012203f9e96.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_3", 5 | "texture": "ecf333cf-99ed-4814-990d-3109890fbd5e", 6 | "atlas": "", 7 | "rect": [ 8 | 26, 9 | 24, 10 | 152, 11 | 115 12 | ], 13 | "offset": [ 14 | -12, 15 | -2 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/7e/7e1e776a-f1cf-4bec-96ab-6f4b6197b475.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "texture", 5 | "texture": "7e31a28d-8fbd-4bb2-8969-de857fee3876", 6 | "atlas": "", 7 | "rect": [ 8 | 1, 9 | 1, 10 | 1016, 11 | 822 12 | ], 13 | "offset": [ 14 | -3, 15 | 100 16 | ], 17 | "originalSize": [ 18 | 1024, 19 | 1024 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/7e/7ec2e3b4-8ec1-4888-abf9-b18c9e2a4e93.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "scrollview_bg", 5 | "texture": "068000cd-e4ad-47b6-8634-ea4c5fe11f4d", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 14, 11 | 14 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 14, 19 | 14 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 5, 24 | 5, 25 | 5 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/80/8026fa0b-21e9-4784-8044-cd7ac2819df6.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_touch_0", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 2, 9 | 206, 10 | 174, 11 | 127 12 | ], 13 | "offset": [ 14 | -5, 15 | 16 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/81/816c0a7d-da26-4c81-9fcc-0eb02173b99d.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "setup", 5 | "texture": "96b543c4-0236-4db7-81ad-f4a420be6dcb", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 94, 11 | 94 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 94, 19 | 94 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/84/8456f3b4-0998-49ea-aeae-d5e8985ad816.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "step_3", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | 386, 17 | -236 18 | ], 19 | "curve": "quartOut" 20 | }, 21 | { 22 | "frame": 0.9833333333333333, 23 | "value": [ 24 | -360, 25 | -230 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [ 32 | { 33 | "frame": 1, 34 | "func": "onNextAnimation", 35 | "params": [ 36 | 4 37 | ] 38 | } 39 | ] 40 | } -------------------------------------------------------------------------------- /library/imports/88/88171a38-e2a9-464f-84fc-854c4a99fcf7.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "bg3", 5 | "texture": "a2f97e6f-ed9f-41c1-a201-d5559331ad67", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 840, 11 | 1160 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 840, 19 | 1160 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/88/88e79fd5-96b4-4a77-a1f4-312467171014.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_progressbar_bg", 5 | "texture": "99170b0b-d210-46f1-b213-7d9e3f23098a", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 60, 11 | 15 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 60, 19 | 15 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 0, 24 | 5, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/8c/8c511e9b-ed58-46f6-b5f7-0053e666b8ed.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "smoke", 5 | "texture": "6f932e68-4c0f-4291-9759-852e509d2e83", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 56, 11 | 56 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 56, 19 | 56 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/8c/8cdb44ac-a3f6-449f-b354-7cd48cf84061.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_sprite", 5 | "texture": "6e056173-d285-473c-b206-40a7fff5386e", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 2, 10 | 40, 11 | 36 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/90/90004ad6-2f6d-40e1-93ef-b714375c6f06.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_toggle_checkmark", 5 | "texture": "73a0903d-d80e-4e3c-aa67-f999543c08f5", 6 | "atlas": "", 7 | "rect": [ 8 | 5, 9 | 3, 10 | 20, 11 | 19 12 | ], 13 | "offset": [ 14 | 1, 15 | 1.5 16 | ], 17 | "originalSize": [ 18 | 28, 19 | 28 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/93/9320f0a4-5719-47a8-8f67-624a72c356f0.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "panelBG", 5 | "texture": "3229feab-b062-4c75-ad91-b962602def21", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 27, 11 | 30 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 27, 19 | 30 20 | ], 21 | "capInsets": [ 22 | 11, 23 | 12, 24 | 11, 25 | 15 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/95/9563cb61-be04-40b0-9b0a-c721c057f21d.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_run_2", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 228, 9 | 2, 10 | 178, 11 | 115 12 | ], 13 | "offset": [ 14 | 1, 15 | 11 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/97/974e77fc-01b1-4828-be55-a5adc76e15c6.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "CheckBoxNode_Disable", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 219, 9 | 14, 10 | 30, 11 | 22 12 | ], 13 | "offset": [ 14 | -1, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/99/990be1b5-a3d9-4cb9-a5fa-51cd31fed591.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sliderProgress2", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 125, 9 | 1, 10 | 131, 11 | 11 12 | ], 13 | "offset": [ 14 | 0, 15 | 1 16 | ], 17 | "originalSize": [ 18 | 131, 19 | 13 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/9b/9bbda31e-ad49-43c9-aaf2-f7d9896bac69.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_panel", 5 | "texture": "d81ec8ad-247c-4e62-aa3c-d35c4193c7af", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 20, 11 | 20 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 20, 19 | 20 20 | ], 21 | "capInsets": [ 22 | 4, 23 | 3, 24 | 4, 25 | 3 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/9d/9d241a7c-3e6d-44a1-95c3-bcd03c111845.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "ui", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 257, 11 | 59 12 | ], 13 | "offset": [ 14 | 0, 15 | 1 16 | ], 17 | "originalSize": [ 18 | 257, 19 | 61 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/9f/9f1c8acd-ed6c-4328-9a0d-16dc5c57b3a0.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_down_1", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 326, 9 | 367, 10 | 152, 11 | 103 12 | ], 13 | "offset": [ 14 | -6, 15 | -8 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a0/a0c9aeaf-0a1c-4aec-8877-f4c97e0a7895.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "run1", 5 | "texture": "891a5ae0-7a2b-4365-b96a-9e2ea8de3d2f", 6 | "atlas": "", 7 | "rect": [ 8 | 2, 9 | 7, 10 | 27, 11 | 35 12 | ], 13 | "offset": [ 14 | 0.5, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 50 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a2/a23235d1-15db-4b95-8439-a2e005bfff91.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_sprite_splash", 5 | "texture": "0275e94c-56a7-410f-bd1a-fc7483f7d14a", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 2, 11 | 2 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 2, 19 | 2 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a3/a31dfd3f-1734-4fc2-a75e-acf961ab7b85.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_3", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 2, 9 | 442, 10 | 152, 11 | 115 12 | ], 13 | "offset": [ 14 | -12, 15 | -2 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a5/a57012ff-2334-4d99-a651-62ccbf1444c8.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_run_1", 5 | "texture": "c5a5b09c-e012-4da8-a31b-d1f541f64bf4", 6 | "atlas": "", 7 | "rect": [ 8 | 27, 9 | 20, 10 | 176, 11 | 115 12 | ], 13 | "offset": [ 14 | 1, 15 | 2 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a7/a711f9d8-7304-4890-8c14-e25a23a44a1a.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "barFg", 5 | "texture": "2d36c0f8-75c0-4569-8c3b-6c0676340644", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 15, 11 | 31 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 15, 19 | 31 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/a7/a717766a-81bb-4c67-b417-6aee005b5254.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "gold", 5 | "texture": "99ce2773-c288-4d67-9868-27bb8d5e9ea9", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 80, 11 | 80 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 80, 19 | 80 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/aa/aaf71854-d55f-43e8-92aa-ec6c71177195.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "", 7 | "rect": [ 8 | 2, 9 | 2, 10 | 506, 11 | 614 12 | ], 13 | "offset": [ 14 | -1, 15 | 203 16 | ], 17 | "originalSize": [ 18 | 512, 19 | 1024 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/ab/ab53cc17-5b11-4346-867d-d624c0e55a6b.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "add", 5 | "texture": "1d99a296-6ea0-4346-bd03-1b13c518f3aa", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 94, 11 | 94 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 94, 19 | 94 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/ad/ad1ec109-d5fd-4738-aafd-31d2e939acc6.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "cocos_creator", 5 | "texture": "86678c0e-f8e7-409c-9ddf-e0a9bf555269", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 800, 11 | 480 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 800, 19 | 480 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/b2/b230b669-ae59-4030-96c3-95585ce54cdb.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_green_un2", 5 | "texture": "ca4be22c-42c0-4632-9225-cd95960fdd79", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 33, 11 | 24 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 33, 19 | 24 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/b8/b8b42435-f5f6-4af1-ae80-0a2d6d18bb58.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar_bg", 5 | "texture": "206c3040-b374-40dc-a9ca-8800e556fba6", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 30, 11 | 15 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 15 20 | ], 21 | "capInsets": [ 22 | 2, 23 | 0, 24 | 3, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/ba/ba9dc5f7-45ab-4ff5-be92-97c7a73b8ad5.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "btn_pressed", 5 | "texture": "e832cb5b-fd18-4945-8b55-7e620519a260", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 194, 11 | 68 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 194, 19 | 68 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/bb/bb17971e-c86f-4b8f-ab66-84baf1704b64.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_down_0", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 2, 9 | 2, 10 | 224, 11 | 87 12 | ], 13 | "offset": [ 14 | 0, 15 | -25 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/bb/bb6469f0-6339-4ca8-8744-74211f590860.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "hero", 5 | "texture": "3e58734b-e29e-44c2-a16c-e3e2f6b14235", 6 | "atlas": "", 7 | "rect": [ 8 | 1, 9 | 7, 10 | 28, 11 | 35 12 | ], 13 | "offset": [ 14 | 0, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 50 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/bc/bc09c410-3796-4348-aab4-dc8750fec33f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "emoji1", 5 | "texture": "224ce6e8-0e32-430a-9807-9452fc769ac9", 6 | "atlas": "1eda363f-6200-4822-b297-4bf308291d9d", 7 | "rect": [ 8 | 1, 9 | 1, 10 | 68, 11 | 68 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 68, 19 | 68 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/bf/bf867cae-8a21-4fff-9dad-d21b5098a1a6.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "content", 5 | "texture": "6b4faed5-abc3-4a77-af9d-35ed67a5a48b", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 512, 11 | 512 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 512, 19 | 512 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c0/c018f035-3e32-40ed-b962-e171205633d0.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "bg", 5 | "texture": "5c4847ba-7145-41ca-b78a-26a44dbda85b", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 14, 11 | 14 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 14, 19 | 14 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 5, 24 | 5, 25 | 5 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/c0/c0dcd181-8289-4a0a-a9e3-31bd10f2ff3f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "alignOnce_scale", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.9833333333333333, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 22, 10 | "curveData": { 11 | "props": { 12 | "width": [ 13 | { 14 | "frame": 0, 15 | "value": 800 16 | }, 17 | { 18 | "frame": 0.9833333333333333, 19 | "value": 270 20 | } 21 | ] 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /library/imports/c2/c2037678-65b3-4b0b-8b66-fee835a46f94.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_run_1", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 182, 9 | 119, 10 | 176, 11 | 115 12 | ], 13 | "offset": [ 14 | 1, 15 | 2 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c2/c2163afb-762d-45f9-97c0-896fd6d51252.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "Lenna", 5 | "texture": "316905eb-3abb-4b43-a086-f9d434a0f2f2", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 512, 11 | 512 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 512, 19 | 512 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c5/c59ffaf5-2689-4433-b6fa-c48003827afa.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_down_1", 5 | "texture": "8557c6d3-9eef-4b28-ac59-5d7337da100b", 6 | "atlas": "", 7 | "rect": [ 8 | 32, 9 | 36, 10 | 152, 11 | 103 12 | ], 13 | "offset": [ 14 | -6, 15 | -8 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c6/c6322309-085e-49d1-a5e3-40d71598fd1f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "step_4", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "props": { 12 | "position": [ 13 | { 14 | "frame": 0, 15 | "value": [ 16 | -360, 17 | -230 18 | ], 19 | "curve": "quintOut" 20 | }, 21 | { 22 | "frame": 1, 23 | "value": [ 24 | -360, 25 | 150 26 | ] 27 | } 28 | ] 29 | } 30 | }, 31 | "events": [ 32 | { 33 | "frame": 1, 34 | "func": "onNextAnimation", 35 | "params": [ 36 | 1 37 | ] 38 | } 39 | ] 40 | } -------------------------------------------------------------------------------- /library/imports/c7/c7e3ed03-c568-4a97-8a49-a00c74ea6856.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "ui_panel", 5 | "texture": "e2f89568-b554-41b7-a21a-b3a03b3c5431", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 151, 11 | 101 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 151, 19 | 101 20 | ], 21 | "capInsets": [ 22 | 23, 23 | 29, 24 | 22, 25 | 54 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/c9/c9bc7a69-8d59-4ad6-8d7e-6c7c9016c200.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "filled_round_bg", 5 | "texture": "5cc6354a-2762-45fe-bdc3-ba659747ad23", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 140, 11 | 140 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 140, 19 | 140 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/c9/c9fa51ff-3f01-4601-8f80-325d1b11dab7.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_scrollbar_bg", 5 | "texture": "4bab67cb-18e6-4099-b840-355f0473f890", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 30, 11 | 15 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 15 20 | ], 21 | "capInsets": [ 22 | 10, 23 | 0, 24 | 10, 25 | 0 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/cb/cb79e92b-2b6b-4445-91cc-6276f7496ddc.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "btn_normal", 5 | "texture": "7aff329d-5d53-4659-8a29-5403bcc104a0", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 194, 11 | 68 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 194, 19 | 68 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/ce/ce3733eb-cd7d-4a80-b69d-913cb16d3dee.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "barBg", 5 | "texture": "e51ceb1c-f6c3-43f4-813b-a8d78bb48259", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 10, 11 | 29 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 10, 19 | 29 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/cf/cfe22ad2-a3c6-45e3-bb47-b39927265c7a.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "filled_v_fg", 5 | "texture": "c1d929f9-82db-4326-9436-3c1a0cb9ba50", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 31, 11 | 402 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 31, 19 | 402 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d1/d167a975-8455-49e7-b48d-5cac118f3677.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "btn_play", 5 | "texture": "c04ffa62-4ce9-4e03-a89d-3f7602790c0a", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 195, 11 | 57 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 195, 19 | 57 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d2/d2a987c6-3fd9-4642-a2ea-72a2fed6400b.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "btn_options", 5 | "texture": "2ae62c6d-8c27-4800-827a-1986615bcd74", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 195, 11 | 57 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 195, 19 | 57 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d2/d2d40ff9-a8bf-4044-b593-65e39aeb1f66.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "panel_black", 5 | "texture": "993f03a1-0964-4c0e-913b-344be7363e8c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 15, 11 | 32 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 15, 19 | 32 20 | ], 21 | "capInsets": [ 22 | 5, 23 | 5, 24 | 5, 25 | 7 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/d5/d55da879-01d3-4c68-9750-c0eeb65a3e33.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "cancel", 5 | "texture": "791ab0b9-e42f-43ec-b3f3-9fd72ea55a61", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 94, 11 | 94 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 94, 19 | 94 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d7/d7687dfb-167e-40ce-b2ae-16494926e632.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "CoreElement_texture_1", 5 | "texture": "a3b1dd93-0873-4fe8-af32-b347e6fe5d86", 6 | "atlas": "", 7 | "rect": [ 8 | 2, 9 | 2, 10 | 566, 11 | 482 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 570, 19 | 486 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d8/d8aab4d3-9fae-453e-966f-240c07879120.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "BuleMonster", 5 | "texture": "c09681b1-0c3e-4794-b687-1756e646d970", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 77, 11 | 77 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 77, 19 | 77 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/d9/d9345fc0-c742-47c3-af71-0ef3321ced79.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "restart", 5 | "texture": "88ef086b-eac8-4c51-988f-daa12ea2123e", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 94, 11 | 94 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 94, 19 | 94 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/da/da9b7d82-4bdd-454b-ad4b-6cf7cad644ed.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_empty", 5 | "texture": "dadab157-3ee8-4617-a29c-54d5b4fb7aa8", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 442, 11 | 141 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 442, 19 | 141 20 | ], 21 | "capInsets": [ 22 | 43, 23 | 34, 24 | 52, 25 | 63 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/db/db9392e5-3721-45ad-b7e2-0ec30b1aa6d3.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "button_green", 5 | "texture": "c82179a5-676d-423c-8de2-22874b5f4a6d", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 30, 11 | 22 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 22 20 | ], 21 | "capInsets": [ 22 | 8, 23 | 7, 24 | 7, 25 | 12 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/e3/e304a643-7e04-4e85-a821-d14986bb562c.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "goldcoin", 5 | "texture": "6ee311af-2e56-480a-98dd-ee63e3d5b24c", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 80, 11 | 80 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 80, 19 | 80 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/e5/e50f8a41-9ab5-450a-a125-2ebefa30854e.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sheep_jump_4", 5 | "texture": "83e05166-d611-452a-ac2f-4cbf5c3d5a06", 6 | "atlas": "efc1bbab-8753-4506-859f-0558eb86db31", 7 | "rect": [ 8 | 360, 9 | 119, 10 | 148, 11 | 139 12 | ], 13 | "offset": [ 14 | -12, 15 | -2 16 | ], 17 | "originalSize": [ 18 | 228, 19 | 159 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/e6/e612e1d7-9279-4656-8b07-f80c978c5e7a.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "attention", 5 | "texture": "c5faabeb-c5b8-4134-8226-44164d39aa37", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 94, 11 | 94 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 94, 19 | 94 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/e7/e7aba14b-f956-4480-b254-8d57832e273f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_radio_button_off", 5 | "texture": "567dcd80-8bf4-4535-8a5a-313f1caf078a", 6 | "atlas": "", 7 | "rect": [ 8 | 2, 9 | 2, 10 | 28, 11 | 30 12 | ], 13 | "offset": [ 14 | 0, 15 | -1 16 | ], 17 | "originalSize": [ 18 | 32, 19 | 32 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/e9/e9df0c26-631b-4dcc-aa69-cd136d2042c8.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "sliderTrack2", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 1, 9 | 43, 10 | 131, 11 | 13 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 131, 19 | 13 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/e9/e9ec654c-97a2-4787-9325-e6a10375219a.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_btn_pressed", 5 | "texture": "b43ff3c2-02bb-4874-81f7-f2dea6970f18", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 40, 11 | 40 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ], 21 | "capInsets": [ 22 | 3, 23 | 4, 24 | 3, 25 | 4 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/eb/eb7d8739-6ded-4970-9fdf-026258c03fe5.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "tab-bg", 5 | "texture": "513b8e0b-2ccd-4001-bfac-d3637a7cbdac", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 84, 11 | 84 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 84, 19 | 84 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/f0/f0048c10-f03e-4c97-b9d3-3506e1d58952.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "default_btn_normal", 5 | "texture": "e851e89b-faa2-4484-bea6-5c01dd9f06e2", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 40, 11 | 40 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/f3/f3d82727-2391-4031-bd33-55f614523669.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "emoji2", 5 | "texture": "224ce6e8-0e32-430a-9807-9452fc769ac9", 6 | "atlas": "1eda363f-6200-4822-b297-4bf308291d9d", 7 | "rect": [ 8 | 141, 9 | 1, 10 | 66, 11 | 66 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 68, 19 | 68 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/f9/f9c17ce1-0783-4a8b-8623-3ea10352958f.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "blank", 5 | "texture": "27156dad-efd0-4222-bdef-29ce5d550593", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 10, 11 | 10 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 10, 19 | 10 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/fa/fa9f2200-78ba-4e24-9b4a-48a7d2da2e07.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "scrollview_bar", 5 | "texture": "53e8405d-866f-4771-921d-1c059e8849ce", 6 | "atlas": "", 7 | "rect": [ 8 | 0, 9 | 0, 10 | 19, 11 | 57 12 | ], 13 | "offset": [ 14 | 0, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 19, 19 | 57 20 | ], 21 | "capInsets": [ 22 | 7, 23 | 8, 24 | 7, 25 | 8 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /library/imports/fc/fc7a980a-0b25-411e-beb7-97b6e4545b13.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "run2", 5 | "texture": "586362c7-2ea3-43c2-83aa-a39073314733", 6 | "atlas": "", 7 | "rect": [ 8 | 2, 9 | 7, 10 | 27, 11 | 35 12 | ], 13 | "offset": [ 14 | 0.5, 15 | 0.5 16 | ], 17 | "originalSize": [ 18 | 30, 19 | 50 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /library/imports/fd/fd8fcb0a-429d-495b-8bf1-76027880f06b.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteFrame", 3 | "content": { 4 | "name": "CheckBoxNode_Normal", 5 | "texture": "9c5ee18c-5b09-4726-b23b-e46e49a1b008", 6 | "atlas": "55ddbcf7-08e2-4fe0-a2b2-b9ab73af649d", 7 | "rect": [ 8 | 219, 9 | 38, 10 | 30, 11 | 22 12 | ], 13 | "offset": [ 14 | -1, 15 | 0 16 | ], 17 | "originalSize": [ 18 | 40, 19 | 40 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine": "cocos2d-html5", 3 | "packages": "packages" 4 | } -------------------------------------------------------------------------------- /settings/builder.panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "excludeScenes": [], 3 | "orientation": { 4 | "landscapeLeft": true, 5 | "landscapeRight": true, 6 | "portrait": false, 7 | "upsideDown": false 8 | }, 9 | "packageName": "org.cocos2d.example_cases", 10 | "startScene": "d13475c7-b37e-45d6-b6c5-25929e8a0925", 11 | "title": "example_cases", 12 | "webOrientation": "auto" 13 | } --------------------------------------------------------------------------------