Version: 2017.2

Image.fillAmount

切换到手册
public float fillAmount ;

描述

Image.type 设置为 Image.Type.Filled 时显示的图像数量。

范围为 0-1,0 为不显示任何内容,1 为显示整个图像。

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.

public class Cooldown : MonoBehaviour { public Image cooldown; public bool coolingDown; public float waitTime = 30.0f;

// Update is called once per frame void Update() { if (coolingDown == true) { //Reduce fill amount over 30 seconds cooldown.fillAmount -= 1.0f / waitTime * Time.deltaTime; } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961