Spectator Keyframe segments using Shoulder Camera are rendered in a different color on the timeline

This commit is contained in:
CrushedPixel
2015-09-06 16:47:38 +02:00
parent ad9806ed24
commit eeded7a7fd
2 changed files with 18 additions and 3 deletions

View File

@@ -84,6 +84,16 @@ public class SpectatorData extends AdvancedPosition {
}
public enum SpectatingMethod {
FIRST_PERSON, SHOULDER_CAM
FIRST_PERSON(0xFF0080FF), SHOULDER_CAM(0xFFFF8000);
private int color;
public int getColor() {
return color;
}
SpectatingMethod(int color) {
this.color = color;
}
}
}