raylib-wasm
Version:
Make raylib games in JS for the web
24 lines (20 loc) • 564 B
HTML
<html>
<head>
<title>Python Raylib</title>
</head>
<body>
<script src="https://cdn.jsdelivr.net/pyodide/v0.27.5/full/pyodide.js"></script>
<script src="./raylib/raylib-python.js" type="module"></script>
<!-- indentation matters in python, so make sure this is not indented -->
<raylib-python>
def init():
InitWindow(800, 450)
def update():
BeginDrawing()
ClearBackground(RAYWHITE)
DrawText("Congrats! You created your first python window!", 150, 200, 20, LIGHTGRAY)
DrawFPS(10, 10)
EndDrawing()
</raylib-python>
</body>
</html>