We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26204d2 commit 22c5414Copy full SHA for 22c5414
1 file changed
src/hooks/PlayLayer/BlurGame.cpp
@@ -3,6 +3,7 @@
3
#include <Geode/Geode.hpp>
4
5
#include <Geode/modify/PlayLayer.hpp>
6
+#include "util/Blur.hpp"
7
8
using namespace geode::prelude;
9
using namespace horrible::prelude;
@@ -23,13 +24,13 @@ class $modify(BlurPlayLayer, PlayLayer) {
23
24
25
void setupHasCompleted() {
26
PlayLayer::setupHasCompleted();
-
27
+
28
auto colorLayer = CCLayerColor::create({0, 0, 0, 0});
29
colorLayer->setID("blur-color-layer"_spr);
30
colorLayer->setContentSize({getScaledContentWidth(), getScaledContentHeight()});
31
colorLayer->setPosition({0, 0});
32
- m_uiLayer->addChild(colorLayer, 98);
33
+ m_uiLayer->addChild(colorLayer, 100);
34
35
blur::addBlur(colorLayer);
36
};
0 commit comments