17 lines
197 B
C#
17 lines
197 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class height_output_class
|
|
{
|
|
public float value;
|
|
|
|
public float strength;
|
|
|
|
public bool perlin_foldout;
|
|
|
|
public height_output_class()
|
|
{
|
|
strength = 1f;
|
|
}
|
|
}
|