Search found 6 matches
- Mon Jan 14, 2019 5:00 pm
- Forum: General
- Topic: Having Trouble Showing Text in Arabic
- Replies: 6
- Views: 5753
Re: Having Trouble Showing Text in Arabic
In addition to the letters being reversed , for Arabic I think they are disjointed into individual characters. I believe with Arabic the individual glyphs should be joined. It's a real nightmare, I had to do a Hebrew translation of Super Chains and was forced to reverse the characters manually. The...
- Mon Jan 14, 2019 4:58 pm
- Forum: General
- Topic: Having Trouble Showing Text in Arabic
- Replies: 6
- Views: 5753
- Mon Jan 14, 2019 4:55 pm
- Forum: General
- Topic: Having Trouble Showing Text in Arabic
- Replies: 6
- Views: 5753
Re: Having Trouble Showing Text in Arabic
Apart from you using a file hoster that doesn't support hotlinking and probably infects computers with viruses, i don't see the issue in your image; :ultraglee: Edit: From what i can see from google translate, seems to be both of those issues simultaneously. You are right! Yes, both of those issues...
- Mon Jan 14, 2019 11:11 am
- Forum: General
- Topic: Having Trouble Showing Text in Arabic
- Replies: 6
- Views: 5753
Having Trouble Showing Text in Arabic
Hey! Is there any way to show Arabic text in Love? My code:
Result:
Code: Select all
function love.load()
love.graphics.setNewFont("Font.ttf", 36)
end
function love.draw()
love.graphics.print("عَرَبِيّ")
end
- Mon Jan 14, 2019 10:05 am
- Forum: General
- Topic: Having Trouble Making an Image Transparent [Solved]
- Replies: 2
- Views: 4160
Re: Having Trouble Making an Image Transparent
Thank you so much! I should have paid more attention to wiki!
- Mon Jan 14, 2019 9:35 am
- Forum: General
- Topic: Having Trouble Making an Image Transparent [Solved]
- Replies: 2
- Views: 4160
Having Trouble Making an Image Transparent [Solved]
Hi ! I'm new to love and i'm trying to make my png image transparent using code in love. this is my code: function love.load() Image = love.graphics.newImage("love-big-ball.png") end function love.draw() love.graphics.setColor(255, 255, 255, 50) love.graphics.draw(Image, 50, 50) end what a...