error: qualified reference to 'FName' is a constructor name rather than a type in this context
FName propertyName = FName::FName();
and it should be:
FName propertyName = FName();
I'm building by double-clicking on the .uproject and choosing 'Yes' in the dialog asking whether to rebuild the module. I'm not launching VSCode or Xcode. When it fails, it says 'Try rebuilding from source' and the relevant log is at:
Lovely plugin, thanks. I needed to patch a couple things to let plugin build and load on Mac.
Backslash needs to be replaced by slash in some #include statements:
FName call needs NOT to be qualified as FName::FName at these lines:
The build error shows as:
and it should be:
I'm building by double-clicking on the .uproject and choosing 'Yes' in the dialog asking whether to rebuild the module. I'm not launching VSCode or Xcode. When it fails, it says 'Try rebuilding from source' and the relevant log is at:
I'm on a MacBook Pro (13-inch, M1, 2020) running Ventura 13.6.1 and UE 5.3.2.