SteamWar/BauSystem2.0
Archiviert
12
0

Trace Refactor #233

Zusammengeführt
YoyoNow hat 121 Commits von TracerGUI nach master 2024-04-21 16:03:26 +02:00 zusammengeführt
Nur Änderungen aus Commit 45cc3abd0a werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -157,16 +157,14 @@ public abstract class ViewFlag {
Vector zVelocity = new Vector(0, 0, example.getVelocity().getZ());
Vector firstVelocity = xVelocity.getX() >= zVelocity.getZ() ? xVelocity : zVelocity;
Vector secondVelocity = xVelocity.getX() <= zVelocity.getZ() ? xVelocity : zVelocity;
pos = pos.add(yVelocity);
new RFallingBlockEntity(server, pos, Material.WHITE_STAINED_GLASS);
RFallingBlockEntity y = new RFallingBlockEntity(server, pos, Material.WHITE_STAINED_GLASS);
y.setNoGravity(true);
pos = pos.add(firstVelocity);
new RFallingBlockEntity(server, pos, Material.WHITE_STAINED_GLASS);
pos = pos.add(secondVelocity);
new RFallingBlockEntity(server, pos, Material.WHITE_STAINED_GLASS);
RFallingBlockEntity secound = new RFallingBlockEntity(server, pos, Material.WHITE_STAINED_GLASS);
secound.setNoGravity(true);
}
}
};