Dev Journal: Embedding-Based Steam Search
A complete implementation overview using embeddings to create a custom search engine for Steam games.
A complete implementation overview using embeddings to create a custom search engine for Steam games.
The title screen for my game prototype, Statue Concept. Recently, I published my game, Statue Concept, on Itch.io and wanted to share my experience using the Godot game engine with C#. In this article, I will discuss some of the thoughts and issues I encountered while working with Godot, along with the workarounds I found. Hopefully, this will be helpful for others who are considering using Godot for their game development projects....
Godot Version: 4.1.1 .NET Difficulty: Intermediate GitHub Repository: Completed tutorial here Related Project: Statue (Concept) Previous Godot Tutorial: Weeping Angel Effect in Godot Engine Table of Contents Introduction Creating the NavMesh Creating the Scene Creating the NavigationRegion Adding Agents Setting up the target Preparing the Agent Code for pathfinding to the player Avoidance Avoiding other agents Avoiding obstacles Debugging Conclusion Introduction Godot has some pretty good built-in tools for pathfinding and navigation, but when getting set up I found that the Godot docs don’t have a complete end-to-end example of getting everything setup....
Godot Version: 4.0.3 .NET Difficulty: Easy - Intermediate GitHub Repository: Completed tutorial here Related Project: Statue (Concept) Table of Contents Introduction Tangent about Stonewick Manor The Godot Way Step 1 - Create the object that moves offscreen Step 2 - Create the script Step 3 - Make it playable Step 4 - Occlusion Culling Conclusion Introduction I’ve recently been working on implementing some game concepts in the Godot game engine....
I have a little experience with Nix, but not a whole lot. Recently a post popped up on Hacker News about Zero to Nix, which I decided to run through on my MacBook. After fixing a minor Mac-specific bug (specific to the Zero to Nix installer), I had a Nix installation ready to go! All I needed was something to do with it. I eventually managed to make a PR to nixpkgs (basically Nix’s package manager) for something I personally would find useful, so I thought I would stop and write about something small I struggled with along the way, being new to Nix....
I stumbled upon Nix recently and I thought it was a very interesting project. If you’ve managed to find this post, then I imagine you already have an idea of what Nix is. But if not, they’ve provided a handy page describing exactly what makes it so convenient for developers. One of the things you find out very quickly when you start learning Nix is that a lot of information teaching Nix is in the form of blog posts from random people sharing what they’re doing to learn Nix....