powerfun-unity/Assets/AfterFitter.cs
2021-09-03 15:03:54 +08:00

24 lines
445 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class AfterFitter : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
private void OnRectTransformDimensionsChange()
{
GetComponent<ImageWithIndependentRoundedCorners>().Refresh();
}
// Update is called once per frame
void Update()
{
}
}