├── .gitignore ├── LICENSE ├── README-ENG.md ├── README.md ├── game ├── RenPyHub-Plugin │ ├── config.rpy │ ├── handlers.rpy │ ├── screens.rpy │ ├── ui_frame_notify.png │ └── workflow.rpy ├── gui.rpy ├── gui │ ├── bar │ │ ├── bottom.png │ │ ├── left.png │ │ ├── right.png │ │ └── top.png │ ├── bubble.png │ ├── button │ │ ├── check_foreground.png │ │ ├── check_selected_foreground.png │ │ ├── choice_hover_background.png │ │ ├── choice_idle_background.png │ │ ├── hover_background.png │ │ ├── idle_background.png │ │ ├── quick_hover_background.png │ │ ├── quick_idle_background.png │ │ ├── radio_foreground.png │ │ ├── radio_selected_foreground.png │ │ ├── slot_hover_background.png │ │ └── slot_idle_background.png │ ├── font │ │ └── JetBrainsMono-SemiBold.ttf │ ├── frame.png │ ├── game_menu.png │ ├── main_menu.png │ ├── namebox.png │ ├── notify.png │ ├── nvl.png │ ├── overlay │ │ ├── confirm.png │ │ ├── game_menu.png │ │ └── main_menu.png │ ├── phone │ │ ├── bar │ │ │ ├── bottom.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── top.png │ │ ├── button │ │ │ ├── check_foreground.png │ │ │ ├── check_selected_foreground.png │ │ │ ├── choice_hover_background.png │ │ │ ├── choice_idle_background.png │ │ │ ├── hover_background.png │ │ │ ├── idle_background.png │ │ │ ├── radio_foreground.png │ │ │ ├── radio_selected_foreground.png │ │ │ ├── slot_hover_background.png │ │ │ └── slot_idle_background.png │ │ ├── nvl.png │ │ ├── overlay │ │ │ ├── game_menu.png │ │ │ └── main_menu.png │ │ ├── scrollbar │ │ │ ├── horizontal_hover_bar.png │ │ │ ├── horizontal_hover_thumb.png │ │ │ ├── horizontal_idle_bar.png │ │ │ ├── horizontal_idle_thumb.png │ │ │ ├── vertical_hover_bar.png │ │ │ ├── vertical_hover_thumb.png │ │ │ ├── vertical_idle_bar.png │ │ │ └── vertical_idle_thumb.png │ │ ├── slider │ │ │ ├── horizontal_hover_bar.png │ │ │ ├── horizontal_hover_thumb.png │ │ │ ├── horizontal_idle_bar.png │ │ │ ├── horizontal_idle_thumb.png │ │ │ ├── vertical_hover_bar.png │ │ │ ├── vertical_hover_thumb.png │ │ │ ├── vertical_idle_bar.png │ │ │ └── vertical_idle_thumb.png │ │ └── textbox.png │ ├── scrollbar │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ ├── skip.png │ ├── slider │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ ├── textbox.png │ ├── thoughtbubble.png │ └── window_icon.png ├── options.rpy ├── screens.rpy ├── script.rpy └── tl │ └── None │ └── common.rpym ├── game_status.json ├── project.json └── source ├── RenPyHub-Plugin.zip └── RenPyHub-Plugin ├── LICENSE ├── config.rpy ├── handlers.rpy ├── screens.rpy ├── ui_frame_notify.png └── workflow.rpy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ENG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/README-ENG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /game/RenPyHub-Plugin/config.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/RenPyHub-Plugin/config.rpy -------------------------------------------------------------------------------- /game/RenPyHub-Plugin/handlers.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/RenPyHub-Plugin/handlers.rpy -------------------------------------------------------------------------------- /game/RenPyHub-Plugin/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/RenPyHub-Plugin/screens.rpy -------------------------------------------------------------------------------- /game/RenPyHub-Plugin/ui_frame_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/RenPyHub-Plugin/ui_frame_notify.png -------------------------------------------------------------------------------- /game/RenPyHub-Plugin/workflow.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/RenPyHub-Plugin/workflow.rpy -------------------------------------------------------------------------------- /game/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui.rpy -------------------------------------------------------------------------------- /game/gui/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/bar/left.png -------------------------------------------------------------------------------- /game/gui/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/bar/right.png -------------------------------------------------------------------------------- /game/gui/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/bar/top.png -------------------------------------------------------------------------------- /game/gui/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/bubble.png -------------------------------------------------------------------------------- /game/gui/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/choice_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/choice_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/quick_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/quick_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/font/JetBrainsMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/font/JetBrainsMono-SemiBold.ttf -------------------------------------------------------------------------------- /game/gui/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/frame.png -------------------------------------------------------------------------------- /game/gui/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/game_menu.png -------------------------------------------------------------------------------- /game/gui/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/main_menu.png -------------------------------------------------------------------------------- /game/gui/namebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/namebox.png -------------------------------------------------------------------------------- /game/gui/notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/notify.png -------------------------------------------------------------------------------- /game/gui/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/nvl.png -------------------------------------------------------------------------------- /game/gui/overlay/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/overlay/confirm.png -------------------------------------------------------------------------------- /game/gui/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/phone/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/bar/left.png -------------------------------------------------------------------------------- /game/gui/phone/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/bar/right.png -------------------------------------------------------------------------------- /game/gui/phone/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/bar/top.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/choice_hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/choice_idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/nvl.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/phone/textbox.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/skip.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/textbox.png -------------------------------------------------------------------------------- /game/gui/thoughtbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/thoughtbubble.png -------------------------------------------------------------------------------- /game/gui/window_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/gui/window_icon.png -------------------------------------------------------------------------------- /game/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/options.rpy -------------------------------------------------------------------------------- /game/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/screens.rpy -------------------------------------------------------------------------------- /game/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/script.rpy -------------------------------------------------------------------------------- /game/tl/None/common.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game/tl/None/common.rpym -------------------------------------------------------------------------------- /game_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/game_status.json -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/project.json -------------------------------------------------------------------------------- /source/RenPyHub-Plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/source/RenPyHub-Plugin.zip -------------------------------------------------------------------------------- /source/RenPyHub-Plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/source/RenPyHub-Plugin/LICENSE -------------------------------------------------------------------------------- /source/RenPyHub-Plugin/config.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/source/RenPyHub-Plugin/config.rpy -------------------------------------------------------------------------------- /source/RenPyHub-Plugin/handlers.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/source/RenPyHub-Plugin/handlers.rpy -------------------------------------------------------------------------------- /source/RenPyHub-Plugin/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/source/RenPyHub-Plugin/screens.rpy -------------------------------------------------------------------------------- /source/RenPyHub-Plugin/ui_frame_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/source/RenPyHub-Plugin/ui_frame_notify.png -------------------------------------------------------------------------------- /source/RenPyHub-Plugin/workflow.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlieFuu69/RenPyHub-Plugin/HEAD/source/RenPyHub-Plugin/workflow.rpy --------------------------------------------------------------------------------