unity血条 slider中的 value怎么获得函数中的参数hp的值 hp就是int型

publicinthp=100;publicSliderBlood;publicvoidHit(int_damage){//InstantiatehitFXInstant... public int hp = 100 ;
public Slider Blood;
public void Hit(int _damage)
{
//Instantiate hit FX
Instantiate(hitFX,transform.position,Quaternion.identity);
//Remove damge value form health
hp -= _damage;
//If health is less than 0
if (hp <= 0)
{
//Instantiate hit FX
Instantiate(hitFX,transform.position,Quaternion.identity);
//Instantiate hit FX
Instantiate(hitFX,transform.position,Quaternion.identity);
//We are dead
dead = true;
//Set time scale to 0
Time.timeScale = 0;
}
}
public void Hit(int _damage)
{
//Instantiate hit FX
Instantiate(hitFX,transform.position,Quaternion.identity);
//Remove damge value form health
hp -= _damage;
//If health is less than 0
if (hp <= 0)
{
//Instantiate hit FX
Instantiate(hitFX,transform.position,Quaternion.identity);
//Instantiate hit FX
Instantiate(hitFX,transform.position,Quaternion.identity);
//We are dead
dead = true;
//Set time scale to 0
Time.timeScale = 0;
}
}
public void Hit(int _damage)
{
//Instantiate hit FX
Instantiate(hitFX,transform.position,Quaternion.identity);
//Remove damge value form health
hp -= _damage;
//If health is less than 0
if (hp <= 0)
{
//Instantiate hit FX
Instantiate(hitFX,transform.position,Quaternion.identity);
//Instantiate hit FX
Instantiate(hitFX,transform.position,Quaternion.identity);
//We are dead
dead = true;
//Set time scale to 0
Time.timeScale = 0;
}
}
void OnGUI()
{
GUI.Label(new Rect(10,10,300,300),"HP: " + hp.ToString());
}
展开
 我来答
一郎大神
2016-11-28 · TA获得超过1180个赞
知道小有建树答主
回答量:1033
采纳率:92%
帮助的人:302万
展开全部
你可以定义一个属性来保存角色的HP上限呀,HP的现有量/HP上限的比值就是血条进度条的值了呀
追问
具体怎么做啊?
追答
public float maxhp = 100 f;
int hp;
void Start()
{
hp=maxhp;
}
void OnGUI()
{

slider.value=hp/maxhp;
GUI.Label(new Rect(10,10,300,300),"HP: " + hp.ToString());
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
爱上月亮的猪
2023-01-26 · TA获得超过372个赞
知道小有建树答主
回答量:215
采纳率:0%
帮助的人:62万
展开全部

UGUI中slider制作血条两种方法的视频

网页链接

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式