+ MaterialPropertyBlock 사용 금지 -> Material Instance 방식으로 변경 (MaterialPropertyBlock은 URP프로젝트 중 SRP Batcher를 사용하는 경우 비추천 방식) + 플레이어 이동 방식 velocity 형태로 변경 중
9 lines
151 B
C#
9 lines
151 B
C#
using UnityEngine;
|
|
|
|
namespace BlueWater.Interfaces
|
|
{
|
|
public interface IMaterialInstance
|
|
{
|
|
Material MaterialInstance { get; }
|
|
}
|
|
} |