Trending repository
-
Updated
Jun 13, 2022 - Python
The recently-ended Gamedev.js Jam 2022 encouraged game developers to create web games and share their sources on GitHub. GitHub Star
June 21, 2022 - June 24, 2022 • Austin, TX
Creating pixel art for fun or animated sprites for a game? The digital artist in you will love these apps and tools!
Tight deadlines, backend not ready, demo approaching, ... develop your UI before your backend.
Place the access_log and error_log directives inside the main server block instead of http block.
Disable access_log at http block:
File: /etc/nginx/nginx.conf
# ...
http {
# ...
access_log off;
# ...
}
# ...Enable per site access_log and error_log at main server block:
File: /etc/nginx/
I wanted to create an entity that is only shown to one player, but I can still change and resend. Unfortunately, the only way to do that is to manually run Entity#hideEntity on every player on the server, and any that log on after the entity is spawned.
I would like there to be a Entity#hideEntityByDefault w
In medusa-js, add signOut() to the store AuthResource.
CommitCheck ensures your commit messages are consistent and contain all required information. You can check that commits contain a JIRA number or ensure commits don't contain WIP.