首页 > 代码库 > unity3d关于怎样动态改变物体 shader

unity3d关于怎样动态改变物体 shader

  material = new Material(Shader.Find("Custom/Alpha"));

material.SetFloat("_Shininess", materialAlpha);


void OnRenderImage(RenderTexture source, RenderTexture destination)
{
Graphics.Blit(source, destination, material);
}

本文出自 “计算机” 博客,请务必保留此出处http://5152481.blog.51cto.com/5142481/1412008