AlmasB / FXTutorials

A collection of JavaFX tutorials from my YouTube channel
https://www.youtube.com/almasb0/videos
MIT License
453 stars 303 forks source link

Problem with fast inserting discs #3

Open MahmoudShaltoot opened 6 years ago

MahmoudShaltoot commented 6 years ago

when i tried to insert some of discs after each other ,Only red or yellow discs are inserted that's because of the animation that take 0.5 sec ,So this statement redMove = !redMove; can't be reachable if you clicked the mouse in duration less than 0.5 sec ,This line of code should be executed before the animation line TranslateTransition animation = new TranslateTransition(Duration.seconds(0.5), disc);

p2kr commented 3 years ago

when i tried to insert some of discs after each other ,Only red or yellow discs are inserted that's because of the animation that take 0.5 sec ,So this statement redMove = !redMove; can't be reachable if you clicked the mouse in duration less than 0.5 sec ,This line of code should be executed before the animation line TranslateTransition animation = new TranslateTransition(Duration.seconds(0.5), disc);

Please tell the location of file and line no.