-
TAFit: A Lightweight Utility App for iOS and watchOS to Access Real-Time Aerodrome Forecasts TOP NEW
TAFit: A Lightweight Utility App for iOS and watchOS to Access Real-Time Aerodrome Forecasts Aviation weather forecasting just got easier with TAFit, a lightweight utility app designed for both iOS and watchOS, along with a handy widget for quick access on both platforms. TAFit provides real-time Terminal Aerodrome Forecasts (TAFs) using GPS ... Read More
-
Before You Migrate Your Mail, Contacts, and Calendar TOP NEW
Before You Migrate Your Mail, Contacts, and Calendar Migrating your email, contacts, and calendar to a new platform can significantly improve productivity, collaboration, and organization. However, to ensure a smooth migration, it’s essential to back-up and “sanitize” your data beforehand. Cleaning up your mailbox, contacts, and calendar will h... Read More
-
Adapting Conway’s Game of Life on watchOS Using SwiftUI and SpriteKit TOP NEW
Adapting Conway’s Game of Life on watchOS Using SwiftUI and SpriteKit When I set out to bring Conway’s Game of Life—a cellular automaton simulation—to the Apple Watch, I wanted to leverage the capabilities of SpriteKit and SwiftUI to create an interactive and visually appealing experience on such a small screen. In this post, I’ll walk through ... Read More
-
Space Trader for WatchOS TOP NEW
Space Trader for Apple WatchOS Outline A project to adapt Pietr Spronck’s Space Trader to WatchOS. Goal is to carefully adapt the original Space Trader gameplay to the WatchOS platform with its real-time travel mechanics, text-based interactions, and simple sprite graphics, thus creating a compelling, easy-to-play experience that fits within th... Read More
-
One post on two Sites TOP NEW
I run two personal websites, one focusing on game development and the other all-round tech. Common for both sites are they are utilizing Jekyll and centered around a blog. Whenever I write a new post, which I consider relevant for both blogs, I have to manually place the post in both site folders and update each sites individually - manually. T... Read More
-
Santa is here TOP NEW
Game is out now Ho ho ho! my sleigh may very well be in the repair shop, but I am luck to have this fine hot-air balloon. Now if you can only help me make it around the world to deliver Christmas spirit to all the homes. The game is out and available to download for free now on itch.io. Soon AppLab and SideQuest Read More
-
Will Santa make it in time for christmas TOP NEW
Devlog progress video In the wake of taming rendering in unity for limited standalone devices such as the older quest 2, I needed a change of pace. I remodelled the houses, and decided to remove the trees entirely until everything else worked. Of course, in game development, it is very rare that everything “just works” new problems arise just... Read More
-
Optimizing rendering for OpenXR devices in Unity TOP NEW
Synopsis I been working on developing a small game for the Quest 2 for upcoming christmas. My goals are to set up a somewhat graphically demanding game with as a fair mix of post processing, lights and shadows in Unity, to learn more about how to implement future projects. Caveat In this post I will go over settings and configurations in Uni... Read More
-
Santa is coming to.. TOP NEW
So santa’s sleigh is in the shop After a rough landing, Santa’s sleigh is in the repair shop. Timing couldn’t be worse, since christmas is right around the corner. Luckily Santa’s friend, the balloon captain Skipper, has lent Santa his hot-air balloon. Now he can ride that when delivering the presents. Question is can he make it. Steer the ho... Read More
-
Unity Netcode for Gameobjects - Parenting picked-up objects TOP NEW
Unity Netcode for Gameobjects - Parenting picked-up objects I like many others before me, encountered a problem while using Unity’s netcode for gameobject while attempting to parent objects picked up by a player. What I usually do (non-multiplayer) Usually I would let the player pick up an item, in this scenario lets say a weapon since its a ... Read More
-
Abstract classes from a gamedevelopers perspective TOP NEW
Abstract classes - What are they Well whats this now, something abstract? Honestly it sounds worse than it is. An abstract class is, not unlike the interface, sort of a blueprint of a class. It cannot on itself be instantiated but it serves for other classes to inherit from. Similar to interfaces, the abstract class can have abstract methods wh... Read More
-
Implementing Interfaces (C#) in Game Development TOP NEW
What are interfaces in C-sharp Interfaces, in c-sharp syntax not to be confused with anything the user interacts with, are one of the most important concepts in C# and programming in general. They’re like a contract between you, the programmer, and your code. And just like in any other contract, both parties have to follow the rules or things c... Read More
-
Balloon captains journal TOP NEW
Game updates post-jam and launch Updated the macOS edit and Linux client - WebGL is under way Its just minor adjustment and tweaks for now v.1.1 - Improvements and bug fixes Default camera is now third person camera - you can still switch to first person view by pressing right mouse button or C on the keyboard UI scaling is now correct... Read More
-
Ballooning over a sphereoid TOP NEW
Ballooning on a sphereoid Game released on itch.io where it can be downloaded or played directly in a browser. Read More
-
Isometric games and Unity TOP NEW
Isometric perspective in Unity Contraversly the isometric perspective is achieved by switching from Perspective Projection on the relevant main camera to Orthographic. To achieve the well known perspective known from classic games, you elevate the camera and tilt it properly. This is done by altering the Rotation of the camera to X: -30 Y:45 Z... Read More