mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Add renames
This commit is contained in:
parent
bcdfbedb53
commit
fa8b1249e8
30
NewHorizons/External/Modules/PropModule.cs
vendored
30
NewHorizons/External/Modules/PropModule.cs
vendored
@ -243,6 +243,11 @@ namespace NewHorizons.External.Modules
|
|||||||
/// Acceleration of the raft. Default acceleration is 5.
|
/// Acceleration of the raft. Default acceleration is 5.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DefaultValue(5f)] public float acceleration = 5f;
|
[DefaultValue(5f)] public float acceleration = 5f;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An optional rename of this object
|
||||||
|
/// </summary>
|
||||||
|
public string rename;
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonObject]
|
[JsonObject]
|
||||||
@ -287,6 +292,11 @@ namespace NewHorizons.External.Modules
|
|||||||
/// Loudness of the geyser
|
/// Loudness of the geyser
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DefaultValue(0.7f)] public float volume = 0.7f;
|
[DefaultValue(0.7f)] public float volume = 0.7f;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An optional rename of this object
|
||||||
|
/// </summary>
|
||||||
|
public string rename;
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonObject]
|
[JsonObject]
|
||||||
@ -354,6 +364,11 @@ namespace NewHorizons.External.Modules
|
|||||||
/// Fluid type for sounds/effects when colliding with this tornado.
|
/// Fluid type for sounds/effects when colliding with this tornado.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DefaultValue("cloud")] public FluidType fluidType = FluidType.Cloud;
|
[DefaultValue("cloud")] public FluidType fluidType = FluidType.Cloud;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An optional rename of this object
|
||||||
|
/// </summary>
|
||||||
|
public string rename;
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonObject]
|
[JsonObject]
|
||||||
@ -402,6 +417,11 @@ namespace NewHorizons.External.Modules
|
|||||||
/// The colour of the meteor's stone.
|
/// The colour of the meteor's stone.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public MColor stoneTint;
|
public MColor stoneTint;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An optional rename of this object
|
||||||
|
/// </summary>
|
||||||
|
public string rename;
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonObject]
|
[JsonObject]
|
||||||
@ -489,6 +509,11 @@ namespace NewHorizons.External.Modules
|
|||||||
/// The position of this entry location
|
/// The position of this entry location
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public MVector3 position;
|
public MVector3 position;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An optional rename of this object
|
||||||
|
/// </summary>
|
||||||
|
public string rename;
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonObject]
|
[JsonObject]
|
||||||
@ -680,6 +705,11 @@ namespace NewHorizons.External.Modules
|
|||||||
/// Whether the positional and rotational coordinates are relative to parent instead of the root planet object.
|
/// Whether the positional and rotational coordinates are relative to parent instead of the root planet object.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool isRelativeToParent;
|
public bool isRelativeToParent;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An optional rename of this object
|
||||||
|
/// </summary>
|
||||||
|
public string rename;
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonObject]
|
[JsonObject]
|
||||||
|
|||||||
@ -75,5 +75,10 @@ namespace NewHorizons.External.Modules.VariableSize
|
|||||||
/// Optional override for the render queue. If the singularity is rendering oddly, increasing this to 3000 can help
|
/// Optional override for the render queue. If the singularity is rendering oddly, increasing this to 3000 can help
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Range(2501f, 3500f)] public int renderQueueOverride = 2985;
|
[Range(2501f, 3500f)] public int renderQueueOverride = 2985;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An optional rename of this object
|
||||||
|
/// </summary>
|
||||||
|
public string rename;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user