Ejemplo n.º 1
0
    def draw_preview(self, context: Context, time: int):
        state = self.preview_state(time)
        self.erase()
        self.tile.draw_tile(context)

        context.color(self.color)
        context.layer(1)
        context.put(state.pos, self.glyph)
        context.layer(0)
        context.color(self.window.fg_color)
Ejemplo n.º 2
0
 def draw_tile(self, context: Context):
     context.color(self.color)
     context.put(self.point, self.glyph)
     context.color(self.window.fg_color)