UE4 makes a simple analysis on the source of Slomo
This paper makes a simple analysis of the source of Slomo.
Slomo is used to pass the setting value to settimedivision:
//UE_4.26\Engine\Source\Runtime\Engine\Private\CheatManager.cpp
void UCheatManager::Slomo(float NewTimeDilation)
{
GetOuterAPlayerController()->GetWorldSettings()->SetTimeDilation(NewTimeDilation);
}
Settimedivision ...
Posted on Fri, 03 Dec 2021 12:03:22 -0500 by suzuki
[UE ยท blueprint bottom layer] understand NativeClass, GeneratedClass, BlueprintClass and ParentClass
This article will give an in-depth explanation of several UClass member variables NativeClass, GeneratedClass, BlueprintClass and ParentClass of the blueprint class UBlueprint. After reading it, you will have a new understanding of the blueprint. The content of this article is very dry and difficult to learn. It is recommended to read the expla ...
Posted on Wed, 01 Dec 2021 00:41:09 -0500 by gladiator83x
C + + Hou Jie STL standard library and Generic Programming Notes
C++STL
This blog post refers to Mr. Hou Jie's STL generic programming course and records the more important parts for future review. I highly recommend Mr. Hou Jie's C + + series. It really exists like the Bible!
1.STL six components
Containers Allocators Algorithms Iterators Adapters Functors
2. Distributor
allocator completes al ...
Posted on Mon, 29 Nov 2021 14:43:18 -0500 by peppino
java object-oriented (continued supplement)
Catalog
1. Classes and Objects
2. Composition of classes
Member variables of classes
Member methods of classes
3. Create a class
4. Class loading (currently known)
Loading includes (passive, active)
Loading order in a class
5. Create Objects
6. Constructors
Method overload:
1. Classes and Objects
Everything is object Class defin ...
Posted on Mon, 08 Nov 2021 19:06:54 -0500 by jcrocker
UE4: use of dynamic link library and static link library
Next, create a third person template C + + project ThirdPerson, using
UE4 learning notes: use of dynamic link library and static link library_ Much less confused blog - CSDN blog
1, Static link library
Create a new folder ThirdParty (the same level as the Content directory) in the project directory, copy the xxx.h file and xxx.lib file to th ...
Posted on Sat, 18 Sep 2021 10:54:45 -0400 by rhodry_korb