-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from brostosjoined/dev
Mood setter
- Loading branch information
Showing
4 changed files
with
269 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
modpack/ba_data/python/__pycache__ | ||
modpack/ba_data/python/babase/__pycache__ | ||
modpack/ba_data/python/babase/_mgen/__pycache__ | ||
modpack/ba_data/python/baclassic/__pycache__ | ||
modpack/ba_data/python/bacommon/__pycache__ | ||
modpack/ba_data/python/baplus/__pycache__ | ||
modpack/ba_data/python/bascenev1/__pycache__ | ||
modpack/ba_data/python/bascenev1lib/__pycache__ | ||
modpack/ba_data/python/bascenev1lib/activity/__pycache__ | ||
modpack/ba_data/python/bascenev1lib/actor/__pycache__ | ||
modpack/ba_data/python/bascenev1lib/game/__pycache__ | ||
modpack/ba_data/python/bascenev1lib/mapdata/__pycache__ | ||
modpack/ba_data/python/bascenev1lib/session/__pycache__ | ||
modpack/ba_data/python/batemplatefs/__pycache__ | ||
modpack/ba_data/python/bauiv1/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/account/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/coop/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/gather/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/keyboard/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/league/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/playlist/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/profile/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/settings/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/soundtrack/__pycache__ | ||
modpack/ba_data/python/bauiv1lib/store/__pycache__ | ||
modpack/ba_data/python/efro/__pycache__ | ||
modpack/ba_data/python/efro/dataclassio/__pycache__ | ||
modpack/ba_data/python/efro/message/__pycache__ | ||
modpack/ba_data/python-site-packages/__pycache__ | ||
modpack/ba_data/python-site-packages/certifi/__pycache__ | ||
modpack/ba_data/python-site-packages/yaml/__pycache__ | ||
modpack/ba_data/python-site-packages/_yaml/__pycache__ | ||
modpack/lib/__pycache__ | ||
modpack/lib/asyncio/__pycache__ | ||
modpack/lib/collections/__pycache__ | ||
modpack/lib/concurrent/__pycache__ | ||
modpack/lib/concurrent/futures/__pycache__ | ||
modpack/lib/ctypes/__pycache__ | ||
modpack/lib/ctypes/macholib/__pycache__ | ||
modpack/lib/curses/__pycache__ | ||
modpack/lib/email/__pycache__ | ||
modpack/lib/email/mime/__pycache__ | ||
modpack/lib/encodings/__pycache__ | ||
modpack/lib/html/__pycache__ | ||
modpack/lib/http/__pycache__ | ||
modpack/lib/importlib/__pycache__ | ||
modpack/lib/importlib/metadata/__pycache__ | ||
modpack/lib/importlib/resources/__pycache__ | ||
modpack/lib/json/__pycache__ | ||
modpack/lib/logging/__pycache__ | ||
modpack/lib/re/__pycache__ | ||
modpack/lib/sqlite3/__pycache__ | ||
modpack/lib/tomllib/__pycache__ | ||
modpack/lib/urllib/__pycache__ | ||
modpack/lib/xml/__pycache__ | ||
modpack/lib/xml/dom/__pycache__ | ||
modpack/lib/xml/etree/__pycache__ | ||
modpack/lib/xml/parsers/__pycache__ | ||
modpack/lib/xml/sax/__pycache__ | ||
modpack/lib/xmlrpc/__pycache__ | ||
modpack/lib/zoneinfo/__pycache__ | ||
autogitignore.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# This files aim is to add mutation support for the newly added buttons(x and y) | ||
# Do the patching by importing ui_hooks but not from ui_hooks import on_button_xy_press it wont work | ||
# ui_hooks.on_button_xy_press = some_function | ||
# is the correct way. | ||
|
||
def on_button_xy_press(arg) -> None: | ||
if arg == "X": | ||
print("button X pressed from UI or keyboard") | ||
if arg == "Y": | ||
print("button Y pressed from UI or keyboard") |