SerenityJS
    Preparing search index...

    Class PlayerLevelingTrait

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    entity: Entity

    The entity that this trait is attached to.

    identifier: string = ...

    The identifier of the trait.

    player: Player = ...

    The player that this trait is attached to.

    components: string[] = []

    The entity component identifiers that this trait is compatible with by default. If empty, the trait will not be initialized by any component.

    identifier: "leveling"

    The identifier of the trait.

    types: EntityIdentifier[] = []

    The entity type identifiers that this trait is compatible with by default.

    Accessors

    Methods

    • Set the current experience progress of the player.

      Parameters

      • value: number

        The new experience progress to set for the player.

      Returns void

      Will throw an error if the experience value is not between 0 and 1.

    • Set the current xp level of the player.

      Parameters

      • value: number

        The new level to set for the player.

      Returns void

      Will throw an error if the level is not a non-negative integer.