I’m working on a website what hosts Unity playables and downloadables for free. I would appreciate some suggestions or feedback: https://qwgamers.net
#Working on a website what hosts WebGL games
1 messages · Page 1 of 1 (latest)
Yeah, im not using any tool like WordPress
Thanks for your feedback
But ok
I'm a bit confused on the layout. It's a couple of projects, and then a wall of text about who you are and what you do. Is this your personal website or a platform to share games? If it's a platform to share games... it's going to need a lot of work. Only because it's competing with places like itch, only without any discoverability. I'm not sure why someone would host here versus anywhere else including self hosted however?
Looks real cool, Ill start using this to upload my games
Your feedback made me think I started working on this site as my personal place where I store my games, but I like to make user-interfaces to make it always easier for myself, and now it looks like a game store. And now everyone can upload to my site
You are right. Its needs a lot of work to make it professional
Thanks for you feedback!
I would appreciate it!
Overall website design could use a lift
I assume you are using the vanilla load out (HTML, CSS, JS)
you could do with some padding here
I will check it out
Thanks for the suggestion!
News about QWGamers.net:
- Search bar for games [Mobile Support]
- You can edit now your game files, titles, descriptions, dates [Mobile UI still need improvements]
- Ability to delete your game
- CSS Improvements for mobile on the front and the games page
Plans: - Account management
- CSS improvements for upload, login and register forms [especially for mobile]
Thanks for the suggestions and feedback! https://qwgamers.net
Working on a website what hosts WebGL games
I love the website but the neon thing is iffy and its super cool.
It feels like a very old or .io games site for example cool math games. I personally don't think the dark theme is the way to go here.
I also like this site https://iogames.onl/
but thats just me
🤷♂️
One more thing: https://www.fontspace.com/
Maybe having smaller icons for the games would help
Thanks for your feedback! I personally wanted the website to look modern and simple with these black and neon styles.
Should the games page show more games at once? Like 4-5 games in a row?
I think it should have more per row yes. And leave space in between so when you highlight it it expands instead of it getting a neon highlight maybe?
Good idea. I’m working with the website backend now, and after I finished I will redesign the form pages and I could include that, too.
Are you using a SQL database for your users?
SQL database for users and json for games
And one thing you should have the option to host your game at the bottom of the page not the top because the majority of people will want to play not host them
Yeah, maybe show the “upload game” link for registered users
Beacuse you can play without an account, but you cant host without it
Seems like a good idea I don't know how webgl games work do they allow you to store data?
With Unity Engine you can access to the users local storage, so yes they can
I’m using online servers for my games
Like playfab
Ok, seems cool are the games up right now placeholders or did you make them or your friends?
Cool, I like the progress and the website is very cool thanks for showing us.
Thank you so much
Update:
• Register, login and upload game forms are finally done in CSS and PHP, too.
• Small improvements on the front page
Planned:
• Manage Account page front-end and back-end
• help.qwgamers.net subdomain where there will be all common issues and informations written about the site for example: uploading a game, why my playable doesnt start…
Thank you for your support and feedback!
https://qwgamers.net
+You can now switch between unlisted and public for your game
- this makes your game hidden in the search results or visible
Nice site! I've uploaded some of my games to it. The process was seamless. Drag and drop, then upload. Great!!!
@rare dome my game is not scaling good
Oh, Thank you for uploading your games to QWGamers.net, for some reason I didn't get notification about your text.
I wrote you an email, too to ask how you discovered QWGamers, but I know now.
If you are talking about the playable Unity game scaling, you have to change your auto generated index.html file for the WebGL build
I can provide you a code to make the Playable full screen
Ok
You will find an if block starting with if(/Iphone | Ipad...)
For the easiest process copy whats in the if block and paste it to the else block, this makes your game full screen on phones and on desktop, too. But if somebody has an easier method for this please text it:
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
// Mobile device style: fill the whole browser client area with the game canvas:
var meta = document.createElement('meta');
meta.name = 'viewport';
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';
document.getElementsByTagName('head')[0].appendChild(meta);
container.className = "unity-mobile";
canvas.className = "unity-mobile";
// To lower canvas resolution on mobile devices to gain some
// performance, uncomment the following line:
// config.devicePixelRatio = 1;
} else {
// Desktop style: Render the game canvas in a window that can be maximized to fullscreen:
//canvas.style.width = "1000";
//canvas.style.height = "600px";
var meta = document.createElement('meta');
meta.name = 'viewport';
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';
document.getElementsByTagName('head')[0].appendChild(meta);
container.className = "unity-mobile";
canvas.className = "unity-mobile";
}
Thanks
@rare dome one question where did yoy get domain for qwgames?
My correct domain is qwgamers.net beacuse the qwgames.net was taken, and I’m using Hostinger server provider.
Good luck!
Thanks
The Account Managment page is almost done. Now you are able to change all of your personal and public datas and you can also delete your account or change password. The next thing will be the “I forgot my password” system, where you will be able to reset your password, without knowing it.