#Need help with Godot Web Deploy--$100

15 messages · Page 1 of 1 (latest)

rotund vortex
#

hey- what're the errors? can you run it with inspector open

#

also, where are you running it? itch?

red summit
#

running on my own site, let's DM if you can help

#

STILL NEED HELP

gray zodiac
#

Can you use Godot 4.3? Should be simpler in this version in single-threaded export mode

red summit
#

i dont have Godot. I am PM. I need dev to help do everything.

#

-------STILL NEED HELP---------

covert flower
red summit
#

please help!

#

im on no sleep, need to get this done asap 🙏

#

-------STILL NEED HELP----------

peak inlet
#

Web dev and godot dev here, sending you a DM

rotund vortex
#
from flask import Flask, send_from_directory


DIRECTORY = './game/'


app = Flask(__name__)

@app.route('/game/<path:filename>')
def game(filename):
    print(filename)
    resp = send_from_directory(DIRECTORY, filename)
    resp.headers['Access-Control-Allow-Origin'] = '*'
    resp.headers['Cross-Origin-Opener-Policy'] = 'same-origin'
      resp.headers['Cross-Origin-Embedder-Policy'] = 'require-corp'     return resp

app.run()

this should be a fix but they ignored me lol, better luck to the next guy