mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-10 12:34:11 +01:00
Merge branch 'dev' into shader-pipeline
This commit is contained in:
commit
cd5b9b06b5
@ -33,6 +33,7 @@ public class AtlasStitcher {
|
||||
.equals(PlayerContainer.BLOCK_ATLAS_TEXTURE))
|
||||
return;
|
||||
|
||||
sprites.forEach(StitchedSprite::reset);
|
||||
sprites.stream()
|
||||
.map(StitchedSprite::getLoc)
|
||||
.forEach(event::addSprite);
|
||||
|
@ -11,7 +11,7 @@ public class StitchedSprite {
|
||||
|
||||
TextureAtlasSprite sprite;
|
||||
|
||||
public StitchedSprite(ResourceLocation loc) {
|
||||
StitchedSprite(ResourceLocation loc) {
|
||||
this.loc = loc;
|
||||
}
|
||||
|
||||
@ -28,4 +28,8 @@ public class StitchedSprite {
|
||||
|
||||
return sprite;
|
||||
}
|
||||
|
||||
void reset() {
|
||||
sprite = null;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user