├── DogeUI_v1.0.0 ├── manifest.json ├── pack_icon.png ├── sounds │ ├── doge │ │ ├── title.ogg │ │ └── title_v1.ogg │ ├── music_definitions.json │ ├── random │ │ └── click.fsb │ └── sound_definitions.json ├── textures │ ├── menu │ │ ├── 01.png │ │ ├── 01_pressed.png │ │ ├── 02.png │ │ ├── 02_pressed.png │ │ ├── 03.png │ │ ├── 03_pressed.png │ │ ├── 04.png │ │ ├── 04_pressed.png │ │ ├── 05.png │ │ ├── 05_pressed.png │ │ ├── 06.png │ │ ├── 06_pressed.png │ │ ├── 07.png │ │ ├── 07_pressed.png │ │ ├── 08.png │ │ ├── 08_pressed.png │ │ ├── ad │ │ │ └── README.md │ │ ├── ad_border.png │ │ ├── ad_border_pressed.png │ │ ├── bg.png │ │ ├── camera.png │ │ ├── camera_pressed.png │ │ ├── exit.png │ │ ├── exit_pressed.png │ │ ├── info.png │ │ ├── info_pressed.png │ │ ├── message_board.png │ │ ├── message_board_pressed.png │ │ ├── message_form_body.png │ │ ├── message_form_button1.png │ │ ├── message_form_button1_pressed.png │ │ ├── message_form_button2.png │ │ └── message_form_button2_pressed.png │ ├── startscreen │ │ ├── black.png │ │ ├── title_bottom.png │ │ ├── title_bottom_old.png │ │ ├── title_center.png │ │ └── white.png │ └── title │ │ └── regions │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png └── ui │ ├── # DOCS │ ├── README.md │ ├── _global_variables.md │ ├── hud_screen.md │ ├── menu │ │ ├── README.md │ │ ├── ad.md │ │ ├── camera.md │ │ ├── doge_common.md │ │ ├── index.md │ │ └── main.md │ ├── server_form.md │ └── title │ │ └── region.md │ ├── _global_variables.json │ ├── _ui_defs.json │ ├── hud_screen.json │ ├── informationbar │ └── main.json │ ├── menu │ ├── ad.json │ ├── camera.json │ ├── doge_common.json │ ├── doge_message_form.json │ ├── index.json │ ├── main.json │ └── text.json │ ├── pause_screen.json │ ├── popup_dialog.json │ ├── progress_screen.json │ ├── scoreboards.json │ ├── server_form.json │ ├── startscreen │ └── doge_title.json │ └── title │ └── region.json ├── LICENSE ├── LongForm-Main.jpg ├── MessageForm.jpg ├── README.md ├── deploy.sh ├── manifest.json ├── mods.png ├── pack_icon.png ├── sounds ├── doge │ ├── title.ogg │ └── title_v1.ogg ├── music_definitions.json ├── random │ └── click.fsb └── sound_definitions.json ├── textures ├── menu │ ├── 01.png │ ├── 01_pressed.png │ ├── 02.png │ ├── 02_pressed.png │ ├── 03.png │ ├── 03_pressed.png │ ├── 04.png │ ├── 04_pressed.png │ ├── 05.png │ ├── 05_pressed.png │ ├── 06.png │ ├── 06_pressed.png │ ├── 07.png │ ├── 07_pressed.png │ ├── 08.png │ ├── 08_pressed.png │ ├── ad │ │ └── README.md │ ├── ad_border.png │ ├── ad_border_pressed.png │ ├── bg.png │ ├── camera.png │ ├── camera_pressed.png │ ├── exit.png │ ├── exit_pressed.png │ ├── info.png │ ├── info_pressed.png │ ├── message_board.png │ └── message_board_pressed.png ├── startscreen │ ├── black.png │ ├── title_bottom.png │ ├── title_bottom_old.png │ ├── title_center.png │ └── white.png └── title │ └── regions │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png └── ui ├── # DOCS ├── README.md ├── _global_variables.md ├── hud_screen.md ├── menu │ ├── README.md │ ├── ad.md │ ├── camera.md │ ├── doge_common.md │ ├── index.md │ └── main.md ├── pause_screen.md ├── scoreboards.md ├── server_form.md └── title │ └── region.md ├── _global_variables.json ├── _ui_defs.json ├── hud_screen.json ├── menu ├── ad.json ├── camera.json ├── doge_common.json ├── index.json ├── main.json └── text.json ├── pause_screen.json ├── progress_screen.json ├── scoreboards.json ├── server_form.json ├── startscreen └── doge_title.json └── title └── region.json /DogeUI_v1.0.0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/manifest.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/pack_icon.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/sounds/doge/title.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/sounds/doge/title.ogg -------------------------------------------------------------------------------- /DogeUI_v1.0.0/sounds/doge/title_v1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/sounds/doge/title_v1.ogg -------------------------------------------------------------------------------- /DogeUI_v1.0.0/sounds/music_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/sounds/music_definitions.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/sounds/random/click.fsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/sounds/random/click.fsb -------------------------------------------------------------------------------- /DogeUI_v1.0.0/sounds/sound_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/sounds/sound_definitions.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/01.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/01_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/01_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/02.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/02_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/02_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/03.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/03_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/03_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/04.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/04_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/04_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/05.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/05_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/05_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/06.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/06_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/06_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/07.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/07_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/07_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/08.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/08_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/08_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/ad/README.md: -------------------------------------------------------------------------------- 1 | # 广告图片规范 2 | - 占用空间不能过大,建议控制在 500k 以内。 3 | - 图片需裁剪到 67:34 的比例。 -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/ad_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/ad_border.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/ad_border_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/ad_border_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/bg.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/camera.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/camera_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/camera_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/exit.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/exit_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/exit_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/info.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/info_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/info_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/message_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/message_board.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/message_board_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/message_board_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/message_form_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/message_form_body.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/message_form_button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/message_form_button1.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/message_form_button1_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/message_form_button1_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/message_form_button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/message_form_button2.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/menu/message_form_button2_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/menu/message_form_button2_pressed.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/startscreen/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/startscreen/black.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/startscreen/title_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/startscreen/title_bottom.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/startscreen/title_bottom_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/startscreen/title_bottom_old.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/startscreen/title_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/startscreen/title_center.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/startscreen/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/startscreen/white.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/1.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/10.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/11.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/2.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/3.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/4.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/5.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/6.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/7.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/8.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/textures/title/regions/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/textures/title/regions/9.png -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/# DOCS/README.md -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/_global_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/# DOCS/_global_variables.md -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/hud_screen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/# DOCS/hud_screen.md -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/# DOCS/menu/README.md -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/menu/ad.md: -------------------------------------------------------------------------------- 1 | 显示图片的表单 -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/menu/camera.md: -------------------------------------------------------------------------------- 1 | 不显示任何内容的表单,用于隐藏 hud -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/menu/doge_common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/# DOCS/menu/doge_common.md -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/menu/index.md: -------------------------------------------------------------------------------- 1 | 每个自定义表单需要在这里注册。 -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/menu/main.md: -------------------------------------------------------------------------------- 1 | 东方犬明湖服务器的主菜单。 -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/server_form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/# DOCS/server_form.md -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/# DOCS/title/region.md: -------------------------------------------------------------------------------- 1 | 自定义图片标题实例,此处贴图为仿原神地区进入提示的标题。 -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/_global_variables.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/_ui_defs.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/hud_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/hud_screen.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/informationbar/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/informationbar/main.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/menu/ad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/menu/ad.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/menu/camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/menu/camera.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/menu/doge_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/menu/doge_common.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/menu/doge_message_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/menu/doge_message_form.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/menu/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/menu/index.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/menu/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/menu/main.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/menu/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/menu/text.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/pause_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/pause_screen.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/popup_dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/popup_dialog.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/progress_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/progress_screen.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/scoreboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/scoreboards.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/server_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/server_form.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/startscreen/doge_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/startscreen/doge_title.json -------------------------------------------------------------------------------- /DogeUI_v1.0.0/ui/title/region.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/DogeUI_v1.0.0/ui/title/region.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/LICENSE -------------------------------------------------------------------------------- /LongForm-Main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/LongForm-Main.jpg -------------------------------------------------------------------------------- /MessageForm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/MessageForm.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/deploy.sh -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/manifest.json -------------------------------------------------------------------------------- /mods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/mods.png -------------------------------------------------------------------------------- /pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/pack_icon.png -------------------------------------------------------------------------------- /sounds/doge/title.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/sounds/doge/title.ogg -------------------------------------------------------------------------------- /sounds/doge/title_v1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/sounds/doge/title_v1.ogg -------------------------------------------------------------------------------- /sounds/music_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/sounds/music_definitions.json -------------------------------------------------------------------------------- /sounds/random/click.fsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/sounds/random/click.fsb -------------------------------------------------------------------------------- /sounds/sound_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/sounds/sound_definitions.json -------------------------------------------------------------------------------- /textures/menu/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/01.png -------------------------------------------------------------------------------- /textures/menu/01_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/01_pressed.png -------------------------------------------------------------------------------- /textures/menu/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/02.png -------------------------------------------------------------------------------- /textures/menu/02_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/02_pressed.png -------------------------------------------------------------------------------- /textures/menu/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/03.png -------------------------------------------------------------------------------- /textures/menu/03_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/03_pressed.png -------------------------------------------------------------------------------- /textures/menu/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/04.png -------------------------------------------------------------------------------- /textures/menu/04_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/04_pressed.png -------------------------------------------------------------------------------- /textures/menu/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/05.png -------------------------------------------------------------------------------- /textures/menu/05_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/05_pressed.png -------------------------------------------------------------------------------- /textures/menu/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/06.png -------------------------------------------------------------------------------- /textures/menu/06_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/06_pressed.png -------------------------------------------------------------------------------- /textures/menu/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/07.png -------------------------------------------------------------------------------- /textures/menu/07_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/07_pressed.png -------------------------------------------------------------------------------- /textures/menu/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/08.png -------------------------------------------------------------------------------- /textures/menu/08_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/08_pressed.png -------------------------------------------------------------------------------- /textures/menu/ad/README.md: -------------------------------------------------------------------------------- 1 | # 广告图片规范 2 | - 占用空间不能过大,建议控制在 500k 以内。 3 | - 图片需裁剪到 67:34 的比例。 -------------------------------------------------------------------------------- /textures/menu/ad_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/ad_border.png -------------------------------------------------------------------------------- /textures/menu/ad_border_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/ad_border_pressed.png -------------------------------------------------------------------------------- /textures/menu/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/bg.png -------------------------------------------------------------------------------- /textures/menu/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/camera.png -------------------------------------------------------------------------------- /textures/menu/camera_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/camera_pressed.png -------------------------------------------------------------------------------- /textures/menu/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/exit.png -------------------------------------------------------------------------------- /textures/menu/exit_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/exit_pressed.png -------------------------------------------------------------------------------- /textures/menu/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/info.png -------------------------------------------------------------------------------- /textures/menu/info_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/info_pressed.png -------------------------------------------------------------------------------- /textures/menu/message_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/message_board.png -------------------------------------------------------------------------------- /textures/menu/message_board_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/menu/message_board_pressed.png -------------------------------------------------------------------------------- /textures/startscreen/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/startscreen/black.png -------------------------------------------------------------------------------- /textures/startscreen/title_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/startscreen/title_bottom.png -------------------------------------------------------------------------------- /textures/startscreen/title_bottom_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/startscreen/title_bottom_old.png -------------------------------------------------------------------------------- /textures/startscreen/title_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/startscreen/title_center.png -------------------------------------------------------------------------------- /textures/startscreen/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/startscreen/white.png -------------------------------------------------------------------------------- /textures/title/regions/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/1.png -------------------------------------------------------------------------------- /textures/title/regions/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/10.png -------------------------------------------------------------------------------- /textures/title/regions/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/11.png -------------------------------------------------------------------------------- /textures/title/regions/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/2.png -------------------------------------------------------------------------------- /textures/title/regions/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/3.png -------------------------------------------------------------------------------- /textures/title/regions/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/4.png -------------------------------------------------------------------------------- /textures/title/regions/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/5.png -------------------------------------------------------------------------------- /textures/title/regions/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/6.png -------------------------------------------------------------------------------- /textures/title/regions/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/7.png -------------------------------------------------------------------------------- /textures/title/regions/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/8.png -------------------------------------------------------------------------------- /textures/title/regions/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/textures/title/regions/9.png -------------------------------------------------------------------------------- /ui/# DOCS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/# DOCS/README.md -------------------------------------------------------------------------------- /ui/# DOCS/_global_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/# DOCS/_global_variables.md -------------------------------------------------------------------------------- /ui/# DOCS/hud_screen.md: -------------------------------------------------------------------------------- 1 | # hud_screen包含组件 2 | - hud右下动态显示信息,为音符盒显示的内容。(建议配合插件使用) 3 | - 自定义图片标题实例 -------------------------------------------------------------------------------- /ui/# DOCS/menu/README.md: -------------------------------------------------------------------------------- 1 | dogeui 鼓励开发者们原创表单,切勿照搬,维护基岩社区良好环境。 -------------------------------------------------------------------------------- /ui/# DOCS/menu/ad.md: -------------------------------------------------------------------------------- 1 | 显示图片的表单 -------------------------------------------------------------------------------- /ui/# DOCS/menu/camera.md: -------------------------------------------------------------------------------- 1 | 不显示任何内容的表单,用于隐藏 hud -------------------------------------------------------------------------------- /ui/# DOCS/menu/doge_common.md: -------------------------------------------------------------------------------- 1 | 通用组件例子,包含了 关闭按钮、标题、背景。 -------------------------------------------------------------------------------- /ui/# DOCS/menu/index.md: -------------------------------------------------------------------------------- 1 | 每个自定义表单需要在这里注册。 -------------------------------------------------------------------------------- /ui/# DOCS/menu/main.md: -------------------------------------------------------------------------------- 1 | 东方犬明湖服务器的主菜单。 -------------------------------------------------------------------------------- /ui/# DOCS/pause_screen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/# DOCS/pause_screen.md -------------------------------------------------------------------------------- /ui/# DOCS/scoreboards.md: -------------------------------------------------------------------------------- 1 | # 顶部信息显示 2 | 显示计分板的内容。 -------------------------------------------------------------------------------- /ui/# DOCS/server_form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/# DOCS/server_form.md -------------------------------------------------------------------------------- /ui/# DOCS/title/region.md: -------------------------------------------------------------------------------- 1 | - 自定义图片标题实例,此处为仿原神地区进入提示的标题。 -------------------------------------------------------------------------------- /ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/_global_variables.json -------------------------------------------------------------------------------- /ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/_ui_defs.json -------------------------------------------------------------------------------- /ui/hud_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/hud_screen.json -------------------------------------------------------------------------------- /ui/menu/ad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/menu/ad.json -------------------------------------------------------------------------------- /ui/menu/camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/menu/camera.json -------------------------------------------------------------------------------- /ui/menu/doge_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/menu/doge_common.json -------------------------------------------------------------------------------- /ui/menu/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/menu/index.json -------------------------------------------------------------------------------- /ui/menu/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/menu/main.json -------------------------------------------------------------------------------- /ui/menu/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/menu/text.json -------------------------------------------------------------------------------- /ui/pause_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/pause_screen.json -------------------------------------------------------------------------------- /ui/progress_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/progress_screen.json -------------------------------------------------------------------------------- /ui/scoreboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/scoreboards.json -------------------------------------------------------------------------------- /ui/server_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/server_form.json -------------------------------------------------------------------------------- /ui/startscreen/doge_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/startscreen/doge_title.json -------------------------------------------------------------------------------- /ui/title/region.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogeLakeDev/DogeUI/HEAD/ui/title/region.json --------------------------------------------------------------------------------