We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef06c51 commit 9eedb4dCopy full SHA for 9eedb4d
Runtime/Visualizers/VoronoiVisualizer.cs
@@ -7,15 +7,23 @@ namespace Gameframe.Procgen
7
{
8
public class VoronoiVisualizer : MonoBehaviour
9
10
- public int seed = 0;
11
- public Vector2Int imageSize;
12
- public int regionAmount;
+ [SerializeField]
+ private int seed;
+
13
14
+ private Vector2Int imageSize;
15
16
17
+ private int regionAmount;
18
19
[SerializeField]
20
private MeshRenderer _renderer;
21
- public bool UseMainTexture = true;
- public string texturePropertyName = "_BaseMap";
22
23
+ private bool UseMainTexture = true;
24
25
26
+ private string texturePropertyName = "_BaseMap";
27
28
private void Start()
29
0 commit comments