# Variable: performance
• performance(): Promise‹ReadonlyWithExtensions‹Performance››
段位信息
description
返回当前段位信息,包括该段位对应的配置项信息和奖励池信息
example
// 在头部引入天梯模块
import { ladderSystem } from "@timi/mogs-sdk";
...
// 使用
const performance = await ladderSystem.performance;
const { totalScore, gamingStatForTheSeason, ... } = performance;
1
2
3
4
5
6
2
3
4
5
6
# 返回值:
Promise‹ReadonlyWithExtensions‹Performance››
Performance
结构
属性 | 类型 | 描述 |
---|---|---|
continueVictoryNum | number | 当前连胜场次 |
gamingStatForTheEntirePeriod | GamingStat | 所有赛季战绩统计信息 |
gamingStatForTheSeason | GamingStat | 赛季战绩统计信息 |
scoreOverCurrentTier | number | 超出当前段位的分数 |
season | Season | 当前赛季信息 |
tier | Tier | 当前段位 |
totalScore | number | 赛季总分数,胜利时加,失败时减,减到当前段位底分以下掉段位 |