This commit is contained in:
Damien 2021-05-14 11:32:43 +02:00
commit 08d0802731
2 changed files with 8 additions and 4 deletions

View file

@ -32,8 +32,8 @@ public class Arrow extends EntityQuad {
private Planet crash;
private Vector2 offset;
private Sound arrowLandedSound = Gdx.audio.newSound(Gdx.files.internal("core/assets/sounds/sf_fleche_plante_01.mp3"));
private Sound arrowHitSound = Gdx.audio.newSound(Gdx.files.internal("core/assets/sounds/VOXScrm_Cri wilhelm (ID 0477)_LS.wav"));
private Sound arrowLandedSound;
private Sound arrowHitSound;
private ArrayList<Texture> texture;
// ---------- CONSTRUCTORs ----------
@ -55,6 +55,10 @@ public class Arrow extends EntityQuad {
this.landed = false;
if (!preview) {
arrowLandedSound = Gdx.audio.newSound(Gdx.files.internal("core/assets/sounds/sf_fleche_plante_01.mp3"));
arrowHitSound = Gdx.audio.newSound(Gdx.files.internal("core/assets/sounds/VOXScrm_Cri wilhelm (ID 0477)_LS.wav"));
texture = new ArrayList<>();
String path = "core/assets/arrow" + MathUtils.random(2);

View file

@ -101,11 +101,11 @@ public class SettingsScreen extends BaseScreen {
// Table structure
table.add(gConstField).width(250);
table.row();
table.add(disableMusic).width(250);
table.add(disableMusic).align(Align.left);
table.row();
table.add(musicVolume).width(250);
table.row();
table.add(disableSounds).width(250);
table.add(disableSounds).align(Align.left);
table.row();
table.add(musicSounds).width(250);
table.row();