added the function for making a stranger spiral

This commit is contained in:
FreezeDriedMangoes 2022-12-31 11:04:39 -05:00
parent 403047fcd0
commit 0860e93efb

View File

@ -7,8 +7,6 @@ namespace NewHorizons.Builder.Props
{ {
public static class NomaiTextArcBuilder { public static class NomaiTextArcBuilder {
public static int i = 0; public static int i = 0;
public static SpiralProfile spiralProfile;
public static bool removeBakedInRotationAndPosition = true; public static bool removeBakedInRotationAndPosition = true;
public static void PlaceAdult() public static void PlaceAdult()
@ -19,6 +17,10 @@ namespace NewHorizons.Builder.Props
{ {
BuildSpiralGameObject(childSpiralProfile, "Text Arc Prefab " + (i++)); BuildSpiralGameObject(childSpiralProfile, "Text Arc Prefab " + (i++));
} }
public static void PlaceStranger()
{
BuildSpiralGameObject(strangerSpiralProfile, "Text Arc Prefab " + (i++));
}
public static GameObject BuildSpiralGameObject(SpiralProfile profile, string goName="New Nomai Spiral") public static GameObject BuildSpiralGameObject(SpiralProfile profile, string goName="New Nomai Spiral")
{ {