Skip to content

Instantly share code, notes, and snippets.

View phumpnw's full-sized avatar

Panuwat Chaiwirattikul phumpnw

View GitHub Profile
public class PreserveCoverImageSize : MonoBehaviour
{
public Image image;
public void Awake()
{
var rect = image.GetComponent<RectTransform>();
ResetSizeRectTransform(rect);
image.SizeToParent();
}