问题标题:
unity中如何让小球由红色变成绿色且不再变化且其变化过程要明显?
问题描述:
unity中如何让小球由红色变成绿色且不再变化且其变化过程要明显?
李华欣回答:
usingUnityEngine;
usingSystem.Collections;
publicclasstest:MonoBehaviour{
x09publicColorlerpedColor=Color.white;
x09publicfloatspeed=0.5;
x09//Usethisforinitialization
x09//Updateiscalledonceperframe
x09voidUpdate(){
x09x09lerpedColor=Color.Lerp(Color.red,Color.green,speed*Time.time);
x09x09renderer.material.color=lerpedColor;
x09}
}
点击显示
英语推荐
热门英语推荐