유니티 C# 스킨드 메쉬 랜더러 Blend Shape 설정 간단 사용법


유니티 C# 스킨드 메쉬 랜더러 Blend Shape 설정 간단 사용법

Blend Shape이란? 스킨드 매쉬 랜더러 애니메이션을 적용하고 싶을때 사용 using System.Collections; using System.Collections.Generic; using UnityEngine; public class Example : MonoBehaviour { SkinnedMeshRenderer skinnedMeshRenderer; private void Awake() { skinnedMeshRenderer = GetComponent(); } private void OnEnable() { StartCoroutine(SetBlendShapeCoroution(skinnedMeshRenderer)); } private void OnDisable() { StopAllCoroutin..


원문링크 : 유니티 C# 스킨드 메쉬 랜더러 Blend Shape 설정 간단 사용법