Your cart is currently empty!
Developer Logs
Join us on this journey through the challenges and intricacies of crafting fun gaming experiences!
WordPress Page Cache
When this WordPress website was just some text and images, I ignored the warnings of there not being a cache for static pages. I talked about moving images to an S3 bucket which mitigated the slowness that I was experiencing. However, once I added the WooCommerce plugin to add a merch shop for this weksite,…
Multiplayer Development Challenges
When a single player project goes to multiplayer, a bunch of assertions that could be made before cannot be made anymore such as:To go from single player to multiplayer, members of the party relinquish their right to move the enemies, and allows the server or host to determine the enemy movements. We are also keeping…
Floor Serialization Issue
In engineering, sometimes you run into an issue and it’s actually disguised as another issue. That’s what happened to me when I tried to send the floor definition from the host to the members of the party.Part of implementing multiplayer is that the host sends the floor definition to all the members so that all…