import bge # Bibliothèque Blender Game Engine (UPBGE) from rp_lib import * # Bibliothèque Ropy ############################################################################### # rp_cmd.py # @title: Commandes pour le Rover Ropy # @project: Ropy (Blender-EduTech) ############################################################################### ############################################################################### # Fonctions ############################################################################### def mrp_avancer(): rp_avancer() rp_marquer() ############################################################################### # Commandes ############################################################################### def commandes(): print("Go !!") rp_gauche() mrp_avancer() mrp_avancer() mrp_avancer() mrp_avancer() rp_droite() mrp_avancer() mrp_avancer() mrp_avancer() mrp_avancer() rp_droite() mrp_avancer() mrp_avancer() mrp_avancer() rp_fin() ############################################################################### # En: Externals calls << DONT CHANGE THIS SECTION >> # Fr: Appels externes << NE PAS MODIFIER CETTE SECTION >> ############################################################################### if __name__=='start': thread_cmd_start(commandes) if __name__=='stop': thread_cmd_stop()