mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
15 lines
368 B
C#
15 lines
368 B
C#
using NewHorizons.Utility;
|
|
using UnityEngine;
|
|
|
|
namespace NewHorizons.External
|
|
{
|
|
public class HeightMapModule : Module
|
|
{
|
|
public string HeightMap { get; set; }
|
|
public string TextureMap { get; set; }
|
|
public float MinHeight { get; set; }
|
|
public float MaxHeight { get; set; }
|
|
public MVector3 Stretch { get; set; }
|
|
}
|
|
}
|