-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [x] option to take only input when in tween menu (configuration) - [x] custom menu for tween menu - [x] custom menu display if [wait menu redirected](https://www.nexusmods.com/skyrimspecialedition/mods/88507) is detected - [x] make mod detection over writable with a configuration - [x] #38 - [x] do not take input if some mod menus are open (configuration)
- Loading branch information
Showing
40 changed files
with
918 additions
and
270 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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
[submodule "extern/skyui"] | ||
path = extern/skyui | ||
url = https://github.com/mlthelama/skyui.git | ||
[submodule "extern/hint_button_menu"] | ||
path = extern/hint_button_menu | ||
url = https://github.com/mlthelama/hint_button_menu.git | ||
branch = main |
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 |
---|---|---|
@@ -1,27 +1,33 @@ | ||
{ | ||
"debug": false, | ||
"stat": { | ||
"open_key_combination": [22], | ||
"close_key_combination": [22], | ||
"page_next_keys": [ | ||
32, | ||
205, | ||
77, | ||
274 | ||
], | ||
"page_previous_keys": [ | ||
30, | ||
203, | ||
75, | ||
270 | ||
], | ||
"pause_game": true | ||
}, | ||
"inventory": { | ||
"open_key_combination": [11], | ||
"close_key_combination": [11], | ||
"enabled": true, | ||
"auto_show_inventory": true, | ||
"auto_show_magic": false | ||
} | ||
"open_key_combination": [ | ||
22 | ||
], | ||
"close_key_combination": [ | ||
22 | ||
], | ||
"page_next_keys": [ | ||
32, | ||
205, | ||
77, | ||
274 | ||
], | ||
"page_previous_keys": [ | ||
30, | ||
203, | ||
75, | ||
270 | ||
], | ||
"pause_game": true, | ||
"tween_menu_only": false, | ||
"ignore_input_menu": ["CustomMenu"], | ||
"inventory_open_key_combination": [ | ||
11 | ||
], | ||
"inventory_close_key_combination": [ | ||
11 | ||
], | ||
"inventory_enabled": true, | ||
"inventory_auto_show_inventory": true, | ||
"inventory_auto_show_magic": false | ||
} |
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 |
---|---|---|
|
@@ -69,6 +69,10 @@ | |
"name": "$ShowStatsInventoryEffectTitle" | ||
} | ||
] | ||
}, | ||
{ | ||
"key": "tween_hint", | ||
"name": "$ShowTweenHint" | ||
} | ||
] | ||
} |
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,8 @@ | ||
{ | ||
"armor_rating_rescaled_remake": true, | ||
"hand_to_hand": true, | ||
"skyrim_unbound": true, | ||
"skyrim_souls": true, | ||
"blade_and_blunt": true, | ||
"wait_menu_redirected": true | ||
} |
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
Submodule hint_button_menu
added at
c277ee
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,9 @@ | ||
#include "CLIK/MovieClip.h" | ||
|
||
namespace CLIK { | ||
class TweenMainWidget : public MovieClip { | ||
public: | ||
[[nodiscard]] Object data_provider() const { return GetObject("dataProvider"); } | ||
void data_provider(const Object& a_data_provider) { SetObject("dataProvider", a_data_provider); } | ||
}; | ||
} // CLIK |
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
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
Oops, something went wrong.