Skip to content

Commit 32be3ec

Browse files
authored
Update app/pages/learn/01_tutorial/07_rich_client_apps/02_introduction-javafx-animation.md
1 parent d525815 commit 32be3ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/pages/learn/01_tutorial/07_rich_client_apps/02_introduction-javafx-animation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ SequentialTransition transition = new SequentialTransition(
194194
);
195195
transition.play();
196196
```
197-
Note that this code doesn't set the target `Node` in the transitions itself, but instead in the `SequentialTransition` which is the parent transition here.
198-
It is going to automatically use the target `Node` for child transitions that have no `Node` specified themselves.
197+
Note that this code only sets a `Node` on the `SequentialTransition`, which is the parent transition here, and not on the individual child transitions.
198+
They will implicitly use their parent transition's `Node`.
199199

200200
### Parallel Transition
201201
The [`ParallelTransition`](javafxdoc:ParallelTransition) plays a group of animations in parallel.

0 commit comments

Comments
 (0)