Binary file not shown.
Binary file not shown.
@@ -10,6 +10,12 @@ import mindustry.*;
|
|||||||
public class LoopControl{
|
public class LoopControl{
|
||||||
private ObjectMap<Sound, SoundData> sounds = new ObjectMap<>();
|
private ObjectMap<Sound, SoundData> sounds = new ObjectMap<>();
|
||||||
|
|
||||||
|
public void play(Sound sound, float volume){
|
||||||
|
if(Vars.headless) return;
|
||||||
|
|
||||||
|
play(sound, Core.camera.position, volume);
|
||||||
|
}
|
||||||
|
|
||||||
public void play(Sound sound, Position pos, float volume){
|
public void play(Sound sound, Position pos, float volume){
|
||||||
if(Vars.headless) return;
|
if(Vars.headless) return;
|
||||||
|
|
||||||
|
|||||||
@@ -1307,6 +1307,9 @@ public class UnitTypes implements ContentList{
|
|||||||
reload = 55f;
|
reload = 55f;
|
||||||
minShootVelocity = 0.01f;
|
minShootVelocity = 0.01f;
|
||||||
|
|
||||||
|
soundPitchMin = 1f;
|
||||||
|
shootSound = Sounds.plasmadrop;
|
||||||
|
|
||||||
bullet = new BasicBulletType(){{
|
bullet = new BasicBulletType(){{
|
||||||
sprite = "large-bomb";
|
sprite = "large-bomb";
|
||||||
width = height = 120/4f;
|
width = height = 120/4f;
|
||||||
@@ -1318,9 +1321,10 @@ public class UnitTypes implements ContentList{
|
|||||||
frontColor = Color.white;
|
frontColor = Color.white;
|
||||||
mixColorTo = Color.white;
|
mixColorTo = Color.white;
|
||||||
|
|
||||||
|
hitSound = Sounds.plasmaboom;
|
||||||
|
|
||||||
shootCone = 180f;
|
shootCone = 180f;
|
||||||
ejectEffect = Fx.none;
|
ejectEffect = Fx.none;
|
||||||
shootSound = Sounds.none;
|
|
||||||
despawnShake = 4f;
|
despawnShake = 4f;
|
||||||
|
|
||||||
collidesAir = false;
|
collidesAir = false;
|
||||||
|
|||||||
@@ -199,11 +199,14 @@ public class LExecutor{
|
|||||||
//bind to the next unit
|
//bind to the next unit
|
||||||
exec.setconst(varUnit, seq.get(index));
|
exec.setconst(varUnit, seq.get(index));
|
||||||
}
|
}
|
||||||
index ++;
|
index++;
|
||||||
}else{
|
}else{
|
||||||
//no units of this type found
|
//no units of this type found
|
||||||
exec.setconst(varUnit, null);
|
exec.setconst(varUnit, null);
|
||||||
}
|
}
|
||||||
|
}else if(exec.obj(type) instanceof Unit u && u.team == exec.team){
|
||||||
|
//bind to specific unit object
|
||||||
|
exec.setconst(varUnit, u);
|
||||||
}else{
|
}else{
|
||||||
exec.setconst(varUnit, null);
|
exec.setconst(varUnit, null);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -89,9 +89,9 @@ public abstract class Weather extends UnlockableContent{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(sound != Sounds.none){
|
if(!headless && sound != Sounds.none){
|
||||||
float noise = soundVolOscMag > 0 ? (float)Math.abs(Noise.rawNoise(Time.time() / soundVolOscScl)) * soundVolOscMag : 0;
|
float noise = soundVolOscMag > 0 ? (float)Math.abs(Noise.rawNoise(Time.time() / soundVolOscScl)) * soundVolOscMag : 0;
|
||||||
loops.play(sound, Core.camera.position, Math.max((soundVol + noise) * state.opacity, soundVolMin));
|
loops.play(sound, Math.max((soundVol + noise) * state.opacity, soundVolMin));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -41,10 +41,13 @@ public class AmmoListValue<T extends UnlockableContent> implements StatValue{
|
|||||||
sep(bt, Core.bundle.format("bullet.splashdamage", (int)type.splashDamage, Strings.fixed(type.splashDamageRadius / tilesize, 1)));
|
sep(bt, Core.bundle.format("bullet.splashdamage", (int)type.splashDamage, Strings.fixed(type.splashDamageRadius / tilesize, 1)));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!Mathf.equal(type.ammoMultiplier, 1f))
|
if(!Mathf.equal(type.ammoMultiplier, 1f) && !(type instanceof LiquidBulletType)){
|
||||||
sep(bt, Core.bundle.format("bullet.multiplier", (int)type.ammoMultiplier));
|
sep(bt, Core.bundle.format("bullet.multiplier", (int)type.ammoMultiplier));
|
||||||
if(!Mathf.equal(type.reloadMultiplier, 1f))
|
}
|
||||||
|
|
||||||
|
if(!Mathf.equal(type.reloadMultiplier, 1f)){
|
||||||
sep(bt, Core.bundle.format("bullet.reload", Strings.fixed(type.reloadMultiplier, 1)));
|
sep(bt, Core.bundle.format("bullet.reload", Strings.fixed(type.reloadMultiplier, 1)));
|
||||||
|
}
|
||||||
|
|
||||||
if(type.knockback > 0){
|
if(type.knockback > 0){
|
||||||
sep(bt, Core.bundle.format("bullet.knockback", Strings.fixed(type.knockback, 1)));
|
sep(bt, Core.bundle.format("bullet.knockback", Strings.fixed(type.knockback, 1)));
|
||||||
|
|||||||
+1
-1
@@ -1,3 +1,3 @@
|
|||||||
org.gradle.daemon=true
|
org.gradle.daemon=true
|
||||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||||
archash=a6f488d6f741b98d123113ceb26439032be0719e
|
archash=
|
||||||
|
|||||||
Reference in New Issue
Block a user