Browse Source

Update ant image

Bastien Sevajol 9 years ago
parent
commit
bc01183ca1

+ 3 - 0
config.py View File

39
             'font': {
39
             'font': {
40
                 'name': 'arial',
40
                 'name': 'arial',
41
                 'size': 13
41
                 'size': 13
42
+            },
43
+            'background': {
44
+              'color': (125, 125, 125)
42
             }
45
             }
43
         }
46
         }
44
     }
47
     }

BIN
socialintengine/display/pygame/image/ant2.png View File


+ 2 - 2
socialintengine/display/pygame/visualisation.py View File

5
 from os import getcwd
5
 from os import getcwd
6
 
6
 
7
 # TODO: Url relative au fichier
7
 # TODO: Url relative au fichier
8
-ant = PygameImage(getcwd()+'/socialintengine/display/pygame/image/ant.png')
9
-bug = PygameImage(getcwd()+'/socialintengine/display/pygame/image/bug.png')
8
+ant = PygameImage(getcwd()+'/socialintengine/display/pygame/image/ant2.png')
9
+bug = PygameImage(getcwd()+'/socialintengine/display/pygame/image/ant2.png')
10
 rock = PygameImage(getcwd()+'/socialintengine/display/pygame/image/rock.png')
10
 rock = PygameImage(getcwd()+'/socialintengine/display/pygame/image/rock.png')
11
 
11
 
12
 visualisation = {
12
 visualisation = {