Search found 3 matches

by epiplon
Fri Sep 27, 2013 10:40 pm
Forum: SGDK
Topic: Colorful text without sprites
Replies: 5
Views: 5431

Oh, now I see!
Really thanks, that's was helpful. :D
by epiplon
Mon Sep 16, 2013 12:30 am
Forum: SGDK
Topic: Colorful text without sprites
Replies: 5
Views: 5431

Yeah, it help! However, I used the default font and did the following:


VDP_loadTileData( (const u32 *)tile, 1, 1, 0);
VDP_setTileMap(APLAN, TILE_ATTR_FULL(PAL0, 0, 1, 0, 1), 6, 5);
VDP_setPaletteColor(PAL2, 0x000E );
VDP_setTextPalette(PAL2);
VDP_drawText("Hello Genie!", 10, 12);


0x000E is a ...
by epiplon
Sun Sep 15, 2013 5:17 pm
Forum: SGDK
Topic: Colorful text without sprites
Replies: 5
Views: 5431

Colorful text without sprites

Hello. :)
I just got here a few days ago and the SGDK impressed me, because I thought that would take me weeks to set up and get the Megadrive to print just a color on the screen. Now, I achieved it with just some hours!

So, by looking at the tutorials and source codes, I thought if would be ...