繁体   English   中英

组件上的虚幻引擎可蓝图UFUNCTION导致构建错误

[英]Unreal Engine blueprintable UFUNCTION on component causes build error

我创建了一个从UActorComponent派生的类,并且我想使它的方法BlueprintCallable很少。 但是,将其添加到UFUNCTION宏会导致生成错误。 类头看起来像这样:

#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "Includes.h"
#include "Items/ItemInfo.h"
#include "Inventory.generated.h"

UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent))
    class UNTITLEDGAME_API UInventory : public UActorComponent
    {
        GENERATED_BODY()

    public: 
        // Sets default values for this component's properties
        UInventory();

    protected:
        // Called when the game starts
        virtual void BeginPlay() override;

    /*
    *some other methods 
    */
    public:

        UFUNCTION() // like this it's fine, but if I put BlueprintCallable or BlueprintPure keyword here it causes troubles
            uint32 GetNumberOfItems() const;
    };

我不知道该如何使它工作,尤其是因为它在我以前的项目之一中工作过。 有人可以帮我吗?

问题是虚幻蓝图不支持uint32类型:您必须坚持使用int32(或uint8 / Byte)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM