*

focus

  • ***
  • 26
    • View Profile
    • blog
DOTween feature requests
« on: April 14, 2015, 12:30:32 PM »
Heya, Daniele and all others who read this!

I have one feature request for DOTween:
DOScale(uniformValue, duration);

so we could do

DOScale(0.8f, 1f);

instead of

DOScale(new Vector3(0.8f, 0.8f, 0.8f), 1f);

Or maybe we already have something like this and I just need to read docs better?

Cheers!

*

Daniele

  • Dr. Admin, I presume
  • *****
  • 378
    • View Profile
    • Demigiant
Re: DOTween feature requests
« Reply #1 on: April 14, 2015, 12:53:15 PM »
Ah, right on time! :) I implemented it in the update I pushed a few days ago.

*

focus

  • ***
  • 26
    • View Profile
    • blog
Re: DOTween feature requests
« Reply #2 on: April 14, 2015, 01:23:27 PM »
D'oh!  ;D
You're mind reader?! Awesome, thanks! ^^

*

focus

  • ***
  • 26
    • View Profile
    • blog
Re: DOTween feature requests
« Reply #3 on: April 20, 2015, 03:02:57 PM »
Hey, I have another question / FR:

...SetLoops(4, LoopType.Yoyo);

can we specify the delay for every Yoyo cycle?

Cheers!

*

Daniele

  • Dr. Admin, I presume
  • *****
  • 378
    • View Profile
    • Demigiant
Re: DOTween feature requests
« Reply #4 on: April 20, 2015, 08:09:47 PM »
Mhmm that would require some additional logic inside Tweeners which would make them slightly slower and slightly heavier, and I would prefer to avoid that. Why not just make a Sequence with an end interval?

*

focus

  • ***
  • 26
    • View Profile
    • blog
Re: DOTween feature requests
« Reply #5 on: April 20, 2015, 08:13:09 PM »
Ah, nevermind then, I suggested sequence approach so far and looks like we'll leave it as is, thanks for your reply!

Re: DOTween feature requests
« Reply #6 on: May 08, 2015, 07:45:02 PM »
A feature that would be extremely helpful would be the ability to tween camera properties with the visual editor as cameras are frequently modified in Unity. With that ability, DoTween would become the defacto camera path or cutscene tool for me. Thanks for all the wonderful support.

*

Daniele

  • Dr. Admin, I presume
  • *****
  • 378
    • View Profile
    • Demigiant
Re: DOTween feature requests
« Reply #7 on: May 08, 2015, 08:35:15 PM »
Added that to the mythical todo list! :)

*

keht

  • *
  • 10
    • View Profile
Re: DOTween feature requests
« Reply #8 on: May 11, 2015, 11:24:00 PM »
Will nice to have:
1. Zero as tween duration. It can be used to instant value changing, but currently causes exception (
2. DOJump tween like cocos2d-x JumpBy action.

*

Daniele

  • Dr. Admin, I presume
  • *****
  • 378
    • View Profile
    • Demigiant
Re: DOTween feature requests
« Reply #9 on: May 12, 2015, 02:31:08 AM »
I can't test it now to be sure, but zero duration tweens are indeed supported. Are you using the latest DOTween version (1.0.665)?


About JumpBy, that's not as useful in a 3D environment, since you never know on which axis you want to jump. Still, to achieve the same effect you can, for example, do a DOMoveX of 3", and a DOMoveY of 1.5" with 2 Yoyo loops.

*

keht

  • *
  • 10
    • View Profile
Re: DOTween feature requests
« Reply #10 on: May 12, 2015, 09:54:11 AM »
>
Quote
I can't test it now to be sure, but zero duration tweens are indeed supported. Are you using the latest DOTween version (1.0.665)?
I test it again and found that exception throws only when I have zero in the sequenced tween. Single tween works fine. (I use 1.0.665.)

>
Quote
About JumpBy, that's not as useful in a 3D environment, since you never know on which axis you want to jump.
But it helpful for 2d games... Anyway, thanks for tip about yoyo. It save my time!

*

Daniele

  • Dr. Admin, I presume
  • *****
  • 378
    • View Profile
    • Demigiant
Re: DOTween feature requests
« Reply #11 on: May 12, 2015, 11:28:29 AM »
I think I have a solution for the zero duration error. Will push it later today.


And I added JumpBy to my Todo list :)

*

Daniele

  • Dr. Admin, I presume
  • *****
  • 378
    • View Profile
    • Demigiant
Re: DOTween feature requests
« Reply #12 on: May 13, 2015, 06:37:34 PM »
Voilą, if you grab the latest version of DOTween, it fixes that bug and adds DOJump :)