2015-04-07 20:39:10 +03:00
|
|
|
|
---
|
|
|
|
|
title: Creating Textures
|
|
|
|
|
layout: default
|
|
|
|
|
root: ../
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Introduction
|
|
|
|
|
|
|
|
|
|
In this chapter we will learn how to create and optimise textures for
|
|
|
|
|
Minetest. We will use techniques relevant for pixel art.
|
|
|
|
|
|
|
|
|
|
* Resources
|
|
|
|
|
* Editors
|
|
|
|
|
* Common Mistakes
|
|
|
|
|
|
|
|
|
|
## Resources
|
|
|
|
|
|
|
|
|
|
* [16×16 Pixel Art Tutorial](http://www.photonstorm.com/art/tutorials-art/16x16-pixel-art-tutorial)
|
|
|
|
|
|
2015-08-18 23:24:14 +03:00
|
|
|
|
## About MS Paint
|
2015-04-07 20:39:10 +03:00
|
|
|
|
|
|
|
|
|
You need to be aware that MS Paint does not support transparency.
|
|
|
|
|
This won't matter if you're making textures for the side of nodes,
|
|
|
|
|
but generally you need transparency for craft items, etc.
|
|
|
|
|
|
2015-08-18 23:24:14 +03:00
|
|
|
|
## Editing in GIMP
|
2015-04-07 20:39:10 +03:00
|
|
|
|
|
|
|
|
|
GIMP is commonly used in the Minetest community. It has quite a high
|
|
|
|
|
learning curve as lots of its features are hidden away.
|
|
|
|
|
|
2015-08-18 23:24:14 +03:00
|
|
|
|
### Use the pencil tool to edit individual pixels
|
2015-04-07 20:39:10 +03:00
|
|
|
|
|
|
|
|
|
<figure>
|
|
|
|
|
<img src="{{ page.root }}/static/pixel_art_gimp_pencil.png" alt="Pencil in GIMP">
|
|
|
|
|
<figcaption>
|
|
|
|
|
Pencil in GIMP
|
|
|
|
|
</figcaption>
|
|
|
|
|
</figure>
|
|
|
|
|
|
2015-08-18 23:24:14 +03:00
|
|
|
|
### Set the rubber to hard edge
|
2015-04-07 20:39:10 +03:00
|
|
|
|
|
|
|
|
|
<figure>
|
|
|
|
|
<img src="{{ page.root }}/static/pixel_art_gimp_rubber.png" alt="Rubber in GIMP">
|
|
|
|
|
<figcaption>
|
|
|
|
|
Rubber in GIMP
|
|
|
|
|
</figcaption>
|
|
|
|
|
</figure>
|
|
|
|
|
|
|
|
|
|
## Common Mistakes
|
|
|
|
|
|
2015-04-13 21:58:06 +03:00
|
|
|
|
### Blurred textures through usage of incorrect tools
|
2015-04-07 20:39:10 +03:00
|
|
|
|
|
|
|
|
|
For the most part, you want to manipulate pixels on an individual basis.
|
|
|
|
|
The tool for this in most editors is the pencil tool.
|