Search found 5 matches
- Mon Sep 13, 2021 3:20 am
- Forum: Support and Development
- Topic: Help with jumping
- Replies: 10
- Views: 8455
Re: Help with jumping
You want the friction of the character to be less when the player is not on Ground(?
- Sun Sep 12, 2021 4:20 am
- Forum: Support and Development
- Topic: Help drawing a Polygon with RayCasting
- Replies: 6
- Views: 5304
Re: Help drawing a Polygon with RayCasting
Thanks Pgimeno, i'm new using Meshes (and using Love2d) i didn't knew how to set it up. Thanks for your answer.
- Wed Sep 08, 2021 11:54 pm
- Forum: Support and Development
- Topic: Help drawing a Polygon with RayCasting
- Replies: 6
- Views: 5304
Re: Help drawing a Polygon with RayCasting
Another one is that love.graphics.polygon is generally unable to draw nonconvex polygons. Still, for this application you might be able to get away with it, because Löve's polygon algorithm uses fan mode, which is appropriate for drawing this particular polygon. But you need to know what vertex doe...
- Wed Sep 08, 2021 9:13 pm
- Forum: Support and Development
- Topic: Help drawing a Polygon with RayCasting
- Replies: 6
- Views: 5304
Re: Help drawing a Polygon with RayCasting
Thanks for your answer, pgimeno, i will try to solve those issues.
- Tue Sep 07, 2021 9:08 pm
- Forum: Support and Development
- Topic: Help drawing a Polygon with RayCasting
- Replies: 6
- Views: 5304
Help drawing a Polygon with RayCasting
Hi! i'm new to the forums and relatively new to Love2D. The thing at this is that i wanted to approach a sort of RayCasting by getting al the start and end points of my lines segments (stored in a table named "R") and getting their angles in update, then insert all the intersection points ...