فهرست منبع

null check

atlas may become null
Shinsuke Sugita 8 سال پیش
والد
کامیت
5ad6934fd1
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      spine-unity/Assets/Examples/Scripts/Sample Components/Legacy/AtlasRegionAttacher.cs

+ 1 - 0
spine-unity/Assets/Examples/Scripts/Sample Components/Legacy/AtlasRegionAttacher.cs

@@ -62,6 +62,7 @@ namespace Spine.Unity.Modules {
 			if (!this.enabled) return;
 
 			atlas = atlasAsset.GetAtlas();
+			if (atlas == null) return;
 			float scale = skeletonRenderer.skeletonDataAsset.scale;
 
 			foreach (var entry in attachments) {