일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 리액트 네이티브 맥
- react native
- CSS
- c++ using
- react native typescript navigate
- 벡터와 리스트의 차이
- Expo
- react native ios 기기 연결
- c++ 정보은닉
- 스탠실 버퍼 튜토리얼
- cyworld
- node
- 리액트 네이티브 설치 오류
- react native mac
- react-native
- 스탠실 버퍼 사용
- C++
- react
- react native accessible
- node.js
- react native typescript navigation
- react native 타입스크립트
- react native typescript
- javascript
- html
- unity stencil buffer
- 스탠실 버퍼 시작
- stencil buffer
- 싸이월드
- GitHub
- Today
- Total
혀니의 이거저거 뿌시기
text mesh pro 사용법 본문
유니티 텍스트 메쉬 프로에 대한 사용법 간략 정리 (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
코드 참조한 곳은 여기.
'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 |