Dear Community,
4.25 is here! Wohoo!
Please post your questions about the upgrade to 4.25 here, and also any compile errors you resolve on your own so that others may benefit.
Thank You Epic for 4.25!
♥
Rama
~~~
Reminder: If you are unable to compile after edits to your project or plugin C++ code:
"Command line is too long to fit in debug record"
https://developercommunity.visualstu...happening.html
Simply add this line to the build.cs:
~~~
UObjectProperty Becomes FObjectProperty
(BrUnO XaVIeR explains more below!)
becomes
~~~
Happy Coding!
♥
Rama
4.25 is here! Wohoo!
Please post your questions about the upgrade to 4.25 here, and also any compile errors you resolve on your own so that others may benefit.
Thank You Epic for 4.25!
♥
Rama
~~~
Reminder: If you are unable to compile after edits to your project or plugin C++ code:
"Command line is too long to fit in debug record"
https://developercommunity.visualstu...happening.html
Simply add this line to the build.cs:
Code:
bLegacyPublicIncludePaths = false;
UObjectProperty Becomes FObjectProperty
(BrUnO XaVIeR explains more below!)
Code:
UObjectProperty* ObjProp = Cast<UObjectProperty>(Property);
Code:
FObjectProperty* ObjProp = CastField<FObjectProperty>(Property);
Happy Coding!
♥
Rama
Comment