Skip to content

Commit

Permalink
huge update
Browse files Browse the repository at this point in the history
  • Loading branch information
FireMario211 committed Jan 20, 2024
1 parent cf1002e commit 7d81bbf
Show file tree
Hide file tree
Showing 10 changed files with 213 additions and 135 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# v1.1.0
- Added Menu Scale (for people using Android)
- Added "X" button in the menu in case Android users can't close the menu.
- Added "Verify Hack" and "No (C) Mark" back
- Fixed issue with Prism Button not working on the main menu
- Fixed issue with speedhack not working on levels that use Time Warp
- Fixed "Progress Bar Position", "Attempt Opacity", and "No Progress Bar"
- Removed Hide Attempts
# v1.0.2
- Fixed bug with the game crashing if you are on a platformer level, and you press pause a couple of times.
# v1.0.1
Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"geode": "2.0.0",
"version": "v1.0.2",
"version": "v1.1.0",
"gd": {
"win": "2.204",
"android": "2.200"
Expand Down
6 changes: 2 additions & 4 deletions resources/hacks/creator.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
"opcodes": [
{"addr": "0x71D48", "on": "EB", "off": "74"}
],
"type": "bool",
"winOnly": true
"type": "bool"
},
{
"name": "Copy Hack",
Expand All @@ -30,8 +29,7 @@
{"addr": "0xA6B8B", "on": "2B 87 CC 02 00 00", "off": "2B 87 D0 02 00 00"},
{"addr": "0x70E87", "on": "EB 26", "off": "74 26"}
],
"type": "bool",
"winOnly": true
"type": "bool"
},
{
"name": "Hide Testmode",
Expand Down
6 changes: 0 additions & 6 deletions resources/hacks/misc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@
"default": 0,
"values": ["Top", "Bottom", "Left", "Right"]
},
{
"name": "Hide Attempts",
"desc": "Whether or not the attempt label should be shown when playing a level.",
"opcodes": [],
"type": "bool"
},
{
"name": "Attempt Opacity",
"desc": "Determines how opaque the attempt label should be.",
Expand Down
12 changes: 1 addition & 11 deletions resources/hacks/player.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,7 @@
"opcodes": [
{"addr": "0x20456D", "on": "B8 14 00 00 00 90", "off": "8B 83 00 03 00 00"}
],
"type": "bool",
"winOnly": true
},
{
"name": "Everything Hurts",
"desc": "Owie.",
"opcodes": [
{"addr": "0x20456D", "on": "B8 02 00 00 00 90", "off": "8B 83 00 03 00 00"}
],
"type": "bool",
"winOnly": true
"type": "bool"
},
{
"name": "Freeze Player",
Expand Down
15 changes: 13 additions & 2 deletions resources/hacks/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@
"max": 1,
"default": 0.98
},
{
"name": "Menu Scale",
"desc": "Decides how big the text and buttons should be. (Will require restarting the game)",
"opcodes": [],
"type": "float",
"min": 1,
"max": 2,
"default": 1
},
{
"name": "Language",
"desc": "Sets the language for Prism Menu!",
Expand Down Expand Up @@ -67,7 +76,8 @@
"type": "int",
"min": -30,
"max": 600,
"default": 25
"default": 75,
"step": 1
},
{
"name": "Button Position Y",
Expand All @@ -76,7 +86,8 @@
"type": "int",
"min": -20,
"max": 350,
"default": 80
"default": 295,
"step": 1
},
{
"name": "Restore Defaults",
Expand Down
6 changes: 6 additions & 0 deletions resources/langs/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -399,5 +399,11 @@
"And thank you for using the mod! I hope you enjoy using Prism Menu!": {
"name": "And thank you for using the mod! I hope you enjoy using Prism Menu!"
}
},
{
"Menu Scale": {
"name": "Menu Scale",
"desc": "Decides how big the text and buttons should be. (Will require restarting the game)"
}
}
]
1 change: 1 addition & 0 deletions src/hacks.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ class Hacks {
static void setPitch(float pitch) {
// no fmod?
auto fmod = FMODAudioEngine::sharedEngine();
//fmod->pitchForIdx()
AudioTargetType what;
//fmod->setChannelPitch(1, what, pitch);
}
Expand Down
Loading

0 comments on commit 7d81bbf

Please sign in to comment.