Define events supported by IPlayer and their corresponding parameters.

interface IAvatarEvents {
    avatarExistsChanged: ((entity: null | Entity) => void);
}

Properties

avatarExistsChanged: ((entity: null | Entity) => void)

Triggered when the player's avatar is rendered. If the avatar becomes an impostor, it is null.

Type declaration

    • (entity): void
    • Parameters

      • entity: null | Entity

        Current coordinates.

      Returns void