A voir également:
- Animation simultanée
- Dp animation maker - Télécharger - Animation
- Logiciel d animation 2d gratuit - Télécharger - Divers Web & Internet
- Gpx 3d animation - Télécharger - Transports & Cartes
- Animation livre qui s'ouvre powerpoint ✓ - Forum Powerpoint
- Desactiver animation windows 11 - Guide
1 réponse
Bonjour,
Je pense, sans tester, que si tu veux faire des animations simultanées, va falloir faire 2 threads différents en passant comme paramêtre ton JPanel...
Genre:
Après je sais pas trop ce que tu cherche à faire....
En espérant t'avoir aidé :)
Je pense, sans tester, que si tu veux faire des animations simultanées, va falloir faire 2 threads différents en passant comme paramêtre ton JPanel...
Genre:
public void main(String args[]){
new Anim1().start();
new Anim2().start();
}
public class Anim1 extends Thread {
@Override
public void run(){
//Ton annimation 1
}
}
public class Anim2 extends Thread {
@Override
public void run(){
//Ton annimation 2
}
}
Après je sais pas trop ce que tu cherche à faire....
En espérant t'avoir aidé :)