new-horizons/NewHorizons/External/HeightMapModule.cs
Noah 7b4b949927
A few miscellaneous additions (#92)
* Add names

* More Asteroid Customization

* Store images

* Space Station Astro Object Type

* Stretch

* Add a few missing properties to schema

* MVector3

* Revert "Space Station Astro Object Type"

This reverts commit 4a8ee29af81185ebed3ed661e4b9ca643350020a.

Co-authored-by: Nick <nicholasconnors@hotmail.ca>
2022-05-01 00:01:22 -04:00

15 lines
393 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; } = (MVector3)Vector3.one;
}
}