mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
Merge branch '4.1' into 4.2-beta
This commit is contained in:
commit
abe1a7a418
@ -433,7 +433,13 @@ namespace Spine.Unity {
|
||||
skeleton = value;
|
||||
}
|
||||
}
|
||||
public SkeletonData SkeletonData { get { return skeleton == null ? null : skeleton.Data; } }
|
||||
public SkeletonData SkeletonData {
|
||||
get {
|
||||
Initialize(false);
|
||||
return skeleton == null ? null : skeleton.Data;
|
||||
}
|
||||
}
|
||||
|
||||
public bool IsValid { get { return skeleton != null; } }
|
||||
|
||||
public delegate void SkeletonRendererDelegate (SkeletonGraphic skeletonGraphic);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user