Questions tagged [fixed-timestep]
The fixed-timestep tag has no summary.
82 questions
1
vote
1
answer
107
views
Objects move with different speed on different devices
I was making a 2d top-down game, but when I tested it on two devices (Samsung M31 and Samsung S25) there was a problem with player speed - it was faster on S25 and slower on M31. I tried using some ...
-1
votes
2
answers
173
views
Calculating the time of day is inaccurate
I'm working on a time system in Unity.
All I want from the system is to update the time every minute in addition to:
The time update is not affected by the FPS game.
The time update occurs strictly ...
1
vote
0
answers
96
views
Fixed timestep graphics jitter
I'm trying to implement the https://gafferongames.com/post/fix_your_timestep article but I have jitter on the position interpolation.
video of the problem
I have the following PhysX manager class ...
1
vote
1
answer
293
views
Fixed timestep without cloning game state
I'm doing a JS game with hundreds of moving physical particles.
I've read the famous "fix your timestep" article. So far I've implemented basic prototype with janky game loop tied to FPS and ...
0
votes
1
answer
505
views
Implementing a Fixed Time Step?
This has been bugging me for few days now. I'm trying to stop movement jittering in my game. I've looked towards semi and fixed time steps - moving towards the latter below so I can really understand (...
1
vote
0
answers
97
views
Physics interpolation given an asynchronous physics thread
I've followed https://gafferongames.com/post/fix_your_timestep/ to do interpolated physics. I have a separate thread entirely from my graphics thread. I use vulkan which allows me to do asynchronous ...
0
votes
1
answer
238
views
Physics update frequency feasibility
I want to create an offline 2D platformer that is not very physics heavy. After a lot of consideration, I've decided to run most of the physics at a fixed rate of 480hz, and I'm not experiencing any ...
1
vote
1
answer
101
views
Do we need an ackowledgment packet in deterministic TCP multiplayer game?
I am trying to implement a deterministic game after having read 1500 archers on a 28.8. The simulation uses fixed-point math and the client only sends commands to the server which sends back the ...
0
votes
1
answer
188
views
How do i correctly interpolate between 2 positions recieved from server?
I am trying to implement interpolation in client side. I store Vector2 position data recieved from server in a list and try to interpolate (x,y) from previous position to next position as data comes. ...
1
vote
1
answer
947
views
How to make my Unity project deterministic for replays?
I am working on an arcade-style 2D shmup and recently started implementing a replay system that allows players to view their runs of the game.
I use the technique of recording input each ...
0
votes
0
answers
53
views
Sync issues with replaying movement
I am creating a networked game and having issues with keeping positions synced between multiple clients.
Essentially what I have happening is one client's movement to replaying on another routed ...
0
votes
2
answers
6k
views
Time.fixedDeltaTime & Time.deltaTime in Unity
The old Unity 5.3 documentation said:
Time.fixedDeltaTime
The interval in seconds at which physics and other fixed frame rate
updates (like MonoBehaviour's FixedUpdate) are performed.
For reading the ...
18
votes
3
answers
8k
views
Fixed timestep game loop, why interpolation
This is a very standard way of doing a fixed timestep game loop, where you just accumulate time from the previous frame and consume it in discrete steps with the physics engine:
...
1
vote
1
answer
2k
views
Calculating framerate-independent values, for linear, quadratic, and exponential functions
There are a few similar posts, but they only deal with one of the three components I'm looking for, and none seem to handle the case of using a fixed step size (they're all about simulations which use ...
4
votes
2
answers
4k
views
How do fixed-point physics (engines) work?
I would think there should be an abundance of excellent articles answering this question, but my searches have come up completely empty.
I am developing an embedded graphics engine on a ...
0
votes
0
answers
192
views
Fixed timestep, how to determine how far back other clients are simulated
I'm working on networking code for a social MMO (very low-intensity compared to an FPS) and have a question about fixed timestep.
This answer does a good job of explaining the forward-dating part of ...
0
votes
0
answers
1k
views
How to apply forces to rigidbody when Time.timeScale is changed?
My Task:
I'm trying to replicate this virtual 3d creature evolution project. I'm using unity as my physics engine.
Each limb part has a MonoBehaviour called an <...
0
votes
1
answer
756
views
How often should I check for collisions in a Minecraft-like game?
I'm trying to build a game from scratch in Dart, similar to Minecraft.
As far as I understood, there are two main functions in a general game loop:
tick: a function that gets executed a fixed amount ...
1
vote
0
answers
136
views
Game loop stutters
I have the following game loop:
...
0
votes
1
answer
877
views
Interpolation of render with fixed physics update
In Fix Your Timestep, they briefly address the remainder time in relation to rendering. Saying that remainder can be used to generate an interpolated rendering.
We can use this remainder value to ...
2
votes
2
answers
2k
views
How to handle player input with fixed rate variable fps time step?
I've made a system which uses the ideas from "Fix your Time Step" in order update physics. I'm having trouble finding standard methods for dealing with this when user input affects player movement ...
0
votes
2
answers
410
views
Adding some new velocity to player in FixedUpdate. Should I use FixedDeltaTime or nothing?
I am trying to learn how to move objects in Unity without using the built in features like AddForce etc. Some tutorials on Unity website (and other places) is where I have got most of my 'knowledge' ...
4
votes
1
answer
870
views
Fixed Timestep with Interpolation | Blurry & Choppy
I've been implementing a game loop with a fixed timestep which uses interpolation as described in the (legendary as I have come to find out as it is referenced in almost every post I have read trying ...
0
votes
0
answers
208
views
How Best to Implement Fixed Time Step for Gsync/Freesync Monitors?
I currently implement my game loop using a variable fixed timestep, i.e. dt = 1 / monitor_refresh_rate with vsync (or pseudo vysnc with delays where vsync is ...
1
vote
0
answers
117
views
Keeping simulations in sync over long periods of time
I'm working on a multiplayer game which involves a huge amount of predictable AI enemies, and a few other players. The enemies are the most important to be accurate, because the game involves pixel ...
0
votes
1
answer
183
views
Logic at a low framerate with interpolated rendering at higher framerate
It takes too much processing power to do game logic on every rendered frame (60fps), so what if I made my game save frames?
It would actually calculate important stuff 20 times a second, and the ...
5
votes
1
answer
2k
views
Render Stutter - OpenGL or loop timing?
For some time now i have no been able to pinpoint the nature of the rendering stutter shown above(by not clearing the screen, not using SwapBuffers and drawing only to the front buffer). See the big ...
1
vote
1
answer
327
views
Fixed timestep on the server without hogging CPU?
It sounds backwards, but it's the situation I'm currently trying to solve on my dedicated server.
Everything I've read about fixed timestep assumed it was on a client, where you're already running in ...
2
votes
0
answers
739
views
How do games have low tick rates without causing input lag?
For example, Minecraft. It updates the gamestate at a rate of only 20/second. And from what I've read, these multiplayer games do the same with their network communication, sending updates at that ...
2
votes
1
answer
2k
views
Unity3d physics stability with low fixed timestep
I'm developing a vehicle simulator game for mobile platforms. This vehicle has some hydraulic arms. I use hinge joints and configurable joints. There can be collisions to walls etc.
When I set a low ...
2
votes
1
answer
419
views
How do I make my game (without performance problems) not stutter?
I've made a game that has gameticks every 1/60 seconds. These gameticks take very little time to calculate (< 0.5 ms).
The game is written in Javascript and uses requestAnimationFrame (rAF). rAF ...
1
vote
1
answer
1k
views
Is Time.deltaTime different on various devices?
Can someone say what is wrong with my code. I have custom timer implemented like this:
...
1
vote
1
answer
614
views
Timestep with multithreading
There are several questions and articles which deal with timestep - for example:
Should game logic update per second or per frame?
https://gafferongames.com/post/fix_your_timestep/
Accounting for ...
2
votes
1
answer
435
views
How much do inconsistencies in update timing matter?
Yesterday I wrote my first game loop with fixed timesteps.
It is supposed to run every 50 ms, however it runs at 50-53 ms.
Does it matter?
I'm guessing no, but I figured I would ask anyway.
...
3
votes
2
answers
5k
views
Can I always assume that fixed time step in Unity is reliable?
I was thinking about games on low end machines or phones where the CPU would be limited. If I were to move all of my game logic into FixedUpdate() can I assume that ...
87
votes
5
answers
25k
views
What is the point of update independent rendering in a game loop?
There are dozens of articles, books and discussions out there on game loops. However, I pretty often come across something like this:
...
3
votes
2
answers
2k
views
Implementing "Fix Your Time Step"
So far I have this implementation of "FYTS".
However I am facing several problems.
...
1
vote
1
answer
3k
views
Box2d Fixed Timestep and Interpolation
I am using libGDX and I have problems implementing the box2d fixed timestep with interpolation.
This is my code:
...
0
votes
0
answers
260
views
SFML game only runs smooth at high framerate (Windows 10)
I am trying to make my game smooth on low and high fps. Right now, it only runs smooth when I don't limit the framerate. If I run it at 60, then my sprite is noticeably "sluggish". I believe this ...
5
votes
2
answers
2k
views
Fixed timestep with interpolation & rounding draw positions: jerky animation when the character is not moving
I've implemented a deterministic, fixed timestep system from here:
http://gafferongames.com/game-physics/fix-your-timestep/
Everything works fine, output is the same with each step but there's one ...
1
vote
2
answers
416
views
Game loop with fixed timestep gives strange result
So I've read the famous article at http://www.koonsolo.com/news/dewitters-gameloop/comment-page-2/#comments which describes different methods of implementing a game loop. I've tried to implement the ...
6
votes
2
answers
2k
views
Is it safe to base a combo system in frames instead of time?
I'm building a prototype for a fighting game (not vs, something like Final Fight). I'm trying to define the data for the player combo tree and had a look around looking for inspiration and have seen ...
0
votes
2
answers
142
views
Running subsystems at difference update intervals
I want to update the rendering at 60fps, but the logic at some lower rate, say 15Hz. But if an object only moves when the game logic updates, then it would appear to stutter badly especially for lower ...
5
votes
1
answer
686
views
Fixed Time Step Flutter
I've seen a lot of questions about this problem, but really no solution. Hopefully I can explain the issue well enough that I can get some sort of closure on this problem.
I'm using a Fixed Time ...
1
vote
0
answers
90
views
Interpolate Entitiypositions received from Server
I want to Inter, or perhaps, extrapolate the positions of gameentities on the client. Those positions are received from the Server. The vague updaterate of the server makes it difficult to implement.
...
2
votes
1
answer
475
views
Client and server loops don't match up
I'm trying to build a small networked game using WebGL and NodeJS. I have a basic client and server setup and I'm at the point where I'm trying to implement dead reckoning to simulate what happens on ...
0
votes
1
answer
99
views
Does fixed time step deltaTime get higher if the computer can't handle it?
If you use fixed time step and set it to for example 0.0166667 does it ever go up if the computer can't handle 60 updates/ticks per second?
12
votes
4
answers
5k
views
How often do big MMORPG update the physics? [closed]
As far as I understand, most big games use fixed timestep to have a stable simulation.
Regarding the game server, which "frame rate" do they impose? Or said it another way, what fixed timestep do ...
1
vote
2
answers
1k
views
Using fixed timestep and interpolating states makes physics fall behind one frame. Does that affect responsiveness?
The title says it all, but let me build more into the question:
I suppose everyone by now knows the Fix Your Timestep article, and its proposal to free your physics engine steps from your rendering ...
0
votes
0
answers
367
views
Why does physics interpolation give me periodic jumps/flickers?
I have seen this question but it didn't solve the problem.
I have followed the same steps as in this article.
What I notice in my Android game is that my interpolation alpha (or fraction or ...