Browsing '2015': Students starting in 2015

BGP2017 – Character Controller

To handle the movement of tools and avatars in the game we need a Character Controller. Unity does have a standard component for Character controllers, which is cool. However it still only supports capsule colliders, Which is a problem as we have a stretcher and an axe which would not work with capsule colliders.
Now, there are two options: Either you go for a Rigid body controller or you go for a custom character controller with support for a Box collider.
As […]

/ Comments Off on BGP2017 – Character Controller
Program: Programming

BGP2017 – Character Controller

To handle the movement of tools and avatars in the game we need a Character Controller. Unity does have a standard component for Character controllers, which is cool. However it still only supports capsule colliders, Which is a problem as we have a stretcher and an axe which would not work with capsule colliders.
Now, there are two options: Either you go for a Rigid body controller or you go for a custom character controller with support for a Box collider.
As […]

/ Comments Off on BGP2017 – Character Controller
Program: Programming

BGP2017 – Amputation

For the vertical slice of the game the way you ”heal” the orcs is by amputating the hurt limbs of the orc using the axe and then attaching a prosthetic.
To implement this the mesh is split up into 14 separate objects which are all rigged to one rig. For each limb which can be amputated there is a child object in the rig hierarchy at the same level as the limb which can be amputated. This object has a limb […]

/ Comments Off on BGP2017 – Amputation
Program: Programming

BGP2017 – Amputation

For the vertical slice of the game the way you ”heal” the orcs is by amputating the hurt limbs of the orc using the axe and then attaching a prosthetic.
To implement this the mesh is split up into 14 separate objects which are all rigged to one rig. For each limb which can be amputated there is a child object in the rig hierarchy at the same level as the limb which can be amputated. This object has a limb […]

/ Comments Off on BGP2017 – Amputation
Program: Programming

Big Game Project Post 2

There has been some time since my last post, this post will recap everything I’ve done since. I would recommend that you read my last post if you haven’t, considering that i will be referring to it.
The first priority was to complete the turnarounds for all the remaining player characters. A Rat Betwixt is supposed to have 4 playable characters all from different made up religions and cultures. First we have the Dyrkare the character featured in the last post. […]

/ Comments Off on Big Game Project Post 2
Program: Graphics

Big Game Project Post 2

There has been some time since my last post, this post will recap everything I’ve done since. I would recommend that you read my last post if you haven’t, considering that i will be referring to it.
The first priority was to complete the turnarounds for all the remaining player characters. A Rat Betwixt is supposed to have 4 playable characters all from different made up religions and cultures. First we have the Dyrkare the character featured in the last post. […]

/ Comments Off on Big Game Project Post 2
Program: Graphics

Commands, attacking and blocking

I have this week, four or five weeks since the start of the course, among other things been making the players attacks and blocks. I also made the player attacks and blocks we had in the prototype. We had all of them sort of working in the prototype except the fire attack. We have now just hade Alpha and have pretty much everything at least almost implemented. The attacks and blocks are:

A horizontal slash in front of the player character. […]

/ Comments Off on Commands, attacking and blocking
Program: Programming

Commands, attacking and blocking

I have this week, four or five weeks since the start of the course, among other things been making the players attacks and blocks. I also made the player attacks and blocks we had in the prototype. We had all of them sort of working in the prototype except the fire attack. We have now just hade Alpha and have pretty much everything at least almost implemented. The attacks and blocks are:

A horizontal slash in front of the player character. […]

/ Comments Off on Commands, attacking and blocking
Program: Programming

Spawning and entities

One of the things I’ve made this week, week 3 or 4, is to have the data about characters and entities be loaded from files, and to able to be placed in the tilemap editor. It’s otherwise been mostly small fixes and et cetera. These are some of the things which wasn’t implemented in the prototype, except for the tilemap editor. The placing where the entities appear are called spawns, which they usually are called in games. The spawn data about what […]

/ Comments Off on Spawning and entities
Program: Programming

Spawning and entities

One of the things I’ve made this week, week 3 or 4, is to have the data about characters and entities be loaded from files, and to able to be placed in the tilemap editor. It’s otherwise been mostly small fixes and et cetera. These are some of the things which wasn’t implemented in the prototype, except for the tilemap editor. The placing where the entities appear are called spawns, which they usually are called in games. The spawn data about what […]

/ Comments Off on Spawning and entities
Program: Programming

Week 1 and 2 of Big Game Project: Production and Design

These two weeks saw the start of a project that is to span 8 weeks of development, where I will be taking the role of Producer along with part-time Designer and Programmer. The game being made is an isometric 3D-game, tactical and turn-based. Secret agendas are a main mechanic, where-in players will be given secret objectives to complete that include betraying other players and killing them before reaching the end game. In short, the Mechanics involve Moving and Attacking enemies and allies, […]

/ Comments Off on Week 1 and 2 of Big Game Project: Production and Design
Program: Programming

Week 1 and 2 of Big Game Project: Production and Design

These two weeks saw the start of a project that is to span 8 weeks of development, where I will be taking the role of Producer along with part-time Designer and Programmer. The game being made is an isometric 3D-game, tactical and turn-based. Secret agendas are a main mechanic, where-in players will be given secret objectives to complete that include betraying other players and killing them before reaching the end game. In short, the Mechanics involve Moving and Attacking enemies and allies, […]

/ Comments Off on Week 1 and 2 of Big Game Project: Production and Design
Program: Programming

A Rat Betwixt: Initiative

The turn order of all enemies and players are determined by their initiative. This is pretty much how things have been done in turn-based RPG’s since forever in some form. We could’ve determined a characters initiative with rolling a dice, add a base value and call it a day, but we thought that it wasn’t interesting enough. And we’d like to avoid pure dice rolls if possible.
At the start of the planning phase of each turn, the player is shown […]

/ Comments Off on A Rat Betwixt: Initiative
Program: Programming

A Rat Betwixt: Initiative

The turn order of all enemies and players are determined by their initiative. This is pretty much how things have been done in turn-based RPG’s since forever in some form. We could’ve determined a characters initiative with rolling a dice, add a base value and call it a day, but we thought that it wasn’t interesting enough. And we’d like to avoid pure dice rolls if possible.
At the start of the planning phase of each turn, the player is shown […]

/ Comments Off on A Rat Betwixt: Initiative
Program: Programming

A Rat Betwixt – Initiative

The turn order of all enemies and players are determined by their initiative. This is pretty much how things have been done in turn-based RPG’s since forever in some form. We could’ve determined a characters initiative with rolling a dice, add a base value and call it a day, but we thought that it wasn’t interesting enough. And we’d like to avoid pure dice rolls if possible.

At the start of the planning phase of each turn, the player is shown […]

/ Comments Off on A Rat Betwixt – Initiative
Program: Programming

A Rat Betwixt – Initiative

The turn order of all enemies and players are determined by their initiative. This is pretty much how things have been done in turn-based RPG’s since forever in some form. We could’ve determined a characters initiative with rolling a dice, add a base value and call it a day, but we thought that it wasn’t interesting enough. And we’d like to avoid pure dice rolls if possible.

At the start of the planning phase of each turn, the player is shown […]

/ Comments Off on A Rat Betwixt – Initiative
Program: Programming

A Rat Betwixt: Initiative

The turn order of all enemies and players are determined by their initiative. This is pretty much how things have been done in turn-based RPG’s since forever in some form. We could’ve determined a characters initiative with rolling a dice, add a base value and call it a day, but we thought that it wasn’t interesting enough. And we’d like to avoid pure dice rolls if possible.
At the start of the planning phase of each turn, the player is shown […]

/ Comments Off on A Rat Betwixt: Initiative
Program: Programming

A Rat Betwixt: Initiative

The turn order of all enemies and players are determined by their initiative. This is pretty much how things have been done in turn-based RPG’s since forever in some form. We could’ve determined a characters initiative with rolling a dice, add a base value and call it a day, but we thought that it wasn’t interesting enough. And we’d like to avoid pure dice rolls if possible.
At the start of the planning phase of each turn, the player is shown […]

/ Comments Off on A Rat Betwixt: Initiative
Program: Programming

Neon Skies

Week 4-5
 
Hello! My name is Erik Levin and I am in the second year of the Game Design, Graphics, program at Uppsala University, Campus Gotland.
Im working on a game called Neon Skies.
 
In my last entry i ended it with that was going to start with the animations. This took longer than i thought due to the shear amount of different animations that was needed so i decided to compile two weeks of work into one entry this time.
 

Above you can […]

/ Comments Off on Neon Skies
Program: Graphics

Neon Skies

Week 4-5
 
Hello! My name is Erik Levin and I am in the second year of the Game Design, Graphics, program at Uppsala University, Campus Gotland.
Im working on a game called Neon Skies.
 
In my last entry i ended it with that was going to start with the animations. This took longer than i thought due to the shear amount of different animations that was needed so i decided to compile two weeks of work into one entry this time.
 

Above you can […]

/ Comments Off on Neon Skies
Program: Graphics

Colors, models and main menu

This week I started working on several items, mostly the main menu and UI. I also helped with graphics for upcoming presentations and the website. I also started modelling some of the models we need for the game such acs bridges and landing pods.
Beside this I also continued to work on the level and the content in it, fixing most of the colliders in the level, optimizing some of the nature and textures and adding and upgrading some of the […]

/ Comments Off on Colors, models and main menu
Program: Graphics

Colors, models and main menu

This week I started working on several items, mostly the main menu and UI. I also helped with graphics for upcoming presentations and the website. I also started modelling some of the models we need for the game such acs bridges and landing pods.
Beside this I also continued to work on the level and the content in it, fixing most of the colliders in the level, optimizing some of the nature and textures and adding and upgrading some of the […]

/ Comments Off on Colors, models and main menu
Program: Graphics

Bgp update #2 need to make more off these.

There hasn’t been much development since the last post. we did have a alpha test for some teachers and got pretty good feedback, it was mostly stuff we already knew were problems but that we have had a hard time fixing.
As for my own work i learned and made some partical effects for the cars, it was pretty fun i’ll se if i can make more and fit them in to the game at some point.
if think we got the […]

/ Comments Off on Bgp update #2 need to make more off these.
Program: Graphics

Bgp update #2 need to make more off these.

There hasn’t been much development since the last post. we did have a alpha test for some teachers and got pretty good feedback, it was mostly stuff we already knew were problems but that we have had a hard time fixing.
As for my own work i learned and made some partical effects for the cars, it was pretty fun i’ll se if i can make more and fit them in to the game at some point.
if think we got the […]

/ Comments Off on Bgp update #2 need to make more off these.
Program: Graphics