Blog

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... más

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... más

Hay un elemento visual que influye de forma muy notoria en nuestra percepción del juego, más alla de los gráficos de alta definición, la paleta de colores es uno de los elementos visuales más importantes.

¿Por qué es tan... más

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... más

Hemos trabajado tambien en el sistema para generar nuevas palabras. 

Para ello nos hemos creado un par de ficheros en la carpeta assets, con una cantidad elevada de palabras, separadas por coma y en dos idiomas, inglés y castellano.

A la hora de seleccionar una nueva palabra... más

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://... más

Estos días hemos estado implementando que existan diferentes tipos de meteoritos en el juego.

Para ello, hemos creado el siguiente código :

var meteors = [
	preload("res://meteors/meteor1.tscn"),
	preload("res://meteors/meteor2.tscn"),
	preload("res://meteors/meteor3.... más

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... más

El diseño visual es una de la piezas más importantes en el desarrollo de cualquier videojuego. 

¿Qué es el diseño visual en videojuegos?

El diseño visual en videojuegos abarca... más

This week we've been adding a bit of randomness to the game.

For this we've created random variables for both speed and direction of the meteorites, as well as creating different versions of the meteorite with different sizes.

func _ready():
	randomize()
	speed =... más