Skip to content

Commit

Permalink
Set ZOffset and Offset default value to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
dnqbob committed Nov 3, 2024
1 parent a45b1a6 commit 313ae13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenRA.Mods.AS/Traits/World/TintedCellsLayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public class TintedCellsLayerInfo : TraitInfo
public readonly int FadeoutDelay = 150;

[Desc("Z offset of the visualization.")]
public readonly int ZOffset = 512;
public readonly int ZOffset = 0;

[Desc("Offset of the visualization.")]
public readonly WVec Offset = new(0, 0, 512);
public readonly WVec Offset = WVec.Zero;

[Desc("Name of the layer.")]
public readonly string Name = "radioactivity";
Expand Down

0 comments on commit 313ae13

Please sign in to comment.