Uploading Godot game to your own website! no itch no iframe

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 พ.ย. 2024

ความคิดเห็น • 22

  • @bonnymich
    @bonnymich 14 วันที่ผ่านมา

    you are a beautiful human being thanks sending wishes and luck

  • @josiahroyal
    @josiahroyal 3 หลายเดือนก่อน

    Thanks this is exactly the workflow I was planning on using good to see it works

  • @Roh_studio
    @Roh_studio 23 วันที่ผ่านมา

    For you who have succeeded, leave the links that we play!!

  • @joseromerofilms8311
    @joseromerofilms8311 ปีที่แล้ว +3

    Awesome man. My question is, does it work on mobiles? my mission is to make a game that runs on the web with my own server, but only for mobiles. Let me know

    • @mrb5391
      @mrb5391 7 หลายเดือนก่อน +1

      did oyu find a fix for getting it to work in mobile browsers? i hear some androids work but ios is more problems because no real suppoirt for web assemblies or wasm

    • @joseromerofilms8311
      @joseromerofilms8311 7 หลายเดือนก่อน

      ​@@mrb5391 I stopped development on this months ago, but I do remember it working when I set it up on a web server. it worked on my Iphone, I did not test it on Android :))

  • @petra9313
    @petra9313 11 หลายเดือนก่อน +2

    Mine says "Error
    The following features required to run Godot projects on the Web are missing:
    Cross Origin Isolation - Check web server configuration (send correct headers)
    SharedArrayBuffer - Check web server configuration (send correct headers)"

    • @averagegodotenjoyer
      @averagegodotenjoyer  11 หลายเดือนก่อน +2

      Where are you trying to upload it to?
      where does the error print out? Like in the browser or in console somewhere?
      I found these threads that talk about similar problems, but I'd really have to experience this issue to understand it I feel like.
      github.com/godotengine/godot/issues/69020
      www.reddit.com/r/godot/comments/yuzeqq/running_godot_4_html_exports_will_require/
      It sounds like whatever application you are using to host the Godot project doesn't support it. Hence the check web surfer configuration warnings.
      Hers a video on the the cross isolation concept from google:
      th-cam.com/video/D5DLVo_TlEA/w-d-xo.html
      I would try hosting it somewhere else just as a test.
      That would tell you if its the Godot project or the browser environment possibly.

    • @riverblack123
      @riverblack123 11 หลายเดือนก่อน +2

      That's because the newest version of Godot does not support this

    • @averagegodotenjoyer
      @averagegodotenjoyer  11 หลายเดือนก่อน

      oh damn thanks for posting that i haven't tried 4.2 yet@@riverblack123

    • @petra9313
      @petra9313 11 หลายเดือนก่อน +1

      @@riverblack123 Oh That's sad

    • @mrb5391
      @mrb5391 7 หลายเดือนก่อน +5

      Fix i found was create a .htaccess file in the folder with the following code:
      Header set Cross-Origin-Opener-Policy "same-origin"
      Header set Cross-Origin-Embedder-Policy "require-corp"

  • @yehezkielsimbuang2349
    @yehezkielsimbuang2349 ปีที่แล้ว

    Do you need a nodeJS framework or something like that to make a web based game? or just need vanilla JS and HTML/CSS?

    • @jasondunken
      @jasondunken ปีที่แล้ว

      no nodejs required for this type of deployment

    • @jesuschrist1501
      @jesuschrist1501 ปีที่แล้ว

      godot is already a complete exportation method, just export your game in html5 and you will have the necessary files and follow along this video on how to upload the game to your website.

  • @BHanif-zc2pr
    @BHanif-zc2pr ปีที่แล้ว

    Can you please make a video how to publish godot game on Facebook instant game

  • @jujuandjesus
    @jujuandjesus หลายเดือนก่อน

    These are some lines from a Python server used to locally host a web game, might help.
    def send_my_headers(self):
    self.send_header("Access-Control-Allow-Origin", "*")
    self.send_header("Cross-Origin-Embedder-Policy", "require-corp")
    self.send_header("Cross-Origin-Opender-Policy", "same-origin")

    • @averagegodotenjoyer
      @averagegodotenjoyer  หลายเดือนก่อน

      @@jujuandjesus I'm not very good at web dev but that looks right.

  • @Djsohfendofb
    @Djsohfendofb ปีที่แล้ว

    GIGACHAD