Games

The Story We Play: StoryTelling

Submitted by tech4life on

The evolution of video games has been spectacular, going from simple arcade machines to immersive experiences in fantasy-filled worlds where we can live unforgettable adventures. Beyond impressive graphics and addictive gameplay, the story is what plays a fundamental role in making the game memorable.

Why is Storytelling So Important?

Tags

The Magic Behind the Pixels: The Importance of an Effective Color Palette

Submitted by tech4life on

There is a visual element that has a very noticeable influence on our perception of the game, beyond high definition graphics, the color palette is one of the most important visual elements.

Why is the color palette so important in a video game?

A good color palette is important since it evokes specific emotions, for example, dark and cold tones to transmit fear, concern, or warm and cheerful colors to transmit optimism and happiness.

Not only that, a color palette gives you a unique and memorable visual identity and helps to recognize your game.

Tags

WIP. Space Words (VII)

Submitted by tech4life on

We have also worked in the system to generate new words.

For this, we've created a couple of files in the assets folder. Each one with a huge amount of words, separated by comma. One in english and the other in spanish.

 

To select a new word, we only need to open the file, load the content in a variable, and convert it to an array, by telling to the split function that the ',' is the separation value.

These will generate an array with all the words.

 

 

Tags

WIP. Space Words (VI)

Submitted by tech4life on

These days we've implemented differents kinds of meteors in our game

For this, we've created the following code :

var meteors = [
	preload("res://meteors/meteor1.tscn"),
	preload("res://meteors/meteor2.tscn"),
	preload("res://meteors/meteor3.tscn"),
	preload("res://meteors/meteor4.tscn"),
	preload("res://scenes/meteor.tscn")
]

Here we create an array where we load all the different instances of the meteors.

Then when we need to create a new one in the game, we randomly choose one from the array, and set the position also randomly.

Tags

The Principles of Visual Design in Video Games: Creating Immersive Worlds

Submitted by tech4life on

Visual design is one of the most important pieces in the development of any video game.

What is visual design in video games?

Visual design in video games encompasses all visual aspects of a game, from character and environment creation to color palette choices and font selection. Its main goal is to communicate the game's narrative, set the tone and atmosphere, and guide the player through the experience.

Tags