From 5df7aebc65d65c368f2c708e9e5f4869babd64ce Mon Sep 17 00:00:00 2001 From: Philippe Roy Date: Wed, 21 Dec 2022 05:54:42 +0100 Subject: [PATCH] Readme update --- README.md | 15 +++++++-------- rp.py | 6 +++--- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8271776..6520cd2 100644 --- a/README.md +++ b/README.md @@ -62,18 +62,17 @@ L'environnement de développement est basé sur : la plateforme de modélisation Le code source, les fichiers blender et les assets sont hébergés sur le dépôt [gitlab](https://gitlab.com/blender-edutech/ropy). Les bibliothèques suivantes ne sont pas incluses par défaut dans l'environnement UPBGE : -- **pylint** : vérificateur du code Python -- **pyserial** : communication sur le port série (jumeau numérique) +- [**Pylint**](https://pylint.pycqa.org) : vérificateur du code Python +- [**pySerial**](https://pyserial.readthedocs.io) : communication sur le port série Il faut donc les installer localement (dans UPBGE), les étapes sont : - **GNU/Linux** : La configuration ici présente est UPBGE installé sur ~ avec Python 3.9 : - Aller dans le répertoire local de Python de UPBGE: $ cd ~/UPBGE-0.30-linux-x86_64/3.0/python/bin - Installer le gestionnaire de paquet pip : $ ./python3.9 -m ensurepip --default-pip - - Installer pylint : $ ./pip install pylint -t ~/UPBGE-0.30-linux-x86_64/3.0/python/lib/python3.9/site-packages - - Installer pyserial : $ ./pip install pyserial -t ~/UPBGE-0.30-linux-x86_64/3.0/python/lib/python3.9/site-packages + - Installer Pylint : $ ./pip install pylint -t ~/UPBGE-0.30-linux-x86_64/3.0/python/lib/python3.9/site-packages + - Installer pySerial : $ ./pip install pyserial -t ~/UPBGE-0.30-linux-x86_64/3.0/python/lib/python3.9/site-packages -- **Windows** : La configuration ici présente est UPBGE installé sur le bureau utilisateur (philippe.roy) avec la distribution Anaconda installée : +- **Windows** : La configuration ici présente est UPBGE installé sur le bureau utilisateur (prenom.nom) avec la distribution Anaconda installée : - Avec Anaconda Navigator ouvrir un terminal Powershell - - Installer pylint : pip install pylint -t C:\Users\philippe.roy\Desktop\UPBGE-0.30-windows-x86_64\3.0\python\lib\site-packages - - Installer pyserial : pip install pyserial -t C:\Users\philippe.roy\Desktop\UPBGE-0.30-windows-x86_64\3.0\python\lib\site-packages - + - Installer Pylint : pip install pylint -t C:\Users\prenom.nom\Desktop\UPBGE-0.30-windows-x86_64\3.0\python\lib\site-packages + - Installer pySerial : pip install pyserial -t C:\Users\prenom.nom\Desktop\UPBGE-0.30-windows-x86_64\3.0\python\lib\site-packages diff --git a/rp.py b/rp.py index 593a6b8..55aa3bf 100644 --- a/rp.py +++ b/rp.py @@ -131,6 +131,9 @@ def points_maj (cont): def terrain_init (cont): if cont.sensors['Init'].positive == False: # 1 seule fois return False + + # Configuration du moteur de rendu + eevee.use_eevee_smaa = True # Ajout du Hud scene.active_camera = scene.objects["Camera"] @@ -156,9 +159,6 @@ def terrain_init (cont): scene.objects['Terrain']['init_rx']=scene.objects['Terrain'].worldOrientation.to_euler().x scene.objects['Terrain']['init_ry']=scene.objects['Terrain'].worldOrientation.to_euler().y scene.objects['Terrain']['init_rz']=scene.objects['Terrain'].worldOrientation.to_euler().z - - # Configuration du moteur de rendu - eevee.use_eevee_smaa = True # Création des balises scene.objects['Terrain']['map_tile_beacon']= []