动态创建纹理贴图

作者:追风剑情 发布于:2016-1-9 12:03 分类:Shader

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class GenerateTexture : MonoBehaviour {
  5.  
  6. public int widthHeight = 512;
  7. public Texture2D generatedTexture;
  8.  
  9. private Material currentMaterial;
  10. private Vector2 centerPosition;
  11.  
  12. void Start () {
  13. if (!currentMaterial) {
  14. currentMaterial = transform.renderer.sharedMaterial;
  15. if (!currentMaterial)
  16. Debug.LogWarning("Cannot find a material on: "+transform.name);
  17. }
  18.  
  19. if (currentMaterial) {
  20. centerPosition = new Vector2(0.5f, 0.5f);
  21. generatedTexture = GenerateParabola();
  22. //动态设置贴图
  23. currentMaterial.SetTexture("_MainTex", generatedTexture);
  24. }
  25. }
  26.  
  27. // 创建Texture2D
  28. private Texture2D GenerateParabola()
  29. {
  30. Texture2D proceduralTexture = new Texture2D (widthHeight, widthHeight);
  31. //贴图中心点坐标
  32. Vector2 centerPixelPosition = centerPosition * widthHeight;
  33.  
  34. for (int x = 0; x < widthHeight; x++) {
  35. for (int y = 0; y < widthHeight; y++) {
  36. Vector2 currentPosition = new Vector2(x, y);
  37. //计算当前坐标与中心点坐标距离并映射到0~1范围。
  38. float pixelDistance = Vector2.Distance(currentPosition, centerPosition)/(widthHeight*0.5f);
  39. //对颜色值取反
  40. pixelDistance = Mathf.Abs(1-Mathf.Clamp(pixelDistance, 0f, 1f));
  41. Color pixelColor = new Color(pixelDistance, pixelDistance, pixelDistance, 1.0f);
  42. proceduralTexture.SetPixel(x, y, pixelColor);
  43. }
  44. }
  45. //应用新像素值
  46. proceduralTexture.Apply();
  47. return proceduralTexture;
  48. }
  49. }

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号