當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript RangeRow.RangeRow類代碼示例

本文整理匯總了TypeScript中newui/component/RangeRow.RangeRow的典型用法代碼示例。如果您正苦於以下問題:TypeScript RangeRow類的具體用法?TypeScript RangeRow怎麽用?TypeScript RangeRow使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了RangeRow類的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");
	}
開發者ID:WaywardGame,項目名稱:developertools,代碼行數:7,代碼來源:Player.ts

示例2: getZoomLevel

	@HookMethod(HookPriority.High)
	public getZoomLevel(): number | undefined {
		if (this.zoomRange) {
			this.zoomRange.refresh();
		}

		return undefined;
	}
開發者ID:WaywardGame,項目名稱:developertools,代碼行數:8,代碼來源:DisplayPanel.ts

示例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();
	}
開發者ID:WaywardGame,項目名稱:developertools,代碼行數:11,代碼來源:Player.ts

示例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();
			});
	}
開發者ID:WaywardGame,項目名稱:developertools,代碼行數:12,代碼來源:GeneralPanel.ts

示例5:

	@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;
		}
	}
開發者ID:WaywardGame,項目名稱:developertools,代碼行數:21,代碼來源:Player.ts

示例6: onGameTickEnd

	@HookMethod
	public onGameTickEnd() {
		if (this.timeRange) {
			this.timeRange.refresh();
		}
	}
開發者ID:WaywardGame,項目名稱:developertools,代碼行數:6,代碼來源:GeneralPanel.ts


注:本文中的newui/component/RangeRow.RangeRow類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。