본문 바로가기
C#

C# Override

by 사무실 꿀벌 2020. 7. 15.
반응형

class Base

public class BaseView : MonoBehaviour
{
    // 위치를 리셋시키는 함수
    virtual protected void RePosition()
    {
        // 자신의 Anchor 기준으로 ...  현재 위치를 0,0 으로 리셋
        RectTransform rt = GetComponent<RectTransform>();
        rt.anchoredPosition = new Vector2(0, 0);
    }    
}

public class TopView : BaseView
{
    // Start is called before the first frame update
    void Start()
    {
        base.RePosition();
        // TODO::
    }
}

 

 

 

반응형

'C#' 카테고리의 다른 글

OpenFileDialog get Path and FileName  (0) 2021.03.09
String interpolation  (0) 2021.02.19
C# Start "Hello World!  (0) 2020.11.25