Don’t Take the Cakes! Game Development Process Devlog #1
I’ve started a new devlog series. You can view it here. Share This:
I’ve started a new devlog series. You can view it here. Share This:
As part of the ongoing sets of practice game jams that we have been doing, I have started creating a free resource pack, available for download. This project contains tools and templates to help you plan … Continue reading
This coming Monday (April 1, 2024), I will be starting a new series of game jams, to help myself and other developers practice game design and development skills. A game jam is an event in … Continue reading
Many RPGs have vast worlds to explore, with lots of quests, items, monsters, and other things to discover. So at any given time, how does the player know what to do next? Have you ever … Continue reading
Over the last few posts, we’ve discussed lists and list-like data structures, such as sets and arrays. All of these are collections of items. In this post, we’ll be talking about a new type of … Continue reading
In the last couple of posts, we discussed arrays and lists, both sequential collections of related items. In this post, we will discuss sets. A set is an unordered collection of objects, that cannot contain … Continue reading
In the last article, we looked at the array data structure. This time, we will discuss lists. As we mentioned in the arrays article, in some languages, such as JavaScript, arrays and lists are the … Continue reading
In RPGs (and any game), data structures are vital components of the game code. A data structure is a scheme or construct for storing, organizing, and accessing data in a game. There are many different … Continue reading
A few weeks ago, I received a very nice compliment about a demo I did a few years ago, a game called Casino Sweeper. Thanks to that kind comment, I have resumed development on this … Continue reading
In this tutorial, we’ll discuss how to implement a text-based lottery system/game similar to the one in some of the Yo-kai Watch games. We will be doing the tutorial in Java. You’ll need some basic … Continue reading