本文整理匯總了TypeScript中newui/component/RangeRow.RangeRow.refresh方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript RangeRow.refresh方法的具體用法?TypeScript RangeRow.refresh怎麽用?TypeScript RangeRow.refresh使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類newui/component/RangeRow.RangeRow
的用法示例。
在下文中一共展示了RangeRow.refresh方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: changeSkill
@Bound
private changeSkill(_: any, skillName: keyof typeof SkillType | "none") {
this.skill = skillName === "none" ? undefined : SkillType[skillName];
this.skillRangeRow.refresh();
this.skillRangeRow.toggle(skillName !== "none");
}
示例2: getZoomLevel
@HookMethod(HookPriority.High)
public getZoomLevel(): number | undefined {
if (this.zoomRange) {
this.zoomRange.refresh();
}
return undefined;
}
示例3: refresh
@Bound
private refresh() {
if (this.checkButtonPermissions) {
this.checkButtonPermissions.toggle(multiplayer.isServer() && this.player && !this.player.isLocalPlayer())
.refresh();
}
this.checkButtonNoClip.refresh();
this.checkButtonInvulnerable.refresh();
this.rangeWeightBonus.refresh();
}
示例4: onSwitchTo
@Bound
private onSwitchTo() {
this.timeRange.refresh();
hookManager.register(this, "DebugToolsDialog:GeneralPanel")
.until(DebugToolsPanelEvent.SwitchAway);
this.until(DebugToolsPanelEvent.SwitchAway)
.bind(this.DEBUG_TOOLS, DebugToolsEvent.Inspect, () => {
if (this.selectionPromise) this.selectionPromise.cancel();
});
}
示例5: switch
@Bound
private onPlayerDataChange<K extends keyof IPlayerData>(_: any, playerId: number, key: K, value: IPlayerData[K]) {
if (!this.player || playerId !== this.player.id) return;
switch (key) {
case "weightBonus":
this.rangeWeightBonus.refresh();
break;
case "invulnerable":
this.checkButtonInvulnerable.refresh();
break;
case "permissions":
if (this.checkButtonPermissions) this.checkButtonPermissions.refresh();
break;
case "noclip":
this.checkButtonNoClip.refresh();
this.checkButtonInvulnerable.setDisabled(this.checkButtonNoClip.checked);
if (this.checkButtonNoClip.checked) this.checkButtonInvulnerable.setChecked(false);
break;
}
}
示例6: onGameTickEnd
@HookMethod
public onGameTickEnd() {
if (this.timeRange) {
this.timeRange.refresh();
}
}