Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
纹理中的位置是纹理中心还是左上角的 0,0?例如 [ 0,0 0,1 0,2 1,0 ... 1,2 2,0 2,1 2,2 ] 或 [ 1,-1 0,1 1,1 0,-1 0,0 0 ,1 -1,-1 0,-1 1,-1 ]
[0,0] 不在纹理的中心。
请参阅编程指南中的纹理获取参考。
纹理有一个“非标准化”地址,每个维度的范围为 [0..N-1]。纹理具有相应的“标准化”地址,范围为 [0.0 .. 1.0]
您可能也有兴趣阅读纹理寻址模式参数,它定义了如何处理“超出范围”的纹理地址。