mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 09:16:01 +08:00
[unity] Migrated Timeline UPM package to split component architecture.
This commit is contained in:
parent
4f84ffbfff
commit
eae2e7d5a2
@ -239,9 +239,9 @@ namespace Spine.Unity.Playables {
|
||||
if (numStartingClips > 0) {
|
||||
if (skeletonAnimation) {
|
||||
skeletonAnimation.Update(0);
|
||||
skeletonAnimation.LateUpdate();
|
||||
skeletonAnimation.Renderer.LateUpdate();
|
||||
} else if (skeletonGraphic) {
|
||||
skeletonGraphic.Update(0);
|
||||
skeletonGraphic.Animation.Update(0);
|
||||
skeletonGraphic.LateUpdate();
|
||||
}
|
||||
}
|
||||
@ -364,8 +364,8 @@ namespace Spine.Unity.Playables {
|
||||
|
||||
skeleton.UpdateWorldTransform(Physics.Update);
|
||||
if (skeletonAnimation) {
|
||||
skeletonAnimation.AfterAnimationApplied();
|
||||
skeletonAnimation.LateUpdate();
|
||||
skeletonAnimation.Renderer.AfterAnimationApplied();
|
||||
skeletonAnimation.Renderer.LateUpdate();
|
||||
} else if (skeletonGraphic) {
|
||||
skeletonGraphic.AfterAnimationApplied();
|
||||
skeletonGraphic.LateUpdate();
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "com.esotericsoftware.spine.timeline",
|
||||
"displayName": "Spine Timeline Extensions",
|
||||
"description": "This plugin provides integration of spine-unity for the Unity Timeline.\n\nPrerequisites:\nIt requires a working installation of the spine-unity runtime (via the spine-unity unitypackage), version 4.3.\n(See http://esotericsoftware.com/git/spine-runtimes/spine-unity)",
|
||||
"version": "4.3.0",
|
||||
"description": "This plugin provides integration of spine-unity for the Unity Timeline.\n\nPrerequisites:\nIt requires a working installation of the spine-unity runtime (via the spine-unity unitypackage), version 4.3.20 or newer.\n(See http://esotericsoftware.com/git/spine-runtimes/spine-unity)",
|
||||
"version": "4.3.20",
|
||||
"unity": "2018.3",
|
||||
"author": {
|
||||
"name": "Esoteric Software",
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "com.esotericsoftware.spine.timeline",
|
||||
"displayName": "Spine Timeline Extensions",
|
||||
"description": "This plugin provides integration of spine-unity for the Unity Timeline.\n\nPrerequisites:\nIt requires a working installation of the spine-unity and spine-csharp runtimes as UPM packages (not as spine-unity unitypackage), version 4.3.\n(See http://esotericsoftware.com/git/spine-runtimes/spine-unity)",
|
||||
"version": "4.3.0",
|
||||
"description": "This plugin provides integration of spine-unity for the Unity Timeline.\n\nPrerequisites:\nIt requires a working installation of the spine-unity and spine-csharp runtimes as UPM packages (not as spine-unity unitypackage), version 4.3.20 or newer.\n(See http://esotericsoftware.com/git/spine-runtimes/spine-unity)",
|
||||
"version": "4.3.20",
|
||||
"unity": "2018.3",
|
||||
"author": {
|
||||
"name": "Esoteric Software",
|
||||
@ -11,7 +11,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"com.unity.timeline": "1.2.10",
|
||||
"com.esotericsoftware.spine.spine-unity": "4.3.0"
|
||||
"com.esotericsoftware.spine.spine-unity": "4.3.20"
|
||||
},
|
||||
"keywords": [
|
||||
"spine",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user