using UnityEngine; namespace SLSFramework.General { public static class SpriteExtension { public static Sprite Create(Texture2D texture) { return Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), new Vector2(0.5f, 0.5f)); } } }