Clear fallback sprite for core thrusters

This commit is contained in:
Anuken
2021-07-28 17:49:01 -04:00
parent bdb4ae2f85
commit 78f55765c1
2 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 B

View File

@ -29,8 +29,8 @@ public class CoreBlock extends StorageBlock{
//hacky way to pass item modules between methods
private static ItemModule nextItems;
public @Load("@-thruster1") TextureRegion thruster1; //top right
public @Load("@-thruster2") TextureRegion thruster2; //bot left
public @Load(value = "@-thruster1", fallback = "clear-effect") TextureRegion thruster1; //top right
public @Load(value = "@-thruster2", fallback = "clear-effect") TextureRegion thruster2; //bot left
public float thrusterLength = 14f/4f;
public UnitType unitType = UnitTypes.alpha;