File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 8
8
- Added opacity slider to label events
9
9
- Added run info to labels
10
10
- Fixed Unlock Buttons ungreyscaling some wrong buttons
11
- - Optimised blur background
11
+ - Temporarily disabled blur bg because i broke it : broken_heart :
12
12
- Added ** Editor Reset Percentage on Save**
13
13
- Added ** Hitbox Multiplier**
14
14
- Added ** Freeze Attempts**
Original file line number Diff line number Diff line change @@ -554,6 +554,8 @@ class ClientUtils
554
554
Client::GetModule (" all-plat" )->setIncompatible (" This mod has <cr>not yet</c> been ported to <cl>2.206</c>." );
555
555
#endif
556
556
557
+ Client::GetModule (" menu-bg-blur" )->setIncompatible (" Blur BG is temporarily disabled because i broke it :(." );
558
+
557
559
if (!Loader::get ()->getInstalledMod (" geode.node-ids" ) || !Loader::get ()->getInstalledMod (" geode.node-ids" )->isEnabled ())
558
560
Client::GetModule (" unlock-gauntlets" )->setIncompatible (" This mod requires the <cc>Node IDs</c> mod to be installed!" );
559
561
}
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ bool BlurLayer::init()
6
6
if (!CCLayerColor::init ())
7
7
return false ;
8
8
9
+ return true ;
10
+
9
11
rtex = CCRenderTexture::create (569 , 320 );
10
12
node = CCNode::create ();
11
13
this ->addChild (node);
@@ -92,11 +94,15 @@ bool BlurLayer::init()
92
94
93
95
BlurLayer::~BlurLayer ()
94
96
{
97
+ return ;
98
+
95
99
std::erase (instances, this );
96
100
}
97
101
98
102
void BlurLayer::visit ()
99
103
{
104
+ return ;
105
+
100
106
CCLayerColor::visit ();
101
107
}
102
108
@@ -105,6 +111,8 @@ BlurLayer* __blurlayer__being__drawn__ = nullptr;
105
111
106
112
void BlurLayer::draw ()
107
113
{
114
+ return ;
115
+
108
116
if (this != instances[instances.size () - 1 ])
109
117
return ;
110
118
You can’t perform that action at this time.
0 commit comments