Getting Started
Create a Component
Components are plain data structures (classes or structs) that contain data relevant to a specific aspect of an entity. They don’t have any logic or methods. Examples of components could be a “Position” component containing x, y, z coordinates.
Create a Position component with
which will add a new component to your workspace:
Was this page helpful?