Pipeline saving and View popup window added

Made-with: Cursor
This commit is contained in:
Leo Qu
2026-03-10 18:13:32 -04:00
parent 477a86a495
commit 7212f692a6
10 changed files with 5260 additions and 21 deletions

View File

@@ -45,9 +45,11 @@ public abstract class ModuleBase : MonoBehaviour
}
try
{
if (0 != ControlLibrary.send_angle_control(Int32.Parse(moduleID), angleRounded))
int result = ControlLibrary.send_angle_control(Int32.Parse(moduleID), angleRounded);
Debug.Log($"[ControlLibrary] send_angle_control(moduleId={moduleID}, angle={angleRounded}) returned {result}");
if (result != 0)
{
Debug.Log("Control library exited with error");
Debug.LogWarning($"[ControlLibrary] send_angle_control returned error code: {result}");
}
}
catch (DllNotFoundException)