GL-Color - Unity 脚本API
文章推薦指數: 80 %
public static void Color (Color c);. 描述. 设置当前顶点颜色。
在OpenGL 中,这与 glColor4f(c.r,c.g,c.b,c.a) 相匹配;在其他图形API 中,对应的功能是模拟实现的 ...
Version:
2018.42021.12020.32020.22020.12019.42019.32019.22019.12018.42018.32018.22018.12017.42017.32017.22017.15.6手册脚本API语言:
中文English中文日本語Español
延伸文章資訊
- 1How to change wireframe color using GL in Unity? - Stack ...
After GL.wireframe=true vertex colors provide wireframe color and there are only two ways to chan...
- 2Scripting API: GL.Color - Unity
In OpenGL this matches glColor4f(c.r,c.g,c.b,c.a) ; on other graphics APIs the same functionality...
- 3Unity - Scripting API: GL.Color - Unity - Manual
In OpenGL this matches glColor4f(c.r,c.g,c.b,c.a) ; on other graphics APIs the same functionality...
- 4Unity3D遊戲編程經驗之頂點顏色的用法- 每日頭條
在Unity3D遊戲編程的過程中,相信很多人都會在設置頂點顏色的時候出現問題, ... GL.Begin(GL.LINES);. GL.Color(Color.red);. GL.Vertex3...
- 5Unity中GL类的使用简记_天富儿的博客-CSDN博客
Unity中GL类的使用简记代码效果图我用GL类画了两种不一样的方块。 ... PushMatrix();//保存摄像机变换矩阵Color clr = Color.green; clr.a = ...