[unity] Added null check at SkeletonRenderSeparator, closes #2823.

This commit is contained in:
Harald Csaszar 2025-05-05 16:35:36 +02:00
parent 80e853b74b
commit ff572ec8a4
2 changed files with 2 additions and 1 deletions

View File

@ -212,6 +212,7 @@ namespace Spine.Unity {
}
public void UpdateVisibility () {
if (skeletonRenderer == null) return;
foreach (SkeletonPartsRenderer partsRenderer in partsRenderers) {
if (partsRenderer == null) continue;

View File

@ -2,7 +2,7 @@
"name": "com.esotericsoftware.spine.spine-unity",
"displayName": "spine-unity Runtime",
"description": "This plugin provides the spine-unity runtime core.",
"version": "4.2.101",
"version": "4.2.102",
"unity": "2018.3",
"author": {
"name": "Esoteric Software",