Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Thenamelessone

Pages: [1]
1
DOTween & DOTween Pro / Re: Text Animation Direction
« on: September 11, 2015, 05:07:33 AM »
The examples in the package don't help :(

What I mean is this:

Print Hello starting from the left to the right.

->
H e l l o

Now take away each letter backwards;

hello
hell
hel
he
h
(nothing)

Just like the first tween in that gif.

Thanks!

2
DOTween & DOTween Pro / Text Animation Direction
« on: September 10, 2015, 09:33:35 PM »
I have two tweens.

One animates text in and another animates the text out.

I am trying to go with the top effect:

However, there is no option for tween direction? It will always animate the same direction: from the left.

How is this example done?

Thanks!

3
DOTween & DOTween Pro / Re: Feature Request Dotween Pro
« on: September 10, 2015, 09:30:00 PM »
Thanks for all the hard work  ;D!

4
DOTween & DOTween Pro / Feature Request Dotween Pro
« on: September 04, 2015, 08:53:12 PM »
Hey!

Will there ever be a implementation for multi-editing multipe dotween animations on the same gameobject?

Also, will there ever be an implementation for a global delay and duration for multiple dotween animations on the same gameobject?

Thanks!

5
DOTween & DOTween Pro / Re: Virtual Float
« on: August 25, 2015, 06:49:45 PM »
Thanks everyone! I feel like a complete idiot for missing that... :-\

6
DOTween & DOTween Pro / Re: Virtual Float
« on: August 25, 2015, 04:40:34 PM »
For some reason that doesn't work. I don't get any errors, it just doesn't play  :(

Is there a piece that is missing?

Here is a SS of the script. https://www.dropbox.com/s/dng8lypy4brylwo/Screenshot%202015-08-25%2010.41.23.png?dl=0

7
DOTween & DOTween Pro / Virtual Float
« on: August 25, 2015, 01:16:22 AM »
I am trying to tween the image effect: Chromatic Aberration in a sequence.

Code: [Select]
sequence.AppendDOVirtual.Float(0, aberrationRange, tweenDuration, UpdateTween);
sequence.Append(DOVirtual.Float(aberrationRange, -aberrationRange, tweenDuration, UpdateTween));
sequence.Append(DOVirtual.Float(-aberrationRange, 0, tweenDuration, UpdateTween));

private void UpdateTween(float value)
{
imageEffect.chromaticAberration = value;
}


The sequence doesn't play. I cannot figure out how to do this :(


Thanks!

(I love your asset! I can't wait to buy the pro when I have enough money :)

8
DOTween & DOTween Pro / From Rotation A To Rotation B
« on: August 20, 2015, 02:53:19 AM »
I cannot figure this out for the life of me!

All I want to do is be able to rotation from my current rotation to a new rotation.

  • Arrow is at rotation z of 0.
  • Rotate from 0 to 90.
  • Arrow is now at rotation 90.
  • Rotate from 90 to 270.
  • Arrow is now at rotation 270.
  • Rotate from 270 to 180.


This is my current code.

Code: [Select]
reachedCheckpointSpinTween = this.transform.DORotate(this.transform.eulerAngles, reachedCheckpointDuration).SetRelative(true);

reachedCheckpointSpinTween.ChangeEndValue(playerController.transform.eulerAngles, 0);
reachedCheckpointSpinTween.Play();


I got it so that it works rotating 3 directions, but one direction it just snaps too. Also it keeps starting from its original position and rotating to the rotation I want.


Thanks!


9
DOTween & DOTween Pro / Re: Pause, Restart, Rewind not working
« on: June 30, 2015, 10:50:05 PM »
Thanks! ;D

10
DOTween & DOTween Pro / Pause, Restart, Rewind not working
« on: June 30, 2015, 06:23:37 AM »
Code: [Select]
void Start()
{
startRot = this.transform.eulerAngles;

buttons = this.transform.GetComponentsInChildren<ButtonSwitch>();

StartCoroutine(StartTween());
}

private IEnumerator StartTween()
{

yield return new WaitForSeconds(startDelay);

tween = this.transform.DORotate(new Vector3(0, 0, incrementInterval * direction), rotateSpeed, RotateMode.Fast);
tween.SetEase(Ease.Linear);
tween.OnStepComplete(NodePaused);
tween.OnStart(NodeStart);
tween.SetRecyclable(false);

DOTween.Sequence()
.Append(tween)
.AppendInterval(incrementTime)
.SetLoops(-1, LoopType.Incremental);

tween.Pause();
}

The tween will not pause, rewind, or even restart.

What am I doing wrong?

Thanks!

11
DOTween & DOTween Pro / Re: Incemental Timing
« on: June 29, 2015, 08:52:14 PM »
Thanks! I love your product :)

12
DOTween & DOTween Pro / Incemental Timing
« on: June 29, 2015, 08:21:37 PM »
Hey!

Just wondering how do I control the pause when using incremental looptype. So say I am rotating 90 degrees each increment.

It takes 2 seconds to rotate 90 degrees. How do I say... pause 5 seconds then go to the next 90 degree increment.

Thanks!

Pages: [1]