June 15th Update!
Last time we actually updated you about the contents of our games was August 15th 2023. It's been a LONG time, but I can promise that none of our projects have been abandoned. In fact, we've made tons of progress on all of them, but not much worth to be shown.
For the Farmoxel project (name pending) for example, we were waiting to finally be able to showcase the farm map on its entirety. Sadly, as you'll see later on this blogpost, we run into a lot of problems with it. Most of them are fixed, so we may have that done for the next post.
This time, the blog will have 3 bullet-point lists of changes so... buckle up!
FARMOXEL:
Since last update, on farmoxel we've been working on a proper save/load system between scenes so we can start working on our next milestone: Scenes. Our plan is to test all of this with the protagonist's room (Later to be turned into a whole house) and then use all of that to work on the town, which will force us to work on NPCs and AIs... the fun part, I hope.
Meanwhile, we've been working on some little QoL changes and polishment, besides the map update I told you before.
Meanwhile, we've been working on some little QoL changes and polishment, besides the map update I told you before.
-Added a Weather system.
-Added a fullscreen toggle.
-Added a resolution dropdown.
-Replaced old apple model (Only for last growth stage).
-Added first growth stage model for the apple.
-Added mouse shortcuts for inventory sorting:
+ R-Click on an stack: Divide a stack in half.
+ R-Click with a stack: Place one item of the stack in a slot.
+ Shift + R-Click to transfer a stack from the inventory to a crate and vice versa.
+ Pressing 1 to 0 while hovering over a stack will transfer it to its respective position on the hotbar.
-Now crops get watered when it rains.
-Now you can't plow dirt nor plant in a 3x3 grid below a tree.
-Finished reworking the Save-Load system! Now;
+ Dirts Save & Load.
+ Tubers Save & Load.
+ Player inventory and Chest inventories Save & Load.
-Work on the farm map has begun with around 27 tile models to create it.
-Made a bunch of improvements performance-wise:
+ Updated to URP (and rewrote shaders)
+ Updated the map to use chunks instead of individual tiles, lowering the amount of gameobjects in scene.
+ Replaced placeholder trash bin model for a lower quality placeholder that won't burn our CPU
-Finished the dialogue system!
-Positioned strawberry's spawnpoints.
-Updated Discord's Rich Presence to show the actual build of the game.
-Fixed the game's shader.
-Fixed bug where the dialogue skipped instead of autocompleting when pressing a key.
-Fixed a weird sensitivity bug.
-Fixed bug where strawberries couldn't be harvested on a build.
-Fixed a bug where all harvested crops looked like... hoes???
-Fixed a pickup sound related bug.
-Fixed a bug the caused that, when dividing a stack in half inside the inventory without clicking on the object before, one of the halves will disappear until you click on the stack once again. That was... certainly hard to word out.
-Fixed a bug where you could see through cliffs.
+ Shift + R-Click to transfer a stack from the inventory to a crate and vice versa.
+ Pressing 1 to 0 while hovering over a stack will transfer it to its respective position on the hotbar.
-Now crops get watered when it rains.
-Now you can't plow dirt nor plant in a 3x3 grid below a tree.
-Finished reworking the Save-Load system! Now;
+ Dirts Save & Load.
+ Tubers Save & Load.
+ Player inventory and Chest inventories Save & Load.
-Work on the farm map has begun with around 27 tile models to create it.
-Made a bunch of improvements performance-wise:
+ Updated to URP (and rewrote shaders)
+ Updated the map to use chunks instead of individual tiles, lowering the amount of gameobjects in scene.
+ Replaced placeholder trash bin model for a lower quality placeholder that won't burn our CPU
-Finished the dialogue system!
-Positioned strawberry's spawnpoints.
-Updated Discord's Rich Presence to show the actual build of the game.
-Fixed the game's shader.
-Fixed bug where the dialogue skipped instead of autocompleting when pressing a key.
-Fixed a weird sensitivity bug.
-Fixed bug where strawberries couldn't be harvested on a build.
-Fixed a bug where all harvested crops looked like... hoes???
-Fixed a pickup sound related bug.
-Fixed a bug the caused that, when dividing a stack in half inside the inventory without clicking on the object before, one of the halves will disappear until you click on the stack once again. That was... certainly hard to word out.
-Fixed a bug where you could see through cliffs.
With that said, let's talk about the highlights which... are not many.
Added a Weather system.
As of now, it can rain, snow or be sunny. None of them depend on the season and only one of them, the rain, has an effect, which is to water the crops. The particle textures are completely glitched and sometimes you get rain and snow at the same time. The only reason we put this on the game at this point was to test one of the last features related to planting and harvesting before moving to another part of the game.
Replaced old apple model (Only for last growth stage).
Apples only had one growth stage: Apple. At first it was a realistic model, so at some point I decided to replace it with a voxel model made in minutes. Since neither the tree or the apples had a growth system, they were TINY:
Now they grew up, learnt to drive, got a job and rented their first apartment:
Added first growth stage model for the apple.
When making the model above, I investigated and found out that the apple flower is of a beautiful pink shade, so I decided to make that model too~Fancy~ |
As of now, it is not in the game. We first wanna add a new tree model, all of it's stages and all of the apple's stages. But it is low in the priority list.
Work on the farm map has begun with around 27 tile models to create it.
As I mentioned above, the plan was to have the full map done for this update. The idea was to build the whole map with 3D tiles, as building a puzzle. When not even half of the tiles were placed, my CPU almost exploded. I had no idea of what was going on, so my team of overqualified programmers had to clean up the disaster.
The first thing I had to do was to merge tiles into bigger chunks to avoid overloading the scene with objects. The rest will be explained on the next point.
Here, some showcases of the models:
The first thing I had to do was to merge tiles into bigger chunks to avoid overloading the scene with objects. The rest will be explained on the next point.
Here, some showcases of the models:
Made a bunch of improvements performance-wise:
When looking at the whole map, we noticed the vertex count was... off.
There were 5k tiles placed, which were al planes. We're talking about 4 vertex each, so, doing the maths, there were 100k vertex with no explanation.
No explanation until...
"But what about the other 78k vertex?" Yeah... about that. That's just how Unity works. If you add the colliders, the shaders and the simulations the meshes go through, you multiply the number by a lot. So yeah, the game was playable... at 20 FPS and the map was not done yet.
That's when one of the programmers suggested we update the obsolete shader system Unity had. This changed A LOT. The game went from 20FPS to some unstable 60FPS. There was still some work to do.
That is when we replaced the tiles for chunks of tiles (And we still have to do this with more models, so things can only get better from here), which took the game from some unstable 60FPS up to a good 148 FPS.
As I said, there was not much to show, in fact, some of it is not in the game just yet. To compensate, here, the half-baked texture of the apple tree I've been working on:
ROOM MAKERS:
You remember Room Makers, an arcade tetris-like gameboy style game about placing furniture in different rooms. As of now, the game is pretty simple, you place furniture, some of them can make combos, you unlock new rooms with the points you've made and once you run out of space, you lose.
We've been thinking for months about balancing the itch.io version and, once that's done, port it on mobile. These are all the changes we've made so far:
-Made a functional mobile version.
-Worked through the hassle of making an UI for the mobile version.
-Changed all input to the new input system.
-Changed the font, and made it pixel perfect.
-Math stuff. something about local and global position.
-Updated the combo UI.
-Slightly moved the clock one pixel upwards.
-Balanced the combo and points system.
-Added an icon to identify bottom tiles that have been on a combo.
-Added an icon to identify top objects that have been on a combo.
-Worked through the hassle of making an UI for the mobile version.
-Changed all input to the new input system.
-Changed the font, and made it pixel perfect.
-Math stuff. something about local and global position.
-Updated the combo UI.
-Slightly moved the clock one pixel upwards.
-Balanced the combo and points system.
-Added an icon to identify bottom tiles that have been on a combo.
-Added an icon to identify top objects that have been on a combo.
Now let's go for the highlights, which are not many either~
The blue part under it is for an Ad banner, cause, yes, the mobile port will have ads. But worry not, we want them to be as little intruding as possible. No full-screen gameplay-interrupting auto-play ads or anything similar.
Worked through the hassle of making an UI for the mobile version.
Since we are talking about a game that is meant to emulate the vibe of a Game Boy game, we decided that the best way to port it was to give everybody a royalty-free version of the console for their phones!
Here is how it looks:
Added to this, out artist made a whole banner to cover for different screen sizes:
Balanced the combo and points system.
A huge overlook the previous version had was that, if you placed an item in a combo, gain the points from that combo, remove the item and placed it somewhere else, your points may result in a negative number.From now on, the game remembers two important things:
-When an item has been placed in a container and, therefore, participated on a combo
-Which tiles of a container have been part of a combo
Added to this, now you get points for the object placed PLUS the combo points, making it easy for the game to keep track of the points you're making.
This may seem like not much, but keep in mind that this game is not our top priority. Also, only the new combo system required a lot of design from my side, discussion in the team and work for the programmers.
NEXT!
BIG CITY LIFE
Big City Life is a Minecraft gamemode we are working on. Get a job, rent a house, you remember all that. Until now, you were able to work as a miner, there were different tiers and, depending on your rank, you were able to mine different materials. There were 4 locations: The Spawn building, The Windham building, The Grayhouse building and the mines. All 3 buildings had working elevators.
Now for the things we added:
-Welcome message has been updated.
-Players without the correct rank are now unable to place, remove or interact with blocks inside the mines.
-Players without the correct rank are now unable to place, remove or interact with blocks inside the mines.
-Added an events hall next to The Windham building.
-Added a message explaining why a player can't get inside a mine.
-Fixed bug that allowed players to break blocks inside mines from the outside.
-Two new admin commands have been added:
+/getjob {username}
+/setjob {username} [job] [rank]
-NPCs now uses the Citizens API.
-Added a message explaining why a player can't get inside a mine.
-Fixed bug that allowed players to break blocks inside mines from the outside.
-Two new admin commands have been added:
+/getjob {username}
+/setjob {username} [job] [rank]
-NPCs now uses the Citizens API.
Added an events hall next to The Windham building.
How do I say this?
MAYBE or MAYBE NOT there is lore related as to why this building is so important or why does it have such huge glass dome. So yeah. It is not fully furnished just yet, but the most important part of it is there! A... table with 3 chairs... hmm
That is everything we have to show this update. We really hope you- WHAT HAPPENED TO KTA? Oh... yeah... that one. We did nothing about it yet :D
See you next time. We hope this lack of show and tell is not disappointing to you.
Bye! Have a great time!
Comments
Post a Comment