Eliminados defines sobrantes

This commit is contained in:
2025-10-06 11:29:20 +02:00
parent 77a585092d
commit c55d6de687
2 changed files with 5 additions and 12 deletions

View File

@@ -93,9 +93,9 @@ class Ball {
void enableRotoBallAttraction(bool enable);
float getDistanceToTarget() const; // Distancia actual al punto objetivo
void applyRotoBallForce(float target_x, float target_y, float sphere_radius, float deltaTime,
float spring_k = ROTOBALL_SPRING_K,
float damping_base = ROTOBALL_DAMPING_BASE,
float damping_near = ROTOBALL_DAMPING_NEAR,
float near_threshold = ROTOBALL_NEAR_THRESHOLD,
float max_force = ROTOBALL_MAX_FORCE);
float spring_k = SHAPE_SPRING_K,
float damping_base = SHAPE_DAMPING_BASE,
float damping_near = SHAPE_DAMPING_NEAR,
float near_threshold = SHAPE_NEAR_THRESHOLD,
float max_force = SHAPE_MAX_FORCE);
};