May 2023 Update

Its been about a month since my last update post. So its about time I updated you all on developments over the last few weeks. Starting on from the last post with…

Save Manager 2.x

As you will have seen by now, the new Save Manager has been released! So far so good. There hasn’t been any major problems from what I can tell so far as I’ve been using it in my personal projects to handle save data there. I have made a few minor updates to the asset since launch to fix some minor issues, most of which didn’t actually break anything. But they would throw some console messages which could confuse users.

As of writing the asset is on version 2.0.4. Some improvements were also made such as an option to hide the save keys for induvidual save values, reducing the clutter on the save editor. As well as a fix to allow the demo logic to be totally removed from the asset without any errors occurring. Before there was a direct type reference in the save editor window logic to determine if it would show the demo save object data. This has been changed to a type string comparison to fix the issue.

There are plans for some further QOL & feature updates in the future, such as save slots & a better API to allow for custom encryption options. These will be worked on once I get some time to look into it.

You can get the new Save Manager here:

What’s Next?

It won’t be a surprise to those who read the year in review for 2022 or been following on the socials, that the next main project is the Audio Manager update. Like the Save Manager, it is getting a rewrite in the backend. This is mostly due to the 2.x’s setup not being easy to update for the new features & setup I want to implement next.

The current plan is to have this update out by the end of August. Similar to the deadline of April I gave myself for the Save Manager. So 4 months to fully develop & release the asset update. Now this isn’t a flexible deadline and may change if its just not ready in time. Likewise, if it is ready earlier than planned then it’ll release early. I’ll post updates with progress and a release date nearer the time as well.

Functionally the Audio Manager won’t change much for the end user, but behind the scenes a lot of work is going to be done to make it just a lot easier to use. Some of these include:

  • Automatic Library Management
    • You’ll no longer need to manually scan for clips via and inspector or anything. When you import audio, the manager will find a process it automatically for you. There will be an option to manually scan still if needed. This also makes the setup simpler which is a bonus!
  • Static Audio Manager
    • While having the option of an instanced manager can be handy, 99% of the time it won’t be needed. So in 3.x the whole system is static. So no need to use “instance” when calling for audio to play.
  • New Library Window
    • While 2.x had a basic library editor for each audio manager file. 3.x will have a proper editor window with all the settings you need. You can even change the key of the clip! It also has a search option to search through the entire library and select any clip with ease.
  • Helper Structs
    • A new system for 3.x that will make typo’s a thing of the past. Instead of calling “AudioManager.Play(”MyClip”)” you’ll be able to call a helper class called “Clip” to let you select the clip with intellisense. So that same call becomes “AudioManager.Play(Clip.MyClip)”. There are other helper structs for groups and mixers as well.
  • Grouping
    • Speaking of groups, you’ll be able to group clips together in the audio library and call for a clip from that group to play. Handle if you have a lot of variations or want to play a clip from a range of options.
  • Dynamic Start Time
    • An experimental feature that tries to guess when the clip actually starts playing audio at a loud enough volume. Then sets the clip to start just before then instead of at 0. You can toggle the feature on/off globally, per clip in the library or via the method call itself. You’ll also be able to adjust the settings to get a better guess time in the audio library.

Currently it is still early days and some of these features may change a tad. One thing I mentioned in my last post was a method chaining API for calling audio to play. Sadly I’ve had to scrap this, but I’m still working to make the API better as a whole. The amount of methods in 2.x was a bit much, so I’ll be consolidating and using a better base method to avoid issues with call parameters.

Overall the idea is to build upon 2.x’s success with new QOL features & automation where possible. The music side of things is in the air at the moment, as I’ve always struggled with a good generic solution for it. But if all goes well I’ll have a little time to research something for that. I’ve already had a few suggestions for it which I have noted down.

Other Projects

As mentioned in my last post. I’m also working on a personal project as well to kind of replicate P5’s turn based combat into a small demo game of just that mechanic. This is entirely for portfolio’s sake as it’ll make for a strong project that I can talk about in detail with a lot of systems. It also makes a good testbed for these asset updates. Save Manager 2.x was tested in the project to make sure it was all working before release and Audio Manager 3.x will get the same testing as and when its at that stage. That project is going well at the moment and I juggle my time between both it and the active Carter Games project to keep it fresh.

Organisation

This week I spent an evening or two organising the mess that was the Carter Games Notion. I legit didn’t use it as it was such a mess to find anything. With the new setup I will be using it a lot more. While its not something you see much, it does help to have a goal in mind and to write down tasks so you know where you’re at and what is left to do. Below is the Audio Manager task board for example:

The new structure has goals as “Epics” which then have “Tasks” to complete. Epics & Tasks are linked to “Projects” which hold branding, links & anything else specific to that project on them. Even this blog post is been written in Notion under the new Marketing section xD

Website & Socials

A little heads up that I plan to change up the discord a tad at sometime. Mostly just removing bloat channels and making super simple. Its not used that much anyways and I want to have a place for update notifications for assets/games as well as the general news/announcements section.

I’ve also slowly been updating the documentation for all the assets to the new docs setup on the website. I’m mostly there at this point with Leaderboard Manager being the only asset to fully update. I’m hoping to have that all done at some point xD

So yea, that’s about it for this post. Long story short; a lot going on behind the scenes xD I’ll post another update around the end of June with progress if there is enough to share.

Leave a Reply

Your email address will not be published. Required fields are marked *