UPROPERTY()
UClass* MyClass;
But i want it accept only classes with specified base class, for example UMyObject.
How to?
UPROPERTY()
UClass* MyClass;
But i want it accept only classes with specified base class, for example UMyObject.
How to?
UPROPERTY(EditAnywhere, meta = (MetaClass = “MyObject”))
FStringClassReference MyClass;
Note: MetaClass object name without “U” prefix.