Created
April 29, 2017 17:56
-
-
Save n-taku/9332e8ec48b42118ec3fca74700a2f02 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.UI; | |
public class Health : MonoBehaviour { | |
public Slider slider; | |
void Update () { | |
//1秒間に0.5増加する速度でスライダーの値を1まで動かす | |
slider.value = Mathf.MoveTowards (slider.value, 1, 0.5f*Time.deltaTime); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment