8 lines
216 B
C#
8 lines
216 B
C#
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
public static class Texture2DExtensions {
|
|||
|
|
public static Sprite ToSprite(this Texture2D tex){
|
|||
|
|
return Sprite.Create(tex, new Rect(0, 0, tex.width, tex.height), Vector2.zero);
|
|||
|
|
}
|
|||
|
|
}
|