What's Causing my Frame Rate to Drop? - Unreal Engine 5 Stat Profiling Tutorial

  Рет қаралды 8,551

NumenBrothers

NumenBrothers

Күн бұрын

In this episode we cover the steps required to identify the cause of your frame rate drops. We go into more detail about CPU-related frame rate drops, using the profile tool.
www.unrealengine.com/en-US/bl...
docs.unrealengine.com/5.3/en-...

Пікірлер: 50
@odin719
@odin719 5 ай бұрын
in UE 5.3 Tools - Profile - Profile Data Visualizer
@MrKylePopovich
@MrKylePopovich 4 ай бұрын
Amazing, thank you.
@HipernovaGames
@HipernovaGames 4 ай бұрын
Okey, can fin the file in \Saved\Logs\profileViz, but, how can open ?
@Skalbemann
@Skalbemann 3 ай бұрын
@@HipernovaGames got the same problem.. shit does not work
@pamparam3495
@pamparam3495 3 ай бұрын
@@Skalbemann yes the same, can't open this log file
@pamparam3495
@pamparam3495 3 ай бұрын
@@Skalbemann found the way - open an empty 5.2 project to see this log
@luckycogstudios
@luckycogstudios 3 ай бұрын
Underrated video, I wish Epic had a bunch of videos like this, short and too the point! I'm glad to see this at the top of Google's search results when searching for UE5 profiling.
@briankranevitter3114
@briankranevitter3114 2 ай бұрын
This is exactly the performance tests video i always wanted to see. Thank you!
@PlayerOnHard
@PlayerOnHard 5 ай бұрын
This is so relevant for me at the moment, much appreciated.
@FredericoZveiter
@FredericoZveiter 2 ай бұрын
Thank you so much for this video, short and sweet! 👏👏👏
@julianmillo1459
@julianmillo1459 5 ай бұрын
Very helpful, thank you so much for posting this!
@roja
@roja 3 ай бұрын
Wow! Totally helpful. Subbed.
@asdrofllmao
@asdrofllmao 11 күн бұрын
Great resource, thank you!
@ArsMar
@ArsMar 2 ай бұрын
Very useful, thank you!
@grothjacky
@grothjacky 8 күн бұрын
Thank you so much for the video, it's exactly what I was looking for! :)
@Utopia2023Game2
@Utopia2023Game2 4 ай бұрын
Jeeeeses thank u for this usefull video
@JonSkov-DK
@JonSkov-DK 4 ай бұрын
Very useful video 10/10
@aka.Xavier
@aka.Xavier 5 ай бұрын
Thanks for the video. Have you ever attempted to create a mobile version of any of your games? I tried with my first game, and it was challenging due to very limited resources. Despite the constraints, I managed to achieve results somewhat similar to the original. The process taught me a lot about optimizing my new games
@NumenBrothers
@NumenBrothers 5 ай бұрын
Nope, I'm a PC man, through in through :)
@OleksandrSe
@OleksandrSe 4 ай бұрын
Based, that's literally what I needed🥃
@anjoomfaisal
@anjoomfaisal 4 ай бұрын
thank you :D
@googlefuuplayad9055
@googlefuuplayad9055 2 ай бұрын
Nice thx 👍
@Restart-Gaming
@Restart-Gaming 2 ай бұрын
Great found it save the log but now its not showing up under profile log its empty ?
@kristinatamasauskaite9033
@kristinatamasauskaite9033 2 ай бұрын
Subscribed
@esotericgamedev
@esotericgamedev 5 ай бұрын
I see CPU Stall at the bottom of the GameThread hierarchy -- not sure what it means or where else to look. Thanks for the video
@NumenBrothers
@NumenBrothers 5 ай бұрын
It's stalling for something- meaning there is something processing (probably GPU) before CPU processes again. Check your detailed stats in editor (when playing) and see if it's the red line (CPU) or another line that's the highest
@rifat.ahammed
@rifat.ahammed 3 ай бұрын
Thanks
@undead_prime
@undead_prime 5 ай бұрын
Unfortunaly i cant find a "Profiler" tab in Session frontend. UE version is 5.3.
@NumenBrothers
@NumenBrothers 5 ай бұрын
Sad to see it looks like 5.3 might have retired profiler. 5.2 it's still there. Unreal Insights is the replacement- though I haven't played much yet with Unreal Insights.
@undead_prime
@undead_prime 5 ай бұрын
On the bright side 5.2 still open profiles created in 5.3. But we will both of engine version need to be installed in order to be able to examine their contents. @@NumenBrothers
@codyozgaming9416
@codyozgaming9416 4 ай бұрын
As the pinned comment says its now located in UE 5.3 at: Tools - Profile - Profile Data Visualizer
@max3116
@max3116 3 ай бұрын
@@codyozgaming9416 the problem is that the file type needs to be (profviz) in order to open it. I think using 5.2 is the way to go to open profilers files.
@unrealdevop
@unrealdevop 3 ай бұрын
@@max3116 To be honest Unreal Insights isn't that much different, it just has a lot more functionality which seems to scare a lot of people.
@studiobaxter1242
@studiobaxter1242 2 ай бұрын
Interesting. Just when you think Unreal is the most complicated thing in the universe, you realise it's far more complicated than that. But, good to know and helpful, thanks.
@Restart-Gaming
@Restart-Gaming Ай бұрын
ok tried again still not showing did find it but notice on yours its a uestat file like a square paper looked for mine its a folder when i open folder nothing there? is there another way to find it? also most of mine are all show GT tickable time tickablegameobjects time tick time ?
@Restart-Gaming
@Restart-Gaming 2 ай бұрын
I have on my side 3 tabs Console automation screen comparison no profiler tab?
@NumenBrothers
@NumenBrothers 2 ай бұрын
check out the pinned comment: Tools -> Profile -> Profile Data Visualizer
@gail_blue
@gail_blue 2 күн бұрын
For loops have terrible performance in blueprints because they are made out of other blueprint functions(they are macros). So, if you can do checks like this in C++, it'll run 1000 times faster. I think Epic is pushing Verse because blueprints based on it will run at near native speed. Theoretically, blueprints should run just as fast as C++ (they are really easy for a human to 'compile' into C++, so the editor should also be able to do that automatically). It's is a real limitation of the engine.
@NumenBrothers
@NumenBrothers 2 күн бұрын
Thank you- sounds like you know much more about this than I do
@Restart-Gaming
@Restart-Gaming 2 ай бұрын
yea there something yet again work with my engine it shows nothing folder is empty it figures been dealing with set back for the last 3 year with unreal if its not one thing it another
@DelfosseFoo
@DelfosseFoo 4 ай бұрын
What an unfortunate timing with 5,3. This video shows a real bottleneck and a way to find it. No such video for Insights exists, it's just hours of Epic guys talking about nothing, no real problem resolution. The info how to use Insights literally does not exist on the internet.
@HeartsintheWind
@HeartsintheWind 2 ай бұрын
Why not show us the array and bp work?
@NumenBrothers
@NumenBrothers 2 ай бұрын
If I release a proper game in the future, I'm sure it will be appropriately dissected and critiqued. And if it fails, then I don't have to waste your time with my array and bp bumblings ;)
@Restart-Gaming
@Restart-Gaming 2 ай бұрын
the new engine very new is not showing what you have on screen must have been a update after you made this video
@ubiquitousinterface
@ubiquitousinterface 2 ай бұрын
Does not work in ue5.3
@NumenBrothers
@NumenBrothers 2 ай бұрын
check the pinned comment
I solved Unreal Engine's Package Size Problem...
14:35
Cobra Code
Рет қаралды 35 М.
The Most Common Mistake Beginners Make in Unreal Engine | UE5
12:17
Ali Elzoheiry
Рет қаралды 74 М.
1 класс vs 11 класс (рисунок)
00:37
БЕРТ
Рет қаралды 1,6 МЛН
😅🐱@grechkasan.
00:13
Karina
Рет қаралды 20 МЛН
Самый большой бутер в столовке! @krus-kos
00:42
Кушать Хочу
Рет қаралды 6 МЛН
Суд над Бишимбаевым. 24 апреля | ОНЛАЙН
7:26:50
Introducing EasyMapper for Unreal Engine 5
28:47
William Faucher
Рет қаралды 187 М.
BOOST Foliage Performance In Unreal Engine
5:09
Joshua M Kerr
Рет қаралды 89 М.
Root Motion Fix Tool HUGE UPDATE1 7!
4:55
Attaku Studio
Рет қаралды 82
Unreal Engine 5.4 Motion Matching in 13 Minutes | 2024
13:41
Reality Forge
Рет қаралды 36 М.
The Unreal Engine Game Framework: From int main() to BeginPlay
27:22
Alex Forsythe
Рет қаралды 187 М.
Easy Bullet Trails & Bullet Hits with Niagara In Unreal Engine
14:20
How Linux Changed My Gaming Experience...
9:23
Michael Horn
Рет қаралды 15 М.
Ironsworn: Starforged | Session Zero (Part 1) | Solo RPG
49:55
The Bad Spot
Рет қаралды 40 М.
Which one will take more 😉
0:27
Polar
Рет қаралды 17 МЛН
Cute Chubby Blue Hungry For Taking Bath - Part 9
0:10
LupDup
Рет қаралды 33 МЛН
#shorts
0:45
НЭКС
Рет қаралды 6 МЛН
Help me save The Bee 😭🙏 #shorts #minecraft
0:44
Natop Shorts
Рет қаралды 11 МЛН
Escape From Lava With Herobrine and Notch
0:32
Garri Creative
Рет қаралды 4,9 МЛН