Skip to content

Commit

Permalink
Prepare alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouca committed Jun 7, 2024
1 parent ea68223 commit 66b6ca3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v1.2.21
# v1.3.0
- Port to Geometry Dash 2.206

- Increased leaderboards top to INFINITE
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": "3.0.0-alpha.1",
"version": "v1.2.21",
"version": "v1.3.0-alpha.1",
"gd": {
"win": "2.206",
"android": "2.206",
Expand Down
10 changes: 6 additions & 4 deletions src/Styles/GauntletStyle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <Geode/Geode.hpp>
#include "../Utils/ParticleManager.hpp"

class $modify(GauntletSelectLayer) {
/*class $modify(GauntletSelectLayer) {
void setupGauntlets() {
GauntletSelectLayer::setupGauntlets();
Expand Down Expand Up @@ -62,9 +62,11 @@ class $modify(GauntletSelectLayer) {
node->addChild(sprite);
// Particle
/*CCParticleSystem* particle = createParticles(20, ccc3(255, 255, 35), ccc3(0, 132, 0), "2", "-1", "1.21", "0.30", "116", "0", "20", "20", "0", "0", "0", "0", "8", "8", "1", "0", "0", "0", "0", "1", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "particle_118_001.png");
CCParticleSystemQuad* particle = particleFromString("30a-1a2.2a0.48a11a90a180a29a0a11a0a0a0a0a0a0a0a5a1a0a0a0.0745098a0a0a0a0.611765a0a1a0a2a1a0a0a0a0a0.937255a0a1a0a1a0a0.54a0a0.57a0a56a0a11a0a-25a17a1a2a1a0a0a1a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0", NULL, false);
node->addChild(particle);
particle->runAction(cocos2d::CCAction::create());*/
particle->setPosition(bg->getPosition());
particle->setScale(1.0f);
particle->setZOrder(100);
} else if (gauntletName == "Portal") {
CCSprite* sprite = CCSprite::create(Mod::get()->expandSpriteName("portal_gauntlet.png"));
sprite->setPosition(bg->getPosition());
Expand Down Expand Up @@ -114,4 +116,4 @@ class $modify(GauntletSelectLayer) {
}
}
}
};
};*/

0 comments on commit 66b6ca3

Please sign in to comment.