美文网首页
Unity-设置color

Unity-设置color

作者: 上善若水jf | 来源:发表于2016-10-26 22:37 被阅读92次

private Quaternion[] rotationValue;

private Color[] colorValue;

voidStart(){

rotationValue = new Quaternion[12];

colorValue = new Color[12];

inti=0;

while(i<rotationValue.Length){

rotationValue[i ]= Random.rotation;

//生成随机颜色

colorValue[i] = newColor(Random.value,Random.value,Random.value);

Transform child = transform.GetChild(i);

child.rotation=rotationValue[i];

Renderer render=child.GetComponent();

render.material.color=colorValue[i];

i++;

}

}

相关文章

  • Unity-设置color

    private Quaternion[] rotationValue;private Color[] colorV...

  • canvas-颜色和样式

    颜色 fillStyle = color 设置图形的填充颜色。 strokeStyle = color 设置图形轮...

  • 第三天

    css 文本设置:color 设置文字的颜色: color:red;font-size 设置文字的大小:font-...

  • html、css学习笔记(六)

    颜色设置:有字体颜色(color)、背景颜色(background-color)、边框颜色(border)等,设置...

  • 2019-03-25第五天

    今天学习的知识点: 1、/*设置字体颜色,使用color来设置文字的颜色*/ color: red; /*设置文...

  • 2019-05-29第四天

    今天学习的知识点: 1、/*设置字体颜色,使用color来设置文字的颜色*/ color: red; /*设置文...

  • 雪碧图和设置元素的背景

    # 设置元素的背景 # 一、background-color background-color属性用来为元素设置背...

  • 前端(六)

    设置元素的背景 background-color background-color属性用来为元素设置背景颜色。 需...

  • 字体属性

    字体属性设置示例:if(color ==nil) {color = [NSColor redColor];}NSF...

  • 前端(背景颜色)

    设置元素的背景 background-color1.background-color属性用来为元素设置背景颜色。2...

网友评论

      本文标题:Unity-设置color

      本文链接:https://www.haomeiwen.com/subject/wwdjuttx.html