mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-02 14:39:37 +01:00
12 lines
263 B
GDScript3
12 lines
263 B
GDScript3
|
extends StaticWebPage
|
||
|
|
||
|
|
||
|
func _handle_request(request: WebServerRequest) -> void:
|
||
|
# Render the menu
|
||
|
# This is rendered in the WebRoot node's _render_main_menu method
|
||
|
render_menu(request)
|
||
|
|
||
|
request.body += "Scripted Test Page"
|
||
|
|
||
|
request.compile_and_send_body()
|