• Editado

Hello, I would like to ask if I increase the TimeScale speed of the Animation, how can I increase the animation end time, I wrote the following code but it doesn't work properly, it just increases the speed. start of that animation, but the animation end time is still at default 1.

void AttackNormal2()
     {
         if(isAttackNormal2) return;
         isAttackNormal2 = true;
         trackEntryAttack1 = animationState.SetAnimation(0, PlayerAttackNormal1, false);
         trackEntryAttack1.TimeScale = TimerAttackNormal1;
         float newEndTime = trackEntryAttack1.AnimationEnd / TimerAttackNormal1;
          trackEntryAttack1.AnimationEnd = newEndTime;
     }
Related Discussions
...

@rinn Could you please describe what you want to achieve by adjusting the end timepoint? If you change TimeScale to e.g. 2, the end is still located at the end of your animation without requiring any adjustments, e.g. playing for 1 second at TimeScale=1.0 results in 0.5 seconds of playback at TimeScale=2.0, and 2 seconds of playback at TimeScale=0.5.

Apart from that, the above call trackEntryAttack1.AnimationEnd = newEndTime; works without issues on our end. Which version of the spine-unity runtime are you using (name of the unitypackage, also listed in Assets/Spine/version.txt)?

  • rinn respondió a esto

    Harald I have created a bool isCheck variable to debug.log to the screen to check, for example my 1 animation is about 2 seconds long, and I will play it at TimeScale = 1, then I will write an events function when animationState.oncomplete is bool variable will equal False, and I count it true = 2 seconds as animation.
    But the problem is here, if I increase TimeScale to = 2 , then if it's true as you say my bool variable will be False after 1 second because the speed has gone to 2, but when I debug.log the screen time is it took 2 seconds for my bool to False even though TimeScale was = 2.

    I am using spine 3.8 on the 2020 version of unity

      @rinn I'm afraid I don't understand your description about your bool variable and Debug.Log statement above. Could you please describe in different words what you are doing, could you perhaps show the respective code that you have described in prose above?

      rinn I am using spine 3.8 on the 2020 version of unity

      Please note that this could be the problem, as the spine-unity 3.8 runtime version is already very old and many bugs have been fixed in the meantime.

      Which exact version of the spine-unity runtime (name of the unitypackage, also listed in Assets/Spine/version.txt) are you using? Which version of the Spine Timeline UPM package?

      If you're not using the latest versions of the packages, these can be downloaded here as usual:
      https://esotericsoftware.com/spine-unity-download#Older-Versions
      Please have a try whether upgrading the packages resolves your issue. As always, be sure to backup your project first before upgrading.

      okay thank you, i will try to upgrade to another version