* .DOAnchorPos(new Vector2(옮길 x좌표, 옮길 y좌표), 지속 시간);
-> UI 객체의 앵커 위치(Anchor Position)를 주어진 시간 동안 애니메이션시키는 메서드public RectTransform stagePanel; public RectTransform stageMainPanel; public void StageButton() { stageMainPanel.DOAnchorPos(new Vector2(-1080, 0), 0.25f); stagePanel.DOAnchorPos(new Vector2(0, 0), 0.25f); } public void BackButton() { stageMainPanel.DOAnchorPos(new Vector2(0, 0), 0.25f); stagePanel.DOAnchorPos(new Vector2(1080, 0), 0.25f); }