Mirror von
https://github.com/ViaVersion/ViaBackwards.git
synchronisiert 2024-12-26 16:12:43 +01:00
Handle dust particle change
Dieser Commit ist enthalten in:
Ursprung
29ec3efa9c
Commit
8a67061d32
@ -68,18 +68,16 @@ public class BlockItemPackets1_17 extends nl.matsv.viabackwards.api.rewriters.It
|
|||||||
map(Type.INT); // Particle count
|
map(Type.INT); // Particle count
|
||||||
handler(wrapper -> {
|
handler(wrapper -> {
|
||||||
int id = wrapper.get(Type.INT, 0);
|
int id = wrapper.get(Type.INT, 0);
|
||||||
if (id == 14 || id == 15) {
|
if (id == 15) {
|
||||||
wrapper.write(Type.FLOAT, wrapper.read(Type.DOUBLE).floatValue()); // R
|
wrapper.passthrough(Type.FLOAT); // R
|
||||||
wrapper.write(Type.FLOAT, wrapper.read(Type.DOUBLE).floatValue()); // G
|
wrapper.passthrough(Type.FLOAT); // G
|
||||||
wrapper.write(Type.FLOAT, wrapper.read(Type.DOUBLE).floatValue()); // B
|
wrapper.passthrough(Type.FLOAT); // B
|
||||||
wrapper.passthrough(Type.FLOAT); // Scale
|
wrapper.passthrough(Type.FLOAT); // Scale
|
||||||
|
|
||||||
if (id == 15) {
|
// Dust color transition -> Dust
|
||||||
// Dust color transition -> Dust
|
wrapper.read(Type.FLOAT); // R
|
||||||
wrapper.read(Type.DOUBLE); // R
|
wrapper.read(Type.FLOAT); // G
|
||||||
wrapper.read(Type.DOUBLE); // G
|
wrapper.read(Type.FLOAT); // B
|
||||||
wrapper.read(Type.DOUBLE); // B
|
|
||||||
}
|
|
||||||
} else if (id == 36) {
|
} else if (id == 36) {
|
||||||
// Vibration signal - no nice mapping possible without tracking entity positions and doing particle tasks
|
// Vibration signal - no nice mapping possible without tracking entity positions and doing particle tasks
|
||||||
wrapper.cancel();
|
wrapper.cancel();
|
||||||
|
@ -84,18 +84,9 @@ public class EntityPackets1_17 extends EntityRewriter<Protocol1_16_4To1_17> {
|
|||||||
}
|
}
|
||||||
} else if (type == MetaType1_14.PARTICLE) {
|
} else if (type == MetaType1_14.PARTICLE) {
|
||||||
Particle particle = (Particle) meta.getValue();
|
Particle particle = (Particle) meta.getValue();
|
||||||
if (particle.getId() == 14 || particle.getId() == 15) { // Dust / Dust Transition
|
if (particle.getId() == 15) { // Dust / Dust Transition
|
||||||
// RGB is encoded as doubles in 1.17
|
// Remove transition target color values 4-6
|
||||||
for (int i = 0; i < 3; i++) {
|
particle.getArguments().subList(4, 7).clear();
|
||||||
Particle.ParticleData data = particle.getArguments().get(i);
|
|
||||||
data.setValue(((Number) data.getValue()).floatValue());
|
|
||||||
data.setType(Type.FLOAT);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (particle.getId() == 15) {
|
|
||||||
// Remove transition target color values 4-6
|
|
||||||
particle.getArguments().subList(4, 7).clear();
|
|
||||||
}
|
|
||||||
} else if (particle.getId() == 36) { // Vibration Signal
|
} else if (particle.getId() == 36) { // Vibration Signal
|
||||||
// No nice mapping possible without tracking entity positions and doing particle tasks
|
// No nice mapping possible without tracking entity positions and doing particle tasks
|
||||||
particle.setId(0);
|
particle.setId(0);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren