Monthly Archives: February 2017

Game Production Diary 3

For more information on my game, please visit my first diary post, where I describe in more details the game we are working on.
For this week’s blog post I would like to discuss the incorporation of the same visual element in different places to intensify the aesthetic side of the game.
So, according to the narrative that we try to create, energy is everything in our game world. All living creatures consist of the same energy: the trees, the avatar, the […]

/ Comments Off on Game Production Diary 3
Program: Game Design

Game Production Diary 3

For more information on my game, please visit my first diary post, where I describe in more details the game we are working on.
For this week’s blog post I would like to discuss the incorporation of the same visual element in different places to intensify the aesthetic side of the game.
So, according to the narrative that we try to create, energy is everything in our game world. All living creatures consist of the same energy: the trees, the avatar, the […]

/ Comments Off on Game Production Diary 3
Program: Game Design

Spawning enemies every once in a while

This weeks asset is a script used to spawn enemies in different waves. This script was written in order to allow a continuous stream of enemies to reach the player, whilst also allowing for different combinations of challenges throughout the game.
The way the script is currently set up allows the user to create a set amount of waves, with each wave containing their own variables.
The variables that each wave hold are as follow:

What enemies that should be allowed to spawn […]

/ Comments Off on Spawning enemies every once in a while
Program: Programming

Spawning enemies every once in a while

This weeks asset is a script used to spawn enemies in different waves. This script was written in order to allow a continuous stream of enemies to reach the player, whilst also allowing for different combinations of challenges throughout the game.
The way the script is currently set up allows the user to create a set amount of waves, with each wave containing their own variables.
The variables that each wave hold are as follow:

What enemies that should be allowed to spawn […]

/ Comments Off on Spawning enemies every once in a while
Program: Programming

Designing enemies for Selfish

One of the tasks that I have been doing is designing the enemies for our game.
It was kind of a joint process with making the main character. I started with sketching a lot of different fishes and asked the group for what they were looking for, which sketches they liked the most and what about it that they liked. These are the sketches that were later deemed too bland for the main character, but we got a bunch of aspects […]

/ Comments Off on Designing enemies for Selfish
Program: Graphics

Designing enemies for Selfish

One of the tasks that I have been doing is designing the enemies for our game.
It was kind of a joint process with making the main character. I started with sketching a lot of different fishes and asked the group for what they were looking for, which sketches they liked the most and what about it that they liked. These are the sketches that were later deemed too bland for the main character, but we got a bunch of aspects […]

/ Comments Off on Designing enemies for Selfish
Program: Graphics

I believe an introduction is in order…

 
Intro
Hello again!
This post is probably going to be long, and will mostly focus on assembling stuff in unity and coding, although there is some graphics stuff and animating sprinkled in.
This week I’ve been working on the player’s introduction to the game, starting from redesigning the main menu,  making the tutorial, and then transitioning into normal gameplay.
For a while now, I’ve been wanting to have a small tutorial for the game that tells the player that they can use the right […]

/ Comments Off on I believe an introduction is in order…
Program: Graphics

I believe an introduction is in order…

 
Intro
Hello again!
This post is probably going to be long, and will mostly focus on assembling stuff in unity and coding, although there is some graphics stuff and animating sprinkled in.
This week I’ve been working on the player’s introduction to the game, starting from redesigning the main menu,  making the tutorial, and then transitioning into normal gameplay.
For a while now, I’ve been wanting to have a small tutorial for the game that tells the player that they can use the right […]

/ Comments Off on I believe an introduction is in order…
Program: Graphics

Week 3 – Second Enemy

For this week I’ll be talking about how I did the second enemy and how I got it to work like I wanted despite some initial problems.
The Functioning Enemy.
 
For our game we needed more enemies and I thought about an enemy that would constantly chase the player until it would kill us or get shot by us. To do this I had to read up on different functions that would be able to do it.
Since I knew that the […]

/ Comments Off on Week 3 – Second Enemy
Program: Programming

Week 3 – Second Enemy

For this week I’ll be talking about how I did the second enemy and how I got it to work like I wanted despite some initial problems.
The Functioning Enemy.
 
For our game we needed more enemies and I thought about an enemy that would constantly chase the player until it would kill us or get shot by us. To do this I had to read up on different functions that would be able to do it.
Since I knew that the […]

/ Comments Off on Week 3 – Second Enemy
Program: Programming

A tank for the job of a bike (AKA what not to do when coding)

This post is about a spawn algorithm for the light berries in the game. But, in this post, I will be focusing on the things I did wrong, things that should NOT be done. I will mention why I did it, why I shouldn’t have, and what I could have done.
What happened with this algorithm is similar to this: to do the job of a bike, I tried to build a tank. And to build a tank, I started by […]

/ Comments Off on A tank for the job of a bike (AKA what not to do when coding)
Program: Programming

A tank for the job of a bike (AKA what not to do when coding)

This post is about a spawn algorithm for the light berries in the game. But, in this post, I will be focusing on the things I did wrong, things that should NOT be done. I will mention why I did it, why I shouldn’t have, and what I could have done.
What happened with this algorithm is similar to this: to do the job of a bike, I tried to build a tank. And to build a tank, I started by […]

/ Comments Off on A tank for the job of a bike (AKA what not to do when coding)
Program: Programming

Wave spawing

Hello! I Am Christofer Mattsson the lead coder in team Leviathan. We are now under ten weeks working on a game called Draxl’s journey.
We are now in the end of the fifth week of production and the our game is now in a alpha stage but soon in a beta stage.
This week:
This week I have mostly worked on a single script and that being a wave spawning script. The biggest thing we don’t have in our game yet is […]

/ Comments Off on Wave spawing
Program: Programming

Wave spawing

Hello! I Am Christofer Mattsson the lead coder in team Leviathan. We are now under ten weeks working on a game called Draxl’s journey.
We are now in the end of the fifth week of production and the our game is now in a alpha stage but soon in a beta stage.
This week:
This week I have mostly worked on a single script and that being a wave spawning script. The biggest thing we don’t have in our game yet is […]

/ Comments Off on Wave spawing
Program: Programming

Improving the light conditions (Light Plant, part 2)

As I talked about in my latest post, the Light plant is one of the Enemies/Puzzle mechanics in our game. It’s projectiles provide light, but are also dangerous to the player on touch, so they have to be avoided.
This week, I’ve added two new behaviours to the plant, “angry” and “activation”. These two are the main mechanics that this plant will have to create interesting puzzles.
The angry behaviour
When the player hits the plant with a projectile, the plant will mark […]

/ Comments Off on Improving the light conditions (Light Plant, part 2)
Program: Programming

Improving the light conditions (Light Plant, part 2)

As I talked about in my latest post, the Light plant is one of the Enemies/Puzzle mechanics in our game. It’s projectiles provide light, but are also dangerous to the player on touch, so they have to be avoided.
This week, I’ve added two new behaviours to the plant, “angry” and “activation”. These two are the main mechanics that this plant will have to create interesting puzzles.
The angry behaviour
When the player hits the plant with a projectile, the plant will mark […]

/ Comments Off on Improving the light conditions (Light Plant, part 2)
Program: Programming

Troubles with flamethrowers :S

Hello blog people! This week I have been working on a flamethrower spell/power-up for our game. It is one of 4 power-ups the player will get to choose at a point in the game to customize the witch to their style of gameplay. The other power-ups we have planned at this point are: Fire shield, Empowered teleport and Empowered shooting. Hopefully we will also have variations for each of these that you can pick to make the game more interesting […]

/ Comments Off on Troubles with flamethrowers :S
Program: Programming

Troubles with flamethrowers :S

Hello blog people! This week I have been working on a flamethrower spell/power-up for our game. It is one of 4 power-ups the player will get to choose at a point in the game to customize the witch to their style of gameplay. The other power-ups we have planned at this point are: Fire shield, Empowered teleport and Empowered shooting. Hopefully we will also have variations for each of these that you can pick to make the game more interesting […]

/ Comments Off on Troubles with flamethrowers :S
Program: Programming

Menus

This week I have been doing some different things to clean up our game. Adding things for convenience like a pause menu and a control window to explain the inputs to the player.

The reason I wanted to add a pause menu is so that if someone is playing and they have to leave the game for a short time they do not have to quit the game and loose the high score that they are working on. I also deiced […]

/ Comments Off on Menus
Program: Game Design

Menus

This week I have been doing some different things to clean up our game. Adding things for convenience like a pause menu and a control window to explain the inputs to the player.

The reason I wanted to add a pause menu is so that if someone is playing and they have to leave the game for a short time they do not have to quit the game and loose the high score that they are working on. I also deiced […]

/ Comments Off on Menus
Program: Game Design

My Third Game Design Blog Post – Flipping the objects.

Hello again, on this Thursday I will write about different ways to flip characters in the engine as well as flipping of other non-character objects. Flipping that I am talking about right now is making the sprite(picture) of the chosen game object rotate itself to face other direction. Like on those two pictures below.

(The Player is facing right, not flipped.)

(The Player is facing left, flipped.)
Flipping itself can be done on any sprite in the Unity engine, in our game we […]

/ Comments Off on My Third Game Design Blog Post – Flipping the objects.
Program: Programming

My Third Game Design Blog Post – Flipping the objects.

Hello again, on this Thursday I will write about different ways to flip characters in the engine as well as flipping of other non-character objects. Flipping that I am talking about right now is making the sprite(picture) of the chosen game object rotate itself to face other direction. Like on those two pictures below.

(The Player is facing right, not flipped.)

(The Player is facing left, flipped.)
Flipping itself can be done on any sprite in the Unity engine, in our game we […]

/ Comments Off on My Third Game Design Blog Post – Flipping the objects.
Program: Programming

Drawing level assets

Hello!
The Beta is approaching rapidly, and our game is staring to take shape. However, there is still a lot of work to be done. We are currently in a phase of our game production were the graphical aspects must catch up to the rest of the project. The visuals are not yet where we would like them to be, and a lot of our graphics is currently just placeholders.
That is why I choose to take on some of the graphics […]

/ Comments Off on Drawing level assets

Drawing level assets

Hello!
The Beta is approaching rapidly, and our game is staring to take shape. However, there is still a lot of work to be done. We are currently in a phase of our game production were the graphical aspects must catch up to the rest of the project. The visuals are not yet where we would like them to be, and a lot of our graphics is currently just placeholders.
That is why I choose to take on some of the graphics […]

/ Comments Off on Drawing level assets