About

Hello, I'm Bruno Castanheira, a Junior Game Developer Engineer, and a gamer from Portugal that worked at Frontier Developments as a Graduate Programmer. I started playing video games when I was a child, since then it's been my hobby. After learning the basics of programming, I started creating games, now combining the two, and is something that I enjoy.

I have a bachelor's degree in Digital Games Development Engineering

I have experience with C#, C++, Java, Unity, Unigine Engine. C# was mainly used in Unity, and Mono Game.

Java was my first programming language, in that time I was playing Minecraft and I got interested in creating plugins for it.

C# has been my number one language before working at Frontier Developments, so now C++ is the one where I have real work experience, I started learning it at the University for a 3D Graphics Application. I used C++ with Unigine Engine and Unreal Engine.

Hobbies: Gaming, Programming, Biking and Sim Racing.

ISPACE

Duration: 5 months

« Solo Project »

Technologies: Unity Mirror Networking C#

Story

A game I made to play with my friends.

The game right now has 1 game mode: Deathmatch - Get the maximum kills possible to win.
In the future I want to add a hide and seek mode and a game mode inspired in CS:GO.

ispace station image

Features

Player Controller

To move/rotate the player I'm using unity's new input system.

[W] Forward thrust
[S] Backward thrust
[A] Strafe left
[D] Strafe right
[SPACE] Strafe up
[LCTRL] Strafe down
[E] Roll to the right
[Q] Roll to the left

Weapon

Now the game has 1 automatic rifle. In the future I want to add more weapons (examples: railgun, pistols).

Round System

The game has a round system, so when the host joins it starts a timer.

When the round timer reaches 0, means the round is over, so it shows the round winner's name. After that, all players go to a random spawn point.

ispace round end image

Scoreboard / Kill feed

To make the scoreboard, first I created a script (ScrollViewContent.cs) that instantiates objects inside of a scroll view. After that's done, the ScoreBoardManager uses the first script to instantiate, and manages the score on the table.

ispace scoreboard killfeed image

[Code] How to instantiate any object inside of a scroll view:

                  // File: ScrollViewContent.cs
      
                  public GameObject AddContent(GameObject prefab)
                  {
                      GameObject instantiatedObject = Instantiate(prefab, spawnPosition.transform.parent, false);
                      RectTransform rectTransform = instantiatedObject.GetComponent<​RectTransform>();
                      RectTransform spawnRectTransform = spawnPosition.GetComponent<​RectTransform>();
                      Rect spawnRect = spawnRectTransform.rect;
                      Vector3 positionRectTransfrom = rectTransform.localPosition;
                      
                      rectTransform.sizeDelta = new Vector2(0.0f, spawnRect.height);
                      positionRectTransfrom.y -= spawnRectTransform.sizeDelta.y * listPrefabs.Count;
                      
                      rectTransform.localPosition = positionRectTransfrom;
                      listPrefabs.Add(instantiatedObject);
                      
                      return instantiatedObject;
                  }
                

Console Commands

The player has access to the console, where it can execute specific commands.

ispace dev console iamge

Commands example:

ispace crosshair image