Add settings dialog, camera controls

This commit is contained in:
2023-07-20 02:13:48 -05:00
parent a8327b2b67
commit 29cdc499e6
24 changed files with 793 additions and 82 deletions

View File

@@ -33,7 +33,7 @@ class RqstHandler(BaseHTTPRequestHandler):
def run(name):
httpd = HTTPServer(('127.0.0.1', 9302), RqstHandler)
httpd = HTTPServer(('0.0.0.0', 9302), RqstHandler)
httpd.serve_forever()