I can declare variables of FIntVector3 just fine, but when I pass it as an input or output, I get the above error.
It’s declared in the same file as FVector and FVector4, both work as inputs. FIntVector3 turns green, but still gives the error.
Any help would be GREATLY appreciated.
I don’t know what the context of your error is… but that warning usually occurs if FIntVector3 is not a UCLASS, USTRUCT, UENUM… maybe you can try wrapping it.
for example:
USTRUCT()
struct FMyWrapper
{
GENERATE_BODY()
FIntVector3 MyVariable:
};
So, I tried every FIntVector name in the built in functions… and the only one that worked… was just the plain “FIntVector”… which was just a pointer to FIntVector32… which didn’t work.
Even tried all the FUintVectors.
No idea why one worked and none of the others did.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.