Skip to content

Commit 979a2f6

Browse files
committed
Fixed Arcana screen navigation taking extra button presses
1 parent 9636a2c commit 979a2f6

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# Changelog
22

3-
## v1.1.1
3+
## v1.1.2
44

55
<!--Releasenotes start-->
6+
- Fixed: Navigating right from a rightmost Arcana card takes additional navigation events to select the Grasp count.
7+
<!--Releasenotes end-->
8+
9+
## v1.1.1
10+
611
- Removed `CardBackScale` property, as the game won't honour it.
712
- Added recommended texture sizes for card back (pack) textures.
813
- Added example textures for card back (packs) to the Readme.
9-
<!--Releasenotes end-->
1014

1115
## v1.1.0
1216

src/Scripts/Wraps/MetaUpgradeCardScreenLogic.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ local function createArrowData(x, isUp)
2525
Y = isUp and 120 or 950,
2626
Alpha = 0.0,
2727
Scale = 1.0,
28+
UseableOff = true,
2829
InputBlockDuration = 0.02,
2930
Data = {
3031
OnPressedFunctionName = isUp and function(...)
@@ -50,6 +51,7 @@ cardLayoutComponentData["CosmeticsAPI_VisibleUp"] = {
5051
Y = 120,
5152
Alpha = 0.0,
5253
Scale = 1.0,
54+
UseableOff = true,
5355
Data = {
5456
OnPressedFunctionName = function(...)
5557
return mod.CardBackPagePrev(...)
@@ -65,6 +67,7 @@ cardLayoutComponentData["CosmeticsAPI_VisibleDown"] = {
6567
Y = 950,
6668
Alpha = 0.0,
6769
Scale = 1.0,
70+
UseableOff = true,
6871
Data = {
6972
OnPressedFunctionName = function(...)
7073
return mod.CardBackPageNext(...)

thunderstore.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ websiteUrl = "https://github.com/NikkelM/Hades-II-CosmeticsAPI"
1111
containsNsfwContent = false
1212

1313
[package.dependencies]
14-
Hell2Modding-Hell2Modding = "1.0.87"
14+
Hell2Modding-Hell2Modding = "1.0.97"
1515
LuaENVY-ENVY = "1.2.0"
1616
SGG_Modding-Chalk = "2.1.1"
1717
SGG_Modding-ReLoad = "1.0.2"

0 commit comments

Comments
 (0)