我有两个toRed
个; toGreen
和toRed
。单击Scene
后,会将Scene
切换为Timer
“绿色”,并启动Scene
(使用主题)。它从5倒数到0,然后切换回Timer
红色。在我的public void run() {
try{
while(running){
if (seconds==1 && goBack){
this.seconds = 6;
running=false;
toRed.fire();
} ......
课程中,我实现了这一点:
toRed.fire()
但Button
似乎不起作用(没有任何变化)。如何模拟我的主要班级Timer
班级中{{1}}的点击次数?