organized packages; started working on round visualizer using mesh

This commit is contained in:
Harrison Deng 2018-02-07 22:32:13 -06:00
parent b4f84816ce
commit e939bffc68
6 changed files with 10 additions and 5 deletions

View File

@ -0,0 +1,5 @@
package zero1hd.rhythmbullet.graphics.meshes;
public class CircularVisualizerMesh {
}

View File

@ -1,4 +1,4 @@
package zero1hd.rhythmbullet.ui.components;
package zero1hd.rhythmbullet.graphics.ui.components;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.g2d.Batch;

View File

@ -1,4 +1,4 @@
package zero1hd.rhythmbullet.ui.components;
package zero1hd.rhythmbullet.graphics.ui.components;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.g2d.BitmapFont;

View File

@ -11,7 +11,7 @@ import com.badlogic.gdx.utils.Disposable;
import zero1hd.rhythmbullet.audio.MusicInfo;
import zero1hd.rhythmbullet.desktop.graphics.ui.pages.MusicSelectionPage;
import zero1hd.rhythmbullet.ui.components.ShortenedTextLabel;
import zero1hd.rhythmbullet.graphics.ui.components.ShortenedTextLabel;
public class MusicSelectable extends WidgetGroup implements Disposable {
private Table table;

View File

@ -19,7 +19,7 @@ import zero1hd.rhythmbullet.desktop.audio.MusicListController;
import zero1hd.rhythmbullet.desktop.graphics.ui.components.MusicControls;
import zero1hd.rhythmbullet.desktop.graphics.ui.components.TitleBarVisualizer;
import zero1hd.rhythmbullet.desktop.screens.MainMenuScreen;
import zero1hd.rhythmbullet.ui.components.ScrollText;
import zero1hd.rhythmbullet.graphics.ui.components.ScrollText;
public class MainPage extends Page implements Observer {
private Label versionLabel;

View File

@ -30,7 +30,7 @@ import zero1hd.rhythmbullet.audio.MusicManager;
import zero1hd.rhythmbullet.desktop.audio.MusicInfoController;
import zero1hd.rhythmbullet.desktop.audio.MusicListController;
import zero1hd.rhythmbullet.desktop.graphics.ui.components.MusicSelectable;
import zero1hd.rhythmbullet.ui.components.ScrollText;
import zero1hd.rhythmbullet.graphics.ui.components.ScrollText;
public class MusicSelectionPage extends Page implements Observer {
Preferences musicFileAnnotation;