Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Nessa

9
Posts
1
Topics
8
Followers
A member registered Jul 30, 2023 · View creator page →

Creator of

Recent community posts

Your words bring me so much joy. I loved watching your play through! Seiklus is one of my favorite games and it was a huge inspiration. Congratulations on, and thank you for, completing all the modes to the full extent!

https://game-maker-nessa.itch.io/sprout-story

Sprout Story

A short and sweet platformer where you play as a flower exploring a small, cozy world. The game is available as a Windows executable.

All content was created by me, except for the use of (an open source Google Font)[https://fonts.google.com/specimen/Comic+Neue].

The game is suitable for all ages.

Pacific Standard Time.

Where may I find a link to your stream?

The graphics are soo cute! I enjoyed the balancing act between stats and how the design of the course really highlights each type of movement. I only wish there were more courses to choose from.

My fastest time was with the rabbit, insect wings (I think that’s what they are?), and tail feathers:

After learning how the door mechanic worked, I enjoyed this game. The sense of progression from being defeated in one hit to overpowering enemies was nice. I tried out both characters. The small variety they both added to the game was nice. I know the game is “endless”, but it would be nice if there was a completion condition. I guess defeating the demon is the end goal?

My favorite part were learning each of the unexpected power ups. I actually found an exploit with the “rapid fire” power up (enter the door with the power up active). This allowed me to get a very small cooldown and do something like this:

Thank you so much for playing, I’m glad you enjoyed it! I tried to position stars to guide you to other rooms (the ones in screens above the current one are a little tricky to be aware of!), keep that in mind if you happen to play again.

Day 3: Let there be light!

I’m satisfied with how my lighting system came out! This is my first time seriously working with GameMaker’s surfaces and blend modes. I recall a time when the now seemingly simple math behind these systems mystified me. It’s heart-warming seeing how far I’ve come!

In creating this system, I hit a program design issue: how can “regular” game objects be differentiated by “light source” objects. I can’t use GameMaker’s inheritance system because there would be overlap between my object parent/child hierarchies and GameMaker doesn’t have multiple inheritance (to my knowledge anyway) like Java’s interfaces, which would be perfect for this situation.

I’m sure I could do something fancy like check if light source required functions are defined/undefined in a given instance, but I didn’t want to fall into a rabbit hole creating a large framework from scratch. My solution is to just put the object indexes of “Light Source” objects into a global (assumed constant) array:

Each of these objects are expected to have the following functions defined (but this is not enforced!) like here in the PlayerSeed object:

The actual drawing of light sources is currently inefficiently using double iteration each game frame. I iterate once through all active instances (in GameMaker, this includes my game engine objects, invisible “marker” objects, etc., things that most definitely not produce light), then iterate again against the aforementioned global list of “light sources” to ensure that the currently considered instance is indeed a “light source”. If so, a light is drawn.

I’ll likely optimize this functionality by maintaining a list of Light Sources as they are created and destroyed, requiring only a single iteration through entities. However, because there aren’t too many instances in this game at one time (~15 instances * 5 Light Sources * 60 FPS = 6000 iterations per second, drawing lighting once per game frame), this optimization isn’t super necessary.

Day 2: Area One and Tasks

So far I’ve created the entire first area. I spent a little too much time ensuring that no platform was tedious to use! This area features the first of five animals you’ll encounter in the game, the sheep!

Each area features an animal which you will need to interact in order to traverse it. The sleepy sheep for example repeatedly snores. This produces bubbles which you can use as a vertical boost to jump higher and farther and to reach otherwise inaccessible areas.

I usually (and inefficiently) keep the entire plan for a jam game in my head, but this time I’ve decided to create a very tentative task list:

I’ll do my best, but will probably forget to check things off as I complete them. I usually use the process of creating a task list to further refine my ideas and ensure my plan is realistic.

Day 1: Game Idea

To fit the theme of cycles, you will play as a flower that can transform into a mobile seed, which will replant itself, sprout into a new flower, and begin the process anew.

The game will be a non-violent exploration game with collectables and a very simple story that serves as a goal for the player.

So far, I’ve been working on graphics, have a mostly complete plan for the game, and have gotten the basic gameplay mentioned above implemented.

Next, I want to add a variety of game elements while ensuring this interesting movement feels nice to use.

Devlog Introduction

Hello fellow developers!

I’ve been creating games off and on using GameMaker for a long time, joining the occasional jam here and there. I’ve long desired to get into a more regular game development rhythm because I love crafting unique worlds for others to experience. This jam seemed like the perfect opportunity to do just that!

My goals for this jam are many: I hope to gain a better understanding indie development scene, especially here at itch.io. I’m also ready to play some neat games, offer some insights to less experienced developers, and hopefully make some friends along the way!

I invite you to drop a comment or simply say hi and tell me about your own game! Wishing you all the very best of luck and lots of fun in participating in this jam!

Thanks for stopping by!