Skip to content

Commit

Permalink
Default Cinematic bar color to solid black (previously 100% transpare…
Browse files Browse the repository at this point in the history
…nt black)
  • Loading branch information
Goodlyay committed Aug 24, 2024
1 parent d61290a commit f6aa81e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MCGalaxy/Player/CinematicGui.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class CinematicGui {
public bool hideHotbar;

public void SetBarColor(Player p, ColorDesc color) { barColor = color; p.Session.SendCinematicGui(this); }
public ColorDesc barColor;
public ColorDesc barColor = new ColorDesc(0, 0, 0);

/// <summary>
/// From 0 to 1 where 0 is not visible and 1 is screen fully covered
Expand Down

0 comments on commit f6aa81e

Please sign in to comment.