GAME ENGINE/Unity

text mesh pro 사용법

혀니리리 2022. 1. 19. 22:09
728x90

유니티 텍스트 메쉬 프로에 대한 사용법 간략 정리 (gamecodi.com)

 

유니티 텍스트 메쉬 프로에 대한 사용법 간략 정리

텍스트 메쉬 프로에 대한 사용법에 대하여 검색용으로 간략히 적어 놓습니다.편하게 적다 보니 반말체인 점 양해 부탁드립니다.--------------------------------...

1st.gamecodi.com

 

여기 고대로따라하면 한글할수있고 + 이해가능

 

TextMesh Pro: Font Asset Creation - Unity Learn

 

TextMesh Pro: Font Asset Creation - Unity Learn

In this tutorial, we’ll learn how to set up Font Assets, the core of all text in TextMesh Pro.

learn.unity.com

여기설정 그대로따라하면 영어 가능

 

Font Squirrel | Free Fonts! Legit Free & Quality

 

Font Squirrel | Free Fonts! Legit Free & Quality

Handpicked free fonts for graphic designers with commercial-use licenses.

www.fontsquirrel.com

요기서글씨체다운받을수이씀

 

텍스트에 애니메이션 적용하려면?

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)

 

[Untiy] 유니티 2D, UI 이펙트 효과, 연출 모음

게임을 다채롭게 만드는 효과를 어떻게 생각하시는지 모르겠지만 저같은 경우에는 게임을 기획하거나 개발할 때 Animation을 특히 신경쓰는 편입니다. 그래서 자주 사용하거나 게임을 게임답게

wolfy.tistory.com

코드 참조한 곳은 여기.

728x90