Jump to content
Search Community

Search the Community

Showing results for tags 'elastic.easeout control'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • GreenSock Forums
    • GSAP
    • Banner Animation
    • Jobs & Freelance
  • Flash / ActionScript Archive
    • GSAP (Flash)
    • Loading (Flash)
    • TransformManager (Flash)

Product Groups

  • Club GreenSock
  • TransformManager
  • Supercharge

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Personal Website


Twitter


CodePen


Company Website


Location


Interests

Found 1 result

  1. Simple question please: I'm making a game, where a card appears on screen, and the user must enter a correct answer related to the card to move on to the next card. The faster the answer, the more points he scores. Every card appears on screen with an Elastic.easeOut in its movement. My problem is: If the user enters the correct answer very fast, he still must wait for the Elastic.easeOut of the displayed card to finish until the new card enters the screen. My goal is: If the user enters the correct answer before Elastic.easeOut of the displayed card is over, the timeline should instantly jump to the end of the running Elastic.easeOut ease, and launch the two appended animations. Is that possible? Here's my code: var tl36 = new TimelineMax(); tl36.to(card[variableToIncrement], 2.5, {rotationY:"+=360", x:centerScreen_X, alpha:1, ease:Elastic.easeOut}); //First card appears and moves to center of screen public function inputOK_handler(e:MouseEvent) //When user hits OK after he's entered a number { if (enteredNumber == cardValue) //The condition of a correct answer { trace("Right Answer!"); tl36.to(card[variableToIncrement], 2.5, {rotationY:"+=360", x:outsideScreen_X, alpha:0, ease:Elastic.easeOut}, "-=0"); //The card in center moves out of screen tl36.to(card[variableToIncrement+1], 2.5, {rotationY:"+=360", x:centerScreen_X, alpha:1, ease:Elastic.easeOut}, "-=2.5"); //The next card makes its appearance simultaneously variableToIncrement = ++variableToIncrement; } } I tried killing the timeline when a correct answer is entered, but the results are not what I'm seeking. So far, I use ease.None, but I would love to keep the Elastic easing. Many thanks in advance!
×
×
  • Create New...