Search the Community
Showing results for tags 'styles'.
-
Hi There! I'm a composer for video games (mainly) but I also have done soundtracks for short animations. I wanted to collaborate in some interesting indie project to learn more about this beautiful job that is making music for audiovisual media. I'm open minded and I try to make any type of music ( I like renaissance music to modern electronic music so, no limitations at all) I link you my personal website so you can know more about me and my work: http://afventura.com/ ------------------------------------------------------------------------------------------------------------- Also, I want to share with you an article they made about my nomination in an award: http://www.eumes.cat/en/blog/albert-fernandez-eumes-student-finalist-hoplay/ And my profile in a royalty free music web, where I sell my music: http://audiojungle.net/user/AFVentura Kind Regards,Albert
-
I am working on a game - and the design requires the font to use "italic light" and also have an outline gradient blue and transparent. http://jsfiddle.net/N476t/10/ I've recreated this example in jsfiddle with arial. I'm adding in a score at the end of this pixijs game. I have the standard parameters here - but the design calls for an outerglow around the letters is there a way to do this?http://www.goodboydigital.com/pixijs/docs/classes/Text.html this.txtRankingOverall = new PIXI.Text("" + GameControl.score, { font: "120px FSJoeyLtIt", fill: "#ffffff", align: "center" }); I'm also having issues trying to match the font - it needs to be italic light this.txtRankingToday = new PIXI.Text("46", { font: "italic 120px FSJoeyLtIt", fill: "#ffffff", align: "center", style: "light" });javascript
-
Hi, Changes to the fontSize style don't seem to work: scoreText = game.add.text(16, 16, 'Score: 0', { fontSize: '22px', fill: '#fff' });The fill-color changes work fine, and I've tried drastically different fontSizes to make sure. I've also tried different browsers: Chrome and Safari for OS X. Anyone else have this issue? Also, I've read through the docs and can't find what styles are (or aren't) supported. Thank you