12 lines
296 B
C#
12 lines
296 B
C#
using UnityEngine;
|
|
|
|
namespace SLSUtilities.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));
|
|
}
|
|
}
|
|
} |