Texture Streaming Pool UE5

I am use UE5.0.2 and I just started the project. but whenever I enter game mode as in I hit play it says texture streaming pool over budget. I checked stats and the moment i hit play the pool goes to 0 mb and the required pool says some 200 mb which is shown as over budget. Normal in my viewport the pool is at 1000mb and works just fine

2 Likes

This is a standard console hack:

r.Streaming.PoolSize 2000

( or 4000 etc )

2 Likes

yeah i know about this but my pool is at 1000 and required is at 200. the problem is when I hit play the pool goes to 0 and so 200mb is shown as over budget

1 Like

You have to be aware, that the way the pool behaves in editor, is totally different from a packaged game.

The longer you use the editor, the larger the pool gets. It’s based on how many textures you have looked at since you opened the editor, not your game. The pool doesn’t get flushed by the editor.

The pool is managed correctly in a packaged game though, so that’s how to tell if you have problems.

4 Likes

Hello guys. Sorry for the necro, but i always has this error. But my problem is, that my poolsize dont gets bigger by the command. I always has 0mb of max poolsize.

Did you encounter this problem also?

https://imgur.com/a/NJOibbo

Is there a way to increase this value forever? I have to enter the command every time I open the project. Very annoying

You have to do it every time. You can also put it on begin play ( in a console command node ).

you can add the command to your defaultengine.ini in the project config folder under the rendring section r.Streaming.PoolSize=(the number you want)

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.