So I have a platform that launches the player into the air when they collide with it. But when I set the graphics options ingame it also appears to be changing the velocity of the player launch?
Low Graphics = Less velocity / High Graphics = More velocity
The blueprints changing the graphics have no connection to the launch platform… Any ideas lol?
AddImpulse accounts for frame rate(ticks/delta time), so you’ll get different results depending on frame rate. Changing graphics options changes frame rate.
Use AddImpulse instead, which does not account for it. You should get the same results regardless of FPS.