Hi again @lazybitgames , I’m sorry I dont understand so much about networking, so I cant help about networking.
May I ask a question? I couldnt find the way load tires in Blueprint… Is it not possible? There is “set tire model” node but you cant select any asset.
Thank you it works! Just one more question, I know its very wide-range question. But this is the most common problem of mine, at certain speed, I cant control the car anyomre, its sliding so much, no matter how much asphalt friction is… Steering assist, etc nothing is useful for that. Do you have any recommendation?
define high speed, is it over 100, 200 or 300 kmh?
and define sliding, do you have understeering(the car can not turn) or oversteering(turn too much, spin out) problems?
After 150kmh +, I cannot control the car anymore. If I press left or right, car start to spin. And before that its hard to steer because even a tiny pressing of button car become very unstable.
Undesteer assist %25,
Oversteer %25.
ABS & ASR: %100
Min over steer angle 20
Front Rear Anti Roll power 0
Aerodynamics 0.8 and 0.2
Using line trace 3 raycount
Engine friction Torque 100, idle rpm 1200, limit rpm 6000, engine limiter time 100, inertia 0,25
I am also using arcade assist, understeer power is 100 and oversteer recover power is 1000, full recover assist speed 50
you are definitely overusing assists, for ex. you are both using regular stability assists that use brakes and arcade assists that apply external forces. it is obvious that you can not control the car with those settings.
cancel all assist, drive and detect what the car needs, do not expect to make sharp turns at 200 kmh.
try to get a good feeling by adjusting inertia scale, center of mass, tire and suspension settings first, keep it realistic.
if it is an rwd car, you can use the torque splitter in arcade assists or just give %5 traction to front wheels, it makes a slight difference.
unless you are making a totally arcade game, assists should be like small adjusters.
I’m in the process of converting my game over to this plugin and ran into a problem with the handbrake not working with standard Input disabled. It works fine if standard input is enabled, but I can’t get it to work if it’s disabled. I checked my Handbrake Axis(0-1) to make sure it’s getting input and it is. Not sure if I’m missing something. Thanks.
Another question regarding the handbrake. I have an automatic transmission shifter that shifts through gears (Park, Reverse, Neutral, Drive, 1st) that I had setup for the previous physics plugin. Everything except Park (using the Handbrake) works. I’m using the Handbrake in Park to stop the vehicle and I’m getting input, but it doesn’t do anything. It only works when I use the ‘handbrake’ input key (Spacebar). I’m not sure how else to make it work given that it only works on bool. Thanks.
are you calling setBraking multiple times, may be you are cancelling what you do.
set a variable, only change that, call setBraking once every tick, it should be fine.
I’m only calling it once. It doesn’t work unless I hit the spacebar (handbrake input). I tried only using the bool and it still doesn’t work. Not sure why.
Axis bindings are constantly executing, even if the button isn’t pressed (Value will be 0 without input) so you want to use a branch to check you’re not in park on the Axis but also, for the Handbrake binding, on Pressed just use a flipflop node and use the “Is A” bool output to set the parked variable
NOTE: I haven’t actually done this but it should work.