Motor speed vector -> blue

This commit is contained in:
Pascal Serrarens 2026-05-27 11:21:26 +02:00
parent 7162e8b3a7
commit 9d92767786

View File

@ -27,7 +27,7 @@ namespace NanoBrain.Braitenberg {
return;
this.speed = motorNeuron.outputValue.z;
Debug.DrawRay(this.transform.position, this.transform.forward * this.speed, Color.magenta);
Debug.DrawRay(this.transform.position, this.transform.forward * this.speed, Color.blue);
float desiredRpm = speed * 60; // target wheel RPM
float currentRpm = wheelCollider.rpm;