Page MenuHome

In Game Engine Steering Actuator Turn Speed has no effect
Closed, ArchivedPublic

Description

System Information
Mac OSX 10.10.4
NVIDIA GeForce 8600M GT 256 MB

Blender Version
Broken: 2.75a c27589e

Turnspeed has no effect on seeking behavior.

Exact steps for others to reproduce the error
Based on a (as simple as possible) attached .blend file with minimum amount of steps

Event Timeline

Michael Carroll (mkec) raised the priority of this task from to 90.
Michael Carroll (mkec) updated the task description. (Show Details)
Michael Carroll (mkec) edited a custom field.
Jorge Bernal (lordloki) changed the task status from Unknown Status to Archived.Aug 14 2015, 8:41 PM
Jorge Bernal (lordloki) claimed this task.

It works well but it has to be used among Obstacle simulation (only works with RVO rays).

I attach a blend showing its performance.

Another related issue is that the turn speed should be inactive when obstacle simulation is inactive too. I will note in my own TODO.

Thanks for reporting

Ok, thanks.

By the way, user "BluePrintRandom" on BlenderArtist developed a workaround by turning facing off and rotating towards the vector of motion at a fixed speed using python:

import bge
cont = bge.logic.getCurrentController()

own=cont.owner

V = own.localLinearVelocity.copy()
V.z=0

if V.magnitude > .5:
     own.alignAxisToVect(V,0,.125)