Files
Continentis/Assets/Scripts/ScriptExtensions/General/SpriteExtension.cs

12 lines
296 B
C#
Raw Normal View History

2025-10-23 00:49:44 -04:00
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));
}
}
}