From 088491b6d0b34f2fc0c6507ff414aaea42adf527 Mon Sep 17 00:00:00 2001 From: Beat <75857504+BeatACVR@users.noreply.github.com> Date: Fri, 22 Nov 2024 17:52:41 -0600 Subject: [PATCH 1/9] Update main.cpp --- src/main.cpp | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 792984d..221cd0a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,16 +31,22 @@ class $modify(PlayerObject) { RobertTopala->runAction(CCFadeOut::create(1.0))->setTag(1); } - void playerDestroyed(bool p0) { + /*void playerDestroyed(bool p0) { PlayerObject::playerDestroyed(p0); isHolding = false; + }*/ + + bool playerDestroyed(bool p0) { + bool ret = PlayerObject::playerDestroyed(p0); + isHolding = false; + return ret; } - void releaseButton(PlayerButton p0) { - PlayerObject::releaseButton(p0); + bool releaseButton(PlayerButton p0) { + bool ret = PlayerObject::releaseButton(p0); if (p0 != PlayerButton::Jump) - return; + return ret; isHolding = false; } @@ -61,18 +67,17 @@ class $modify(PlayerObject) { PlayerObject::incrementJumps(); } - void pushButton(PlayerButton p0) { - - PlayerObject::pushButton(p0); + bool pushButton(PlayerButton p0) { + bool ret = PlayerObject::pushButton(p0); if (p0 != PlayerButton::Jump) - return; + return ret; isHolding = true; // Do nothing if PlayLayer doesnt exist if (!GameManager::sharedState()->getPlayLayer()) - return; + return ret; const auto runningScene = CCDirector::get()->getRunningScene(); From 79e98de1ec216a5417dab6138a3b033f9d69ed6b Mon Sep 17 00:00:00 2001 From: Beat <75857504+BeatACVR@users.noreply.github.com> Date: Fri, 22 Nov 2024 17:56:08 -0600 Subject: [PATCH 2/9] Update main.cpp --- src/main.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 221cd0a..f8b752c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -36,10 +36,9 @@ class $modify(PlayerObject) { isHolding = false; }*/ - bool playerDestroyed(bool p0) { - bool ret = PlayerObject::playerDestroyed(p0); + void playerDestroyed(bool p0) { + PlayerObject::playerDestroyed(p0); isHolding = false; - return ret; } bool releaseButton(PlayerButton p0) { From 856f38a211d599e1fe8ffe8997407c11dfa6d4c4 Mon Sep 17 00:00:00 2001 From: Beat <75857504+BeatACVR@users.noreply.github.com> Date: Fri, 22 Nov 2024 17:59:53 -0600 Subject: [PATCH 3/9] Update main.cpp --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index f8b752c..c6634d4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -48,6 +48,7 @@ class $modify(PlayerObject) { return ret; isHolding = false; + return false; } void incrementJumps() { @@ -101,5 +102,6 @@ class $modify(PlayerObject) { } this->jumpscare(); + return false; } }; From 30c7c84b85baf38827d47407dc333b996992909a Mon Sep 17 00:00:00 2001 From: Beat <75857504+BeatACVR@users.noreply.github.com> Date: Fri, 22 Nov 2024 18:03:11 -0600 Subject: [PATCH 4/9] Update multi-platform.yml --- .github/workflows/multi-platform.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/multi-platform.yml b/.github/workflows/multi-platform.yml index 1cbfbca..d9e2fee 100644 --- a/.github/workflows/multi-platform.yml +++ b/.github/workflows/multi-platform.yml @@ -18,13 +18,13 @@ jobs: - name: macOS os: macos-latest - - name: Android32 - os: ubuntu-latest - target: Android32 + #- name: Android32 + # os: ubuntu-latest + # target: Android32 - - name: Android64 - os: ubuntu-latest - target: Android64 + #- name: Android64 + # os: ubuntu-latest + # target: Android64 name: ${{ matrix.config.name }} runs-on: ${{ matrix.config.os }} From 480caebb6c73f63fc90c1e36d3f9d45135170e8a Mon Sep 17 00:00:00 2001 From: Beat <75857504+BeatACVR@users.noreply.github.com> Date: Fri, 22 Nov 2024 18:09:07 -0600 Subject: [PATCH 5/9] Update mod.json --- mod.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod.json b/mod.json index 78f77fd..244f036 100644 --- a/mod.json +++ b/mod.json @@ -11,7 +11,7 @@ ], "id": "n.robtop-jumpscare", "name": "Robtop Jumpscare", - "version": "v1.3.5", + "version": "v1.3.6", "developer": "n", "description": "Jumpscare yourself everytime you jump!", "repository": "https://github.com/NicknameGG/robtop-jumpscare", From b22920301e9fec0243a4e04fceaf5290e443a86d Mon Sep 17 00:00:00 2001 From: Beat <75857504+BeatACVR@users.noreply.github.com> Date: Fri, 22 Nov 2024 18:09:42 -0600 Subject: [PATCH 6/9] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7fa0e86..e591d1b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Get jumpscared **every time you jump** by the Robert Topala! - Robtop might now appear with a 1% chance while youre playing! Check the mod settings to activate it - Scary! -- Android support! +- ~~Android support!~~ Not anymore! - Works in my machine! -### Download now!!!!!!!!!! \ No newline at end of file +### Download now!!!!!!!!!! From cebb45b3ad8acb1145014c3cc87b6223d696a122 Mon Sep 17 00:00:00 2001 From: Beat <75857504+BeatACVR@users.noreply.github.com> Date: Fri, 22 Nov 2024 18:09:56 -0600 Subject: [PATCH 7/9] Update about.md --- about.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/about.md b/about.md index 11c3297..0cdadba 100644 --- a/about.md +++ b/about.md @@ -8,7 +8,7 @@ Get jumpscared **every time you jump** by the Robert Topala! - Robtop might now appear with a 1% chance while youre playing! Check the mod settings to activate it - Scary! -- Android support! +- ~~Android support!~~ Not anymore! - Works in my machine! -### Download now!!!!!!!!!! \ No newline at end of file +### Download now!!!!!!!!!! From 2c396e1c6030bbc72ddbd73c6e972f2434ec33ab Mon Sep 17 00:00:00 2001 From: Beat <75857504+BeatACVR@users.noreply.github.com> Date: Fri, 22 Nov 2024 18:10:07 -0600 Subject: [PATCH 8/9] Update about.md --- about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/about.md b/about.md index 0cdadba..0b2e694 100644 --- a/about.md +++ b/about.md @@ -8,7 +8,7 @@ Get jumpscared **every time you jump** by the Robert Topala! - Robtop might now appear with a 1% chance while youre playing! Check the mod settings to activate it - Scary! -- ~~Android support!~~ Not anymore! +- Android support! - Works in my machine! ### Download now!!!!!!!!!! From bab907c866153a3c80c200389a8a7701e4312191 Mon Sep 17 00:00:00 2001 From: Beat <75857504+BeatACVR@users.noreply.github.com> Date: Fri, 22 Nov 2024 18:10:18 -0600 Subject: [PATCH 9/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e591d1b..bae7a2b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Get jumpscared **every time you jump** by the Robert Topala! - Robtop might now appear with a 1% chance while youre playing! Check the mod settings to activate it - Scary! -- ~~Android support!~~ Not anymore! +- Android support! - Works in my machine! ### Download now!!!!!!!!!!