Can someone give me some advices how to learn c++ in Unreal Engine. I watched tutorials on YT but they don’t even explain. So I have knowledge in c++ language and some knowledge in blueprints
Start by learning how to to do the same thing you’ve been doing in BP using C++, that’s how I started.
Also learn how to expose C++ to blueprint. for example how to use UFUNCTION macro and UPROPERTY to give BP access to native functions and properties.
Learn how to use UE_LOG macro to log stuff in the console for debugging purposes.
Learn about using UE types like
TArray, FString, FName, FVector, FRotator, FTransform etc
The rest you will learn as you go, when there’s something you need to do and don’t know how, that’s where you look it up and learn about it. You can’t learn everything at once, you learn as you go. You also forget stuff and have to refresh your memory.