Fixed git clone URL
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / raster / shapes / composite / textcanvas / RenderMode.java
1 /*
2  * Sixth 3D engine. Author: Svjatoslav Agejenko.
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5 package eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.textcanvas;
6
7 public enum RenderMode {
8     /**
9      * Text is rendered as pixels on textured polygon.
10      * This mode works in any orientation. Even if polygon is rotated.
11      */
12     TEXTURE,
13
14     /**
15      * Text is rendered as high quality, anti-aliased tiles.
16      * This mode works only if text is facing the camera almost directly.
17      */
18     CHARACTERS
19 }