Client order display
This commit is contained in:
parent
7123c54b1e
commit
c7e6219b9e
5 changed files with 380 additions and 1 deletions
|
@ -7,6 +7,7 @@ public class UITimer : MonoBehaviour
|
|||
{
|
||||
// public Image mask;
|
||||
public Image time;
|
||||
public Image icon;
|
||||
// float originalSize;
|
||||
|
||||
void Start()
|
||||
|
@ -15,6 +16,12 @@ public class UITimer : MonoBehaviour
|
|||
time.color = Color.green;
|
||||
}
|
||||
|
||||
//TODO: Override DisplayIcon to set Icon
|
||||
public void DisplayIcon(bool value)
|
||||
{
|
||||
icon.gameObject.SetActive(value);
|
||||
}
|
||||
|
||||
//Value : [0,1]
|
||||
public void SetValue(float value)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue