mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Merge branch 'main' of https://github.com/Outer-Wilds-New-Horizons/new-horizons
This commit is contained in:
commit
fdf048b675
@ -172,7 +172,7 @@ namespace NewHorizons.Builder.Props.Audio
|
|||||||
audioSignal._identificationDistance = info.identificationRadius;
|
audioSignal._identificationDistance = info.identificationRadius;
|
||||||
audioSignal._canBePickedUpByScope = true;
|
audioSignal._canBePickedUpByScope = true;
|
||||||
// The outsider adds outer fog warp volumes to Bramble which break any signals NH places there
|
// The outsider adds outer fog warp volumes to Bramble which break any signals NH places there
|
||||||
if (Main.Instance.ModHelper.Interaction.ModExists("SBtT.TheOutsider") && planetGO.GetComponent<AstroObject>()._name == AstroObject.Name.DarkBramble)
|
if (Main.Instance.ModHelper.Interaction.ModExists("SBtT.TheOutsider") && planetGO?.GetComponent<AstroObject>()?._name == AstroObject.Name.DarkBramble)
|
||||||
{
|
{
|
||||||
audioSignal._outerFogWarpVolume = null;
|
audioSignal._outerFogWarpVolume = null;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
"author": "xen, Bwc9876, JohnCorby, MegaPiggy, Trifid, and friends",
|
"author": "xen, Bwc9876, JohnCorby, MegaPiggy, Trifid, and friends",
|
||||||
"name": "New Horizons",
|
"name": "New Horizons",
|
||||||
"uniqueName": "xen.NewHorizons",
|
"uniqueName": "xen.NewHorizons",
|
||||||
"version": "1.24.0",
|
"version": "1.24.1",
|
||||||
"owmlVersion": "2.12.1",
|
"owmlVersion": "2.12.1",
|
||||||
"dependencies": [ "JohnCorby.VanillaFix", "xen.CommonCameraUtility", "dgarro.CustomShipLogModes" ],
|
"dependencies": [ "JohnCorby.VanillaFix", "xen.CommonCameraUtility", "dgarro.CustomShipLogModes" ],
|
||||||
"conflicts": [ "PacificEngine.OW_CommonResources" ],
|
"conflicts": [ "PacificEngine.OW_CommonResources" ],
|
||||||
|
|||||||
@ -108,7 +108,7 @@ If you run into issues please make sure:
|
|||||||
|
|
||||||
### Making a GitHub Repository
|
### Making a GitHub Repository
|
||||||
|
|
||||||
To get started, you'll need to fork the [the New Horizons addon template](https://github.com/xen-42/ow-new-horizons-config-template)
|
To get started, you'll need to click the green "Use This Template" button on [the New Horizons addon template](https://github.com/xen-42/ow-new-horizons-config-template) GitHub repository.
|
||||||
|
|
||||||
- Set the Name to your username followed by a dot (`.`), followed by your mod's name in PascalCase (no spaces, new words have capital letters). So for example if my username was "Test" and my mod's name was "Really Cool Addon", I would name the repo `Test.ReallyCoolAddon`.
|
- Set the Name to your username followed by a dot (`.`), followed by your mod's name in PascalCase (no spaces, new words have capital letters). So for example if my username was "Test" and my mod's name was "Really Cool Addon", I would name the repo `Test.ReallyCoolAddon`.
|
||||||
- The description is what will appear in the mod manager under the mod's name, you can always edit this later
|
- The description is what will appear in the mod manager under the mod's name, you can always edit this later
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user