This game is pretty impressive. Does it use a cloud service LLM to work? The response times are really fast.
Neverdusk
Creator of
Recent community posts
This was a really adorable and fun game! The puzzles got really challenging, especially the ones towards the epilogue. I've never been a fan of picross, but I may have found a new hobby.
Also - this game was such a *vibe*. The art was really cohesive. The characters and UI blended seamlessly, and your color palette was very pleasing on the eyes.
The writing was also really lovely. I really enjoyed how it focused on Cassia and Senna's story, while casually painting the world they live in and giving a believable sense of purpose to each puzzle. Honestly, I could learn a thing or two from how restrained and focused the story was in general.
Lastly, the epilogues were so wholesome, and Epilogue 3 was totally worth doing the bonus lore over. It really pulled my heartstrings, haha. Cassia and Senna make really good friends, and I hope they don't part forever. I'm not sure if I caught on to Cassia's hint correctly, but if I did, then I'm totally glad to see her accepted and happy. They're both adorable! I've love to see a sequel someday!
Is there any way to use the paid V2 assets with the character creator app (https://emily2.itch.io/sutemo)? I'd definitely be willing to buy them if that's the case.
I don't use Godot, but I ventured to try this (and maybe finally check out the engine), and I really like the concept.
When I tried to use it, though, I ran into a bunch of issues: The startup screen didn't detect when I copy-pasted an install location, so I had to navigate to it manually. The settings screen seemed to reset its options every time I visited (and exiting settings didn't show the "Latest Download" section anymore). Also, pressing Download either did nothing or had an error - so I wasn't able to actually try it haha. I tried running with Administrator permissions, and it wouldn't download. I then tried creating another folder in my Downloads folder, just to test it, but I wasn't able to change my previous "installation location" in the app.
However, I think this has a ton of promise, and I'm not fully sure what issues may be on my side or with the app. If Godot doesn't already have something like this, then based on the screenshots, it could be an incredibly useful utility, similar to Unity Hub or the Epic Launcher. Sorry that this is the best feedback I could give, but the app really seemed to hate my computer.
The "task defeated" sfx actually made me jump haha. I really like the concept for this idea! I've tried a few game-ified task management apps (I even use one regularly) but this one really takes that to a new level.
One thing that I think could work really nicely is time stamps. For tasks, that could be the time / date that it was added, so older tasks aren't left behind. The defeated list could also show the time / date that each task was completed. The ability to sort the task list by time could also help keep the list organized in different ways (as well as inverse-sorting, where higher-priority tasks are placed on top).
Overall, this was a very novel concept. The UI was very intuitive, and I don't feel like any necessary functionality was missing for this to be its own fully-functional task management app. Great work!
At least to my understanding, the Markov Chain variant uses randomness (like regular WFC) but it doesn't use weighted decisions. So it asks "what could go here" while Sibyl asks "what would best fit here".
All that said, WFC and MkWFC are still very good algorithms. Most importantly, they're naturally faster, so they can be used in games for real-time generation, while Sibyl sacrifices some speed for control and quality. I am still working to optimize Sibyl, but it does have a higher workload to contend with.
I am doing something similar, at least on the surface, though it's very different from how WFC is usually implemented.
WFC's tile-based mode can't analyze textures by itself and needs JSON to know the rules between everything. However, its pixel-based mode can analyze textures but only places pixels in overlapping patterns it recognizes, with no regard for distance or adjacency. Even if you stretch the pixel-based mode to be larger, it'll still have some strange results.
Sibyl's algorithm was initially inspired by the tile-based approach. But it scans and recognizes tiles in order to automatically create its own rules for each them. In practice, this requires a lot of different changes to how the algorithm even works, to the point where it's become it's own thing. The closest thing I've found to Sibyl's algorithm is something called a Markov Chain-based Wave Function Collapse, but that works very differently on the inside, and it still requires some manual JSON.
The largest difference between MkWFC and Sibyl is that Sibyl also considers probability, based on the template it's provided. So instead of simply placing compatible tiles, it places them according to the frequency in which your template uses them. So if your template has a ton of grass, a moderate amount of water, and a flower that only sometimes appears - Sibyl's outputs will tend to have similar results. This allows it to create levels that feel handcrafted, because it actually studies how the templates you provide are crafted.
Thank you for trying it out!
The program was initially inspired by an algorithm called Wave Function Collapse (https://github.com/mxgmn/WaveFunctionCollapse), which can take a texture and output similar results. The issue with WFC, for me, is that it can only analyze individual pixels on its own, and anything involving tiles requires a time-consuming process of using JSON to manually teach it tile-by-tile relationships.
What Sibyl does is tie both halves together - pixel analysis and tile relationships - so it can automatically read any tilemap and output similar results, all by itself. The first step involves scanning the provided template, recognizing identical tiles, and recording what tiles they're paired with (making them compatible neighbors) in each direction. In the second step, it uses a WFC-like algorithm to place tiles across the level, while attempting to only place compatible neighbors next to each other.
Moreover, Sibyl also considers how often neighboring combinations are present in the template you provide. This allows it to try to replicate the design of the template itself, rather than simply randomly placing whatever tiles work together.
As a result, Sibyl can autonomously create levels that also feel handmade, by simply providing it with an example level. However, a carefully-crafted template can provide even more flexible and controlled results, for whoever is willing to spend the time on making one. The Making Templates guide goes through some of the different best practices I've figured out in regards to that.
This is awesome! I'm a composer who likes to work with procedural tools, and this does a great work of creating melodies and harmonies that actually sound decent. Paired with the fact that it comes with three instruments, each with their own oscillators, filters, and settings - and this is actually pretty formidable.
I appreciate the Upbeat / Melancholy setting, though it would be nice to be able to select a key and scale (including harmonic, dorian, lydian, etc), even if that was hidden behind an "Advanced" option or something. Some additional MIDI generation options, like note density or lines of harmony, would also provide some nice control, though it's not too necessary.
This reminds me of InstaComposer, a similar plugin for DAWs. If this could export MIDI, potentially one synth at a time, or all three at once but in different channels, composers like myself could use it in actual music compositions by dropping the MIDI into our own synths and virtual instruments.
If you're up for it, I'd even suggest trying to see if you can make a drum machine generator. That would be really fun to play around with.
Overall, great work! This is definitely a very impressive tool.
I redownloaded it a third time, and it works now! I have no idea what happened differently, but apparently it works. This was really fun to play around with. I do composing work from time to time, so I'm familiar with drum machine plugins and found this very easy to use. The old A > E > AS > E sounds as good as ever (though I'm used to it being on the top of bottom keyboard rows, haha). Was this an 808 or a custom collection of drum sounds? The sound is pretty nice.
I received a "mixer not initialized" error on Windows and wasn't able to use the app. I'm not sure what happened. I tried redownloading the app and it happened again. But if it gets fixed, I'd definitely love to retry it.
As a fully-featured pixel art tool, this is really impressive! I did have some issues, where the magic wand automatically filled a few tiles, and then the undo button wouldn't revert it. But it's still very impressive. For the fill tool, I'd recommend implementing a Flood Fill algorithm so it doesn't overwrite previously-placed tiles. Otherwise it was all very intuitive. Good work!
Hey all. I've recently released Sibyl - The Procedural Level Painter, a program that can intelligently design levels and output tilemaps with little to no manual input required. The Lite version is completely free to use, while the Full version includes a few additional features, such as edge detection, corner detection, tile size, and level size. Feel free to give it a try!
Sibyl is a program that takes prebuilt levels and tilemaps and uses them as templates to make countless other variations. With the press of a button, you can create an entirely new level that not only offers some random variation but also analyzes your template and tries to replicate its rules and personality.
Sibyl can be used for a variety of projects, including top-down RPGs, side scrollers, platformers, and even DnD campaigns. All you need is to provide a base level or a carefully-built template, and Sibyl will do the rest.
This is actually pretty awesome! Out of curiosity, I imported an entire folder of images, and it worked perfectly. A few image combinations really made me think it would be cool if this app had a collage mode: where it would fit several images together to cover each page. Since this app is half-meant for manga, a right-to-left reading mode (that starts from the last page) would also fit nicely.
Otherwise, this was a really nice surprise, so I'm glad I checked it out. Great work!
This is a really nice app. It's incredibly intuitive, and honestly gave me some inspirational ideas from the first few moments. I've touched a few other "idea generators" before but the level of polish and beautiful color scheme make it feel very impressive. The library of words that pop up, as well as the different categories, create a lot of really fun combinations that actually had me thinking "what if..." more than a few times. Great work!
This game has a very charming presentation! The art, animations, and transitions are really polished. The music and sfx are also very nice and blend very well into the background while still providing some enjoyable sounds. The map is an especially really nice touch that adds a lot of freedom and replayability, while making the school feel like a tangible place. I also really enjoy the writing, which was very natural, and the premise really helped me get into each scene as it happened.
As for feedback, I did find myself a bit confused about who I was or what I was doing, especially in the beginning. I was also very confused when the characters suddenly became human. Additionally, it would be nice to have more options, especially text scroll speed or window size.
I was also left a but surprised when I got a bad end just for missing two points. Needing to max out points to get paired means the player shouldn't waste time getting to know anyone other than the first character they meet, which I think takes away from the VN a bit. Being able to have a partner just by who has the most points - rather than who has maximum points possible - would make for a fairer and more free experience, which the map and choices definitely seem to promote.
Overall though, this was a very nice game that was very put together. The number of scenes and routes means that it has a ton of replayability, which isn't too common for jam VNs. Great work!
So this game was super lovely from the very start. The character art, background art, writing, and the music were all super nice. Even the UI was very pretty (though I did issues with popping open the log by accident and not knowing how to reopen it manually). It's very clear that a lot of time and polish went into this.
As someone with a sweet tooth I... absolutely would've gone into that house haha. I found myself smiling a lot playing this. And also being super impressed by not only the amount of sprites and CG, but also how consistent the character and background art style is. I'm definitely a fan.
Most of all - this story really made me feel something. Like I nearly got emotional. I'm really happy I got the good end, because this was such a sweet story - and I'd love to see it potentially expanded one day. I'm really glad this one caught my eye haha. I have no idea how you made this by yourself, but great work.
This game is adorable, haha. The art, music, controls, and UI all work together to create a very relaxing experience that I enjoyed while playing it.
I would recommend putting the instructions in-game, somehow, especially since this is a downloaded game. I was very confused until I visited the main page and saw the instructions in the description.