Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
StrokeStyle.cs
Go to the documentation of this file.
1using System;
2using UnityEngine;
3
4namespace PrimitiveUI;
5
6[Serializable]
7public class StrokeStyle
8{
9 public Color color;
10
11 public float thickness;
12
14
16
18 {
19 get
20 {
22 {
23 defaultStrokeStyleInstance = new StrokeStyle(Color.white, 0.04f, StrokeScaleMode.Relative);
24 }
26 }
27 }
28
30 {
31 this.color = color;
32 this.thickness = thickness;
33 this.scaleMode = scaleMode;
34 }
35}
static StrokeStyle defaultStrokeStyle
Definition: StrokeStyle.cs:18
StrokeScaleMode scaleMode
Definition: StrokeStyle.cs:13
StrokeStyle(Color color, float thickness, StrokeScaleMode scaleMode)
Definition: StrokeStyle.cs:29
static StrokeStyle defaultStrokeStyleInstance
Definition: StrokeStyle.cs:15