By the way, the engine now generates one chunk of map around the player (up to distance of 20 chunks) every 10 seconds.
Couldn't this be related?
[0.9.0]Small stutter every few seconds
Re: [0.9.0]Small stutter every few seconds
I think, that is related.
I had a similar issue in 0.8.0
I had a similar issue in 0.8.0
Re: [0.9.0]Small stutter every few seconds
But this was introduced in 0.9.DRBLN wrote:I think, that is related.
I had a similar issue in 0.8.0
Anyway, the way to test it would be to force the engine to generate the map with something like (copy paste to console)
Code: Select all
local radius = 21*32; local position = game.player.character.position; game.player.force.chart{{position.x - radius, position.y - radius}, {position.x + radius, position.y + radius}}
When it is finished, the stutter should no longer be there if the reason was this.
- AlexPhoenix
- Fast Inserter
- Posts: 149
- Joined: Tue Feb 18, 2014 7:48 am
- Contact:
Re: [0.9.0]Small stutter every few seconds
Gammro, can you please provide specs of your PC(RAM, 32/64 bit, GPU RAM, OS ver) and factorio version(did you try 0.9.2?), i will try to reproduce slutter via virtual machine.
-
- Manual Inserter
- Posts: 3
- Joined: Fri Feb 28, 2014 10:05 pm
- Contact:
Re: [0.9.0]Small stutter every few seconds
my game stutters about every 11 seconds can someone help me?
(I actually used my ipods stopwatch to count the time between stutters)
(I actually used my ipods stopwatch to count the time between stutters)
- Attachments
-
- printscreen.png (762.6 KiB) Viewed 8798 times
Re: [0.9.0]Small stutter every few seconds
That is definitelly the world generation (every second 1 chunk is generated).james123212 wrote:my game stutters about every 11 seconds can someone help me?
(I actually used my ipods stopwatch to count the time between stutters)
Try this:
kovarex wrote: Anyway, the way to test it would be to force the engine to generate the map with something like (copy paste to console)Open the map and wait until it charts the square.Code: Select all
local radius = 21*32; local position = game.player.character.position; game.player.force.chart{{position.x - radius, position.y - radius}, {position.x + radius, position.y + radius}}
When it is finished, the stutter should no longer be there if the reason was this.
Re: [0.9.0]Small stutter every few seconds
0.9.2 ?AlexPhoenix wrote:Gammro, can you please provide specs of your PC(RAM, 32/64 bit, GPU RAM, OS ver) and factorio version(did you try 0.9.2?), i will try to reproduce slutter via virtual machine.
Where ?
Re: [0.9.0]Small stutter every few seconds
Kovarex fixed this for the 0.10. The world will be generated in a different thread.