├── README.md ├── hutao ├── README.md ├── config.py ├── game │ ├── Resources │ │ └── hutao vtuber │ │ │ ├── HuTaoBlush.exp3.json │ │ │ ├── HuTaoCheekPuff.exp3.json │ │ │ ├── HuTaoSadNoTears.exp3.json │ │ │ ├── HuTaoSadWithTears.exp3.json │ │ │ ├── HuTaoTearsOnly.exp3.json │ │ │ ├── hutao vtuber.8192 │ │ │ └── texture_00.png │ │ │ ├── hutao vtuber.cdi3.json │ │ │ ├── hutao vtuber.moc3 │ │ │ ├── hutao vtuber.model3.json │ │ │ ├── hutao vtuber.physics3.json │ │ │ └── motions │ │ │ ├── hutao vtuber_m01.motion3.json │ │ │ ├── hutao vtuber_m02.motion3.json │ │ │ ├── hutao vtuber_m03.motion3.json │ │ │ ├── hutao vtuber_m04.motion3.json │ │ │ ├── hutao vtuber_m05.motion3.json │ │ │ ├── hutao vtuber_m06.motion3.json │ │ │ ├── hutao vtuber_m07.motion3.json │ │ │ ├── hutao vtuber_m08.motion3.json │ │ │ ├── hutao vtuber_m09.motion3.json │ │ │ ├── hutao vtuber_m10.motion3.json │ │ │ └── hutao vtuber_talking.motion3.json │ ├── SourceHanSansLite.ttf │ ├── audio │ │ └── hello.ogg │ ├── cache │ │ ├── bytecode-39.rpyb │ │ ├── py3analysis.rpyb │ │ ├── screens.rpyb │ │ └── shaders.txt │ ├── gui.rpy │ ├── gui.rpyc │ ├── 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 │ │ ├── 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(1).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(1).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 │ ├── images │ │ ├── background.png │ │ ├── background_2.png │ │ ├── background_3.png │ │ └── background_4.png │ ├── options.rpy │ ├── options.rpyc │ ├── saves │ │ ├── auto-1-LT1.save │ │ ├── auto-10-LT1.save │ │ ├── auto-2-LT1.save │ │ ├── auto-3-LT1.save │ │ ├── auto-4-LT1.save │ │ ├── auto-5-LT1.save │ │ ├── auto-6-LT1.save │ │ ├── auto-7-LT1.save │ │ ├── auto-8-LT1.save │ │ ├── auto-9-LT1.save │ │ ├── navigation.json │ │ └── persistent │ ├── screens.rpy │ ├── screens.rpyc │ ├── script.rpy │ ├── script.rpyc │ └── tl │ │ └── None │ │ ├── common.rpym │ │ └── common.rpymc ├── hutao_server.py ├── llm.py ├── log.txt └── traceback.txt └── luxun └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/README.md -------------------------------------------------------------------------------- /hutao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/README.md -------------------------------------------------------------------------------- /hutao/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/config.py -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/HuTaoBlush.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/HuTaoBlush.exp3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/HuTaoCheekPuff.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/HuTaoCheekPuff.exp3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/HuTaoSadNoTears.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/HuTaoSadNoTears.exp3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/HuTaoSadWithTears.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/HuTaoSadWithTears.exp3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/HuTaoTearsOnly.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/HuTaoTearsOnly.exp3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/hutao vtuber.8192/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/hutao vtuber.8192/texture_00.png -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/hutao vtuber.cdi3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/hutao vtuber.cdi3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/hutao vtuber.moc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/hutao vtuber.moc3 -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/hutao vtuber.model3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/hutao vtuber.model3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/hutao vtuber.physics3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/hutao vtuber.physics3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m01.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m01.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m02.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m02.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m03.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m03.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m04.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m04.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m05.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m05.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m06.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m06.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m07.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m07.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m08.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m08.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m09.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m09.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m10.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_m10.motion3.json -------------------------------------------------------------------------------- /hutao/game/Resources/hutao vtuber/motions/hutao vtuber_talking.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/Resources/hutao vtuber/motions/hutao vtuber_talking.motion3.json -------------------------------------------------------------------------------- /hutao/game/SourceHanSansLite.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/SourceHanSansLite.ttf -------------------------------------------------------------------------------- /hutao/game/audio/hello.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/audio/hello.ogg -------------------------------------------------------------------------------- /hutao/game/cache/bytecode-39.rpyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/cache/bytecode-39.rpyb -------------------------------------------------------------------------------- /hutao/game/cache/py3analysis.rpyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/cache/py3analysis.rpyb -------------------------------------------------------------------------------- /hutao/game/cache/screens.rpyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/cache/screens.rpyb -------------------------------------------------------------------------------- /hutao/game/cache/shaders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/cache/shaders.txt -------------------------------------------------------------------------------- /hutao/game/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui.rpy -------------------------------------------------------------------------------- /hutao/game/gui.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui.rpyc -------------------------------------------------------------------------------- /hutao/game/gui/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/bar/bottom.png -------------------------------------------------------------------------------- /hutao/game/gui/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/bar/left.png -------------------------------------------------------------------------------- /hutao/game/gui/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/bar/right.png -------------------------------------------------------------------------------- /hutao/game/gui/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/bar/top.png -------------------------------------------------------------------------------- /hutao/game/gui/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/bubble.png -------------------------------------------------------------------------------- /hutao/game/gui/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/check_foreground.png -------------------------------------------------------------------------------- /hutao/game/gui/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/check_selected_foreground.png -------------------------------------------------------------------------------- /hutao/game/gui/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/choice_hover_background.png -------------------------------------------------------------------------------- /hutao/game/gui/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/choice_idle_background.png -------------------------------------------------------------------------------- /hutao/game/gui/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/hover_background.png -------------------------------------------------------------------------------- /hutao/game/gui/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/idle_background.png -------------------------------------------------------------------------------- /hutao/game/gui/button/quick_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/quick_hover_background.png -------------------------------------------------------------------------------- /hutao/game/gui/button/quick_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/quick_idle_background.png -------------------------------------------------------------------------------- /hutao/game/gui/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/radio_foreground.png -------------------------------------------------------------------------------- /hutao/game/gui/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /hutao/game/gui/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/slot_hover_background.png -------------------------------------------------------------------------------- /hutao/game/gui/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/button/slot_idle_background.png -------------------------------------------------------------------------------- /hutao/game/gui/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/frame.png -------------------------------------------------------------------------------- /hutao/game/gui/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/game_menu.png -------------------------------------------------------------------------------- /hutao/game/gui/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/main_menu.png -------------------------------------------------------------------------------- /hutao/game/gui/namebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/namebox.png -------------------------------------------------------------------------------- /hutao/game/gui/notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/notify.png -------------------------------------------------------------------------------- /hutao/game/gui/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/nvl.png -------------------------------------------------------------------------------- /hutao/game/gui/overlay/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/overlay/confirm.png -------------------------------------------------------------------------------- /hutao/game/gui/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/overlay/game_menu.png -------------------------------------------------------------------------------- /hutao/game/gui/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/overlay/main_menu.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/bar/bottom.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/bar/left.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/bar/right.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/bar/top.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/check_foreground.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/check_selected_foreground.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/choice_hover_background.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/choice_idle_background.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/hover_background.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/idle_background.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/radio_foreground.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/slot_hover_background.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/button/slot_idle_background.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/nvl(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/nvl(1).png -------------------------------------------------------------------------------- /hutao/game/gui/phone/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/nvl.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/overlay/game_menu.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/overlay/main_menu.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/phone/textbox(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/textbox(1).png -------------------------------------------------------------------------------- /hutao/game/gui/phone/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/phone/textbox.png -------------------------------------------------------------------------------- /hutao/game/gui/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/skip.png -------------------------------------------------------------------------------- /hutao/game/gui/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /hutao/game/gui/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /hutao/game/gui/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/textbox.png -------------------------------------------------------------------------------- /hutao/game/gui/thoughtbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/thoughtbubble.png -------------------------------------------------------------------------------- /hutao/game/gui/window_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/gui/window_icon.png -------------------------------------------------------------------------------- /hutao/game/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/images/background.png -------------------------------------------------------------------------------- /hutao/game/images/background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/images/background_2.png -------------------------------------------------------------------------------- /hutao/game/images/background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/images/background_3.png -------------------------------------------------------------------------------- /hutao/game/images/background_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/images/background_4.png -------------------------------------------------------------------------------- /hutao/game/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/options.rpy -------------------------------------------------------------------------------- /hutao/game/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/options.rpyc -------------------------------------------------------------------------------- /hutao/game/saves/auto-1-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-1-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/auto-10-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-10-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/auto-2-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-2-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/auto-3-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-3-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/auto-4-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-4-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/auto-5-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-5-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/auto-6-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-6-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/auto-7-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-7-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/auto-8-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-8-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/auto-9-LT1.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/auto-9-LT1.save -------------------------------------------------------------------------------- /hutao/game/saves/navigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/navigation.json -------------------------------------------------------------------------------- /hutao/game/saves/persistent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/saves/persistent -------------------------------------------------------------------------------- /hutao/game/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/screens.rpy -------------------------------------------------------------------------------- /hutao/game/screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/screens.rpyc -------------------------------------------------------------------------------- /hutao/game/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/script.rpy -------------------------------------------------------------------------------- /hutao/game/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/script.rpyc -------------------------------------------------------------------------------- /hutao/game/tl/None/common.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/tl/None/common.rpym -------------------------------------------------------------------------------- /hutao/game/tl/None/common.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/game/tl/None/common.rpymc -------------------------------------------------------------------------------- /hutao/hutao_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/hutao_server.py -------------------------------------------------------------------------------- /hutao/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/hutao/llm.py -------------------------------------------------------------------------------- /hutao/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hutao/traceback.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luxun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-Cherish/AI-Digital-Human/HEAD/luxun/README.md --------------------------------------------------------------------------------