Low vs. Medium vs. High.
I don't think I've ever seen an answer as to what the game actually does.
Does it do more calculations per second? Ignore some physics on lower levels? Something else?
People speak of it as if it's important yet I have no clue what difference it's making.
@Graingy delta time = update period (in like 99% of cases, at least)
Some game devs call it that because of heehee haha funny calculus reference
@Numbers2 I'm looking for answers a bit more technical.
hpg seemed to be going in the right direction.
@Graingy read the second comment
@Numbers2 That doesn't answer my question. I've seen that example, I was wondering what the game actually does differently to cause that effect.
So I guess by putting the the physics to a lower setting it doesn't require the game to focus that hard on getting things correct with the movement of parts which then means you won't have issues with frame rate as the game doesn't need to calculate more to the point process things as quickly which in turn gives a better frame rate at the cost of realism with the craft
Ok here's a classic example If I download a plane that uses custom gear on low settings the wheels will not be able to handle the weight on medium still the same issue but better and then on high you have minimal to no issues with the gear jitters from 300,000lbs of weight
Like, change in?
@hpgbproductions delta time?
I know that it changes the update rate of funky trees. For medium and high, the update period is 0.01s. For low, it is 0.02s. So if you use low physics, you can break FT that uses delta time for calculations, if they don't compute it and just assume 0.01.
.
Tested using
SETTER DeltaTime:
Time-PreviousTime
SETTER PreviousTime:
Time
.
I used to compute DeltaTime, but now I might assume 0.01 xdd
still have no idea
@SupremeDorian Understood.
@KSB24 Except VR, annoyingly.
@SupremeDorian I figured so, like a tick-speed in minecraft
strangely enough it makes no discernible difference for me
Low = pointless for most of modern computing devices(including mobile formfactor) but only just causing problems everytime
Medium = not the same as low, but it's the same thing as high
High = THE STANDARD
@Graingy kerosene
@SupremeDorian Ah.
So... what kinds of offerings do you need to leave at the Shrine of Andrew to get divine knowledge?
@Graingy potentially. I dunno, I'm not a dev or much of a technical person so I can't really answer that
@SupremeDorian Hm, so that was right.
I assume that would mean that, say, parts could clip into each other before the physics engine updates and realizes something was wrong?
I believe it basically affects the number of times the physics engine updates per second, sort of like frames per second but for physics. More updates means more accurate physics, but extra computational cost.