728x90
유니티 텍스트 메쉬 프로에 대한 사용법 간략 정리 (gamecodi.com)
여기 고대로따라하면 한글할수있고 + 이해가능
TextMesh Pro: Font Asset Creation - Unity Learn
여기설정 그대로따라하면 영어 가능
Font Squirrel | Free Fonts! Legit Free & Quality
요기서글씨체다운받을수이씀
텍스트에 애니메이션 적용하려면?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class biggerAnimation : MonoBehaviour
{
float time = 0.0f;
// Update is called once per frame
void Update()
{
if(gameObject.activeSelf == true)
{
transform.localScale = Vector3.one * (1 + time);
time += Time.deltaTime;
if (time > 0.4f)
{
gameObject.SetActive(false);
time = 0.0f;
}
}
}
public void resetAnim()
{
time = 0;
transform.localScale = Vector3.one;
}
}
내가 만든 잠깐 커지는 코드.
다른 버튼을 눌렀을때 enabled상태가 true
일때만 동작을하고 다시 setActive가 false가 되어 사라짐.
[Untiy] 유니티 2D, UI 이펙트 효과, 연출 모음 (tistory.com)
코드 참조한 곳은 여기.
728x90
'GAME ENGINE > Unity' 카테고리의 다른 글
유니티 경고 windowsvideomedia error unhandled color standard: 0 falling back to default this may result in rendering issues (0) | 2023.10.12 |
---|---|
Managers에 InputManager 집어넣어 event class 관리하기 (0) | 2022.09.04 |
싱글톤 패턴 멋대로 해석 - 인프런 유니티 강의 (0) | 2022.09.03 |
unity stencil buffer 적용 방법 (0) | 2022.05.13 |