├── .gitignore ├── LICENSE ├── README.md ├── assets ├── GodGuide.meta ├── GodGuide │ ├── GodCommand.js │ ├── GodCommand.js.meta │ ├── GodFinger.prefab │ ├── GodFinger.prefab.meta │ ├── GodGuide.js │ ├── GodGuide.js.meta │ ├── GodGuide.prefab │ ├── GodGuide.prefab.meta │ ├── GodText.js │ ├── GodText.js.meta │ ├── GodText.prefab │ ├── GodText.prefab.meta │ ├── LoadGuide.js │ ├── LoadGuide.js.meta │ ├── finger.png │ ├── finger.png.meta │ ├── lib.meta │ ├── lib │ │ ├── async.js │ │ └── async.js.meta │ ├── locator.js │ ├── locator.js.meta │ ├── task1.js │ ├── task1.js.meta │ ├── task2.js │ └── task2.js.meta ├── ItemList.js ├── ItemList.js.meta ├── ItemTemplate.js ├── ItemTemplate.js.meta ├── animation.meta ├── animation │ ├── figure_breath.anim │ ├── figure_breath.anim.meta │ ├── menu_back.anim │ ├── menu_back.anim.meta │ ├── menu_intro.anim │ ├── menu_intro.anim.meta │ ├── menu_reset.anim │ ├── menu_reset.anim.meta │ ├── shop_intro.anim │ ├── shop_intro.anim.meta │ ├── shop_outro.anim │ ├── shop_outro.anim.meta │ ├── shop_reset.anim │ ├── shop_reset.anim.meta │ ├── sub_fold.anim │ ├── sub_fold.anim.meta │ ├── sub_pop.anim │ ├── sub_pop.anim.meta │ ├── tabs.meta │ └── tabs │ │ ├── tab_turnbig.anim │ │ ├── tab_turnbig.anim.meta │ │ ├── tab_turnsmall.anim │ │ └── tab_turnsmall.anim.meta ├── cr-tab-menu.fire ├── cr-tab-menu.fire.meta ├── font.meta ├── font │ ├── haibao_outline.fnt │ ├── haibao_outline.fnt.meta │ ├── haibao_outline.png │ ├── haibao_outline.png.meta │ ├── haibao_shadow.fnt │ ├── haibao_shadow.fnt.meta │ ├── haibao_shadow.png │ └── haibao_shadow.png.meta ├── ground.png ├── ground.png.meta ├── home.fire ├── home.fire.meta ├── list-with-data.fire ├── list-with-data.fire.meta ├── migration.meta ├── migration │ ├── use_v2.0.x_cc.Toggle_event.js │ └── use_v2.0.x_cc.Toggle_event.js.meta ├── prefab.meta ├── prefab │ ├── heroslot.prefab │ ├── heroslot.prefab.meta │ ├── item.prefab │ ├── item.prefab.meta │ ├── tab.prefab │ └── tab.prefab.meta ├── scripts.meta ├── scripts │ ├── BackPackUI.js │ ├── BackPackUI.js.meta │ ├── ButtonScaler.js │ ├── ButtonScaler.js.meta │ ├── ChargeUI.js │ ├── ChargeUI.js.meta │ ├── EnergyCounter.js │ ├── EnergyCounter.js.meta │ ├── HeroSlot.js │ ├── HeroSlot.js.meta │ ├── HomeUI.js │ ├── HomeUI.js.meta │ ├── PanelTransition.js │ ├── PanelTransition.js.meta │ ├── ShopUI.js │ ├── ShopUI.js.meta │ ├── SubBtnsUI.js │ ├── SubBtnsUI.js.meta │ ├── tabs.meta │ └── tabs │ │ ├── MainMenu.js │ │ ├── MainMenu.js.meta │ │ ├── MenuSidebar.js │ │ ├── MenuSidebar.js.meta │ │ ├── TabCtrl.js │ │ └── TabCtrl.js.meta ├── tab_turn_big.anim ├── tab_turn_big.anim.meta ├── tab_turn_small.anim ├── tab_turn_small.anim.meta ├── textures.meta └── textures │ ├── background.jpg │ ├── background.jpg.meta │ ├── background_png.png │ ├── background_png.png.meta │ ├── bg_gradient_mask.png │ ├── bg_gradient_mask.png.meta │ ├── bg_main_btns.png │ ├── bg_main_btns.png.meta │ ├── bg_status.png │ ├── bg_status.png.meta │ ├── bg_sub_btns.png │ ├── bg_sub_btns.png.meta │ ├── bg_timer.png │ ├── bg_timer.png.meta │ ├── btn_expand.png │ ├── btn_expand.png.meta │ ├── btn_expand_slot.png │ ├── btn_expand_slot.png.meta │ ├── btn_fold.png │ ├── btn_fold.png.meta │ ├── btn_message.png │ ├── btn_message.png.meta │ ├── heroslot.meta │ ├── heroslot │ ├── a.png │ ├── a.png.meta │ ├── a_highlight.png │ ├── a_highlight.png.meta │ ├── att_earth.png │ ├── att_earth.png.meta │ ├── att_fire.png │ ├── att_fire.png.meta │ ├── att_water.png │ ├── att_water.png.meta │ ├── att_wind.png │ ├── att_wind.png.meta │ ├── b.png │ ├── b.png.meta │ ├── b_highlight.png │ ├── b_highlight.png.meta │ ├── bg_exp.png │ ├── bg_exp.png.meta │ ├── bg_frame.png │ ├── bg_frame.png.meta │ ├── bg_panel_blue.png │ ├── bg_panel_blue.png.meta │ ├── bg_panel_paper.png │ ├── bg_panel_paper.png.meta │ ├── bg_panel_red.png │ ├── bg_panel_red.png.meta │ ├── bg_panel_wood.png │ ├── bg_panel_wood.png.meta │ ├── btn_blue.png │ ├── btn_blue.png.meta │ ├── btn_blue_long.png │ ├── btn_blue_long.png.meta │ ├── btn_close.png │ ├── btn_close.png.meta │ ├── btn_up_blue.png │ ├── btn_up_blue.png.meta │ ├── btns_hero.png │ ├── btns_hero.png.meta │ ├── c.png │ ├── c.png.meta │ ├── c_highlight.png │ ├── c_highlight.png.meta │ ├── d.png │ ├── d.png.meta │ ├── d_highlight.png │ ├── d_highlight.png.meta │ ├── empty.png │ ├── empty.png.meta │ ├── rare1.png │ ├── rare1.png.meta │ ├── rare2.png │ ├── rare2.png.meta │ ├── rare3.png │ ├── rare3.png.meta │ ├── s.png │ ├── s.png.meta │ ├── s_highlight.png │ ├── s_highlight.png.meta │ ├── star_small.png │ ├── star_small.png.meta │ ├── text_evolve.png │ ├── text_evolve.png.meta │ ├── text_sell.png │ ├── text_sell.png.meta │ ├── text_upgrade.png │ ├── text_upgrade.png.meta │ ├── title_atk.png │ ├── title_atk.png.meta │ ├── title_backpack.png │ ├── title_backpack.png.meta │ ├── title_bg.png │ ├── title_bg.png.meta │ ├── title_craft.png │ ├── title_craft.png.meta │ ├── title_exp.png │ ├── title_exp.png.meta │ ├── title_hero_upgrade.png │ ├── title_hero_upgrade.png.meta │ ├── title_heros.png │ ├── title_heros.png.meta │ ├── title_monster.png │ ├── title_monster.png.meta │ ├── title_shards.png │ ├── title_shards.png.meta │ ├── title_total_exp.png │ └── title_total_exp.png.meta │ ├── home_btns.meta │ ├── home_btns │ ├── btn_backpack.png │ ├── btn_backpack.png.meta │ ├── btn_chuzhan.png │ ├── btn_chuzhan.png.meta │ ├── btn_friends.png │ ├── btn_friends.png.meta │ ├── btn_hecheng.png │ ├── btn_hecheng.png.meta │ ├── btn_home.png │ ├── btn_home.png.meta │ ├── btn_level.png │ ├── btn_level.png.meta │ ├── btn_liuyan.png │ ├── btn_liuyan.png.meta │ ├── btn_raid.png │ ├── btn_raid.png.meta │ ├── btn_renwu.png │ ├── btn_renwu.png.meta │ ├── btn_rongyu.png │ ├── btn_rongyu.png.meta │ ├── btn_setting.png │ ├── btn_setting.png.meta │ ├── btn_shop.png │ └── btn_shop.png.meta │ ├── icon_diamond.png │ ├── icon_diamond.png.meta │ ├── icon_energy.png │ ├── icon_energy.png.meta │ ├── icon_fight.png │ ├── icon_fight.png.meta │ ├── icon_gold.png │ ├── icon_gold.png.meta │ ├── icon_rank.png │ ├── icon_rank.png.meta │ ├── portrait.meta │ ├── portrait │ ├── atlantis.meta │ ├── atlantis │ │ ├── boss.meta │ │ ├── boss │ │ │ ├── ic_generalshark.png │ │ │ ├── ic_generalshark.png.meta │ │ │ ├── ic_hugeshark.png │ │ │ ├── ic_hugeshark.png.meta │ │ │ ├── ic_hydra.png │ │ │ ├── ic_hydra.png.meta │ │ │ ├── ic_shydra.png │ │ │ └── ic_shydra.png.meta │ │ ├── hero.meta │ │ ├── hero │ │ │ ├── ic_captain_jack.png │ │ │ ├── ic_captain_jack.png.meta │ │ │ ├── ic_drakan.png │ │ │ ├── ic_drakan.png.meta │ │ │ ├── ic_mermaid.png │ │ │ ├── ic_mermaid.png.meta │ │ │ ├── ic_mermaidqueen.png │ │ │ ├── ic_mermaidqueen.png.meta │ │ │ ├── ic_oceaking.png │ │ │ ├── ic_oceaking.png.meta │ │ │ ├── ic_oceantriton.png │ │ │ └── ic_oceantriton.png.meta │ │ ├── monster.meta │ │ └── monster │ │ │ ├── ic_塞壬女妖.png │ │ │ ├── ic_塞壬女妖.png.meta │ │ │ ├── ic_大螃蟹.png │ │ │ ├── ic_大螃蟹.png.meta │ │ │ ├── ic_机械炮台龟.png │ │ │ ├── ic_机械炮台龟.png.meta │ │ │ ├── ic_机械触手.png │ │ │ ├── ic_机械触手.png.meta │ │ │ ├── ic_棕色大螃蟹.png │ │ │ ├── ic_棕色大螃蟹.png.meta │ │ │ ├── ic_棕色大螃蟹2.png │ │ │ ├── ic_棕色大螃蟹2.png.meta │ │ │ ├── ic_炮台龟.png │ │ │ ├── ic_炮台龟.png.meta │ │ │ ├── ic_红炮台龟.png │ │ │ ├── ic_红炮台龟.png.meta │ │ │ ├── ic_红色塞壬女妖.png │ │ │ ├── ic_红色塞壬女妖.png.meta │ │ │ ├── ic_红色大螃蟹.png │ │ │ ├── ic_红色大螃蟹.png.meta │ │ │ ├── ic_红色触手.png │ │ │ ├── ic_红色触手.png.meta │ │ │ ├── ic_绿色大螃蟹.png │ │ │ ├── ic_绿色大螃蟹.png.meta │ │ │ ├── ic_绿色触手.png │ │ │ ├── ic_绿色触手.png.meta │ │ │ ├── ic_蓝炮台龟.png │ │ │ ├── ic_蓝炮台龟.png.meta │ │ │ ├── ic_蓝色触手.png │ │ │ ├── ic_蓝色触手.png.meta │ │ │ ├── ic_触手.png │ │ │ ├── ic_触手.png.meta │ │ │ ├── ic_黑色塞壬女妖.png │ │ │ ├── ic_黑色塞壬女妖.png.meta │ │ │ ├── ic_黑色大螃蟹.png │ │ │ ├── ic_黑色大螃蟹.png.meta │ │ │ ├── ic_黑色触手.png │ │ │ └── ic_黑色触手.png.meta │ ├── egypt.meta │ ├── egypt │ │ ├── boss.meta │ │ ├── boss │ │ │ ├── ic_scorpion_king.png │ │ │ ├── ic_scorpion_king.png.meta │ │ │ ├── ic_shadomummy.png │ │ │ ├── ic_shadomummy.png.meta │ │ │ ├── ic_shadopharaoh.png │ │ │ ├── ic_shadopharaoh.png.meta │ │ │ ├── ic_vinegarking.png │ │ │ └── ic_vinegarking.png.meta │ │ ├── hero.meta │ │ ├── hero │ │ │ ├── ic_cat_queen.png │ │ │ ├── ic_cat_queen.png.meta │ │ │ ├── ic_osiris.png │ │ │ ├── ic_osiris.png.meta │ │ │ ├── ic_pharaoh.png │ │ │ ├── ic_pharaoh.png.meta │ │ │ ├── ic_spharaoh.png │ │ │ ├── ic_spharaoh.png.meta │ │ │ ├── ic_sthoth.png │ │ │ ├── ic_sthoth.png.meta │ │ │ ├── ic_thoth.png │ │ │ └── ic_thoth.png.meta │ │ ├── monster.meta │ │ └── monster │ │ │ ├── ic_埃及毒蛇红色.png │ │ │ ├── ic_埃及毒蛇红色.png.meta │ │ │ ├── ic_埃及毒蛇绿色.png │ │ │ ├── ic_埃及毒蛇绿色.png.meta │ │ │ ├── ic_埃及毒蛇蓝色.png │ │ │ ├── ic_埃及毒蛇蓝色.png.meta │ │ │ ├── ic_埃及毒蛇黄色.png │ │ │ ├── ic_埃及毒蛇黄色.png.meta │ │ │ ├── ic_弓箭手.png │ │ │ ├── ic_弓箭手.png.meta │ │ │ ├── ic_弓箭手变色.png │ │ │ ├── ic_弓箭手变色.png.meta │ │ │ ├── ic_木乃伊.png │ │ │ ├── ic_木乃伊.png.meta │ │ │ ├── ic_木乃伊变色.png │ │ │ ├── ic_木乃伊变色.png.meta │ │ │ ├── ic_棺材.png │ │ │ ├── ic_棺材.png.meta │ │ │ ├── ic_棺材变色.png │ │ │ ├── ic_棺材变色.png.meta │ │ │ ├── ic_甲壳虫红.png │ │ │ ├── ic_甲壳虫红.png.meta │ │ │ ├── ic_甲壳虫绿.png │ │ │ ├── ic_甲壳虫绿.png.meta │ │ │ ├── ic_甲壳虫蓝.png │ │ │ ├── ic_甲壳虫蓝.png.meta │ │ │ ├── ic_甲壳虫黄.png │ │ │ ├── ic_甲壳虫黄.png.meta │ │ │ ├── ic_长矛兵.png │ │ │ ├── ic_长矛兵.png.meta │ │ │ ├── ic_长矛兵白色.png │ │ │ ├── ic_长矛兵白色.png.meta │ │ │ ├── ic_长矛兵蓝色.png │ │ │ ├── ic_长矛兵蓝色.png.meta │ │ │ ├── ic_阿努比斯.png │ │ │ ├── ic_阿努比斯.png.meta │ │ │ ├── ic_阿努比斯绿色.png │ │ │ ├── ic_阿努比斯绿色.png.meta │ │ │ ├── ic_阿努比斯蓝色.png │ │ │ └── ic_阿努比斯蓝色.png.meta │ ├── indi.meta │ ├── indi │ │ ├── boss.meta │ │ ├── boss │ │ │ ├── ic_bloodwind.png │ │ │ ├── ic_bloodwind.png.meta │ │ │ ├── ic_cipacret.png │ │ │ ├── ic_cipacret.png.meta │ │ │ ├── ic_sbloodwind.png │ │ │ ├── ic_sbloodwind.png.meta │ │ │ ├── ic_scipacret.png │ │ │ └── ic_scipacret.png.meta │ │ ├── hero.meta │ │ ├── hero │ │ │ ├── ic_huchcy.png │ │ │ ├── ic_huchcy.png.meta │ │ │ ├── ic_jones.png │ │ │ ├── ic_jones.png.meta │ │ │ ├── ic_stlaloc.png │ │ │ ├── ic_stlaloc.png.meta │ │ │ ├── ic_supejones.png │ │ │ ├── ic_supejones.png.meta │ │ │ ├── ic_tizerc.png │ │ │ ├── ic_tizerc.png.meta │ │ │ ├── ic_tlaloc.png │ │ │ └── ic_tlaloc.png.meta │ │ ├── monster.meta │ │ └── monster │ │ │ ├── ic_土著战士.png │ │ │ ├── ic_土著战士.png.meta │ │ │ ├── ic_巨型蜘蛛.png │ │ │ ├── ic_巨型蜘蛛.png.meta │ │ │ ├── ic_棕色巨型蜘蛛.png │ │ │ ├── ic_棕色巨型蜘蛛.png.meta │ │ │ ├── ic_绿色巨型蜘蛛.png │ │ │ ├── ic_绿色巨型蜘蛛.png.meta │ │ │ ├── ic_绿色巫师.png │ │ │ ├── ic_绿色巫师.png.meta │ │ │ ├── ic_蓝色巫师.png │ │ │ ├── ic_蓝色巫师.png.meta │ │ │ ├── ic_蛇人.png │ │ │ ├── ic_蛇人.png.meta │ │ │ ├── ic_蛇人1.png │ │ │ ├── ic_蛇人1.png.meta │ │ │ ├── ic_蛇人2.png │ │ │ ├── ic_蛇人2.png.meta │ │ │ ├── ic_蛇人3.png │ │ │ ├── ic_蛇人3.png.meta │ │ │ ├── ic_黄金巫师.png │ │ │ ├── ic_黄金巫师.png.meta │ │ │ ├── ic_黑色巨型蜘蛛.png │ │ │ ├── ic_黑色巨型蜘蛛.png.meta │ │ │ ├── ic_黑色巫师.png │ │ │ ├── ic_黑色巫师.png.meta │ │ │ ├── 小怪物头像.meta │ │ │ └── 小怪物头像 │ │ │ ├── cannonturtle.png │ │ │ ├── cannonturtle.png.meta │ │ │ ├── chighost_armour.png │ │ │ ├── chighost_armour.png.meta │ │ │ ├── chighost_blue.png │ │ │ ├── chighost_blue.png.meta │ │ │ ├── chighost_green.png │ │ │ ├── chighost_green.png.meta │ │ │ ├── chighost_purple.png │ │ │ ├── chighost_purple.png.meta │ │ │ ├── chighost_red.png │ │ │ ├── chighost_red.png.meta │ │ │ ├── indiwarrio.png │ │ │ ├── indiwarrio.png.meta │ │ │ ├── indiwarrior_bird.png │ │ │ ├── indiwarrior_bird.png.meta │ │ │ ├── indiwarrior_brown.png │ │ │ ├── indiwarrior_brown.png.meta │ │ │ ├── indiwarrior_green.png │ │ │ ├── indiwarrior_green.png.meta │ │ │ ├── indiwarrior_knife.png │ │ │ ├── indiwarrior_knife.png.meta │ │ │ ├── indiwarrior_purple.png │ │ │ ├── indiwarrior_purple.png.meta │ │ │ ├── indiwarrior_red.png │ │ │ ├── indiwarrior_red.png.meta │ │ │ ├── murloc.png │ │ │ ├── murloc.png.meta │ │ │ ├── murloc_black.png │ │ │ ├── murloc_black.png.meta │ │ │ ├── murloc_blue.png │ │ │ ├── murloc_blue.png.meta │ │ │ ├── murloc_gray.png │ │ │ ├── murloc_gray.png.meta │ │ │ ├── murloc_green.png │ │ │ ├── murloc_green.png.meta │ │ │ ├── murloc_red.png │ │ │ ├── murloc_red.png.meta │ │ │ ├── murloc_sred.png │ │ │ ├── murloc_sred.png.meta │ │ │ ├── murloc_white.png │ │ │ ├── murloc_white.png.meta │ │ │ ├── scannonturtle.png │ │ │ ├── scannonturtle.png.meta │ │ │ ├── snakeman.png │ │ │ ├── snakeman.png.meta │ │ │ ├── snakeman_blue.png │ │ │ ├── snakeman_blue.png.meta │ │ │ ├── snakeman_red.png │ │ │ ├── snakeman_red.png.meta │ │ │ ├── snakeman_yellow.png │ │ │ ├── snakeman_yellow.png.meta │ │ │ ├── sumpitaner_blue.png │ │ │ ├── sumpitaner_blue.png.meta │ │ │ ├── sumpitaner_green.png │ │ │ ├── sumpitaner_green.png.meta │ │ │ ├── sumpitaner_red.png │ │ │ ├── sumpitaner_red.png.meta │ │ │ ├── sumpitaner_yellow.png │ │ │ └── sumpitaner_yellow.png.meta │ ├── init.meta │ ├── init │ │ ├── ic_hilf.png │ │ ├── ic_hilf.png.meta │ │ ├── ic_norm.png │ │ ├── ic_norm.png.meta │ │ ├── ic_salamander.png │ │ ├── ic_salamander.png.meta │ │ ├── ic_shilf.png │ │ ├── ic_shilf.png.meta │ │ ├── ic_snrom.png │ │ ├── ic_snrom.png.meta │ │ ├── ic_ssalamander.png │ │ ├── ic_ssalamander.png.meta │ │ ├── ic_sundine.png │ │ ├── ic_sundine.png.meta │ │ ├── ic_undine.png │ │ └── ic_undine.png.meta │ ├── qin.meta │ └── qin │ │ ├── boss.meta │ │ ├── boss │ │ ├── ic_chterminator.png │ │ ├── ic_chterminator.png.meta │ │ ├── ic_ninetales.png │ │ ├── ic_ninetales.png.meta │ │ ├── ic_schterminator.png │ │ ├── ic_schterminator.png.meta │ │ ├── ic_sninetales.png │ │ └── ic_sninetales.png.meta │ │ ├── hero.meta │ │ ├── hero │ │ ├── 4.png │ │ ├── 4.png.meta │ │ ├── 5.png │ │ ├── 5.png.meta │ │ ├── 6.png │ │ ├── 6.png.meta │ │ ├── ic_jingke.png │ │ ├── ic_jingke.png.meta │ │ ├── ic_xiangyu.png │ │ ├── ic_xiangyu.png.meta │ │ ├── ic_yingzheng.png │ │ ├── ic_yingzheng.png.meta │ │ ├── ic_yuji.png │ │ └── ic_yuji.png.meta │ │ ├── monster.meta │ │ └── monster │ │ ├── 17.png │ │ ├── 17.png.meta │ │ ├── 18.png │ │ ├── 18.png.meta │ │ ├── 19.png │ │ ├── 19.png.meta │ │ ├── 20.png │ │ ├── 20.png.meta │ │ ├── 21.png │ │ ├── 21.png.meta │ │ ├── 22.png │ │ ├── 22.png.meta │ │ ├── 23.png │ │ ├── 23.png.meta │ │ ├── 24.png │ │ ├── 24.png.meta │ │ ├── 25.png │ │ ├── 25.png.meta │ │ ├── 26.png │ │ ├── 26.png.meta │ │ ├── 27.png │ │ ├── 27.png.meta │ │ ├── 28.png │ │ ├── 28.png.meta │ │ ├── 29.png │ │ ├── 29.png.meta │ │ ├── 30.png │ │ ├── 30.png.meta │ │ ├── 31.png │ │ └── 31.png.meta │ ├── shop.meta │ ├── shop │ ├── banner_goumai_egypt.png │ ├── banner_goumai_egypt.png.meta │ ├── banner_goumai_ocean.png │ ├── banner_goumai_ocean.png.meta │ ├── banner_gradient.png │ ├── banner_gradient.png.meta │ ├── banner_green.png │ ├── banner_green.png.meta │ ├── banner_red_long.png │ ├── banner_red_long.png.meta │ ├── banner_subscribe.png │ ├── banner_subscribe.png.meta │ ├── bg_shop.png │ ├── bg_shop.png.meta │ ├── bot_frame.png │ ├── bot_frame.png.meta │ ├── btn_green_diamond.png │ ├── btn_green_diamond.png.meta │ ├── btn_purple.png │ ├── btn_purple.png.meta │ ├── btn_purple2.png │ ├── btn_purple2.png.meta │ ├── btn_red.png │ ├── btn_red.png.meta │ ├── btn_sm_blue.png │ ├── btn_sm_blue.png.meta │ ├── btn_sm_red.png │ ├── btn_sm_red.png.meta │ ├── icon_crystal.png │ ├── icon_crystal.png.meta │ ├── icon_ticket.png │ ├── icon_ticket.png.meta │ ├── item1.png │ ├── item1.png.meta │ ├── item2.png │ ├── item2.png.meta │ ├── item3.png │ ├── item3.png.meta │ ├── shop_chain.png │ ├── shop_chain.png.meta │ ├── shop_figure.png │ ├── shop_figure.png.meta │ ├── shop_title_bg.png │ ├── shop_title_bg.png.meta │ ├── text_be_vip.png │ ├── text_be_vip.png.meta │ ├── text_buchongjingli.png │ ├── text_buchongjingli.png.meta │ ├── text_buchongtili.png │ ├── text_buchongtili.png.meta │ ├── text_buy1.png │ ├── text_buy1.png.meta │ ├── text_buy10.png │ ├── text_buy10.png.meta │ ├── text_chongzhi.png │ ├── text_chongzhi.png.meta │ ├── text_diamond_gift.png │ ├── text_diamond_gift.png.meta │ ├── text_duihuan.png │ ├── text_duihuan.png.meta │ ├── text_goumai.png │ ├── text_goumai.png.meta │ ├── text_kuochong.png │ ├── text_kuochong.png.meta │ ├── text_sm_chongzhi.png │ ├── text_sm_chongzhi.png.meta │ ├── text_sm_goumai.png │ ├── text_sm_goumai.png.meta │ ├── text_subscribe.png │ ├── text_subscribe.png.meta │ ├── text_title_chongzhi.png │ ├── text_title_chongzhi.png.meta │ ├── text_title_goumai.png │ ├── text_title_goumai.png.meta │ ├── title_vip.png │ ├── title_vip.png.meta │ ├── v_progressbar_bar.png │ ├── v_progressbar_bar.png.meta │ ├── v_progressbar_frame.png │ └── v_progressbar_frame.png.meta │ ├── singleColor.png │ ├── singleColor.png.meta │ ├── timer_bar.png │ ├── timer_bar.png.meta │ ├── timer_slot.png │ ├── timer_slot.png.meta │ ├── txt_beibao.png │ ├── txt_beibao.png.meta │ ├── txt_chuzhan.png │ ├── txt_chuzhan.png.meta │ ├── txt_hecheng.png │ ├── txt_hecheng.png.meta │ ├── txt_liuyan.png │ ├── txt_liuyan.png.meta │ ├── txt_renwu.png │ ├── txt_renwu.png.meta │ ├── txt_rongyu.png │ └── txt_rongyu.png.meta ├── creator-star.png ├── creator.d.ts ├── gitchat.jpg ├── jsconfig.json ├── package.json ├── project.json └── settings ├── builder.json ├── builder.panel.json ├── project.json └── services.json /README.md: -------------------------------------------------------------------------------- 1 | # GodGuide 2 | 3 | #### 特别鸣谢 4 | - 感谢「黝黑蜗壳」提供的GodGuide引导框架的TypeScript版本 5 | 6 | #### 注意事项 7 | - master分支为js版本 8 | - typescript分支为ts版本 9 | - 在两个版本之间切换时请关闭Creator 10 | - 修改自动引导失效的BUG 11 | 12 | 因为两个分支中的资源文件名相同,uuid不同,如遇到到资源出错请删除temp/library目录,重新打开Creator进行编译 13 | 14 | #### 介绍 15 | Cocos Creator 新手引导框架,支持浏览器自动引导,流程录制与回放,可实现自动化测试! 16 | 17 | #### 使用说明 18 | 19 | 1. 使用Cocos Creator 2.0.10 打开项目 20 | 2. 引导相关代码在assets/GodGuide目录下 21 | 3. Task1.js 、Task2.js 为引导任务配置 22 | 23 | #### 微信公众号 24 | ![Cocos Creator 项目:如何较为优雅地实现新手引导? ](https://gitee.com/ShawnZhang2019/GodGuide/raw/master/creator-star.png) 25 | #### GitChat 26 | 27 | ![Cocos Creator 项目:如何较为优雅地实现新手引导? ](https://gitee.com/ShawnZhang2019/GodGuide/raw/master/gitchat.jpg) 28 | 29 | #### 更新说明 30 | 1. 增加typescript分支为ts版本 31 | 2. 在浏览器、原生环境、微信小游戏上实现节点点击模拟,完成引导任务的自动执行 -------------------------------------------------------------------------------- /assets/GodGuide.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "3da9a49e-e366-429f-a062-f946f15ee073", 4 | "isSubpackage": false, 5 | "subpackageName": "", 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/GodGuide/GodCommand.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "c169bcad-9a6f-4c1f-8bf6-e883ca7fd443", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/GodGuide/GodFinger.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.6", 3 | "uuid": "6b5e3c8a-0100-407d-90c6-c07ac90ea73e", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/GodGuide/GodGuide.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "7b174399-1af2-4e8d-9aec-2ea393c66f7c", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/GodGuide/GodGuide.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.6", 3 | "uuid": "d94ae41f-b856-4543-a185-f6b1b855c6da", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/GodGuide/GodText.js: -------------------------------------------------------------------------------- 1 | 2 | cc.Class({ 3 | extends: cc.Component, 4 | 5 | properties: { 6 | text: { 7 | default: '', 8 | notify() { 9 | this._updateContent(); 10 | } 11 | } 12 | }, 13 | 14 | start() { 15 | this.node.on(cc.Node.EventType.TOUCH_START, () => { 16 | this.node._touchListener.setSwallowTouches(false); 17 | //隐藏文本提示 18 | if (this.node.active) { 19 | this.node.active = false; 20 | this.node.emit('click'); 21 | return; 22 | } 23 | }); 24 | }, 25 | 26 | _updateContent() { 27 | this.node.active = true; 28 | if (!this.label) { 29 | this.label = this.node.getComponentInChildren(cc.Label); 30 | } 31 | this.label.string = this.text; 32 | } 33 | }); 34 | -------------------------------------------------------------------------------- /assets/GodGuide/GodText.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "1b86ccec-9a54-4c4e-b10b-1f633e96fafc", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/GodGuide/GodText.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.6", 3 | "uuid": "8e566f75-8829-434f-a936-c0d3c6e73f93", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/GodGuide/LoadGuide.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "22118dc7-9451-42f1-ad69-1526389ab680", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/GodGuide/finger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/GodGuide/finger.png -------------------------------------------------------------------------------- /assets/GodGuide/finger.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "662606a7-f21a-4df4-8cd2-e4b57ed43598", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 265, 11 | "height": 212, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "finger": { 15 | "ver": "1.0.4", 16 | "uuid": "41edf80d-39c1-48aa-af62-6c93b278b145", 17 | "rawTextureUuid": "662606a7-f21a-4df4-8cd2-e4b57ed43598", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": -0.5, 22 | "offsetY": -7.5, 23 | "trimX": 6, 24 | "trimY": 15, 25 | "width": 252, 26 | "height": 197, 27 | "rawWidth": 265, 28 | "rawHeight": 212, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/GodGuide/lib.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "f2677306-af53-4dd9-9733-beecb564678e", 4 | "isSubpackage": false, 5 | "subpackageName": "", 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/GodGuide/lib/async.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "ee6d8d29-d861-4656-946b-d060af7a877e", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/GodGuide/locator.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "a392c9ab-ca29-478f-b4ee-93e4048009bf", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/GodGuide/task1.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "fff371b9-4494-4868-ba3c-b47c5daea6f1", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/GodGuide/task2.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "6a511bae-16a4-458d-bd1b-a30d503b8ce2", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/ItemList.js: -------------------------------------------------------------------------------- 1 | var Item = cc.Class({ 2 | name: 'Item', 3 | properties: { 4 | id: 0, 5 | itemName: '', 6 | itemPrice: 0, 7 | iconSF: cc.SpriteFrame 8 | } 9 | }); 10 | 11 | cc.Class({ 12 | extends: cc.Component, 13 | properties: { 14 | items: { 15 | default: [], 16 | type: Item 17 | }, 18 | itemPrefab: cc.Prefab 19 | }, 20 | 21 | onLoad () { 22 | for (var i = 0; i < this.items.length; ++i) { 23 | var item = cc.instantiate(this.itemPrefab); 24 | var data = this.items[i]; 25 | this.node.addChild(item); 26 | item.getComponent('ItemTemplate').init({ 27 | id: data.id, 28 | itemName: data.itemName, 29 | itemPrice: data.itemPrice, 30 | iconSF: data.iconSF 31 | }); 32 | } 33 | } 34 | }); 35 | -------------------------------------------------------------------------------- /assets/ItemList.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "17835636-8394-47d5-87d1-a04da05e372a", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/ItemTemplate.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | id: 0, 6 | icon: cc.Sprite, 7 | itemName: cc.Label, 8 | itemPrice: cc.Label 9 | }, 10 | 11 | // data: {id,iconSF,itemName,itemPrice} 12 | init: function (data) { 13 | this.id = data.id; 14 | this.icon.spriteFrame = data.iconSF; 15 | this.itemName.string = data.itemName; 16 | this.itemPrice.string = data.itemPrice; 17 | } 18 | }); 19 | -------------------------------------------------------------------------------- /assets/ItemTemplate.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "84c0afd3-7108-4943-9952-6326388146ba", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/animation.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "d03fb4e8-0a40-415d-9908-934c6186df32", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animation/figure_breath.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "figure_breath", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.5, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 0, 10 | "curveData": { 11 | "props": { 12 | "scaleY": [ 13 | { 14 | "frame": 0, 15 | "value": 1 16 | }, 17 | { 18 | "frame": 0.5, 19 | "value": 0.96 20 | } 21 | ] 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/animation/figure_breath.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "1210c08c-e904-4e3e-a21c-fd0d37e1e341", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/menu_back.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "menu_back", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "paths": { 12 | "mask": { 13 | "props": {} 14 | }, 15 | "background": { 16 | "props": {} 17 | } 18 | } 19 | }, 20 | "events": [] 21 | } -------------------------------------------------------------------------------- /assets/animation/menu_back.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "95bc1c50-a456-4845-a533-5a8d8d2fd16b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/menu_intro.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "8125423d-2c3c-4780-b483-dcfd4532c05f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/menu_reset.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "0c6f4595-4696-4740-9a41-d39aafc2734a", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/shop_intro.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "1472f312-9671-4996-a036-34c3f3c1bd41", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/shop_outro.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "68c4d91b-ba25-408a-9588-89f1e5b5fc64", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/shop_reset.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "848b2e65-93ba-4411-be84-8e836dd5b25f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/sub_fold.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "a5da42bf-54a8-4f59-8ac5-70ccce1ed990", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/sub_pop.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "5ab2e3ea-b712-480d-ab01-0f41b2e92b12", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/tabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "55ba02c2-d269-4d81-8fb0-61645f4b7a59", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animation/tabs/tab_turnbig.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "f64f87e6-913b-43b6-b4e9-4fafa5775951", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/tabs/tab_turnsmall.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "7ec8ee3b-013d-4ae6-90e2-0446bac580fd", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/cr-tab-menu.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.6", 3 | "uuid": "0e82be96-6039-4c45-b297-7257389f31c9", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/font.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "f1053378-1744-4c9f-89e0-f9c4d968ebe4", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/font/haibao_outline.fnt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "ce8f2ad5-a316-4653-ba49-398b4f04557f", 4 | "textureUuid": "225ed31a-60be-425b-b94a-dd19050730a4", 5 | "fontSize": 50, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/font/haibao_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/font/haibao_outline.png -------------------------------------------------------------------------------- /assets/font/haibao_outline.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "225ed31a-60be-425b-b94a-dd19050730a4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 512, 11 | "height": 512, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "haibao_outline": { 15 | "ver": "1.0.4", 16 | "uuid": "ad78795d-09e2-4062-8309-979c7d30dcad", 17 | "rawTextureUuid": "225ed31a-60be-425b-b94a-dd19050730a4", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": -2, 22 | "offsetY": 61, 23 | "trimX": 2, 24 | "trimY": 4, 25 | "width": 504, 26 | "height": 382, 27 | "rawWidth": 512, 28 | "rawHeight": 512, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/font/haibao_shadow.fnt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "1316ed6c-3cd7-469b-8f14-ab659123629c", 4 | "textureUuid": "0c2bef11-b494-4511-9c56-f5195e65f929", 5 | "fontSize": 40, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/font/haibao_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/font/haibao_shadow.png -------------------------------------------------------------------------------- /assets/font/haibao_shadow.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "0c2bef11-b494-4511-9c56-f5195e65f929", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 256, 11 | "height": 128, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "haibao_shadow": { 15 | "ver": "1.0.4", 16 | "uuid": "5e264b9e-7d0f-44c7-aabf-2465b65f6084", 17 | "rawTextureUuid": "0c2bef11-b494-4511-9c56-f5195e65f929", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": -1.5, 22 | "offsetY": 0.5, 23 | "trimX": 2, 24 | "trimY": 4, 25 | "width": 249, 26 | "height": 119, 27 | "rawWidth": 256, 28 | "rawHeight": 128, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/ground.png -------------------------------------------------------------------------------- /assets/ground.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "5f4eb9a9-5150-4d3a-a7ee-c1f4a110974d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 256, 11 | "height": 256, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "ground": { 15 | "ver": "1.0.4", 16 | "uuid": "0052da56-c7ad-4dd3-b62d-e8ea62f44d7e", 17 | "rawTextureUuid": "5f4eb9a9-5150-4d3a-a7ee-c1f4a110974d", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 256, 26 | "height": 256, 27 | "rawWidth": 256, 28 | "rawHeight": 256, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/home.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.6", 3 | "uuid": "de6d47e5-011f-4c10-a385-1cd318777662", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/list-with-data.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.6", 3 | "uuid": "507e179d-c947-4043-a1ba-707a34464c17", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/migration.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "4ba1f64f-c4a8-4b95-9e40-65241a4f2af3", 4 | "isSubpackage": false, 5 | "subpackageName": "", 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/migration/use_v2.0.x_cc.Toggle_event.js: -------------------------------------------------------------------------------- 1 | /* 2 | * This script is automatically generated by Cocos Creator and is only compatible with projects prior to v2.1.0. 3 | * You do not need to manually add this script in any other project. 4 | * If you don't use cc.Toggle in your project, you can delete this script directly. 5 | * If your project is hosted in VCS such as git, submit this script together. 6 | * 7 | * 此脚本由 Cocos Creator 自动生成,仅用于兼容 v2.1.0 之前版本的工程, 8 | * 你无需在任何其它项目中手动添加此脚本。 9 | * 如果你的项目中没用到 Toggle,可直接删除该脚本。 10 | * 如果你的项目有托管于 git 等版本库,请将此脚本一并上传。 11 | */ 12 | 13 | if (cc.Toggle) { 14 | // Whether the 'toggle' and 'checkEvents' events are fired when 'toggle.check() / toggle.uncheck()' is called in the code 15 | // 在代码中调用 'toggle.check() / toggle.uncheck()' 时是否触发 'toggle' 与 'checkEvents' 事件 16 | cc.Toggle._triggerEventInScript_check = true; 17 | } 18 | -------------------------------------------------------------------------------- /assets/migration/use_v2.0.x_cc.Toggle_event.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "5eb76b44-f897-4ebc-8300-fcd98b588296", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "02eb830d-4ed3-43cb-8f0f-81e3da487c3f", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/prefab/heroslot.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.6", 3 | "uuid": "a5ad457a-c134-4e6c-9d95-27ffa7968d6a", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/prefab/item.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.6", 3 | "uuid": "545a996b-c8df-4faa-98e1-dabadcd20781", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/prefab/tab.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.6", 3 | "uuid": "96231260-d61f-4781-b91c-28dfb21262d7", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "a3c242be-90c9-45ce-9b19-bdb8873c2148", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/scripts/BackPackUI.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "96a19d94-78ff-450d-9ea3-a953aa71402c", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/ButtonScaler.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "f5d10137-a10f-46fc-b96f-359972d12d98", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/ChargeUI.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | 6 | }, 7 | 8 | // use this for initialization 9 | init: function (home, parentBtns) { 10 | this.home = home; 11 | this.parentBtns = parentBtns; 12 | }, 13 | 14 | show: function () { 15 | this.node.active = true; 16 | this.node.emit('fade-in'); 17 | this.home.toggleHomeBtns(false); 18 | this.parentBtns.pauseSystemEvents(); 19 | }, 20 | 21 | hide: function () { 22 | this.node.emit('fade-out'); 23 | this.home.toggleHomeBtns(true); 24 | this.parentBtns.resumeSystemEvents(); 25 | }, 26 | }); 27 | -------------------------------------------------------------------------------- /assets/scripts/ChargeUI.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "11f1ea44-7791-4fae-8b21-87c7525e03d6", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/EnergyCounter.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "70152888-42dd-4090-a9ec-1571a069d47c", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/HeroSlot.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "648ec02c-e1b4-4400-9b10-e88c9c65b5fb", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/HomeUI.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "803823c3-1a5d-497f-89ef-cdaab5832395", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/PanelTransition.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "e5284448-3a1d-42e0-9cb3-7daeb8955f65", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/ShopUI.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "b06f0ebc-525b-41dc-a3d3-2a025eb193a6", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/SubBtnsUI.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | subBtnsAnim: cc.Animation, 6 | btnShowSub: cc.Button, 7 | btnHideSub: cc.Button, 8 | btnContainer: cc.Node 9 | }, 10 | 11 | // use this for initialization 12 | onLoad: function () { 13 | this.btnShowSub.node.active = true; 14 | this.btnHideSub.node.active = false; 15 | }, 16 | 17 | showSubBtns: function () { 18 | this.btnContainer.active = true; 19 | this.subBtnsAnim.play('sub_pop'); 20 | }, 21 | 22 | hideSubBtns: function () { 23 | this.subBtnsAnim.play('sub_fold'); 24 | }, 25 | 26 | onFinishAnim: function (finishFold) { 27 | this.btnShowSub.node.active = finishFold; 28 | this.btnHideSub.node.active = !finishFold; 29 | }, 30 | // called every frame, uncomment this function to activate update callback 31 | // update: function (dt) { 32 | 33 | // }, 34 | }); 35 | -------------------------------------------------------------------------------- /assets/scripts/SubBtnsUI.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "6907fabb-e47d-4422-b2e6-8ff005060f81", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/tabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "5c7e7d96-a19b-4655-ae9d-e9ae094b33d9", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/scripts/tabs/MainMenu.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "1bc0e640-0857-4adb-8874-52ccadade3aa", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/tabs/MenuSidebar.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "95628183-0d26-4862-9244-36a5e5bdca5c", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/scripts/tabs/TabCtrl.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | idx: 0, 6 | icon: cc.Sprite, 7 | arrow: cc.Node, 8 | anim: cc.Animation 9 | }, 10 | 11 | // use this for initialization 12 | init (tabInfo) { // sidebar, idx, iconSF 13 | this.sidebar = tabInfo.sidebar; 14 | this.idx = tabInfo.idx; 15 | this.icon.spriteFrame = tabInfo.iconSF; 16 | this.node.on('touchstart', this.onPressed.bind(this), this.node); 17 | this.arrow.scale = cc.v2(0, 0); 18 | }, 19 | 20 | onPressed () { 21 | this.sidebar.tabPressed(this.idx); 22 | }, 23 | 24 | turnBig () { 25 | this.anim.play('tab_turn_big'); 26 | }, 27 | 28 | turnSmall () { 29 | this.anim.play('tab_turn_small'); 30 | } 31 | 32 | // called every frame, uncomment this function to activate update callback 33 | // update: function (dt) { 34 | 35 | // }, 36 | }); 37 | -------------------------------------------------------------------------------- /assets/scripts/tabs/TabCtrl.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.8", 3 | "uuid": "622085c9-abd6-42da-8343-79019c6c269b", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /assets/tab_turn_big.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "44ace3a4-046e-43ad-8875-04c4402d679c", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tab_turn_small.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.0", 3 | "uuid": "5a996125-6c2e-4557-a687-d81c92cd5b70", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "95b675c2-0823-4990-8745-7d5fe26d755d", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/background.jpg -------------------------------------------------------------------------------- /assets/textures/background.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "6fb4f547-6efb-400a-a665-8c2d2bb9f1dc", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 640, 11 | "height": 960, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "background": { 15 | "ver": "1.0.4", 16 | "uuid": "bfccd0a4-8c8c-42bc-abd8-b354ab77d88a", 17 | "rawTextureUuid": "6fb4f547-6efb-400a-a665-8c2d2bb9f1dc", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 640, 26 | "height": 960, 27 | "rawWidth": 640, 28 | "rawHeight": 960, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/background_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/background_png.png -------------------------------------------------------------------------------- /assets/textures/background_png.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "5c51ec09-a9fc-4747-a9f2-4f53b8e9d9fa", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 640, 11 | "height": 960, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "background_png": { 15 | "ver": "1.0.4", 16 | "uuid": "8d3d71cc-0274-44ab-a851-8e4f147a94f9", 17 | "rawTextureUuid": "5c51ec09-a9fc-4747-a9f2-4f53b8e9d9fa", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 640, 26 | "height": 960, 27 | "rawWidth": 640, 28 | "rawHeight": 960, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/bg_gradient_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/bg_gradient_mask.png -------------------------------------------------------------------------------- /assets/textures/bg_main_btns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/bg_main_btns.png -------------------------------------------------------------------------------- /assets/textures/bg_main_btns.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "a5fd3939-7e4d-4e4f-8337-6247b2ba0c8e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 636, 11 | "height": 166, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "bg_main_btns": { 15 | "ver": "1.0.4", 16 | "uuid": "4bf6fd29-1fc2-405c-a699-2dc897d2b26a", 17 | "rawTextureUuid": "a5fd3939-7e4d-4e4f-8337-6247b2ba0c8e", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 636, 26 | "height": 166, 27 | "rawWidth": 636, 28 | "rawHeight": 166, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/bg_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/bg_status.png -------------------------------------------------------------------------------- /assets/textures/bg_status.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "5b5e694f-4d15-4cf4-8f41-e0a1eb796811", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 188, 11 | "height": 54, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "bg_status": { 15 | "ver": "1.0.4", 16 | "uuid": "3191b1fe-bc35-4bdc-831c-2b0e8b4b3d15", 17 | "rawTextureUuid": "5b5e694f-4d15-4cf4-8f41-e0a1eb796811", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 188, 26 | "height": 54, 27 | "rawWidth": 188, 28 | "rawHeight": 54, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/bg_sub_btns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/bg_sub_btns.png -------------------------------------------------------------------------------- /assets/textures/bg_sub_btns.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "547a382f-9b8e-45a9-94f2-c33f250f57e6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 625, 11 | "height": 130, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "bg_sub_btns": { 15 | "ver": "1.0.4", 16 | "uuid": "082c6f54-b0a5-45b4-860e-003bed7db78b", 17 | "rawTextureUuid": "547a382f-9b8e-45a9-94f2-c33f250f57e6", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 625, 26 | "height": 130, 27 | "rawWidth": 625, 28 | "rawHeight": 130, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/bg_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/bg_timer.png -------------------------------------------------------------------------------- /assets/textures/bg_timer.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "aaf86f01-d9ec-4b10-86c1-3fee512bbd9d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 278, 11 | "height": 53, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "bg_timer": { 15 | "ver": "1.0.4", 16 | "uuid": "741cfdc1-1b76-469e-a0b1-3260bfe8332d", 17 | "rawTextureUuid": "aaf86f01-d9ec-4b10-86c1-3fee512bbd9d", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 278, 26 | "height": 53, 27 | "rawWidth": 278, 28 | "rawHeight": 53, 29 | "borderTop": 17, 30 | "borderBottom": 19, 31 | "borderLeft": 22, 32 | "borderRight": 22, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/btn_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/btn_expand.png -------------------------------------------------------------------------------- /assets/textures/btn_expand.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "ba92c374-9f2e-408d-bce1-df83a88aa5ca", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 98, 11 | "height": 30, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_expand": { 15 | "ver": "1.0.4", 16 | "uuid": "129e9714-c74e-4d30-8a98-20a04a77fc9a", 17 | "rawTextureUuid": "ba92c374-9f2e-408d-bce1-df83a88aa5ca", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 98, 26 | "height": 30, 27 | "rawWidth": 98, 28 | "rawHeight": 30, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/btn_expand_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/btn_expand_slot.png -------------------------------------------------------------------------------- /assets/textures/btn_expand_slot.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "1e795446-1dcb-413a-b7e3-c77c22949a17", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 131, 11 | "height": 35, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_expand_slot": { 15 | "ver": "1.0.4", 16 | "uuid": "c7a96aa6-74eb-4489-9932-e027533b0888", 17 | "rawTextureUuid": "1e795446-1dcb-413a-b7e3-c77c22949a17", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 131, 26 | "height": 35, 27 | "rawWidth": 131, 28 | "rawHeight": 35, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/btn_fold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/btn_fold.png -------------------------------------------------------------------------------- /assets/textures/btn_fold.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "b245a56a-a90e-4a1d-a23a-0356b7345dcf", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 98, 11 | "height": 30, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_fold": { 15 | "ver": "1.0.4", 16 | "uuid": "cd780f51-fc15-4908-8108-cb3450197d33", 17 | "rawTextureUuid": "b245a56a-a90e-4a1d-a23a-0356b7345dcf", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 98, 26 | "height": 30, 27 | "rawWidth": 98, 28 | "rawHeight": 30, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/btn_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/btn_message.png -------------------------------------------------------------------------------- /assets/textures/btn_message.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "e95c52db-f62e-4ecb-8fd7-5a50e4d9895a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 75, 11 | "height": 67, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_message": { 15 | "ver": "1.0.4", 16 | "uuid": "965e2016-cb34-4d76-9e0c-cc54962a6458", 17 | "rawTextureUuid": "e95c52db-f62e-4ecb-8fd7-5a50e4d9895a", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 75, 26 | "height": 67, 27 | "rawWidth": 75, 28 | "rawHeight": 67, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "e903df68-9208-4e40-97a6-7eab4414d035", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/a.png -------------------------------------------------------------------------------- /assets/textures/heroslot/a.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "fcabe6b6-a7a2-4a8f-8307-5d697c207cdb", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 57, 11 | "height": 50, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "a": { 15 | "ver": "1.0.4", 16 | "uuid": "d96f6333-c160-482d-817e-73fe3d8fd1d3", 17 | "rawTextureUuid": "fcabe6b6-a7a2-4a8f-8307-5d697c207cdb", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 57, 28 | "rawHeight": 50, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/a_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/a_highlight.png -------------------------------------------------------------------------------- /assets/textures/heroslot/a_highlight.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "f38a35ea-c32e-4a64-9d2c-dbc8869cbe4b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 66, 11 | "height": 58, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "a_highlight": { 15 | "ver": "1.0.4", 16 | "uuid": "b7f46125-fe7c-4ea9-b9ae-6c52e3cb0921", 17 | "rawTextureUuid": "f38a35ea-c32e-4a64-9d2c-dbc8869cbe4b", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -2, 23 | "trimX": 5, 24 | "trimY": 6, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 66, 28 | "rawHeight": 58, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/att_earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/att_earth.png -------------------------------------------------------------------------------- /assets/textures/heroslot/att_earth.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "158b13c3-4f0d-4813-9c33-bbc7be0ca3f9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 36, 11 | "height": 36, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "att_earth": { 15 | "ver": "1.0.4", 16 | "uuid": "d05c9ac1-2699-4e70-b164-c7013d4d8b4c", 17 | "rawTextureUuid": "158b13c3-4f0d-4813-9c33-bbc7be0ca3f9", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 36, 26 | "height": 36, 27 | "rawWidth": 36, 28 | "rawHeight": 36, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/att_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/att_fire.png -------------------------------------------------------------------------------- /assets/textures/heroslot/att_fire.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "becbadf4-dee3-428c-bcc8-8c31e6afe6b8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 36, 11 | "height": 36, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "att_fire": { 15 | "ver": "1.0.4", 16 | "uuid": "901f57e8-0522-45e4-9bd5-513803fac797", 17 | "rawTextureUuid": "becbadf4-dee3-428c-bcc8-8c31e6afe6b8", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 36, 26 | "height": 36, 27 | "rawWidth": 36, 28 | "rawHeight": 36, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/att_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/att_water.png -------------------------------------------------------------------------------- /assets/textures/heroslot/att_water.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "e6e8ced7-2bff-4f36-835c-b12d2cfd1517", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 36, 11 | "height": 36, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "att_water": { 15 | "ver": "1.0.4", 16 | "uuid": "a675e821-d7c9-4d43-8cfb-4aa0475e772e", 17 | "rawTextureUuid": "e6e8ced7-2bff-4f36-835c-b12d2cfd1517", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 36, 26 | "height": 36, 27 | "rawWidth": 36, 28 | "rawHeight": 36, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/att_wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/att_wind.png -------------------------------------------------------------------------------- /assets/textures/heroslot/att_wind.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "ea6ca70c-3dab-4929-b5c9-b91d95d1de66", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 36, 11 | "height": 36, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "att_wind": { 15 | "ver": "1.0.4", 16 | "uuid": "464413f8-4486-42fd-a778-9b22fc9d4786", 17 | "rawTextureUuid": "ea6ca70c-3dab-4929-b5c9-b91d95d1de66", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 36, 26 | "height": 36, 27 | "rawWidth": 36, 28 | "rawHeight": 36, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/b.png -------------------------------------------------------------------------------- /assets/textures/heroslot/b.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "9b709222-f68c-4cf8-ab70-4a52679b3adc", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 66, 11 | "height": 58, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "b": { 15 | "ver": "1.0.4", 16 | "uuid": "0765c518-bb9b-43c3-b048-1aa40928d2d4", 17 | "rawTextureUuid": "9b709222-f68c-4cf8-ab70-4a52679b3adc", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -2, 23 | "trimX": 5, 24 | "trimY": 6, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 66, 28 | "rawHeight": 58, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/b_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/b_highlight.png -------------------------------------------------------------------------------- /assets/textures/heroslot/b_highlight.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "19174454-949b-4a09-bb1c-5b537650beb5", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 66, 11 | "height": 58, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "b_highlight": { 15 | "ver": "1.0.4", 16 | "uuid": "230a0332-f8ff-4c7d-af82-6ae3eb7f27d6", 17 | "rawTextureUuid": "19174454-949b-4a09-bb1c-5b537650beb5", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -2, 23 | "trimX": 5, 24 | "trimY": 6, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 66, 28 | "rawHeight": 58, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/bg_exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/bg_exp.png -------------------------------------------------------------------------------- /assets/textures/heroslot/bg_exp.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "a9ec8f93-fa78-48be-8ac4-0800584cb867", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 86, 11 | "height": 19, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "bg_exp": { 15 | "ver": "1.0.4", 16 | "uuid": "92f1a475-ea99-4273-bf49-79b7aad1df0b", 17 | "rawTextureUuid": "a9ec8f93-fa78-48be-8ac4-0800584cb867", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 86, 26 | "height": 19, 27 | "rawWidth": 86, 28 | "rawHeight": 19, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 9, 32 | "borderRight": 9, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/bg_frame.png -------------------------------------------------------------------------------- /assets/textures/heroslot/bg_panel_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/bg_panel_blue.png -------------------------------------------------------------------------------- /assets/textures/heroslot/bg_panel_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/bg_panel_paper.png -------------------------------------------------------------------------------- /assets/textures/heroslot/bg_panel_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/bg_panel_red.png -------------------------------------------------------------------------------- /assets/textures/heroslot/bg_panel_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/bg_panel_wood.png -------------------------------------------------------------------------------- /assets/textures/heroslot/btn_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/btn_blue.png -------------------------------------------------------------------------------- /assets/textures/heroslot/btn_blue.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "c99e141b-f14f-4020-abb3-1333fbf3282d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 154, 11 | "height": 59, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_blue": { 15 | "ver": "1.0.4", 16 | "uuid": "fc64cf9a-7f8e-4661-8e1b-8bb82049a468", 17 | "rawTextureUuid": "c99e141b-f14f-4020-abb3-1333fbf3282d", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 154, 26 | "height": 59, 27 | "rawWidth": 154, 28 | "rawHeight": 59, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/btn_blue_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/btn_blue_long.png -------------------------------------------------------------------------------- /assets/textures/heroslot/btn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/btn_close.png -------------------------------------------------------------------------------- /assets/textures/heroslot/btn_close.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "95ed8e2e-8b4d-42e3-8884-0a5d06d3f9f4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 82, 11 | "height": 82, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_close": { 15 | "ver": "1.0.4", 16 | "uuid": "4d80c52e-1438-4a1e-9488-4a8156642ed2", 17 | "rawTextureUuid": "95ed8e2e-8b4d-42e3-8884-0a5d06d3f9f4", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 82, 26 | "height": 82, 27 | "rawWidth": 82, 28 | "rawHeight": 82, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/btn_up_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/btn_up_blue.png -------------------------------------------------------------------------------- /assets/textures/heroslot/btn_up_blue.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "f2fbbefb-7d06-4332-a587-6c32165c5240", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 120, 11 | "height": 49, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_up_blue": { 15 | "ver": "1.0.4", 16 | "uuid": "a8387873-22e5-4b7b-a73a-5e9e009a65e2", 17 | "rawTextureUuid": "f2fbbefb-7d06-4332-a587-6c32165c5240", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 120, 26 | "height": 49, 27 | "rawWidth": 120, 28 | "rawHeight": 49, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/btns_hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/btns_hero.png -------------------------------------------------------------------------------- /assets/textures/heroslot/btns_hero.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "df9586cb-c875-421a-9323-3af3bc892966", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 186, 11 | "height": 48, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btns_hero": { 15 | "ver": "1.0.4", 16 | "uuid": "319be7a6-095d-41f2-bc90-5870171d6498", 17 | "rawTextureUuid": "df9586cb-c875-421a-9323-3af3bc892966", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 186, 26 | "height": 48, 27 | "rawWidth": 186, 28 | "rawHeight": 48, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/c.png -------------------------------------------------------------------------------- /assets/textures/heroslot/c.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "8be3b0c1-61bf-438c-a48f-7397b961f3ab", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 66, 11 | "height": 58, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "c": { 15 | "ver": "1.0.4", 16 | "uuid": "cf33d59f-61e4-4426-8259-9137a622eb90", 17 | "rawTextureUuid": "8be3b0c1-61bf-438c-a48f-7397b961f3ab", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -2, 23 | "trimX": 5, 24 | "trimY": 6, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 66, 28 | "rawHeight": 58, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/c_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/c_highlight.png -------------------------------------------------------------------------------- /assets/textures/heroslot/c_highlight.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "ae3e12e1-6fc0-44be-a280-23973f6962b7", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 66, 11 | "height": 58, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "c_highlight": { 15 | "ver": "1.0.4", 16 | "uuid": "24578765-b05a-449d-9863-06e54072ff37", 17 | "rawTextureUuid": "ae3e12e1-6fc0-44be-a280-23973f6962b7", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -2, 23 | "trimX": 5, 24 | "trimY": 6, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 66, 28 | "rawHeight": 58, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/d.png -------------------------------------------------------------------------------- /assets/textures/heroslot/d.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "2f5cd28d-9557-487a-9df0-34cb4cfd16aa", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 66, 11 | "height": 58, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "d": { 15 | "ver": "1.0.4", 16 | "uuid": "b3087c6f-69b9-4d05-b920-a211b8fe39e1", 17 | "rawTextureUuid": "2f5cd28d-9557-487a-9df0-34cb4cfd16aa", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -2, 23 | "trimX": 5, 24 | "trimY": 6, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 66, 28 | "rawHeight": 58, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/d_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/d_highlight.png -------------------------------------------------------------------------------- /assets/textures/heroslot/d_highlight.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "a075147e-c075-46d3-9a8e-8313162b966e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 66, 11 | "height": 58, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "d_highlight": { 15 | "ver": "1.0.4", 16 | "uuid": "55d0dd7e-b3c5-4513-b03b-6daff6042734", 17 | "rawTextureUuid": "a075147e-c075-46d3-9a8e-8313162b966e", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -2, 23 | "trimX": 5, 24 | "trimY": 6, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 66, 28 | "rawHeight": 58, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/empty.png -------------------------------------------------------------------------------- /assets/textures/heroslot/empty.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "9e2b5b51-b152-4505-b493-c83cf9ce8fcf", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 91, 11 | "height": 116, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "empty": { 15 | "ver": "1.0.4", 16 | "uuid": "561c3fbc-7602-4733-a272-ec11950bb449", 17 | "rawTextureUuid": "9e2b5b51-b152-4505-b493-c83cf9ce8fcf", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 91, 26 | "height": 116, 27 | "rawWidth": 91, 28 | "rawHeight": 116, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/rare1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/rare1.png -------------------------------------------------------------------------------- /assets/textures/heroslot/rare1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "2587d5be-d25c-4f46-9e7e-1270eae84427", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 93, 11 | "height": 125, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "rare1": { 15 | "ver": "1.0.4", 16 | "uuid": "187bf5bc-2c79-4e5a-bcb8-60f336af3fec", 17 | "rawTextureUuid": "2587d5be-d25c-4f46-9e7e-1270eae84427", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": -1, 23 | "trimX": 0, 24 | "trimY": 3, 25 | "width": 93, 26 | "height": 121, 27 | "rawWidth": 93, 28 | "rawHeight": 125, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/rare2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/rare2.png -------------------------------------------------------------------------------- /assets/textures/heroslot/rare2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "426f0d96-7545-4312-808b-d221ee784bf9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 100, 11 | "height": 129, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "rare2": { 15 | "ver": "1.0.4", 16 | "uuid": "52897c43-6b78-462d-99e1-c5436ec11609", 17 | "rawTextureUuid": "426f0d96-7545-4312-808b-d221ee784bf9", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -4, 23 | "trimX": 3, 24 | "trimY": 9, 25 | "width": 95, 26 | "height": 119, 27 | "rawWidth": 100, 28 | "rawHeight": 129, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/rare3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/rare3.png -------------------------------------------------------------------------------- /assets/textures/heroslot/rare3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "73c887a9-622b-4706-855c-864dc6c064f5", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 100, 11 | "height": 128, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "rare3": { 15 | "ver": "1.0.4", 16 | "uuid": "33ff8bcd-afd6-425d-bc0d-c8bd37db9c55", 17 | "rawTextureUuid": "73c887a9-622b-4706-855c-864dc6c064f5", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 1, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 100, 26 | "height": 126, 27 | "rawWidth": 100, 28 | "rawHeight": 128, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/s.png -------------------------------------------------------------------------------- /assets/textures/heroslot/s.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "6ee735a0-08d4-458b-94f9-19ad8f2f015d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 66, 11 | "height": 58, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "s": { 15 | "ver": "1.0.4", 16 | "uuid": "fc96cc0f-8916-43a5-9da3-02c0db5d573a", 17 | "rawTextureUuid": "6ee735a0-08d4-458b-94f9-19ad8f2f015d", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -2, 23 | "trimX": 5, 24 | "trimY": 6, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 66, 28 | "rawHeight": 58, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/s_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/s_highlight.png -------------------------------------------------------------------------------- /assets/textures/heroslot/s_highlight.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "42a54bde-d054-4c49-8926-f053090e69c5", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 66, 11 | "height": 58, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "s_highlight": { 15 | "ver": "1.0.4", 16 | "uuid": "ed1f1985-f7d4-4838-915b-8e035b7c806a", 17 | "rawTextureUuid": "42a54bde-d054-4c49-8926-f053090e69c5", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0.5, 22 | "offsetY": -2, 23 | "trimX": 5, 24 | "trimY": 6, 25 | "width": 57, 26 | "height": 50, 27 | "rawWidth": 66, 28 | "rawHeight": 58, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/star_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/star_small.png -------------------------------------------------------------------------------- /assets/textures/heroslot/star_small.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "af3ff951-edef-4c7e-a1dc-7555e060fcd8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 19, 11 | "height": 19, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "star_small": { 15 | "ver": "1.0.4", 16 | "uuid": "dc7eb03c-ce06-4c3c-8ef2-fa2c942b33c0", 17 | "rawTextureUuid": "af3ff951-edef-4c7e-a1dc-7555e060fcd8", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 19, 26 | "height": 19, 27 | "rawWidth": 19, 28 | "rawHeight": 19, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/text_evolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/text_evolve.png -------------------------------------------------------------------------------- /assets/textures/heroslot/text_evolve.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "14222783-36bf-4b44-9fe0-2f65d3e20067", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 75, 11 | "height": 48, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "text_evolve": { 15 | "ver": "1.0.4", 16 | "uuid": "9c5ae1e4-7f6f-4012-b45e-58fd3922d9f0", 17 | "rawTextureUuid": "14222783-36bf-4b44-9fe0-2f65d3e20067", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 75, 26 | "height": 48, 27 | "rawWidth": 75, 28 | "rawHeight": 48, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/text_sell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/text_sell.png -------------------------------------------------------------------------------- /assets/textures/heroslot/text_sell.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "b2bc786b-590b-4831-b321-813112a32099", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 75, 11 | "height": 49, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "text_sell": { 15 | "ver": "1.0.4", 16 | "uuid": "8f1cfc80-9682-448c-a2ff-54351b43bc08", 17 | "rawTextureUuid": "b2bc786b-590b-4831-b321-813112a32099", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 75, 26 | "height": 49, 27 | "rawWidth": 75, 28 | "rawHeight": 49, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/text_upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/text_upgrade.png -------------------------------------------------------------------------------- /assets/textures/heroslot/text_upgrade.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "ce5f383d-be51-45af-b99c-7d753da011da", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 75, 11 | "height": 48, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "text_upgrade": { 15 | "ver": "1.0.4", 16 | "uuid": "82e0bf88-82a4-443e-b717-d7b51c21a6fd", 17 | "rawTextureUuid": "ce5f383d-be51-45af-b99c-7d753da011da", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 75, 26 | "height": 48, 27 | "rawWidth": 75, 28 | "rawHeight": 48, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/title_atk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_atk.png -------------------------------------------------------------------------------- /assets/textures/heroslot/title_atk.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "28a73d65-0999-423a-bc32-7699b0ffd544", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 92, 11 | "height": 44, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "title_atk": { 15 | "ver": "1.0.4", 16 | "uuid": "0cdf7f0c-4888-451d-9ae3-7677ca2cd7a0", 17 | "rawTextureUuid": "28a73d65-0999-423a-bc32-7699b0ffd544", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 92, 26 | "height": 44, 27 | "rawWidth": 92, 28 | "rawHeight": 44, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/title_backpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_backpack.png -------------------------------------------------------------------------------- /assets/textures/heroslot/title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_bg.png -------------------------------------------------------------------------------- /assets/textures/heroslot/title_bg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "c3ad0e02-0f5e-41bc-ac66-7ee11bdd118c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 270, 11 | "height": 94, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "title_bg": { 15 | "ver": "1.0.4", 16 | "uuid": "e06ff6b4-c710-4a46-bb10-f5a32a16b284", 17 | "rawTextureUuid": "c3ad0e02-0f5e-41bc-ac66-7ee11bdd118c", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 270, 26 | "height": 94, 27 | "rawWidth": 270, 28 | "rawHeight": 94, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/title_craft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_craft.png -------------------------------------------------------------------------------- /assets/textures/heroslot/title_craft.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "1b5f90e0-8944-4809-9761-78b8d8372616", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 130, 11 | "height": 48, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "title_craft": { 15 | "ver": "1.0.4", 16 | "uuid": "e785e5ea-181d-4092-a1ba-9ffc32127c2e", 17 | "rawTextureUuid": "1b5f90e0-8944-4809-9761-78b8d8372616", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 130, 26 | "height": 48, 27 | "rawWidth": 130, 28 | "rawHeight": 48, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/title_exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_exp.png -------------------------------------------------------------------------------- /assets/textures/heroslot/title_exp.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "957e0d6c-f1d5-4c15-8097-a23eef816f3b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 40, 11 | "height": 14, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "title_exp": { 15 | "ver": "1.0.4", 16 | "uuid": "94c5dd9b-5274-4c69-9645-c99aa4f77095", 17 | "rawTextureUuid": "957e0d6c-f1d5-4c15-8097-a23eef816f3b", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 40, 26 | "height": 14, 27 | "rawWidth": 40, 28 | "rawHeight": 14, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/title_hero_upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_hero_upgrade.png -------------------------------------------------------------------------------- /assets/textures/heroslot/title_heros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_heros.png -------------------------------------------------------------------------------- /assets/textures/heroslot/title_heros.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "880838a7-9a3f-4a6c-baba-2dbd6a7413b5", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 134, 11 | "height": 49, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "title_heros": { 15 | "ver": "1.0.4", 16 | "uuid": "a575bd69-1d39-4222-82ff-d3e349f22ca0", 17 | "rawTextureUuid": "880838a7-9a3f-4a6c-baba-2dbd6a7413b5", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 134, 26 | "height": 49, 27 | "rawWidth": 134, 28 | "rawHeight": 49, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/heroslot/title_monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_monster.png -------------------------------------------------------------------------------- /assets/textures/heroslot/title_shards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_shards.png -------------------------------------------------------------------------------- /assets/textures/heroslot/title_total_exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/heroslot/title_total_exp.png -------------------------------------------------------------------------------- /assets/textures/home_btns.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "31ef9835-daf8-40a5-9738-7ec210989133", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_backpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_backpack.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_backpack.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "587ed003-dfa7-4091-bc91-ececcee4737d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 83, 11 | "height": 66, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_backpack": { 15 | "ver": "1.0.4", 16 | "uuid": "4b00b186-00a0-497a-aaa0-ac0f7baba7e5", 17 | "rawTextureUuid": "587ed003-dfa7-4091-bc91-ececcee4737d", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 83, 26 | "height": 66, 27 | "rawWidth": 83, 28 | "rawHeight": 66, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_chuzhan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_chuzhan.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_chuzhan.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "b30a989a-7d94-431f-8e3d-3289c1583da8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 79, 11 | "height": 65, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_chuzhan": { 15 | "ver": "1.0.4", 16 | "uuid": "04f79df6-431e-4be9-93a4-72069d5b4131", 17 | "rawTextureUuid": "b30a989a-7d94-431f-8e3d-3289c1583da8", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 79, 26 | "height": 65, 27 | "rawWidth": 79, 28 | "rawHeight": 65, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_friends.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_hecheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_hecheng.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_hecheng.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "cc4843a6-dee6-45c3-9eba-23c189b8cbc4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 65, 11 | "height": 68, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_hecheng": { 15 | "ver": "1.0.4", 16 | "uuid": "5c3aee13-0d28-4ae8-81de-471140cf6a16", 17 | "rawTextureUuid": "cc4843a6-dee6-45c3-9eba-23c189b8cbc4", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 65, 26 | "height": 68, 27 | "rawWidth": 65, 28 | "rawHeight": 68, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_home.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_home.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "2e295c46-f72b-4c99-8a0f-4323671811a3", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 84, 11 | "height": 110, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_home": { 15 | "ver": "1.0.4", 16 | "uuid": "9b6db557-2272-4937-862d-df9a9866fa94", 17 | "rawTextureUuid": "2e295c46-f72b-4c99-8a0f-4323671811a3", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": -2, 22 | "offsetY": -2, 23 | "trimX": 2, 24 | "trimY": 4, 25 | "width": 76, 26 | "height": 106, 27 | "rawWidth": 84, 28 | "rawHeight": 110, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_level.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_level.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "03fb01c1-feb1-4a61-866e-e53e9e332abf", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 92, 11 | "height": 110, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_level": { 15 | "ver": "1.0.4", 16 | "uuid": "e1accdbb-da82-43fc-afac-141fd7a70c18", 17 | "rawTextureUuid": "03fb01c1-feb1-4a61-866e-e53e9e332abf", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": -2.5, 23 | "trimX": 0, 24 | "trimY": 5, 25 | "width": 92, 26 | "height": 105, 27 | "rawWidth": 92, 28 | "rawHeight": 110, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_liuyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_liuyan.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_liuyan.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "4b4a59b1-e1c5-45be-b1e3-506eb82ee07a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 74, 11 | "height": 63, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_liuyan": { 15 | "ver": "1.0.4", 16 | "uuid": "40d2051a-eca9-4ea9-a6e8-4c86b0116cab", 17 | "rawTextureUuid": "4b4a59b1-e1c5-45be-b1e3-506eb82ee07a", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 74, 26 | "height": 63, 27 | "rawWidth": 74, 28 | "rawHeight": 63, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_raid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_raid.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_raid.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "a129992a-64bd-4c45-bf05-e035ed1b6279", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 83, 11 | "height": 110, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_raid": { 15 | "ver": "1.0.4", 16 | "uuid": "5c8d7351-cdbd-4376-9278-52d23319c0eb", 17 | "rawTextureUuid": "a129992a-64bd-4c45-bf05-e035ed1b6279", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 1, 22 | "offsetY": -3, 23 | "trimX": 6, 24 | "trimY": 6, 25 | "width": 73, 26 | "height": 104, 27 | "rawWidth": 83, 28 | "rawHeight": 110, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_renwu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_renwu.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_renwu.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "4fc7ee02-273f-4977-ad47-6ca155bf5305", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 74, 11 | "height": 65, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_renwu": { 15 | "ver": "1.0.4", 16 | "uuid": "2b0142c7-9538-4eec-8605-957d21de23f5", 17 | "rawTextureUuid": "4fc7ee02-273f-4977-ad47-6ca155bf5305", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 74, 26 | "height": 65, 27 | "rawWidth": 74, 28 | "rawHeight": 65, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_rongyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_rongyu.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_rongyu.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "27721328-ed2d-416b-9a66-345012cff4cb", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 83, 11 | "height": 65, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_rongyu": { 15 | "ver": "1.0.4", 16 | "uuid": "2443b94d-47d4-4c2c-be26-aa51ed556c9f", 17 | "rawTextureUuid": "27721328-ed2d-416b-9a66-345012cff4cb", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 83, 26 | "height": 65, 27 | "rawWidth": 83, 28 | "rawHeight": 65, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_setting.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/home_btns/btn_shop.png -------------------------------------------------------------------------------- /assets/textures/home_btns/btn_shop.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "e382d940-eb75-4866-b8d7-e7847c088461", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 87, 11 | "height": 110, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_shop": { 15 | "ver": "1.0.4", 16 | "uuid": "96be1c78-f8a0-4c85-baf1-33cb97eba766", 17 | "rawTextureUuid": "e382d940-eb75-4866-b8d7-e7847c088461", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": -2, 22 | "offsetY": -1, 23 | "trimX": 2, 24 | "trimY": 2, 25 | "width": 79, 26 | "height": 108, 27 | "rawWidth": 87, 28 | "rawHeight": 110, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/icon_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/icon_diamond.png -------------------------------------------------------------------------------- /assets/textures/icon_diamond.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "4718c593-5368-4fa1-bd87-99495e3742a2", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 57, 11 | "height": 53, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "icon_diamond": { 15 | "ver": "1.0.4", 16 | "uuid": "0bceaf2a-25c2-465d-a7e5-b2aac374291e", 17 | "rawTextureUuid": "4718c593-5368-4fa1-bd87-99495e3742a2", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 57, 26 | "height": 53, 27 | "rawWidth": 57, 28 | "rawHeight": 53, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/icon_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/icon_energy.png -------------------------------------------------------------------------------- /assets/textures/icon_energy.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "182470bf-25b8-49f5-896b-08901193eb56", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 55, 11 | "height": 63, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "icon_energy": { 15 | "ver": "1.0.4", 16 | "uuid": "9f3a334c-29a5-46dc-a2ee-0adfdc77e5ce", 17 | "rawTextureUuid": "182470bf-25b8-49f5-896b-08901193eb56", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 55, 26 | "height": 63, 27 | "rawWidth": 55, 28 | "rawHeight": 63, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/icon_fight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/icon_fight.png -------------------------------------------------------------------------------- /assets/textures/icon_fight.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "b1a60b57-c24d-416b-9a62-a0f8073d6db2", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 61, 11 | "height": 59, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "icon_fight": { 15 | "ver": "1.0.4", 16 | "uuid": "eb7080fa-bd8f-41a4-b784-583aa47b124f", 17 | "rawTextureUuid": "b1a60b57-c24d-416b-9a62-a0f8073d6db2", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 61, 26 | "height": 59, 27 | "rawWidth": 61, 28 | "rawHeight": 59, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/icon_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/icon_gold.png -------------------------------------------------------------------------------- /assets/textures/icon_gold.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "997adfc1-de9e-4182-b64e-e427c4cddb9f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 59, 11 | "height": 59, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "icon_gold": { 15 | "ver": "1.0.4", 16 | "uuid": "625ca6c8-761a-43ae-836e-9dd5a81297e7", 17 | "rawTextureUuid": "997adfc1-de9e-4182-b64e-e427c4cddb9f", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 59, 26 | "height": 59, 27 | "rawWidth": 59, 28 | "rawHeight": 59, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/icon_rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/icon_rank.png -------------------------------------------------------------------------------- /assets/textures/icon_rank.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "a4be0ba5-15cc-42ed-a7f0-83301ee3bceb", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 68, 11 | "height": 57, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "icon_rank": { 15 | "ver": "1.0.4", 16 | "uuid": "a976c2a5-2d3e-4a89-a513-c63280e7cc1a", 17 | "rawTextureUuid": "a4be0ba5-15cc-42ed-a7f0-83301ee3bceb", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 68, 26 | "height": 57, 27 | "rawWidth": 68, 28 | "rawHeight": 57, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/portrait.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "2fd221c0-1c1f-4bca-8df9-9507e1879c37", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "73805c58-2264-4e5c-a77a-53b1bb5c20fd", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/boss.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "b7db740e-3a9a-4626-bb5d-4e03b3f826ca", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/boss/ic_generalshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/boss/ic_generalshark.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/boss/ic_hugeshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/boss/ic_hugeshark.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/boss/ic_hydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/boss/ic_hydra.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/boss/ic_shydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/boss/ic_shydra.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/hero.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "fcd3672a-4cff-42a5-80ed-0651c3132ea2", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/hero/ic_captain_jack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/hero/ic_captain_jack.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/hero/ic_drakan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/hero/ic_drakan.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/hero/ic_mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/hero/ic_mermaid.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/hero/ic_mermaidqueen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/hero/ic_mermaidqueen.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/hero/ic_oceaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/hero/ic_oceaking.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/hero/ic_oceantriton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/hero/ic_oceantriton.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "bf7d88b4-a637-4308-857a-d5db71fbbeb5", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_塞壬女妖.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_塞壬女妖.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_大螃蟹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_大螃蟹.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_机械炮台龟.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_机械炮台龟.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_机械触手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_机械触手.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_棕色大螃蟹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_棕色大螃蟹.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_棕色大螃蟹2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_棕色大螃蟹2.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_炮台龟.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_炮台龟.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_红炮台龟.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_红炮台龟.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_红色塞壬女妖.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_红色塞壬女妖.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_红色大螃蟹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_红色大螃蟹.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_红色触手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_红色触手.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_绿色大螃蟹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_绿色大螃蟹.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_绿色触手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_绿色触手.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_蓝炮台龟.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_蓝炮台龟.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_蓝色触手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_蓝色触手.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_触手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_触手.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_黑色塞壬女妖.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_黑色塞壬女妖.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_黑色大螃蟹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_黑色大螃蟹.png -------------------------------------------------------------------------------- /assets/textures/portrait/atlantis/monster/ic_黑色触手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/atlantis/monster/ic_黑色触手.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "c6d71e8f-dc2c-40c2-b49f-ffb762f4fefe", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/boss.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "ff489048-48e0-4e93-b5a6-3ab8c1ae9e2d", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/boss/ic_scorpion_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/boss/ic_scorpion_king.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/boss/ic_shadomummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/boss/ic_shadomummy.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/boss/ic_shadopharaoh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/boss/ic_shadopharaoh.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/boss/ic_vinegarking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/boss/ic_vinegarking.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/hero.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "1e7fa01e-f327-4016-a05a-ed4ee92718be", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/hero/ic_cat_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/hero/ic_cat_queen.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/hero/ic_osiris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/hero/ic_osiris.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/hero/ic_pharaoh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/hero/ic_pharaoh.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/hero/ic_spharaoh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/hero/ic_spharaoh.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/hero/ic_sthoth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/hero/ic_sthoth.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/hero/ic_thoth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/hero/ic_thoth.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "6cb6c237-271c-4347-a7e2-a19ba010daf8", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_埃及毒蛇红色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_埃及毒蛇红色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_埃及毒蛇绿色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_埃及毒蛇绿色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_埃及毒蛇蓝色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_埃及毒蛇蓝色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_埃及毒蛇黄色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_埃及毒蛇黄色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_弓箭手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_弓箭手.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_弓箭手变色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_弓箭手变色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_木乃伊.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_木乃伊.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_木乃伊变色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_木乃伊变色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_棺材.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_棺材.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_棺材变色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_棺材变色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_甲壳虫红.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_甲壳虫红.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_甲壳虫绿.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_甲壳虫绿.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_甲壳虫蓝.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_甲壳虫蓝.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_甲壳虫黄.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_甲壳虫黄.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_长矛兵.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_长矛兵.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_长矛兵白色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_长矛兵白色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_长矛兵蓝色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_长矛兵蓝色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_阿努比斯.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_阿努比斯.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_阿努比斯绿色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_阿努比斯绿色.png -------------------------------------------------------------------------------- /assets/textures/portrait/egypt/monster/ic_阿努比斯蓝色.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/egypt/monster/ic_阿努比斯蓝色.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "6dbfd9f5-b5ed-4026-b8bb-23330fd09095", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/indi/boss.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "fc9c4c14-57a5-49b2-bd19-33004a071139", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/indi/boss/ic_bloodwind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/boss/ic_bloodwind.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/boss/ic_cipacret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/boss/ic_cipacret.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/boss/ic_sbloodwind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/boss/ic_sbloodwind.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/boss/ic_scipacret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/boss/ic_scipacret.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/hero.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "83ff6eda-9bff-46ff-b596-6b796d304fb4", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/indi/hero/ic_huchcy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/hero/ic_huchcy.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/hero/ic_jones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/hero/ic_jones.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/hero/ic_stlaloc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/hero/ic_stlaloc.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/hero/ic_supejones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/hero/ic_supejones.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/hero/ic_tizerc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/hero/ic_tizerc.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/hero/ic_tlaloc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/hero/ic_tlaloc.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "c32ff1b1-59bc-4384-b26b-de27019ce6f9", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_土著战士.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_土著战士.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_巨型蜘蛛.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_巨型蜘蛛.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_棕色巨型蜘蛛.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_棕色巨型蜘蛛.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_绿色巨型蜘蛛.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_绿色巨型蜘蛛.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_绿色巫师.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_绿色巫师.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_蓝色巫师.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_蓝色巫师.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_蛇人.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_蛇人.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_蛇人1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_蛇人1.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_蛇人2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_蛇人2.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_蛇人3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_蛇人3.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_黄金巫师.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_黄金巫师.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_黑色巨型蜘蛛.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_黑色巨型蜘蛛.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/ic_黑色巫师.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/ic_黑色巫师.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "05c9cb4f-0d9b-4a0f-ba59-604fc1c4a55f", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/cannonturtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/cannonturtle.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/chighost_armour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/chighost_armour.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/chighost_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/chighost_blue.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/chighost_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/chighost_green.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/chighost_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/chighost_purple.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/chighost_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/chighost_red.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/indiwarrio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/indiwarrio.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_bird.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_brown.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_green.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_knife.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_purple.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/indiwarrior_red.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/murloc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/murloc.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/murloc_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/murloc_black.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/murloc_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/murloc_blue.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/murloc_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/murloc_gray.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/murloc_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/murloc_green.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/murloc_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/murloc_red.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/murloc_sred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/murloc_sred.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/murloc_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/murloc_white.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/scannonturtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/scannonturtle.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/snakeman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/snakeman.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/snakeman_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/snakeman_blue.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/snakeman_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/snakeman_red.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/snakeman_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/snakeman_yellow.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/sumpitaner_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/sumpitaner_blue.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/sumpitaner_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/sumpitaner_green.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/sumpitaner_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/sumpitaner_red.png -------------------------------------------------------------------------------- /assets/textures/portrait/indi/monster/小怪物头像/sumpitaner_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/indi/monster/小怪物头像/sumpitaner_yellow.png -------------------------------------------------------------------------------- /assets/textures/portrait/init.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "507dd030-cdb3-46e1-8555-01993a637942", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/init/ic_hilf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/init/ic_hilf.png -------------------------------------------------------------------------------- /assets/textures/portrait/init/ic_norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/init/ic_norm.png -------------------------------------------------------------------------------- /assets/textures/portrait/init/ic_salamander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/init/ic_salamander.png -------------------------------------------------------------------------------- /assets/textures/portrait/init/ic_shilf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/init/ic_shilf.png -------------------------------------------------------------------------------- /assets/textures/portrait/init/ic_snrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/init/ic_snrom.png -------------------------------------------------------------------------------- /assets/textures/portrait/init/ic_ssalamander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/init/ic_ssalamander.png -------------------------------------------------------------------------------- /assets/textures/portrait/init/ic_sundine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/init/ic_sundine.png -------------------------------------------------------------------------------- /assets/textures/portrait/init/ic_undine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/init/ic_undine.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "4234457a-edc1-4c85-aff7-abfb2b74180a", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/boss.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "abcc3f3b-2596-4cf2-a1d8-9429bbbe4e98", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/boss/ic_chterminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/boss/ic_chterminator.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/boss/ic_ninetales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/boss/ic_ninetales.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/boss/ic_schterminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/boss/ic_schterminator.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/boss/ic_sninetales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/boss/ic_sninetales.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "87dec5c9-20a5-4a97-a737-0e7aa520cf6f", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/hero/4.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/4.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "125386c6-cc44-4610-8826-92bf97743a41", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 150, 11 | "height": 150, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "4": { 15 | "ver": "1.0.4", 16 | "uuid": "40e2e435-ba46-4590-ab21-f9854941c0ce", 17 | "rawTextureUuid": "125386c6-cc44-4610-8826-92bf97743a41", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 6, 22 | "offsetY": 8, 23 | "trimX": 35, 24 | "trimY": 6, 25 | "width": 92, 26 | "height": 122, 27 | "rawWidth": 150, 28 | "rawHeight": 150, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/hero/5.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/5.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "abd7a017-e7e6-42f8-a71e-fb8e80ea4556", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 150, 11 | "height": 150, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "5": { 15 | "ver": "1.0.4", 16 | "uuid": "96d4a771-6804-4fc4-94c6-96de30b568de", 17 | "rawTextureUuid": "abd7a017-e7e6-42f8-a71e-fb8e80ea4556", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 1, 22 | "offsetY": 7, 23 | "trimX": 32, 24 | "trimY": 7, 25 | "width": 88, 26 | "height": 122, 27 | "rawWidth": 150, 28 | "rawHeight": 150, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/hero/6.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/6.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "a63ffc16-5eff-44e0-b5c1-0a600ab9ed3d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 150, 11 | "height": 150, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "6": { 15 | "ver": "1.0.4", 16 | "uuid": "cbbb4105-a585-4915-9c0a-90216065e7d1", 17 | "rawTextureUuid": "a63ffc16-5eff-44e0-b5c1-0a600ab9ed3d", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 6.5, 22 | "offsetY": 6, 23 | "trimX": 32, 24 | "trimY": 9, 25 | "width": 99, 26 | "height": 120, 27 | "rawWidth": 150, 28 | "rawHeight": 150, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/ic_jingke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/hero/ic_jingke.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/ic_xiangyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/hero/ic_xiangyu.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/ic_yingzheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/hero/ic_yingzheng.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/hero/ic_yuji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/hero/ic_yuji.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "5b618d2b-db5f-4d47-beb7-f1230073306b", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/17.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/17.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "a6928338-f5c6-4737-b6bd-0e71616b5c77", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 150, 11 | "height": 150, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "17": { 15 | "ver": "1.0.4", 16 | "uuid": "720c1394-98af-46ea-9d8c-b09432453b44", 17 | "rawTextureUuid": "a6928338-f5c6-4737-b6bd-0e71616b5c77", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 3, 22 | "offsetY": 2, 23 | "trimX": 41, 24 | "trimY": 23, 25 | "width": 74, 26 | "height": 100, 27 | "rawWidth": 150, 28 | "rawHeight": 150, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/18.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/18.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "8505a290-2050-4292-bde0-c64037765e21", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 150, 11 | "height": 150, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "18": { 15 | "ver": "1.0.4", 16 | "uuid": "fa8481ce-2257-4c37-b527-d8c5a4641c22", 17 | "rawTextureUuid": "8505a290-2050-4292-bde0-c64037765e21", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 3, 22 | "offsetY": 2, 23 | "trimX": 41, 24 | "trimY": 23, 25 | "width": 74, 26 | "height": 100, 27 | "rawWidth": 150, 28 | "rawHeight": 150, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/19.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/19.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "0deb361c-04fb-42ec-bbb9-de65ccb66cba", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 150, 11 | "height": 150, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "19": { 15 | "ver": "1.0.4", 16 | "uuid": "2f718ebf-0152-4f2f-8272-a559542b0db0", 17 | "rawTextureUuid": "0deb361c-04fb-42ec-bbb9-de65ccb66cba", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 3, 22 | "offsetY": 2, 23 | "trimX": 41, 24 | "trimY": 23, 25 | "width": 74, 26 | "height": 100, 27 | "rawWidth": 150, 28 | "rawHeight": 150, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/20.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/20.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "29226ebe-ef79-4d1a-8c86-fa2af419bada", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 150, 11 | "height": 150, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "20": { 15 | "ver": "1.0.4", 16 | "uuid": "123f48cc-e812-4a8f-bc64-9f3ac61bcbd1", 17 | "rawTextureUuid": "29226ebe-ef79-4d1a-8c86-fa2af419bada", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 3, 22 | "offsetY": 2, 23 | "trimX": 41, 24 | "trimY": 23, 25 | "width": 74, 26 | "height": 100, 27 | "rawWidth": 150, 28 | "rawHeight": 150, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/21.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/21.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "d630bee3-6a76-400b-864d-0832423ab0b2", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 150, 11 | "height": 150, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "21": { 15 | "ver": "1.0.4", 16 | "uuid": "97abaa59-3dd2-4a23-90eb-57e5e82e1b5f", 17 | "rawTextureUuid": "d630bee3-6a76-400b-864d-0832423ab0b2", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 3, 22 | "offsetY": 2, 23 | "trimX": 41, 24 | "trimY": 23, 25 | "width": 74, 26 | "height": 100, 27 | "rawWidth": 150, 28 | "rawHeight": 150, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/22.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/23.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/24.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/25.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/26.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/27.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/28.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/29.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/30.png -------------------------------------------------------------------------------- /assets/textures/portrait/qin/monster/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/portrait/qin/monster/31.png -------------------------------------------------------------------------------- /assets/textures/shop.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "79958760-72ce-4a74-9321-3aec40b5117d", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/textures/shop/banner_goumai_egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/banner_goumai_egypt.png -------------------------------------------------------------------------------- /assets/textures/shop/banner_goumai_ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/banner_goumai_ocean.png -------------------------------------------------------------------------------- /assets/textures/shop/banner_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/banner_gradient.png -------------------------------------------------------------------------------- /assets/textures/shop/banner_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/banner_green.png -------------------------------------------------------------------------------- /assets/textures/shop/banner_red_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/banner_red_long.png -------------------------------------------------------------------------------- /assets/textures/shop/banner_subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/banner_subscribe.png -------------------------------------------------------------------------------- /assets/textures/shop/bg_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/bg_shop.png -------------------------------------------------------------------------------- /assets/textures/shop/bg_shop.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "300b1f69-c2cf-40a8-a15c-6b1f7b1d67f0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 640, 11 | "height": 960, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "bg_shop": { 15 | "ver": "1.0.4", 16 | "uuid": "a8086aac-e73d-4917-a158-2df2f40cb063", 17 | "rawTextureUuid": "300b1f69-c2cf-40a8-a15c-6b1f7b1d67f0", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 640, 26 | "height": 960, 27 | "rawWidth": 640, 28 | "rawHeight": 960, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/bot_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/bot_frame.png -------------------------------------------------------------------------------- /assets/textures/shop/bot_frame.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "d87be67e-395c-47ac-bd29-0bff0b6e4fc8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 622, 11 | "height": 217, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "bot_frame": { 15 | "ver": "1.0.4", 16 | "uuid": "7a35ed81-16cb-41b9-b0ca-ecb53f6056e6", 17 | "rawTextureUuid": "d87be67e-395c-47ac-bd29-0bff0b6e4fc8", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 622, 26 | "height": 217, 27 | "rawWidth": 622, 28 | "rawHeight": 217, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/btn_green_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/btn_green_diamond.png -------------------------------------------------------------------------------- /assets/textures/shop/btn_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/btn_purple.png -------------------------------------------------------------------------------- /assets/textures/shop/btn_purple.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "c01311ba-6c23-47bf-b052-729bebe3a42b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 200, 11 | "height": 60, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_purple": { 15 | "ver": "1.0.4", 16 | "uuid": "8fda818a-2b51-44fc-adf5-b225fe5bf923", 17 | "rawTextureUuid": "c01311ba-6c23-47bf-b052-729bebe3a42b", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 200, 26 | "height": 60, 27 | "rawWidth": 200, 28 | "rawHeight": 60, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/btn_purple2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/btn_purple2.png -------------------------------------------------------------------------------- /assets/textures/shop/btn_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/btn_red.png -------------------------------------------------------------------------------- /assets/textures/shop/btn_red.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "389c6364-70f1-4c5c-8f5f-26f359f5bcf7", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 154, 11 | "height": 60, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_red": { 15 | "ver": "1.0.4", 16 | "uuid": "54af2dc2-7da5-41d9-ac93-d9b9667af16c", 17 | "rawTextureUuid": "389c6364-70f1-4c5c-8f5f-26f359f5bcf7", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 154, 26 | "height": 60, 27 | "rawWidth": 154, 28 | "rawHeight": 60, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/btn_sm_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/btn_sm_blue.png -------------------------------------------------------------------------------- /assets/textures/shop/btn_sm_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/btn_sm_red.png -------------------------------------------------------------------------------- /assets/textures/shop/btn_sm_red.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "767c0341-f58d-4aee-b24f-8e4f1620ba44", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 130, 11 | "height": 61, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "btn_sm_red": { 15 | "ver": "1.0.4", 16 | "uuid": "7867b48d-2a60-4d3d-984b-728e97b7ef71", 17 | "rawTextureUuid": "767c0341-f58d-4aee-b24f-8e4f1620ba44", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 130, 26 | "height": 61, 27 | "rawWidth": 130, 28 | "rawHeight": 61, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/icon_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/icon_crystal.png -------------------------------------------------------------------------------- /assets/textures/shop/icon_crystal.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "fbb5cf79-0ce6-4a03-9381-2f6510574155", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 36, 11 | "height": 36, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "icon_crystal": { 15 | "ver": "1.0.4", 16 | "uuid": "3712f036-82b2-445d-9861-15bf0aecdaf2", 17 | "rawTextureUuid": "fbb5cf79-0ce6-4a03-9381-2f6510574155", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 36, 26 | "height": 36, 27 | "rawWidth": 36, 28 | "rawHeight": 36, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/icon_ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/icon_ticket.png -------------------------------------------------------------------------------- /assets/textures/shop/icon_ticket.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "a8fec483-0424-4c4d-8b95-288c14808e3e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 63, 11 | "height": 53, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "icon_ticket": { 15 | "ver": "1.0.4", 16 | "uuid": "6df5d7d1-2c88-4e22-be24-9f167f24b53b", 17 | "rawTextureUuid": "a8fec483-0424-4c4d-8b95-288c14808e3e", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 63, 26 | "height": 53, 27 | "rawWidth": 63, 28 | "rawHeight": 53, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/item1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/item1.png -------------------------------------------------------------------------------- /assets/textures/shop/item1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "6b1c93db-2320-4f9c-a3ee-3a67bb88f161", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 167, 11 | "height": 119, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "item1": { 15 | "ver": "1.0.4", 16 | "uuid": "443551d2-e529-4ba3-b91c-f683c309c824", 17 | "rawTextureUuid": "6b1c93db-2320-4f9c-a3ee-3a67bb88f161", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 167, 26 | "height": 119, 27 | "rawWidth": 167, 28 | "rawHeight": 119, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/item2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/item2.png -------------------------------------------------------------------------------- /assets/textures/shop/item2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "2ccbf417-2d62-4a1d-9107-630f5badbcb6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 167, 11 | "height": 119, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "item2": { 15 | "ver": "1.0.4", 16 | "uuid": "4f561d5a-5e35-4ed1-bef4-ae5e882b6f7c", 17 | "rawTextureUuid": "2ccbf417-2d62-4a1d-9107-630f5badbcb6", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 167, 26 | "height": 119, 27 | "rawWidth": 167, 28 | "rawHeight": 119, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/item3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/item3.png -------------------------------------------------------------------------------- /assets/textures/shop/item3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "4f4e03f1-31f0-4f93-8540-c0c3cbb318c5", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 167, 11 | "height": 119, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "item3": { 15 | "ver": "1.0.4", 16 | "uuid": "65eec88c-daaf-4a5a-a446-67ccb7b64017", 17 | "rawTextureUuid": "4f4e03f1-31f0-4f93-8540-c0c3cbb318c5", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 167, 26 | "height": 119, 27 | "rawWidth": 167, 28 | "rawHeight": 119, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/shop_chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/shop_chain.png -------------------------------------------------------------------------------- /assets/textures/shop/shop_chain.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "84122a76-903d-4578-824a-28ac0cd2460a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 33, 11 | "height": 398, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "shop_chain": { 15 | "ver": "1.0.4", 16 | "uuid": "8ab49ba0-04d7-4566-bbd6-5560bda197be", 17 | "rawTextureUuid": "84122a76-903d-4578-824a-28ac0cd2460a", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 33, 26 | "height": 398, 27 | "rawWidth": 33, 28 | "rawHeight": 398, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/shop_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/shop_figure.png -------------------------------------------------------------------------------- /assets/textures/shop/shop_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/shop_title_bg.png -------------------------------------------------------------------------------- /assets/textures/shop/text_be_vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_be_vip.png -------------------------------------------------------------------------------- /assets/textures/shop/text_buchongjingli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_buchongjingli.png -------------------------------------------------------------------------------- /assets/textures/shop/text_buchongtili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_buchongtili.png -------------------------------------------------------------------------------- /assets/textures/shop/text_buy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_buy1.png -------------------------------------------------------------------------------- /assets/textures/shop/text_buy1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "36b83f6d-2106-4b6a-b37b-484ca0552e94", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 123, 11 | "height": 48, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "text_buy1": { 15 | "ver": "1.0.4", 16 | "uuid": "4ffda9d3-24a8-4561-a8c5-a1e8c1f01c16", 17 | "rawTextureUuid": "36b83f6d-2106-4b6a-b37b-484ca0552e94", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 123, 26 | "height": 48, 27 | "rawWidth": 123, 28 | "rawHeight": 48, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/text_buy10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_buy10.png -------------------------------------------------------------------------------- /assets/textures/shop/text_buy10.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "4364c054-c8ff-4413-96a1-89f6cf362a6a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 132, 11 | "height": 48, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "text_buy10": { 15 | "ver": "1.0.4", 16 | "uuid": "9973691c-6783-4630-b416-654eb4bf9c5a", 17 | "rawTextureUuid": "4364c054-c8ff-4413-96a1-89f6cf362a6a", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 132, 26 | "height": 48, 27 | "rawWidth": 132, 28 | "rawHeight": 48, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/text_chongzhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_chongzhi.png -------------------------------------------------------------------------------- /assets/textures/shop/text_diamond_gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_diamond_gift.png -------------------------------------------------------------------------------- /assets/textures/shop/text_duihuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_duihuan.png -------------------------------------------------------------------------------- /assets/textures/shop/text_duihuan.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "4e7d173c-116d-4741-a892-eaed6ee48548", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 67, 11 | "height": 28, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "text_duihuan": { 15 | "ver": "1.0.4", 16 | "uuid": "93684571-35df-4bc8-ba97-a3e333591b99", 17 | "rawTextureUuid": "4e7d173c-116d-4741-a892-eaed6ee48548", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 67, 26 | "height": 28, 27 | "rawWidth": 67, 28 | "rawHeight": 28, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/text_goumai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_goumai.png -------------------------------------------------------------------------------- /assets/textures/shop/text_kuochong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_kuochong.png -------------------------------------------------------------------------------- /assets/textures/shop/text_sm_chongzhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_sm_chongzhi.png -------------------------------------------------------------------------------- /assets/textures/shop/text_sm_goumai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_sm_goumai.png -------------------------------------------------------------------------------- /assets/textures/shop/text_subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_subscribe.png -------------------------------------------------------------------------------- /assets/textures/shop/text_title_chongzhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_title_chongzhi.png -------------------------------------------------------------------------------- /assets/textures/shop/text_title_goumai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/text_title_goumai.png -------------------------------------------------------------------------------- /assets/textures/shop/title_vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/title_vip.png -------------------------------------------------------------------------------- /assets/textures/shop/title_vip.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "21da35a1-af78-44c6-936a-71939fc44177", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 51, 11 | "height": 26, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "title_vip": { 15 | "ver": "1.0.4", 16 | "uuid": "e35489d9-ecac-4d0a-aedc-afbbe9c43382", 17 | "rawTextureUuid": "21da35a1-af78-44c6-936a-71939fc44177", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 51, 26 | "height": 26, 27 | "rawWidth": 51, 28 | "rawHeight": 26, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/shop/v_progressbar_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/v_progressbar_bar.png -------------------------------------------------------------------------------- /assets/textures/shop/v_progressbar_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/shop/v_progressbar_frame.png -------------------------------------------------------------------------------- /assets/textures/singleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/singleColor.png -------------------------------------------------------------------------------- /assets/textures/singleColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "8d1e3998-ea38-4133-b609-0f5f4147a600", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 2, 11 | "height": 2, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "singleColor": { 15 | "ver": "1.0.4", 16 | "uuid": "531d0996-2be6-40f0-ada8-66194bccfa0f", 17 | "rawTextureUuid": "8d1e3998-ea38-4133-b609-0f5f4147a600", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 2, 26 | "height": 2, 27 | "rawWidth": 2, 28 | "rawHeight": 2, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/timer_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/timer_bar.png -------------------------------------------------------------------------------- /assets/textures/timer_bar.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "4ac85aea-60d8-4f78-9b30-6b8c627f13b9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 194, 11 | "height": 10, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "timer_bar": { 15 | "ver": "1.0.4", 16 | "uuid": "72216279-94ee-4d39-912d-dbd00ec7f3af", 17 | "rawTextureUuid": "4ac85aea-60d8-4f78-9b30-6b8c627f13b9", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 194, 26 | "height": 10, 27 | "rawWidth": 194, 28 | "rawHeight": 10, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 11, 32 | "borderRight": 9, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/timer_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/timer_slot.png -------------------------------------------------------------------------------- /assets/textures/timer_slot.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "8241bc51-cd62-498f-89fb-9aa26c3ec321", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 225, 11 | "height": 13, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "timer_slot": { 15 | "ver": "1.0.4", 16 | "uuid": "220f1c14-5b58-428c-9c75-84c113497e65", 17 | "rawTextureUuid": "8241bc51-cd62-498f-89fb-9aa26c3ec321", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 225, 26 | "height": 13, 27 | "rawWidth": 225, 28 | "rawHeight": 13, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 14, 32 | "borderRight": 12, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/txt_beibao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/txt_beibao.png -------------------------------------------------------------------------------- /assets/textures/txt_beibao.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "a7609cf2-2718-402a-850e-1f882dd21903", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 56, 11 | "height": 35, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "txt_beibao": { 15 | "ver": "1.0.4", 16 | "uuid": "afc3c4e7-b6ea-4333-8813-6dffafd2f49c", 17 | "rawTextureUuid": "a7609cf2-2718-402a-850e-1f882dd21903", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 56, 26 | "height": 35, 27 | "rawWidth": 56, 28 | "rawHeight": 35, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/txt_chuzhan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/txt_chuzhan.png -------------------------------------------------------------------------------- /assets/textures/txt_chuzhan.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "af48b30b-0a6c-4117-9a19-46979c28982a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 57, 11 | "height": 35, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "txt_chuzhan": { 15 | "ver": "1.0.4", 16 | "uuid": "a8f8a128-0ad6-41b5-9ef6-bbe74b6544e6", 17 | "rawTextureUuid": "af48b30b-0a6c-4117-9a19-46979c28982a", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 57, 26 | "height": 35, 27 | "rawWidth": 57, 28 | "rawHeight": 35, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/txt_hecheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/txt_hecheng.png -------------------------------------------------------------------------------- /assets/textures/txt_hecheng.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "8f182ff8-ecc0-4ab4-a6ee-f35ee9ae0870", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 58, 11 | "height": 36, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "txt_hecheng": { 15 | "ver": "1.0.4", 16 | "uuid": "448c3ad0-5514-4e66-bd75-2d4e3dc06e01", 17 | "rawTextureUuid": "8f182ff8-ecc0-4ab4-a6ee-f35ee9ae0870", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 58, 26 | "height": 36, 27 | "rawWidth": 58, 28 | "rawHeight": 36, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/txt_liuyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/txt_liuyan.png -------------------------------------------------------------------------------- /assets/textures/txt_liuyan.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "f4f34005-226d-41fd-8f6c-9fcb3734f53d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 56, 11 | "height": 35, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "txt_liuyan": { 15 | "ver": "1.0.4", 16 | "uuid": "4a62da2e-4e16-42e1-b03d-df4e853ffb1b", 17 | "rawTextureUuid": "f4f34005-226d-41fd-8f6c-9fcb3734f53d", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 56, 26 | "height": 35, 27 | "rawWidth": 56, 28 | "rawHeight": 35, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/txt_renwu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/txt_renwu.png -------------------------------------------------------------------------------- /assets/textures/txt_renwu.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "3b6a0bf5-4c05-457e-9928-702e3e85d0b6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 57, 11 | "height": 35, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "txt_renwu": { 15 | "ver": "1.0.4", 16 | "uuid": "703e2bce-26de-4392-8ea0-02ffce512a47", 17 | "rawTextureUuid": "3b6a0bf5-4c05-457e-9928-702e3e85d0b6", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 57, 26 | "height": 35, 27 | "rawWidth": 57, 28 | "rawHeight": 35, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /assets/textures/txt_rongyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/assets/textures/txt_rongyu.png -------------------------------------------------------------------------------- /assets/textures/txt_rongyu.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.4", 3 | "uuid": "f1c132d7-af62-423a-ae57-d0b889d98159", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "genMipmaps": false, 9 | "packable": true, 10 | "width": 58, 11 | "height": 35, 12 | "platformSettings": {}, 13 | "subMetas": { 14 | "txt_rongyu": { 15 | "ver": "1.0.4", 16 | "uuid": "b9c0dd34-c584-4e62-84b1-0fd7095aa09d", 17 | "rawTextureUuid": "f1c132d7-af62-423a-ae57-d0b889d98159", 18 | "trimType": "auto", 19 | "trimThreshold": 1, 20 | "rotated": false, 21 | "offsetX": 0, 22 | "offsetY": 0, 23 | "trimX": 0, 24 | "trimY": 0, 25 | "width": 58, 26 | "height": 35, 27 | "rawWidth": 58, 28 | "rawHeight": 35, 29 | "borderTop": 0, 30 | "borderBottom": 0, 31 | "borderLeft": 0, 32 | "borderRight": 0, 33 | "subMetas": {} 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /creator-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/creator-star.png -------------------------------------------------------------------------------- /gitchat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnZhang2015/GodGuide/01b5041c255e0ea8dc5cb34ee63f4a4e4c3b344b/gitchat.jpg -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs", 5 | "experimentalDecorators": true 6 | }, 7 | "exclude": [ 8 | "node_modules", 9 | ".vscode", 10 | "library", 11 | "local", 12 | "settings", 13 | "temp" 14 | ] 15 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "demo-ui", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/cocos-creator/demo-ui.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/cocos-creator/demo-ui/issues" 17 | }, 18 | "homepage": "https://github.com/cocos-creator/demo-ui#readme", 19 | "dependencies": { 20 | "async": "^3.1.0", 21 | "babelify": "^10.0.0", 22 | "lodash": "^4.17.11", 23 | "shelljs": "^0.8.3" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine": "cocos2d-html5", 3 | "packages": "packages", 4 | "version": "2.3.2", 5 | "id": "c0a068a0-177e-4606-9f96-a83b968f95ed" 6 | } -------------------------------------------------------------------------------- /settings/builder.panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "excludeScenes": [], 3 | "packageName": "org.cocos2d.demo-ui", 4 | "platform": "web-mobile", 5 | "startScene": "de6d47e5-011f-4c10-a385-1cd318777662", 6 | "startSceneUuid": "de6d47e5-011f-4c10-a385-1cd318777662", 7 | "title": "demo-ui" 8 | } --------------------------------------------------------------------------------