Search found 7 matches

by Cardibro123
Fri Mar 14, 2025 12:21 am
Forum: Support and Development
Topic: Text Effects
Replies: 4
Views: 863

Text Effects

I have been playing some Balatro lately, a game made in Love2D, and I was wondering how you would edit the size, rotation, or position of individual characters when printing text. Here is an example:
Screenshot 2025-03-13 191926.png
Screenshot 2025-03-13 191926.png (28.85 KiB) Viewed 863 times
If anyone could help me, that would be amazing! :megagrin:
by Cardibro123
Fri Jan 24, 2025 4:55 pm
Forum: Support and Development
Topic: How to make a canvas more blurred
Replies: 1
Views: 984

Re: How to make a canvas more blurred

There are a few ways you can do this. First is using shaders (Recommended); Love2D uses a modified version OpenGL for shaders, and there are a few different tutorials on YouTube that worked for me. You can make a blurry effect using the shaders and apply it to your tiles, or other layers to achieve ...
by Cardibro123
Fri Jan 24, 2025 4:36 pm
Forum: Support and Development
Topic: Text Scaling Help [SOLVED!]
Replies: 6
Views: 1150

Re: Text Scaling Help

Got it! I can see the differences and when to use them. Thank you for helping me! :crazy:
by Cardibro123
Fri Jan 24, 2025 3:16 pm
Forum: Support and Development
Topic: Text Scaling Help [SOLVED!]
Replies: 6
Views: 1150

Re: Text Scaling Help

I know how word-wrap works using printF, but I have not heard of self-contained word-wrap before. Is there another document I can read to understand it? Any help would be appreciated, and thank you for responding. :awesome:
by Cardibro123
Fri Jan 24, 2025 3:54 am
Forum: Support and Development
Topic: Text Scaling Help [SOLVED!]
Replies: 6
Views: 1150

Re: Text Scaling Help

First of all, thank you for taking the time to respond. I see what you are saying about love.draw being rerun every frame. I will make sure not to make that mistake in the future! And, I get what you are saying on how to scale the text and it makes more sense now! I will have to try that out when I ...
by Cardibro123
Fri Jan 24, 2025 2:22 am
Forum: Support and Development
Topic: Text Scaling Help [SOLVED!]
Replies: 6
Views: 1150

Text Scaling Help [SOLVED!]

I need help! :death: How would I scale text so it fits in a box? I have been trying to do this for a while, but I can't find something that's efficient and not laggy! Here's an example of what I have so far. function love.load() text = "Button" end function love.draw() love.graphics.setCol...
by Cardibro123
Tue Dec 10, 2024 2:48 am
Forum: General
Topic: BUG [SOLVED]
Replies: 1
Views: 1199

BUG [SOLVED]

I have this bug that I just don't understand. I have this code here that loops through a tile's inputs (other tiles that are inputs to that tile) and it disconnects the wire that are between them. (A wire is just when tile A is in tile B's inputs and tile B is in tile A's outputs or vise versa) prin...