[Unity] SpriteAtlas GetSprite 함수가 동작하지 않는 문제
·
유니티(Unity)/이슈 도감
📌 개요 SpriteAtlas GetSprite 함수가 동작하지 않는 문제 해결책① GetSprite(string name)의 함수 인자가 Packed Sprite Name과 동일한지 체크② Project Settings - Editor - Mode 값이 Sprite Atlas V2 - Enabled 인지 체크   📌 문제 분석 private Sprite GetSprite(AtlasType atlasType, int id){ if (_loadedAtlasTypeDict.TryGetValue(atlasType, out SpriteAtlas atlas)) { return atlas.GetSprite($"{atlasType}_{id}"); } else { ..