Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TileObjectStyleModule.cs
Go to the documentation of this file.
1namespace Terraria.Modules;
2
4{
5 public int style;
6
7 public bool horizontal;
8
9 public int styleWrapLimit;
10
11 public int styleMultiplier;
12
13 public int styleLineSkip;
14
16
18
20 {
21 if (copyFrom == null)
22 {
23 style = 0;
24 horizontal = false;
29 styleLineSkip = 1;
30 }
31 else
32 {
33 style = copyFrom.style;
34 horizontal = copyFrom.horizontal;
35 styleWrapLimit = copyFrom.styleWrapLimit;
36 styleMultiplier = copyFrom.styleMultiplier;
37 styleLineSkip = copyFrom.styleLineSkip;
38 styleWrapLimitVisualOverride = copyFrom.styleWrapLimitVisualOverride;
39 styleLineSkipVisualoverride = copyFrom.styleLineSkipVisualoverride;
40 }
41 }
42}
TileObjectStyleModule(TileObjectStyleModule copyFrom=null)