All Activity
- Last week
-
I forget if I mentioned this in my last update but I've finally got the project in Unity 6. This is my last planned update for the game engine. At this point I have everything I want and really any further updates are just me looking for excuses to delay work. As of today I've got a few weeks off from work and I want to make the most of it. The biggest challenge with these large delays is that you have to piece together where you were prior. I'm noticing that a past incarnation of me put together a system for finding a "valid" random point for the Moosecats. I don't think it was the best choice as designed. But it will get us to where we need to be. I just needed to work through it and see what was updating it. I found that StateActionPopulateWorldPositionDataAction is updating it. The name has some redundancy in there that I want to fix. A buddy at work would have my ass if he saw me writing Action twice in the same class name. The good news is I just checked all my other state actions and this was the only one where I did that. Phew! Easy enough to rename. Find a Journey you Love and Love the Journey This is something that has been on my mind recently because I work out a fair bit. Not as much as I'd like to but as much as my mind will allow. But I think I know how I can enjoy my life more. Perhaps it'll help you too, I'm not sure. Basically at least in the US we've become absolutely obsessed with the destination. Get rich quick, get strong quickly, lose 10 pounds in 10 days. All sorts of promises that tell us we can skip the journey and get directly to the destination, if only we trust them. Nearly all of these things are scams, enough to just throw them all into the same pot. But how do you not fall for them? It's one thing to be vigilant and try to stay ahead of the game but we are all busy folks. So I propose instead to find a journey that will get you to the destination you desire that you think you'll love. From that moment your only job is to love the journey you are on. When I work out I'm not thinking about how many more days until I'm buff. I just glance in the mirror from time to time and notice my arms are bigger or my chest is bigger. I could be stressing that I'm not Bane after a few years, but realistically what am I rushing for? It's looking like none of us are getting out of this alive, so its best that we find the most joy in what we are doing. And if the journey you are on is not one that you love, at least take some time to see if there's a way to change that. Because as long as you love the journey you will be basically immune to all scams. Because why would you want to skip the journey if you love it? And where is the big money maker in sensible solutions? This I think is the crux of not falling into despair about these plagiarism bots that are being built. Just keep in mind they are selling a destination. They want people to skip picking up skills, to skip learning, and to become dependent on the brute force of modern silicon. You can't fail if you love what you are doing. I'll see if I can articulate this better in the future. But this is where my head is at currently. I'm gonna get back to this little journey with Moosecats. Maybe we'll get back into streams soon.
- Earlier
-
The Front Today was a pretty slow day to get started. But once I got rolling it felt like a lot of things were coming together. Each new game that I start is saved in a separate slot. I've somewhat arbitrarily only given you 10,000 to work with. This may eventually change to just be however many your PC can manage. Just keep in mind that the UI I'll be designing might not be the most convenient when you've got far too many games running. Realistically I would think most people will only have one given all the collectibles and progress folks will have access to. I've also updated the artifact system so that my serialization updates from yesterday...or two days ago...is even more efficient and convenient to use. This is good because a system really needs to be convenient or I'm likely to nuke it. A system that is both convenient AND good is always a nice surprise. So this means that the next step we need to take is having continue work. Once I can click on any of my prior saves and load into them I'll know that I'm in a pretty good place. Obviously things like loading from Save A to Save D while actively in game might be a little messy. What we may end up doing is unloading the game scene, taking the player to some kind of loading scene, and then have it load up the same way each time. I'm sure I'll miss something leading to data persisting between them, but if it isn't super bad that'll be fine. Those kind of goofs are fun for speed runs or challenge runs. The Back I'm a few days removed from my last work out but it was a real beast! Stair Calves - Two Sets - Body Weight @ 31 Reps Barbell Squat - Two Sets - 150 lbs @ 7 Reps Seated Cable Row - Three Sets - 100 lbs @ 13 Reps Bench Press - Three Sets - 105lbs @ 6 Reps Barbell Curl - Two Sets - 55lbs @ 17 and 14 Reps Respectively. Cable Triceps Pushdown (Rope) - 50lbs @ 11 Reps, and 40lbs @ 7 Reps respectively. My biggest mistake here was those Cable Triceps, the list of exercises above IS the ideal order but I didn't do it in order. I misread my sheet and did 50 lb pushdowns which, as you might guess, is quite hard! It completely gassed my arms and when I double checked I realized my mistake. But at that point I still had curls and press to go. Talk about a grind. I managed it but only with a lot of grunting and perhaps a bit of praying to the iron gods. I'm pretty happy overall with my performance and I really enjoy working out. I'll see if I can manage some more Phitness & Philosophy videos this year. If I can plan them properly they might not be the worst amount of effort. Perhaps I should just do more unedited long form videos. Its not like I'm trying to become the next big thing on YT. So the success, or lack thereof, really shouldn't be a limiting factor in what I want to do. Just a matter of keeping a positive mindset and approaching things in a healthy way. Lets see if I can muster that.
-
I think going forward on these updates I'm going to split them into two sections. Think of it like a mullet, we'll have business in the front, for anyone that only cares about that, and personal in the back where its just the things going on in my life. If you don't care about one side, don't read it, and if you don't care about either side then you've just saved yourself some time! The Front It took a strange amount of heavy thinking but I've managed to update the save system to be a lot cleaner! Now we have the concept of a UtilitySaveData class, utilities are classes that are neither SOs or Monobehaviors and will handle various needs of other classes. This is hardly revolutionary but like all my other naming structures the important thing is having some level of consistency. It is the fact that these are neither MB nor SO that makes them a "utility" class. And that mentality in the future will help me manage what is what easily without a lot of hovering. These new classes can be utilized as easily as: var USD = new UtilitySaveData(_keyArtifact.Value, _saveIndexArtifact.Value, _objectToSave); USD.SaveState(); and var USD = new UtilitySaveData(_keyArtifact.Value, _saveIndexArtifact.Value, _objectToLoad); USD.LoadState(); Simply generate a copy of the USD and give it a go! This will read from shared artifacts between the behaviors that are creating these classes and that results in us never losing sync between our savers and loaders. It also means they don't have to be one monolithic class. You might say "Well, Oafkad, why is your Utility a monolithic class?" To that I say, its been a long month. But also its still a pretty defined operation that doesn't require a lot of different events and communications with the outside world. The same is not true of the behaviors that are saving and loading. Those have a lot of moving parts outside of themselves and I want them to be simple and contained. Plus I think this utility is darn near feature complete for now. We'll see as I use it! We've got our savers and loaders setup in the scene for the main menu. So the next time I'm developing I'll need to hook those up to their neighbors. The loading system will be what determines if continue is clickable (and indeed what you see after you click it). The saving will be called by the player submission request, and following that save succeeding we'll transfer into the introduction of the game. It's been a long and slow road for a month or two here, but I can see some level of progress on the horizon. The Back I'm a little bummed that I don't have a lot of mental energy lately. Which itself kind of feeds back into the problem where you are constantly in recovery mode. This does mean that doing work outside of work gets harder and harder. That's especially bad because then I end up feeling more tightly bound to work as that's the source of my income, and thus the few freedoms you can manage as an adult. But the more that happens then the harder it is to shut off from work and the cycle repeats. I'm hoping that as I get back into fitness this will become less and less of a problem. I can already tell that the muscle soreness from my last routine has given me a bit more pep in my mental step. That might sound weird, I know a lot of people don't like to be sore, but I generally like it when I know why it happened. Soreness tells me that I really gave it my all with whatever I was doing. And yet I hate headaches, so perhaps not all soreness is equal. I'm going to probably get back into posting on my YT channel soon. Not because I expect anyone to watch but because that also makes me feel better. We'll have raw videos of gameplay, development, and fitness. Like these front and back posts, if any of it appeals to you, please check it out, but if none of it does that's fine too. The internet is a dark and scary place, and if I'm not able to give you a bit of levity then that's fine. We all gotta find what works for us. Maybe after tomorrows workout I'll include what I did in the backend of the update for the day.
-
Welp, you can officially click new game, pick a name, a birthday, and then move into the main game proper. This is great but it does raise a few things that I need to overhaul. The first is our saving and loading system. Currently it is using interfaces in a way that should literally be impossible in C#, how I got it to work I'm uncertain. But it is impossible to breakpoint which is very annoying. This week we will update the saving and loading such that it is done properly and can be properly breakpointed. This will be very helpful and part of this will be creating checks for whether or not the loading data exists. You might be saying "Uh...how do you load at the moment if you don't know the state of the save data?" Well I DO know, but it is loaded immediately after checking. This was perfectly fine for a few months of development but now I need to make it more robust. We will check if save data exists on open, if it does then turn on the continue button. From there you can select one of the save data that currently exists. And ah hah! That's another thing we need to validate, saving to different index values. Currently it only does a rolling save, so it'll save to spot 1, then 2, then 3, and roll around after it hits the limit. But I want you to be able to pick a slot and always save to that slot until you pick a new one. Perhaps with "-1" being our autosave slot. We'll see. Overall though, making some core progress. I'll also talk about how I solved the "state to state" communications in an upcoming post. It isn't super clever but it was a refreshing moment when I saw it work on the first try.
-
So I'm realizing today that I need to make the primary state machine of our system a system that exists outside of the primary scenes. It hit me like a ton of bricks when I was clicking on one of my main menu buttons and...nothing was happening. Well shoot, I thought, that's definitely unexpected! I've been using this system for years, how could it be failing now? Well, when a tree falls in the wood and nobody has registered a listener, does it raise an event? The answer, at least in my system, is no. This isn't an insurmountable problem. What I can do tomorrow is create a class that I add to my fresh scenes, this will check to see if we've instantiated the state machine yet (and placed it in the do not destroy scene). Once this has happened we'll have our system setup and ready to rock for all other places. This is a bit different from a singleton in that we won't actually have any static references to it. This is simply a system that exists in the ether and communicates back and forth with the rest of our game world through events and our scriptable objects. This is an exciting moment for me because it gives me a very direct thing to solve and given how fatigued I've been lately that'll be a welcome adventure! Once that is done we'll move onto the next game action I need which is spawning the player at a particular location and rotation. We'll need this for the introduction sequence.
-
While today was slow goings, I can happily say that I've started doing work again. The last few weeks of my life were extremely hectic with occasional workdays literally going from 8 in the morning until midnight. My brain and body were both drained, by the end of it I was just completely exhausted. I knew if I tried to work on the project at the same time that I'd not get anything even close to quality as a result. So I took some time off, focused on getting work caught up and out of my way. With today being my first return back. Unfortunately coming off of going to bed at 1AM did not help for the return. But I've had a few days off from work and I'm feeling a lot better. Currently working through the slow process of improving our UI flow for new games. A few of the classes I made before I left weren't quite up to my ever progressing standards. They've been tweaked a smidge and now I'll get even more utility out of them. Also I'm hoping to start posting videos of some kind more often going forward. I know this will remain my own little slice of the world off in the middle of nowhere but might as well deck it out with nice things. If nothing else it gives me interesting logs to look back on in ten to twenty years. Hopefully I will be more positively surprised by them than I was when I saw my teenage ramblings as a twenty something. Some of it was genuinely interesting but also some of it was pretty wacky. Our own many evolutions over time are very interesting to me. So many different people in a single body. But not like that, unless you are into that, I am not one to judge.
-
Getting back on the train, not by a lot, but enough. This week was harder on me mentally than I realized it would be. I think I'm going to move this section from scratch notes to some kind of daily devlog series. Where I'll either talk about the latest updates of the game or what I'm doing and how its influencing me. A big part of this is that those influences impact the design of the game, they have to. The only time that a game is unchanged by the experiences of the creators is when the process of creating is not driven by the creators. When a game is a vector for profit over experience, that's when it will live on regardless of the internal conflicts, the ups and downs, that shape the people that shape the game. This homogeneity, this safety, I think is what makes so many series become stale. They become a product and that product has a "thing". It does X, and X is what defines it. Because X was found to make the most money and thus is the best thing to do. So many things now are designed with this goal in mind and I think we've all seen the result. How many things actually come out anymore, in any genre of experience, that people find exciting? I know for me the answer is quite slim. I spend a lot of my time just shrugging when news breaks. Large Language Models, new games, new graphics cards, new cars, its almost all kind of bland. A lot of it is solving the wrong problems, or providing the same solutions we've seen for my entire life (and beyond). But I'm getting a bit off topic. I need to know my limits, and trying to do things daily for this just won't jive with work occasionally being out of its mind. And when work goes off I need to ask myself if I need a break. Do I need to play games, to stream, to read, what would help me feel whole and invigorated. That way the time I'm giving to the project is happy and healthy. I've got the new user screen saving your name, your birth month, and birth day. I will need to do some adjustments to save the creation date since this will be used for random seed generation in some manner (keep things interesting). Once this is hooked up the next step will be the introduction. I suspect at the start this will be you standing at the end of the manor plot. I'll place things out with cubes for now to get a "feel" for what we want. I'm a bit excited to do some genuine world building. We'll see how long it takes and how much energy I've got. The best case and worst case scenarios are not too far off from one another. You either live long enough to accomplish your goals or you end up dying before you do and it isn't your problem anymore.
-
Progress ticks on, the sands of time flowing down through the thin neck of inevitability. We've now got a simple object for handling dates, the primary use will be for birthdays. This is because DateTime in the real world and the date and time of this world don't actually line up. We could probably link them up in some way but I think this is the better path. The next thing I need to do is start hooking up the Handler for the Character Creation page. This will hook into a copy of the Datum Player class and once finished, save it to our open slots. But not for tonight, tonight I get some rest and hope I don't burn the entirety of my brain at work.
-
Alright, names are pending possible changes in the future but we've got the following for the year: Scionur, Ghein, Auroht, Calia, Hidroen, Aten, Gefain, Phoen, Tartarune, Dimine, Chaine, Kalmine, and Thanine. Each month is 30 days long, which means we have a few more days than normal. Like many things with the project this will help make things feel just a little bit off, a little bit wrong. Sorry to say I lost some work from yesterday. But given that we didn't even have an update yesterday I think that was just how it works out.
-
Obviously not mine, that's for a bit now. But I've started hooking up the player creation section. I know we need to know your name and we'll want to know your Birthday for a yearly gift in the game. This is all saved locally obviously like days of old. If we ever have online support that'll be fully optional and opt-in, not opt-out. I got no desire to know anything about anyone besides what they would like me to know. One fun thing I want to do hearkens back to one of my favorite games of all time, Ogre Battle 64. We are going to convert your real world Birthday into the day and month of the in universe calendar. I don't have that list with me at the moment but in my binder I've got the entire calendar written out. It is very similar to the regular calendar but something I did was have every single month be 30 days. This leaves us with 12 months still, but 5 fewer days per year. A nice thing about that is that it makes a lot of game fun a lot easier to deal with. Additionally it ties some of my older work in with the newer work which is always a delight. I have no idea what this upcoming week holds. It will be extremely busy for me at work I think. So perhaps this will be our "Just do anything, I believe in you." Week, where even tiny updates are still victories. I need to setup the save system so that it saves to slot 1 first, then if you new game with a save in slot 1 it'll save to slot 2, and finally if you have saves in slot 1 and 2 it'll save to slot 3. We could technically have infinite slots, and perhaps that'll be the final version of it. But for now I think 3 will be visually appealing and there should end up being a lot of game. That many simultaneous saves might not really be realistic. THOUGH, you could argue families might each want their own saves. I'll keep that in mind.
-
Well, I've worked a few 10 to 12 hour days and today I was rebuilding my office now that the remodel is finished. I'm sorry to say that means I haven't gotten to do anything with Moosecats this weekend. The plan tomorrow is to finish some more work in the morning and then spend the afternoon updating the state transitions for the new game flow. Obviously we won't have any animations but the hope is that we can start blocking out the experience so that later we can have animations slotted in nice and easy. The upside to a job is the financial security, can't deny that, the downside is sometimes it asks a lot of you. And the older I get the less of me I feel like I've got. No worries though, the vision is there and the future of the project hasn't hit a wall yet. So many cool things to do and try. Plus my work solutions today were largely using systems I built and that's always a fun feeling. Seeing things work the way you hope they will and having it all just kind of fall into place. Satisfying for sure. I hope anyone reading this is having a good day, good weekend, and just in general a good life.
-
As is so often the case, today is less exciting than yesterday. But hopefully getting us ready for a couple nice updates tomorrow. I've got a small bug with my loading order. Basically I need No sooner than I was writing this did I realize where my bug was and how to fix it. We've now got the title screen with the buttons disabled until the player data is loaded. If your player has a name (a requirement of playing) then I know you have a game going and the continue button is enabled, otherwise you only have access to the new game button and the settings button. Upon clicking new game, or continue, we enter into the game state. Obviously this isn't how it will always be, the next thing I need to do is separate out how new game and continue work. So tomorrow I suppose we start on the new game flow. It needs to move to the "new game" state, rather than simply game state. I'll need to think about how I want to work the flow. I suspect it'll involve some...gasp...UI work.
-
Alrighty, so we've got an artifact setup to point to the title screen handler. This will allow us to modify it through the state machine. The plan, which I should finish up tomorrow, is to have the buttons disabled for now until the player loads. If there IS player data, we'll set new game and interactable to clickable, if there is no player data, we'll only set new game to interactable. Settings does a whole lot of nothing for now, don't have settings to worry about. Upon clicking either new game or continue we will transition into the game state. This will not always be the case. Once the Title Screen state is complete we'll move into the new game experience. Not too bad though, tonight the little bit of time I did have to code went very smooth. Nice change of pace.
-
I'll be honest, today was rough. Work has a lot that I need to get done and Venus did not have a good day. Poor girl is either stressed or sick, or both. Hopefully she'll be feeling better tomorrow or at least in a couple of days. I don't handle that sort of problem well at all unfortunately. So once my long long work day was over and it was already edging towards 8PM I had to make an executive decision. Will I try and have any fun today or will I just work? I ended up taking the fun route. I needed that, but it wasn't entirely a wash for progress. We've got our developer quality title screen setup. I've got the events hooked into the buttons and now I just need to build a handler for the title screen and work out some preliminary transition into gameplay. Initially we'll just load up the scene you've seen a million times, but I'm going to start working on at least a rudimentary starting experience. What that will look like I haven't yet decided. We'll see I suppose. titlescreen.webm
-
Alright, at this point I think we very much have the foundational pieces to make our vertical slice game. So what I'll be doing this week is setting up the initial flow of the game. We'll keep going step by step through the process. You know what, I keep doing the "we" thing so I'm just rolling with it while I type this up. Anytime we hit a wall we'll discuss that wall and how we need to overcome it. Be it a little bit of polish on a system, or a missing system I didn't think of, whatever. Over time we'll get closer and closer to the game. Which is an exciting prospect. Once we get to the point where there is something to play, even a small teeny tiny bit, I'll begin putting up builds. Maybe on itch.io, I'm not sure yet. It'll allow us to see the whole thing start to grow. I'm looking forward to seeing more and more of this. Finding little ways we can improve things and figuring out the scale of it all. Initially I plan to do things like use cubes for npcs, or perhaps we will embrace the flatlands feel of our kitties and make all of the NPCs, including the player, flat. I suppose I am playing TTYD now, and it is certainly a fun aesthetic. Once a few of my expenses are paid off this will likely be a good time to start investing in a talented friend to get some art off the ground. And once we've got that slice I already have a couple of sound people in mind for music. It will be interesting to see what the next one hundred days holds for us. Hopefully something neat.
-
Ended up watching the Sonic Movie tonight. It was quite good! I really enjoyed Jim Carrey as Robotnik. Lots of great visual gags and it gave me a good smirk from time to time. Definitely a good time. I don't really do letter or score reviews, but on my "Hated, Disliked, Experienced, Liked, and Loved." It gets a solid liked from me. But, I can only assume that the reason you are on this part of the internet is you are curious if I reached my goal for the weekend. I'm not sure...I wonder if there is any way to know. thesignspart2.webm One thing I am realizing is I need to update the interaction logic. That little blip was me adjusting my position to actually talk to the sign. The collider solution might not be precise enough. I'll add some debugs tomorrow to see what is up, maybe examine an approach involving a sphere of influence and our angle. Not sure yet.
-
Per usual, today was a me day. I was tempted to do some work but I also recognize that I need to relax sometimes. Liz and I have been playing a good chunk of Pandaria Remix. There is even a checklist that was made by a user that I've been using to see how much of the things I've unlocked during the event. It can be a little hard to invest any kind of time into games like this for me. Especially with the rise of Private Equity gluttony and Public Company implosions. It just feels like every media controlled by a corporation is not long for this world. No real reason for it either, games like this make plenty of money. But they cannot realistically make more money year over year without fail. And that obvious truth is too much to understand I guess. So I play for now because I'm enjoying myself, but I'm never going to grind in this when it isn't fun. Which I guess by my own definitions wouldn't be grinding. Anywho, going to go get some rest and have a nice productive Sunday. We'll see if I finish that goal from Friday-Me, I think I will but never know until you've done it!
-
With the construction and work looming ever more on my day to day, I find that I'm not getting as much done as I'd like. But that's ok, I'm making small progress almost daily and that does mean inevitably it'll get done. Tonight I updated a few of the classes, got some of the code comments updated. Cleaned up areas that were rough around the edges. This weekend my goal is to get the sequential conversation hooked up and have the window close in one of two scenarios. You put enough distances between you and the target (or something similar) OR you finish all their dialogue and interact one final time. I think that's a realistic bar to set. Sunday evening me will see how it fares.
-
We'll start first by saying that I noticed a way I could optimize my event system today. Not necessarily for performance but for when I need to make new events and listeners. I was able to reduce the parameters necessary from 3 to 2. That might not sound like a lot but that's 33% less work to do every time I have a new event to make! It adds up when you get to be my age lol. Secondly, we've made even more progress tonight! We now have the framework I discussed in the prior post started. The next thing I'll want to do is create the messages to iterate t hrough and to have it close if you walk away. But that's for tomorrow, for tonight I go to bed! talktome.webm
-
Alrighty, we've got both parts of the relationship hooked up for the conversation. The Handler Conversation on the object, in this case Sign, and then Handler UI Chat Box on the chat box. The initial conditions for connecting the two is also ready. Not that I've made the event or listener yet but that will be trivial. The next step, if I've got the energy (a common comment from me but I am edging towards 40), is to create the first structure for housing conversation. I think it'll be a list of a class that for now only contains a string. Later we might include images and other information so that when you move pages we can update popin art or similar. It is slow goings but we DID have to clear out an entire room today to get ready for more construction work tomorrow. So overall I don't feel bad about it. Just do what you can and eventually you'll get somewhere.
-
Before I head off to bed, lets do a little brain storming. I've got the chat box setup, realizing that I've been an idiot this entire time and trying to take care of the more complicated system before doing the simpler one that'll satisfy most of my needs. This simpler problem is a chat box that will appear when you talk with actors or objects that have things to "say". It will appear, sometimes with menu options, and will close if you walk far enough away from the target. Perhaps even if you just turn I'm not sure, we'll have a menu option for disabling movement during conversation in case people want to use WASD (or similar) to make selections. I can't use a dialogue wheel I believe because EA will sue me into oblivion if this game ever actually released and people played it. So we've got the Item Data, this determines what happens when you interact with the item, using game actions. One of these actions tells the chat box to spawn. So next we need to figure out what text information to display when this happens. This can be solved in a few ways, the most obvious is linking the actor and the chat box. I think if we do this and have the actor be "iconversational" then we can begin iterating through a collection of strings. These strings already support being colored or animated, and I believe I can call events during the conversation through the text as well. I have yet to test this, maybe tomorrow if I'm not too burned out. We'll give the sign say...3 pages of messages. You will move to the next page each time you press the interaction key. Then after there is nothing more to say the box will clear the reference to the actor and close. I might do a dummy event to play a sound or something just to test it out. Yeah, alright. This was good, I'm glad I got this out because it gives me more of a gameplan for tomorrow.
-
Alright. I think I have a plan. We will generate the box on a canvas layer, this will need to be placed just above the speakers "head". We will want this to snap to the edges of the screen as you look around, until a certain "stretch point" causes the object to "snap off" and stop being visible. If it works out I might also make it fade out if you walk away as if you can't hear it anymore. I played a fair bit of Warcraft today because A) I'm really smitten by Pandaria Remix and B) I wanted to see what talking looked like in the game. I really dig how naturally it all just works. These are the kind of things that really impress me with design. Like a good camera controller, you never notice just how much work goes into them until they stop working properly. So here's hoping I build something that nobody notices. Ominous foreshadowing perhaps.
-
It is a bit of a cliche with my updates but I am, shocker, very tired. So what I'm about to write not even be very coherent. Today I did manage to create the speech game action, and a very basic sign made out of a thin cube and a cylinder. When you interact with the sign it triggers the speech action which then prints to the console log. The next step is adding in a handler for this object that is raised by the game action. This would contain the text and other details pertaining to this actor, and all others like it in the future. Once I have that done I'll have the interaction medium and the data storage and recovery system. What I am also working on is the popup when you talk to these things. I think fundamentally the camera is too zoomed in by default. This leaves not much room on screen to post a text box without it blocking your view. I'll play around with a few things and see what works best. I'm also curious how hard it would be to make the box center on the speaker, point towards the center of the screen, and then anchor to the edges of the screen when you run away. Maybe having it fade the further you get from the speaker to represent it being quieter and quieter. Maybe, something to mull over while I sleep. Our little bean is still limping, but she's otherwise acting normal at least. Gotta give her lots of cuddles and pets.
-
Today, our little Bean, of Moose and Bean fame, has a limp. Not sure what she did but clearly her body didn't appreciate it. I know it might sound a little silly but it completely threw out the window any chance of me concentrating at least for today. Hopefully by tomorrow with a bit of rest she'll be back to normal or at least less pronounced in her pain. We've scheduled a vet appointment. I still plan to do dialogue work in the morning tomorrow but I'll be keeping a close eye on our little kiddo. They are both too sweet to be dealing with injuries.
-
I've got support added for very fun and animated conversation text. So this weekend my goal will simply be to add a sign into the game that has some message. Once we've done that, which I think will be an overhead box above the sign, we'll start thinking about text boxes with cutins for people. I think that's something I want to do and the next part of this whole party. Should be a fun weekend!