Is there a way to include a font into a game? A game I'm working on uses a unique font, and when I tried to show it to someone it came out really weird because they didn't have the font. Instead of going through and making each string an active (because there's a LOT of strings) is there a way to include the font into a game?
Well, depending on the license, you can sometimes package the ttf in with the game. Some fonts don't legally allow you to do that, you need to check the license.
Isn't there an easy way to make your own fonts?
If so, then there's what to do, then you'll have the perfect looking text and have no worries about copyright issues since you'll own the rights to it.
Blood of the Ancient One, Seen only as Shadow, Faster than Lightning, Fierce as the Greatest Dragon, Nearly Invisible, Floating in a Dream, Entered through the Demon Door, Destroyer of Evil in a Realm with a Red Sky Scarred, Who could I be ?
I'm pretty sure what he's asking is if the font file can be embedded in the application, so that someone won't have to install it if they don't have it.
I wouldn't know though. I was thinking about it earlier. Maybe include the file and then have the game check if the font exists in the Fonts folder, if not, it copies it in there.
im pretty sure you can embed pretty much anything in mmf. the problem is that when you copy a font into the fonts folder that is distributing. and if its copyrighted material you cant do that legally.
but you can embed files using mmfs view->data elements->binary data->add
and in the apps setting select maximum compression and tick compress the runtime, include external files, and compress sounds.
and to use the files use BinFileTempName$("filepath")