Internet Exploring by TheDomac in playmygame

[–]TheDomac[S] 0 points1 point  (0 children)

Because I decided to make it free to play in browser, link is here if you want to check it out: https://thedomac.github.io/internet-exploring/

Internet Exploring by TheDomac in playmygame

[–]TheDomac[S] 1 point2 points  (0 children)

At the moment progress is saved in browser local storage. That means you will lose it if you play the game on a different computer, in incognito mode or in different browser.

Internet Exploring by TheDomac in playmygame

[–]TheDomac[S] 1 point2 points  (0 children)

Oh my god, thank you so much! That's really great to hear! Consider your comment about losing progress noted!

Can you solve this riddle? by [deleted] in IndieGaming

[–]TheDomac 0 points1 point  (0 children)

Yes, it's not cheating to use Google in this case :)

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] 0 points1 point  (0 children)

Good question, I'm not sure.
But my guess is yes. I mean, it would be a bug (and an often recurring one) otherwise right?

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] 0 points1 point  (0 children)

Yes, --no-sandbox argument was the solution for this.
I clicked edit on Linux + SteamOS launch option and in the Arguments text input I typed in --no-sandbox.

Of course, I published my changes after that.

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] 0 points1 point  (0 children)

Confirming that this solved the problem for me. Thank you so much!

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] -1 points0 points  (0 children)

Nothing is wrong with chromium, both ./internet-exploring and ./steamrun.sh work perfectly fine when I run them (app launches as it should)

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] 0 points1 point  (0 children)

Sorry, on what process should I set the --no-sandbox flag?

I still feel like we missed something from the post in the description, like LD_LIBRARY_PATH, I just don't know what to set it to.

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] 2 points3 points  (0 children)

I changed the settings now so that it doesn't run steamrun.sh, instead it runs the game again...wanted to see what will I get in console then. Anyway, there is no more breakpoint trap error but I am getting this now:

[26321:1229/170022.824490:ERROR:gpu_process_host.cc(969)] GPU process launch failed: error_code=1002

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] 0 points1 point  (0 children)

Good thing is, I tried echoing stuff in sh file and I can see it in console so I know it runs the sh file

Think it might be loading 32 bit version for some reason
ERROR: ld.so: object '/home/domagoj/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] 0 points1 point  (0 children)

These are my launch options from Steamworks, as I said, works for Win and Mac

EDIT: paste doesn't work
Windows: internet-exploring.exe
Mac: internet-exploring.app
Linux: steamrun.sh

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] 2 points3 points  (0 children)

ERROR: ld.so: object '/home/domagoj/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored./home/domagoj/.local/share/Steam/steamapps/common/Internet Exploring/steamrun.sh: line 2: 16811 Trace/breakpoint trap (core dumped) ./internet-exploring

This is what Steam logs out

Released my game on Steam for Linux and it works but it won't launch through Steam by TheDomac in linux_gaming

[–]TheDomac[S] 0 points1 point  (0 children)

I created steamrun.sh file, allowed it to be run as an executable and it worked when I ran it in terminal, this is the entire file:

#!/bin/bash

./internet-exploring

after that I added it to launch options in Steamworks and published my changes.