This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javafx.application.Application; | |
| import javafx.fxml.FXMLLoader; | |
| import javafx.scene.Parent; | |
| import javafx.scene.Scene; | |
| import javafx.stage.Stage; | |
| /** | |
| * | |
| * @author Alvin Tabontabon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javafx.animation.*; | |
| import javafx.scene.*; | |
| import javafx.util.*; | |
| public class Animator { | |
| protected void doInSequential(Animation... an) { | |
| SequentialTransition st = SequentialTransitionBuilder.create() | |
| .children(an) | |
| .cycleCount(1) |
OlderNewer