3.5、richtextlabel富文本
可以像Word文档一样编辑出多样的内容,图片,字体颜色大小下划线、超链接背景等等。
Defaults:
默认字体
默认图集
Blank Texture 空白的纹理(有什么用还不知道呢)
Appearance :
Font Size 默认字体大小
Line Height 行的高度,最小也不会小于默认字体大小(系统处理)。
Text...
分类:
其他好文 时间:
2014-08-29 13:07:38
阅读次数:
219
考察render path与drawcall的关系,每个camera可以单独设置render path。以计算光照,不考虑batching,且只有一个PASS的材质为样本,比如Diffuse;如果材质不受光照影响,则跳过光照相关的PASS,比如Unlit/Texture。1.Forward Path...
分类:
其他好文 时间:
2014-08-21 13:04:24
阅读次数:
339
闲话不唠,简单粗暴版。 简单提一句MSAA(Multisample Anti Aliasing),依本人愚见,MSAA就是光栅化阶段对一个像素内部进行多次采样(采4次就是4X,采8次就是8X多重采样),然后根据按照一定规则(默认是取平均值)将同一个像素内的多个采样点融合成一个的过程(resolve....
分类:
其他好文 时间:
2014-08-15 19:22:09
阅读次数:
249
1、 为什么在纹理采样时需要texture filter(纹理过滤)?我们的纹理是要贴到三维图形表面的,而三维图形上的pixel中心和纹理上的texel中心并不一至(pixel不一定对应texture上的采样中心texel),大小也不一定一至。当纹理大于三维图形表面时,导至一个像素被映射到许多纹理像...
分类:
其他好文 时间:
2014-08-06 11:50:01
阅读次数:
238
After the last post about texture samplers, we’re now back in the 3D frontend. We’re done with vertex shading, so now we can start actually renderi...
分类:
其他好文 时间:
2014-08-05 00:35:18
阅读次数:
306
1.从sprite sheet里把每一个sprite到处成image,然后用texture packer就可以生成plist http://www.alferdspritesheetunpacker.forkandbeard.co.uk/forkandBeard/apps/AlferdSprites...
分类:
其他好文 时间:
2014-08-04 17:28:37
阅读次数:
225
Shaders are simple programs that describe the traits of either a vertex or
a pixel.
Vertex shaders describe the traits (position, texture
coordinates, colors, etc.) of a vertex, while pixel shade...
分类:
其他好文 时间:
2014-08-02 15:30:43
阅读次数:
377
【Camera’s Depth Texture】 In Unity a Camera can generate a depth or depth+normals texture. This is a minimalistic G-buffer texture that can be used fo....
分类:
其他好文 时间:
2014-08-02 15:05:33
阅读次数:
202