mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
clip size vehicles cheat command
This commit is contained in:
@@ -70,4 +70,25 @@ FVector AActor::GetActorRightVector()
|
||||
this->ProcessEvent(GetActorRightVectorFn, &ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
FRotator AActor::GetActorRotation()
|
||||
{
|
||||
static auto K2_GetActorRotationFn = FindObject<UFunction>(L"/Script/Engine.Actor.K2_GetActorRotation");
|
||||
FRotator ret;
|
||||
this->ProcessEvent(K2_GetActorRotationFn, &ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
void AActor::FlushNetDormancy()
|
||||
{
|
||||
static auto fn = FindObject<UFunction>("/Script/Engine.Actor.FlushNetDormancy");
|
||||
this->ProcessEvent(fn);
|
||||
}
|
||||
|
||||
UClass* AActor::StaticClass()
|
||||
{
|
||||
static auto Class = FindObject<UClass>(L"/Script/Engine.Actor");
|
||||
return Class;
|
||||
}
|
||||
Reference in New Issue
Block a user