After a careful analysis of the source code Pywright I changed two classes to make it more "realistic" so I wanted to ask you, Saluk, if you could change the two classes listed below and adding these two pictures ^ _ ^
I hope you will appreciate my advice ^ _ ^ Images and scripts by me
Hello World!!!
By Matx
ADD:
New discovered^_^:
Change ( always in core.py file )
line in class evidence menu
self.present_button = present_button(self)
in
self.present_button = guiEvpresent()
and
adding this class
class guiEvpresent(sprite,gui.widget): def click_down_over(self,mp): self.k_space() def __init__(self,image=None,x=None,y=None,z=None,name=None): sprite.__init__(self) gui.widget.__init__(self) self.pri = -1000 if not image: image = "general/evpresent" self.image = image self.unhighlight() self.pos = [0,sh-self.img.get_height()] if x is not None: self.pos[0] = x if y is not None: self.pos[1] = y if z is not None: self.z = z if name is not None: self.id_name = name gui.widget.__init__(self,self.pos,self.img.get_size()) def highlight(self): self.load(self.image+"_high"+assets.appendgba) def unhighlight(self): self.load(self.image+assets.appendgba) def save(self): return "" def restore(self,s): pass def k_space(self): self.kill = 1 print "only kill evpresent button" def update(self): return True
adding this image in art/general folder:
and tell her : evpresent
so the CR will have her button to show the evidence.
***Please comment^_^***
4:14 am June 5, 2010
EliqueStudios
Burwood, Sydney, NSW, East Australia, Australia, Oceania, Southern Hemisphere, Earth,1st-3rd From The Sun, Solar System, Galaxy, Universe.
Wont go in the next version (too much already in it and I still need to evaluate the change) but it might go in a later version. Nice work! One of the things I do like about the current version is being able to see the keyboard shortcuts. But it could be a toggle sort of thing.
Shortcuts are good ^ _ ^ However I wanted to ask if I send the 2 button (press & present) in lower-screen viewing experience they are activated only by keyboard and mouse has no effect!