markdown Unity - 加载图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Unity - 加载图像相关的知识,希望对你有一定的参考价值。

``` c#
public static Texture2D LoadPNG(string filePath) {
  Texture2D tex = null;
  byte[] fileData;
     
  if (File.Exists(filePath))     {
    fileData = File.ReadAllBytes(filePath);
    tex = new Texture2D(2, 2);
    tex.LoadImage(fileData); //..this will auto-resize the texture dimensions.
  }
  return tex;
}
```

以上是关于markdown Unity - 加载图像的主要内容,如果未能解决你的问题,请参考以下文章