Update TreeBlock.java (#8965)

This commit is contained in:
nullevoy
2023-08-21 21:43:10 +02:00
committed by GitHub
parent 53cb0d4c89
commit 490b281c43

View File

@@ -31,8 +31,10 @@ public class TreeBlock extends Block{
Draw.rect(shadow, tile.worldx() + shadowOffset, tile.worldy() + shadowOffset, rot);
}
TextureRegion reg = variants == 0 ? region : variantRegions[Mathf.randomSeed(tile.pos(), 0, Math.max(0, variantRegions.length - 1))];
Draw.z(Layer.power + 1);
Draw.rectv(region, x, y, w, h, rot, vec -> vec.add(
Draw.rectv(reg, x, y, w, h, rot, vec -> vec.add(
Mathf.sin(vec.y*3 + Time.time, scl, mag) + Mathf.sin(vec.x*3 - Time.time, 70, 0.8f),
Mathf.cos(vec.x*3 + Time.time + 8, scl + 6f, mag * 1.1f) + Mathf.sin(vec.y*3 - Time.time, 50, 0.2f)
));