summaryrefslogtreecommitdiffhomepage
path: root/examples/text/text_draw_3d.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/text/text_draw_3d.c')
-rw-r--r--examples/text/text_draw_3d.c25
1 files changed, 14 insertions, 11 deletions
diff --git a/examples/text/text_draw_3d.c b/examples/text/text_draw_3d.c
index d4b057ec..70143dcd 100644
--- a/examples/text/text_draw_3d.c
+++ b/examples/text/text_draw_3d.c
@@ -1,25 +1,28 @@
/*******************************************************************************************
*
-* raylib [text] example - Draw 2D text in 3D
+* raylib [text] example - Draw 3d
*
-* Draw a 2D text in 3D space, each letter is drawn in a quad (or 2 quads if backface is set)
+* NOTE: Draw a 2D text in 3D space, each letter is drawn in a quad (or 2 quads if backface is set)
* where the texture coodinates of each quad map to the texture coordinates of the glyphs
* inside the font texture.
-* A more efficient approach, i believe, would be to render the text in a render texture and
-* map that texture to a plane and render that, or maybe a shader but my method allows more
-* flexibility...for example to change position of each letter individually to make somethink
-* like a wavy text effect.
+*
+* A more efficient approach, i believe, would be to render the text in a render texture and
+* map that texture to a plane and render that, or maybe a shader but my method allows more
+* flexibility...for example to change position of each letter individually to make somethink
+* like a wavy text effect.
*
-* Special thanks to:
+* Special thanks to:
* @Nighten for the DrawTextStyle() code https://github.com/NightenDushi/Raylib_DrawTextStyle
* Chris Camacho (codifies - http://bedroomcoders.co.uk/) for the alpha discard shader
*
-* This example has been created using raylib 3.5 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 3.5, last time updated with raylib 4.0
+*
+* Example contributed by Vlad Adrian (@demizdor) and reviewed by Ramon Santamaria (@raysan5)
*
-* Example contributed by Vlad Adrian (@Demizdor) and reviewed by Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
*
-* Copyright (C) 2021 Vlad Adrian (@Demizdor - https://github.com/Demizdor)
+* Copyright (c) 2021-2022 Vlad Adrian (@demizdor)
*
********************************************************************************************/