visualizer visual adjustments

This commit is contained in:
Harrison Deng 2017-09-22 11:24:55 -05:00
parent 307e118b3a
commit b5e16188de
2 changed files with 3 additions and 6 deletions

View File

@ -28,14 +28,11 @@ public class BasicVisualizer extends VisualizerCore {
public BasicVisualizer() { public BasicVisualizer() {
super(Gdx.graphics.getWidth(), Gdx.graphics.getHeight()/2, 0, 0); super(Gdx.graphics.getWidth(), Gdx.graphics.getHeight()/2, 0, 0);
barHeightMultiplier = Gdx.graphics.getHeight()*0.008f; barHeightMultiplier = Gdx.graphics.getHeight()*0.01f;
pixmap = new Pixmap(2, 2, Format.RGBA8888); pixmap = new Pixmap(2, 2, Format.RGBA8888);
pixmap.setColor(Color.WHITE); pixmap.setColor(Color.WHITE);
pixmap.fill(); pixmap.fill();
barCount = 70; barCount = 70;
barWidth = MathUtils.ceil((float) width/(float) barCount);
spaceBetweenBars = (barWidth-7);
barWidth -= spaceBetweenBars;
smoothRange = 4; smoothRange = 4;
angleRot = new Vector2(MathUtils.cosDeg(rotation), MathUtils.sinDeg(rotation)); angleRot = new Vector2(MathUtils.cosDeg(rotation), MathUtils.sinDeg(rotation));
textures = new Texture[barCount]; textures = new Texture[barCount];
@ -103,7 +100,7 @@ public class BasicVisualizer extends VisualizerCore {
angleRot.set(MathUtils.cosDeg(rotation), MathUtils.sinDeg(rotation)); angleRot.set(MathUtils.cosDeg(rotation), MathUtils.sinDeg(rotation));
barWidth = MathUtils.ceil((float) width/(float) barCount); barWidth = MathUtils.ceil((float) width/(float) barCount);
spaceBetweenBars = (barWidth-7); spaceBetweenBars = 1;
barWidth -= spaceBetweenBars; barWidth -= spaceBetweenBars;
for (int i = 0; i < bars.length; i++) { for (int i = 0; i < bars.length; i++) {

View File

@ -20,7 +20,6 @@ public class TitleBarVisualizer extends Group implements Disposable {
setSize((float) Math.sqrt(Gdx.graphics.getWidth()*Gdx.graphics.getWidth() + Gdx.graphics.getHeight()*Gdx.graphics.getHeight()), Gdx.graphics.getHeight()*0.3f); setSize((float) Math.sqrt(Gdx.graphics.getWidth()*Gdx.graphics.getWidth() + Gdx.graphics.getHeight()*Gdx.graphics.getHeight()), Gdx.graphics.getHeight()*0.3f);
hvisual = new Visualizer(); hvisual = new Visualizer();
addActor(hvisual); addActor(hvisual);
debug();
background = new TitleBarMesh(); background = new TitleBarMesh();
background.setHeight((int) MathUtils.round(Gdx.graphics.getHeight()*0.3f)); background.setHeight((int) MathUtils.round(Gdx.graphics.getHeight()*0.3f));
setRotation((float) (MathUtils.radiansToDegrees*Math.atan2(Gdx.graphics.getHeight()-background.getHeight(), Gdx.graphics.getWidth()))); setRotation((float) (MathUtils.radiansToDegrees*Math.atan2(Gdx.graphics.getHeight()-background.getHeight(), Gdx.graphics.getWidth())));
@ -50,6 +49,7 @@ public class TitleBarVisualizer extends Group implements Disposable {
@Override @Override
public void dispose() { public void dispose() {
background.dispose();
} }
@Override @Override