Skip to content

Registration Error #370

@pcb050628

Description

@pcb050628

In the function add_item(std::unique_ptr<type_data> obj), there is no problem with obj. However, when it enters the type_register::register_type(type_data* info) function, issues occur with obj.
The value in the bool variable is 52

// header
#pragma once
#include "Script.h"

class HumanoidScript :
public Script
{
RTTR_ENABLE()
RTTR_REGISTRATION_FRIEND
private:
GameObject* Head;
GameObject* Body;
DIRECTION HeadDir;
DIRECTION BodyDir;

public:
virtual void Init() override;
virtual void Update() override;

public:
void SetHeadDir(DIRECTION _dir) { HeadDir = _dir; }
void SetBodyDir(DIRECTION _dir) { BodyDir = _dir; }

DIRECTION GetHeadDir() { return HeadDir; }
DIRECTION GetBodyDir() { return BodyDir; }

public:
HumanoidScript();
~HumanoidScript();
};

RTTR_REGISTRATION
{
rttr::registration::class_("HumanoidScript")
.constructor<>();
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions