Weird display

Hey! I’ve just finished my Laser Defender but when I build&run and open the actual game, the text is way bigger than in unity and going outside the game. I attached screenshots so you can see it. Could you help me fix it?

Hi Adrian,

Welcome to our community! :slight_smile:

Can you access our course on Udemy? If so, please follow my instruction in this thread.

Hello,

I have exactly the same issue and can’t figure it out and don’t have access to the Udemy course. Could you copy the instructions here?

Thank you!

Hi Rangwath,

Where did you access the videos?

Hello,

I got it from Humble Bundle and I’m watching it from the gamedev.tv website.

Here is Guo’s solution from the thread on Udemy.

void Start () {
    int width = 500; // or something else
    int height= 900; // or something else
    bool isFullScreen = false;
    Screen.SetResolution (width , height, isFullScreen);
}

Did that fix it?

Hey Nina,

thank you, this works!

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

Privacy & Terms