Search found 3 matches

by Bizun
Tue Apr 09, 2019 4:19 pm
Forum: Support and Development
Topic: How to create "darker" version of image?
Replies: 3
Views: 6129

How to create "darker" version of image?

Hi, I'm new and I don’t know if my code is optimal for "shadowing" sprites. local sprites = { ['@'] = { drawable = nil, dark = nil, fname = 'hero.png' }, ['.'] = { drawable = nil, dark = nil, fname = 'ground.png' }, ['#'] = { drawable = nil, dark = nil, fname = 'wall.png' }, ['f'] = { draw...
by Bizun
Wed Mar 28, 2018 7:07 am
Forum: General
Topic: Blurred fonts
Replies: 8
Views: 7831

Re: Blurred fonts

Thanks! font:setFilter("nearest", "nearest") and font size 16 solve my problem =)
by Bizun
Mon Mar 26, 2018 4:42 pm
Forum: General
Topic: Blurred fonts
Replies: 8
Views: 7831

Blurred fonts

Hello! I developed the game on LOVE2D and ran into the problem of blurry text. I attached a screenshot that illustrates the problem. https://sun1-4.userapi.com/c840733/v840733413/6ea9b/gqBDFrdUhk4.jpg I need the perfect text, because my game will be text. function love.load() -- Window settings love...