Skip to content
This repository was archived by the owner on May 15, 2024. It is now read-only.

Reflection

Rewlion edited this page May 15, 2024 · 1 revision
ECS_COMPONENT()
Component
{
  ECS_BODY(TransformComponent)
  ...
public:
  UPROPERTY()
  float fVar;

  UPROPERTY()
  string tVar;
}

...
Component comp;
const Class* sclass = comp.getClass();
const ClassField* field = sclass->getFieldsBegin();
const size_t fieldsCount = sclass->getFieldsCount();

Clone this wiki locally