fix: make turning input curve less aggressive

^2 instead of ^3. Not tested, hopefully makes it a lil better
This commit is contained in:
David
2025-10-01 21:49:40 -05:00
parent 87b2ab6f8c
commit 36da0203bc

View File

@@ -177,7 +177,7 @@ class Headless(Node):
# Forward/back and Turn
input.linear.x = -1.0 * left_stick_y
input.angular.z = -1.0 * right_stick_x ** 3 # Cubic for finer control (curve)
input.angular.z = -1.0 * right_stick_x ** 2 # Exponent for finer control (curve)
# Publish
self.core_twist_pub_.publish(input)