Editor API Reference - v1.1.4
    Preparing search index...

    Type Alias CreateEntityArguments

    Data to create a new Entity

    type CreateEntityArguments = {
        children: CreateEntityArguments[];
        components: object;
        enabled: boolean;
        name: string;
        parent: Entity | string;
        position: number[];
        resource_id?: string;
        rotation: number[];
        scale: number[];
        tags: string[];
    }
    Index

    Properties

    Data for child entities.

    components: object

    Component data. See Entity for details on component data.

    enabled: boolean

    Whether the Entity should be enabled.

    name: string

    The entity name

    parent: Entity | string

    The parent Entity or its resource_id. If undefined then the root Entity will be used as the parent.

    position: number[]

    The position of the Entity in local space.

    resource_id?: string

    The resource_id of the Entity. Leave undefined to generate a new one.

    rotation: number[]

    The rotation of the Entity in local space (euler angles in degrees).

    scale: number[]

    The scale of the Entity in local space.

    tags: string[]

    Tags for the Entity.