mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
12 lines
263 B
GDScript
12 lines
263 B
GDScript
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()
|