Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 766 Bytes

File metadata and controls

23 lines (15 loc) · 766 Bytes

Python game overlay

Not working in full screen. Supported items: Rectangle, Circle, Line, Text.

output

Very easy example:

from overlay import Overlay, Vector, get_font

window = Overlay(window_title="NotePad - Untitled")  # target window
font = get_font(name="Segoe UI", size=55)  # init font

while True:
    # draw text "Overlay"
    window.draw(figure="Text", vector=Vector(0, 100, 0, 0), color=(255, 255, 255), text="Overlay", font_object=font)
    # accept and draw all elements
    window.accept()
   

изображение