mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 17:56:04 +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 (numStartingClips > 0) {
|
||||||
if (skeletonAnimation) {
|
if (skeletonAnimation) {
|
||||||
skeletonAnimation.Update(0);
|
skeletonAnimation.Update(0);
|
||||||
skeletonAnimation.LateUpdate();
|
skeletonAnimation.Renderer.LateUpdate();
|
||||||
} else if (skeletonGraphic) {
|
} else if (skeletonGraphic) {
|
||||||
skeletonGraphic.Update(0);
|
skeletonGraphic.Animation.Update(0);
|
||||||
skeletonGraphic.LateUpdate();
|
skeletonGraphic.LateUpdate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -364,8 +364,8 @@ namespace Spine.Unity.Playables {
|
|||||||
|
|
||||||
skeleton.UpdateWorldTransform(Physics.Update);
|
skeleton.UpdateWorldTransform(Physics.Update);
|
||||||
if (skeletonAnimation) {
|
if (skeletonAnimation) {
|
||||||
skeletonAnimation.AfterAnimationApplied();
|
skeletonAnimation.Renderer.AfterAnimationApplied();
|
||||||
skeletonAnimation.LateUpdate();
|
skeletonAnimation.Renderer.LateUpdate();
|
||||||
} else if (skeletonGraphic) {
|
} else if (skeletonGraphic) {
|
||||||
skeletonGraphic.AfterAnimationApplied();
|
skeletonGraphic.AfterAnimationApplied();
|
||||||
skeletonGraphic.LateUpdate();
|
skeletonGraphic.LateUpdate();
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"name": "com.esotericsoftware.spine.timeline",
|
"name": "com.esotericsoftware.spine.timeline",
|
||||||
"displayName": "Spine Timeline Extensions",
|
"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)",
|
"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.0",
|
"version": "4.3.20",
|
||||||
"unity": "2018.3",
|
"unity": "2018.3",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Esoteric Software",
|
"name": "Esoteric Software",
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"name": "com.esotericsoftware.spine.timeline",
|
"name": "com.esotericsoftware.spine.timeline",
|
||||||
"displayName": "Spine Timeline Extensions",
|
"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)",
|
"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.0",
|
"version": "4.3.20",
|
||||||
"unity": "2018.3",
|
"unity": "2018.3",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Esoteric Software",
|
"name": "Esoteric Software",
|
||||||
@ -11,7 +11,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.timeline": "1.2.10",
|
"com.unity.timeline": "1.2.10",
|
||||||
"com.esotericsoftware.spine.spine-unity": "4.3.0"
|
"com.esotericsoftware.spine.spine-unity": "4.3.20"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"spine",
|
"spine",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user