mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
- Improved Map mode - Added XML Schemas for Dialogue and Ship Log - Added New Properties to JSON Schema - Added Reveal Props
30 lines
802 B
C#
30 lines
802 B
C#
using NewHorizons.Utility;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NewHorizons.External
|
|
{
|
|
public class SignalModule : Module
|
|
{
|
|
public SignalInfo[] Signals;
|
|
|
|
public class SignalInfo
|
|
{
|
|
public MVector3 Position;
|
|
public string Frequency;
|
|
public string Name;
|
|
public string AudioClip = null;
|
|
public string AudioFilePath = null;
|
|
public string Reveals = "";
|
|
public float SourceRadius = 1f;
|
|
public float DetectionRadius = 0f;
|
|
public float IdentificationRadius = 10f;
|
|
public bool OnlyAudibleToScope = true;
|
|
public bool InsideCloak = false;
|
|
}
|
|
}
|
|
}
|