It's been a while since we've done anything new on our Character Select Screen and currently, you'll notice that it is extremely plain: A set of buttons describing the name and weapon of the character without any visuals or extra info. Hence in Part 24, we'll be adding proper character icons, a description box, and a stats section so players know the exact stats of the character they'll be selecting.
About the author:
Terence
A geek of the highest order, Terence speaks a great number of (programming) languages and dabbles in a couple of tech fields. He writes about common problems programmers come across in this blog.
All posts by Terence:
GitHub Desktop for Unity — Part 3: How to resolve merge conflicts
This article is a part of the series:
Using GitHub Desktop for Unity collaboration
In the second part of this series, we explore a very common problem that teams usually run into when collaborating on GitHub Desktop—merge conflicts. These can cause significant delay to your work, as you are forced to handle them when they occur before progressing; and it can take a fair bit of time and skill to solve them.
Resolving them incorrectly can also cause work progress to be lost.
Hence, in this article, we’ll be covering what they are, how you can avoid them, and how you can resolve them.
Continue readingHow to fix an unclickable Button in Unity’s Canvas UI system
If you’ve been using Unity’s Canvas-based UI system to create a main menu, pause screen or even a death screen for a game in Unity, you may sometimes encounter an issue where some buttons on your UI don’t seem to be responding when you hover over or click on them.
Continue readingCreating a Rogue-like Shoot ‘Em Up (like Vampire Survivors) — Part 1: Movement and Camera
This article is a part of the series:
Creating a Rogue-like Shoot 'Em Up (like Vampire Survivors) in Unity
Ever wanted to create a rogue-like shoot ’em up game like Vampire Survivors? In Part 1 of our guide, we will go through how to create movement, animations and a camera for our player character.
A link to a package containing the project files up to Part 1 of this tutorial series can also be found at the end of this article.
Continue readingAdding virtual hosts on Bitnami Apache
Over the weekend, I’ve spent a substantial chunk of time figuring out how to add a virtual host onto a client’s subdomain. In laymen’s terms, this means that:
- My client has a website hosted on a domain (which we shall call example.com, for confidentiality reasons)
- We want to build a web application on app.example.com, which will be entirely separate from example.com.
- To save on cost, we want to host app.example.com on the same server that example.com is using (i.e. create a virtual host on the web server).
This means that we have to configure our web server so that it will serve a different webroot depending on the domain it is being accessed from.
Continue reading