mirror of
https://forge.apps.education.fr/blender-edutech/ropy.git
synced 2024-01-27 08:23:20 +01:00
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
import bge # Bibliothèque Blender Game Engine (UPBGE)
|
|
from rp_lib import * # Bibliothèque Ropy
|
|
|
|
###############################################################################
|
|
# rp_cmd.py
|
|
# @title: Commandes du Robot Ropy
|
|
# @project: Ropy (Blender-EduTech)
|
|
###############################################################################
|
|
|
|
###############################################################################
|
|
# Fonctions
|
|
###############################################################################
|
|
|
|
|
|
###############################################################################
|
|
# Commandes
|
|
###############################################################################
|
|
|
|
def commands():
|
|
|
|
print("Go !!")
|
|
rp_gauche()
|
|
rp_avancer()
|
|
rp_droite()
|
|
rp_avancer()
|
|
rp_avancer()
|
|
rp_avancer()
|
|
rp_avancer()
|
|
rp_droite()
|
|
rp_avancer()
|
|
rp_avancer()
|
|
|
|
|
|
rp_fin()
|
|
|
|
###############################################################################
|
|
# En: Externals calls << DONT CHANGE THIS SECTION >>
|
|
# Fr: Appels externes << NE PAS MODIFIER CETTE SECTION >>
|
|
###############################################################################
|
|
|
|
if __name__=='start':
|
|
thread_cmd_start(commands)
|
|
if __name__=='stop':
|
|
thread_cmd_stop()
|
|
|