Updated some sound loops

This commit is contained in:
Anuken
2025-12-10 19:02:05 -05:00
parent dc4eada23f
commit e58f4b0da3
12 changed files with 13 additions and 4 deletions

View File

@@ -41,6 +41,8 @@ public class OverdriveProjector extends Block{
emitLight = true;
lightRadius = 50f;
envEnabled |= Env.space;
ambientSound = Sounds.loopCircuit;
ambientSoundVolume = 0.13f;
}
@Override
@@ -71,7 +73,7 @@ public class OverdriveProjector extends Block{
stats.add(Stat.booster, StatValues.itemBoosters("+{0}%", stats.timePeriod, speedBoostPhase * 100f, phaseRangeBoost, items.items));
}
}
@Override
public void setBars(){
super.setBars();

View File

@@ -47,6 +47,8 @@ public class RegenProjector extends Block{
envEnabled |= Env.space;
rotateDraw = false;
flags = EnumSet.of(BlockFlag.blockRepair);
ambientSound = Sounds.loopRegen;
ambientSoundVolume = 0.45f;
}
@Override