Arc compatibility

This commit is contained in:
Anuken
2021-09-17 11:46:52 -04:00
parent 84935e1bb0
commit 58a21c3cc7
4 changed files with 4 additions and 4 deletions

View File

@@ -277,7 +277,7 @@ public class Renderer implements ApplicationListener{
}
if(bloom != null){
bloom.resize(graphics.getWidth() / 4, graphics.getHeight() / 4);
bloom.resize(graphics.getWidth(), graphics.getHeight());
Draw.draw(Layer.bullet - 0.02f, bloom::capture);
Draw.draw(Layer.effect + 0.02f, bloom::render);
}

View File

@@ -124,7 +124,7 @@ public class PlanetRenderer implements Disposable{
}
public void beginBloom(){
bloom.resize(Core.graphics.getWidth() / 4, Core.graphics.getHeight() / 4);
bloom.resize(Core.graphics.getWidth(), Core.graphics.getHeight());
bloom.capture();
}