mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Just use 1st arc
This commit is contained in:
parent
53ae788d2e
commit
f76272599f
@ -48,7 +48,8 @@ namespace NewHorizons.Builder.Props
|
|||||||
{
|
{
|
||||||
if (Main.Instance.CurrentStarSystem == "EyeOfTheUniverse")
|
if (Main.Instance.CurrentStarSystem == "EyeOfTheUniverse")
|
||||||
{
|
{
|
||||||
var existingArcs = GameObject.FindObjectsOfType<NomaiTextLine>().Select(x => x?.gameObject).Where(x => x != null).ToArray();
|
// Just take every wall text and get the first arc
|
||||||
|
var existingArcs = GameObject.FindObjectsOfType<NomaiWallText>().Select(x => x?.gameObject?.transform?.Find("Arc 1")?.gameObject).Where(x => x != null).ToArray();
|
||||||
_arcPrefabs = new List<GameObject>();
|
_arcPrefabs = new List<GameObject>();
|
||||||
_childArcPrefabs = new List<GameObject>();
|
_childArcPrefabs = new List<GameObject>();
|
||||||
_ghostArcPrefabs = new List<GameObject>();
|
_ghostArcPrefabs = new List<GameObject>();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user