Jump to content

Проблема с setVehicleComponentRotation


iron015

Recommended Posts

Здравствуйте! Вот какая у меня проблема : когда стрелка спидометра доходит до 60, она начинает скакать в разные стороны, а после этого при снижении скорости уходит в противоположную сторону от нуля. Помогите, пожалуйста.

  
    speedx, speedy, speedz = getElementVelocity ( theVeh ) 
    actualspeed = (speedx^2 + speedy^2 + speedz^2)^(0.5)  
    kmh = actualspeed * 180 
    local spx, spy, spz = getVehicleComponentRotation(theVeh, "speeds") 
    setVehicleComponentRotation(theVeh, "speeds", spx,  kmh , spz) 
  

Link to comment
  • 5 weeks later...

Почему вы поворачиваете стрелку на скорость авто, а не угол? Если скорость выше, чем макс. скорость на спидометре - ваша стрелка уйдет за отсечку. Используйте функцию ниже, чтобы стрелка не уходила куда не нужно.

function math.clamp(val, lower, upper) 
    if lower > upper then lower, upper = upper, lower end  
    return math.max(lower, math.min(upper, val)) 
end 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...