Fully added gripper, distance, IMU, and display modules

This commit is contained in:
Christen
2026-02-28 21:39:36 -05:00
parent fd5d41f645
commit 6b2270381d
105 changed files with 40782 additions and 1261 deletions

View File

@@ -51,7 +51,6 @@ public class ModuleSelector : MonoBehaviour
ModuleBase module = hit.collider.GetComponentInParent<ModuleBase>();
if (module != null)
{
module.OnSelect();
prevModule = module;
// Servo highlighting support
@@ -76,7 +75,6 @@ public class ModuleSelector : MonoBehaviour
{
if (prevModule != null)
{
prevModule.DeSelect();
prevModule = null;
}