this post was submitted on 21 Dec 2023
78 points (100.0% liked)

Godot

5582 readers
95 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

[email protected]

Credits

founded 1 year ago
MODERATORS
 

Pictured: My Godot 4 game running on CrazyGames. This was previously impossible because most websites don't support SharedArrayBuffers/CrossOriginIsolation, which was required to run Godot on the web.

Today is a glorious day for us webgame developers. Godot 4 is finally viable to use thanks to this PR which should be merged by 4.3

This allows you to force the exported game to run on a single thread, meaning you don't need any special headers and your game should be able to run anywhere on the internet. This has the added benefit of making the games work properly on MacOS/iOS, which for some reason had serious issues with SharedArrayBuffers causing the browser to freeze.

Brings a tear to my eye, really. I might not need Unity for my next project.

top 11 comments
sorted by: hot top controversial new old
[–] [email protected] 6 points 8 months ago (2 children)

YAY!! I remember trying to prototype a mobile game through itch and the array buffers made it impossible, I should re-export it and try again

[–] [email protected] 8 points 8 months ago* (last edited 8 months ago) (1 children)

Note that this change hasn't been merged into the engine yet. If you're impatient like me and want to export anyways you can grab this PR's build and no_threads template from the top right here (artifacts) and export using that.

[–] [email protected] 6 points 8 months ago

Well I guess until then I’ll just be waiting… for godot

[–] [email protected] 4 points 8 months ago (1 children)

itch has support for SharedArrayBuffer. You just need to enable this in the options. I tried this like a year ago and it also worked on mobile

[–] [email protected] 1 points 8 months ago

It looks like it was added in 15.2! 15.1 technically had it but sounds like it was disabled because of vulnerabilities. I should rebuild it with the current version then, see how it holds up

[–] [email protected] 5 points 8 months ago

@popcar2 guess I've been lucky, just enabled sharedarraybufffer and worked on itch

[–] [email protected] 3 points 8 months ago* (last edited 8 months ago)

If true I may actually switch from 3.5 to 4.3. Thanks for the info good sir.

[–] [email protected] 2 points 8 months ago

@popcar2 holy moly awesome news !

[–] [email protected] 1 points 8 months ago
[–] [email protected] 1 points 8 months ago

Oh damn! This is great!

[–] [email protected] 1 points 8 months ago

Awesome! Glad this persistent issue has been addressed!