SerenityJS
    Preparing search index...

    Interface EntityEntry

    interface EntityEntry {
        attributes: string;
        dynamicProperties: [string, JSONLikeValue][];
        flags: [ActorFlag, boolean][];
        identifier: EntityIdentifier;
        metadata: string;
        position: [number, number, number];
        rotation: [number, number, number];
        scoreboardIdentity: string;
        traits: string[];
        uniqueId: string;
        [key: string]: JSONLikeValue;
    }

    Hierarchy (View Summary)

    Indexable

    Index

    Properties

    attributes: string

    The attributes attached to the entity. Serialized as a base64 string.

    dynamicProperties: [string, JSONLikeValue][]

    The dynamic properties attached to the entity.

    flags: [ActorFlag, boolean][]

    The flags attached to the entity.

    identifier: EntityIdentifier

    The type identifier of the entity.

    metadata: string

    The metadata attached to the entity. Serialized as a base64 string.

    position: [number, number, number]

    The spawn position of the entity.

    rotation: [number, number, number]

    The rotation of the entity.

    scoreboardIdentity: string

    The scoreboard identity identifier attached to the entity.

    traits: string[]

    The traits attached to the entity.

    uniqueId: string

    The unique identifier of the entity.