Difference between revisions of "Intermediate C++ Game Programming Tutorial 13"
From Chilipedia
(Created page with "In this tutorial we learn how to write text to the screen. Now we can make anime sex games. == Topics Covered == * Bitmap font sheet * Text rendering * Color replacement spri...") |
m (Text replacement - "http://www.planetchili.net/" to "https://www.planetchili.net/") |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | In this tutorial we learn how to | + | In this tutorial we learn how to draw text to the screen. Now we can make anime sex games. |
== Topics Covered == | == Topics Covered == | ||
Line 7: | Line 7: | ||
== Video Timestamp Index == | == Video Timestamp Index == | ||
− | [https://youtu.be/ | + | [https://youtu.be/kpp7mxFUwSg Tutorial 13] |
== Source Code == | == Source Code == | ||
Line 13: | Line 13: | ||
== Download Materials == | == Download Materials == | ||
− | * [ | + | * [https://www.planetchili.net/downloads/I13-Font-Sheets.zip Font Sheets] |
== Homework == | == Homework == | ||
Modify the <code>Animation</code> class so that it draws the sprite frames with a translucent "ghost" effect. | Modify the <code>Animation</code> class so that it draws the sprite frames with a translucent "ghost" effect. | ||
+ | * [https://youtu.be/KkJ3MU402ek Homework Solution] | ||
== See also == | == See also == | ||
* [[Intermediate C++ Game Programming Tutorial 14|Next in series (Tutorial 14)]] | * [[Intermediate C++ Game Programming Tutorial 14|Next in series (Tutorial 14)]] | ||
* [[Intermediate C++ Game Programming Series]] | * [[Intermediate C++ Game Programming Series]] |
Latest revision as of 13:26, 5 May 2022
In this tutorial we learn how to draw text to the screen. Now we can make anime sex games.
Contents
Topics Covered
- Bitmap font sheet
- Text rendering
- Color replacement sprite effect
Video Timestamp Index
Source Code
Download Materials
Homework
Modify the Animation
class so that it draws the sprite frames with a translucent "ghost" effect.