๐Ÿ“ฆ about ๐Ÿงป posts

I’m prototyping shit at the moment, and since I’m wanting to blog more this year I figure I’d post some tutorials if I do anything that seems useful. Fair warning, I’m trying to get out of the habit of trying to write clever reusable code. I feel like it’s a trap I fall into a lot, and it’s more important to get shit done and realise that you’d never want to reuse that code anyway.

Today I’m gonna show how to easily position player names on a 2D canvas in Unity UI.

It looks like this, and can obviously be things like health bars and stuff too.

List Of Objects

You need a list of objects that want to show text. You can do this however you want. My list is a list of players, so I’m going to stick a static list on my player class.

Then add/remove from the just in OnEnable/OnDisable.

Now our list of players are available in Player.All.

Canvas Layout

So, do this:

  1. Create a Canvas (GameObject > UI > Canvas)
  2. Add a new Panel, name it PlayerNames (Right click Canvas, UI > Panel )
  3. Make the panel full screen (Click, shift click and alt click on this button)
  4. Change the pivot on the PlayerNames panel to be 0 and 0 (will explain this later)
  5. Add a child Text to the panel, called Name.

So what you have now is

PlayerNames is the panel that is going to contain and control the names.

Name is the template for the name.

Coding

So all we need to do now is create a script on PlayerNames. I called it PlayerNames.

So first of all we need an array to store all our “Name”s.

Then in Start, we’ll copy the Name text component.

Note that here we’ve copied the Text game object 9 times. We do this because we don’t want to be creating and destroying them every frame (because Unity hates that shit).

So in our Update function, lets do this.ย We get the list of players, ordered by the distance from the camera, closest first.

I’ve commented the rest inline, it’s pretty self explanatory.

Pivot Point

So as mentioned in the comments, the localPosition of our child RectTransforms are relative to the pivot position of the parent. The long and short of that is that if the pivot position is 0, 0 then we’re just doing the pixel position from the top left.

If the pivot point is 0.5, 0.5, then you’re doing the pixel position from the center of theย  parent panel (in this case, the same size as the screen).

You don’t particularly need to know that shit, it’s just useful to know when trying to get rectTransforms to do what you want.

Shakes

If you’ve got a critical eye, you might notice that it’s got the very slight shakes.

https://files.facepunch.com/garry/2018/01/09/{0d2ea9d8d397d6ae549d7a28eabdef52cc52010845161897a8736269cd0593be}202018-01-09{0d2ea9d8d397d6ae549d7a28eabdef52cc52010845161897a8736269cd0593be}2022-32-51-710.mp4

Rounding down helps

https://files.facepunch.com/garry/2018/01/09/{0d2ea9d8d397d6ae549d7a28eabdef52cc52010845161897a8736269cd0593be}202018-01-09{0d2ea9d8d397d6ae549d7a28eabdef52cc52010845161897a8736269cd0593be}2022-36-58-864.mp4

But there’s still something weird.

Script Order

What you’re seeing is a common thing with using the Update function. The problem is that our Update function is running before the Camera moves. So we’re a frame behind every time.

So open Edit > Project Settings > Script Execution Order

Then add your script under the Default Time. This means that this script’s Update will be called after every other Update in the project.

If your text is still kind of wobbly, you might need to think more about your script order.

Summary

So there you go. Health bars are kind of just as easy, just replace the Text component with a custom component (although using Unity’s built in UI > Slider component works easily enough).

There are a few more math challenges if you’re scaling your canvas, but it should just be multiplication.

Something to note also is that this will show player names even if you can’t see them, like if they’re the other side of a wall. you’ll probably want to do a ray test or something from the camera to the world point where the player name is going to be if that’s a problem.

ย 

question_answer

Add a Comment

An error has occurred. This application may no longer respond until reloaded. Reload ๐Ÿ—™