new-horizons/NewHorizons/External/ShipLogModule.cs
Ben C 1673de69ac Added XML Schemas
- Improved Map mode
- Added XML Schemas for Dialogue and Ship Log
- Added New Properties to JSON Schema
- Added Reveal Props
2022-02-05 19:32:32 -05:00

37 lines
921 B
C#

using NewHorizons.Utility;
namespace NewHorizons.External
{
public class ShipLogModule : Module
{
public string xmlFile;
public string spriteFolder;
public MapMode mapMode;
public CuriosityColor[] curiosities;
public EntryPosition[] positions;
public string[] initialReveal;
public class MapMode
{
public string revealedSprite;
public string outlineSprite;
public float scale = 1f;
public bool invisibleWhenHidden;
public float offset = 0f;
public bool remove = false;
}
public class CuriosityColor
{
public string id;
public MColor color;
public MColor highlightColor;
}
public class EntryPosition
{
public string id;
public MVector2 position;
}
}
}