mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
* 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>
15 lines
393 B
C#
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;
|
|
}
|
|
}
|