fixed editing bug

This commit is contained in:
Gray
2025-06-01 23:31:41 -04:00
parent a7ce8f5e45
commit 24068d8648
3 changed files with 37 additions and 11 deletions

View File

@@ -154,4 +154,34 @@ FORCEINLINE bool IsValidChecked(const UObject* Test)
// return false;
return true; // FInternalUObjectBaseUtilityIsValidFlagsChecker::CheckObjectValidBasedOnItsFlags(Test);
}
}
class Test
{
// IMPLICITLY: Test() { VFT = TestVFT }
// IMPLICITLY: void** VFT // 0x0
virtual void func() {}
virtual void people() {}
};
/*
TestVFT:
Test::func
Test::people
HelloVFT:
Hello::func
Test::people
Hello::func2
*/
class Hello : Test
{
// IMPLICITLY: Hello() { VFT = HelloVFT }
void func() override { /**/ }
virtual void func2() {}
};