This commit is contained in:
SoulliesOfficial
2026-01-21 00:31:23 -05:00
parent 66a1701087
commit 4fe6ee5f99
70 changed files with 1595 additions and 687 deletions

View File

@@ -469,6 +469,7 @@ namespace Dreamteck.Splines
protected virtual void BuildMesh()
{
Debug.Log("Building Mesh " + gameObject.name);
//Logic for mesh generation, automatically called in the Build method
}

View File

@@ -1251,7 +1251,7 @@ namespace Dreamteck.Splines
RunUpdate(true);
}
private void RebuildUsers(bool immediate = false)
public void RebuildUsers(bool immediate = false)
{
for (int i = _subscribers.Length - 1; i >= 0; i--)
{
@@ -2055,7 +2055,7 @@ namespace Dreamteck.Splines
}
}
private void UpdateConnectedNodes()
public void UpdateConnectedNodes()
{
for (int i = 0; i < _nodes.Length; i++)
{