Search found 6 matches

by ARBTECH
Mon Jan 14, 2019 5:00 pm
Forum: General
Topic: Having Trouble Showing Text in Arabic
Replies: 6
Views: 5341

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...
by ARBTECH
Mon Jan 14, 2019 4:58 pm
Forum: General
Topic: Having Trouble Showing Text in Arabic
Replies: 6
Views: 5341

Re: Having Trouble Showing Text in Arabic

pgimeno wrote: Mon Jan 14, 2019 2:44 pm LÖVE doesn't support RTL rendering, or Arabic character joining. It uses only FreeType, not something that is Arabic-aware like Harfbuzz.

You could try to implement a library that is able to render Arabic.
Thanks!
by ARBTECH
Mon Jan 14, 2019 4:55 pm
Forum: General
Topic: Having Trouble Showing Text in Arabic
Replies: 6
Views: 5341

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...
by ARBTECH
Mon Jan 14, 2019 11:11 am
Forum: General
Topic: Having Trouble Showing Text in Arabic
Replies: 6
Views: 5341

Having Trouble Showing Text in Arabic

Hey! Is there any way to show Arabic text in Love? My code:

Code: Select all

function love.load()
  
  love.graphics.setNewFont("Font.ttf", 36)

end

function love.draw()
  
  love.graphics.print("عَرَبِيّ")

end
Result:
Image
by ARBTECH
Mon Jan 14, 2019 10:05 am
Forum: General
Topic: Having Trouble Making an Image Transparent [Solved]
Replies: 2
Views: 3990

Re: Having Trouble Making an Image Transparent

Thank you so much! I should have paid more attention to wiki! :death:
by ARBTECH
Mon Jan 14, 2019 9:35 am
Forum: General
Topic: Having Trouble Making an Image Transparent [Solved]
Replies: 2
Views: 3990

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...