コード例 #1
0
ファイル: Door_old.py プロジェクト: irskep/Gluball
 def keep_drawing_static(self):
     draw.set_color(*resources.key_colors[self.key])
     graphics.set_line_width(5)
     draw.line(self.x1, self.y1, self.x2, self.y2)
     draw.set_color(0, 0, 0, 1)
     graphics.set_line_width(1)
     draw.line(self.x1, self.y1, self.x2, self.y2)
コード例 #2
0
ファイル: Line.py プロジェクト: irskep/Gluball
 def keep_drawing_static(self):    
     draw.set_color(0,0,0,1)
     draw.line(self.x1, self.y1, self.x2, self.y2)
コード例 #3
0
ファイル: Line.py プロジェクト: irskep/Gluball
 def keep_drawing(self, x, y, dx, dy):
     x, y = self.check_snap(x,y)
     self.x2, self.y2 = x, y
     draw.set_color(0,0,0,1)
     draw.line(self.x1, self.y1, self.x2, self.y2)