Search found 33 matches
- Mon Nov 16, 2020 7:18 am
- Forum: Games and Creations
- Topic: Particles
- Replies: 5
- Views: 7403
Re: Particles
Mesmerizing to watch...
- Fri Jun 19, 2020 1:20 am
- Forum: Libraries and Tools
- Topic: Card Game Framework
- Replies: 6
- Views: 10890
Re: Card Game Framework
I don't have any solutions but I am watching with curiosity to see what you come up with.
- Thu Jun 11, 2020 3:47 pm
- Forum: General
- Topic: Is LÖVE2D a good framework for Windows desktop apps?
- Replies: 9
- Views: 8859
- Sat May 30, 2020 4:02 pm
- Forum: Games and Creations
- Topic: Gami Planes (Anrdoid & iOS)
- Replies: 2
- Views: 7376
Re: Gami Planes (Anrdoid & iOS)
Having the glider be able to wrap around the screen is a nice touch.
- Fri Apr 03, 2020 4:56 pm
- Forum: Games and Creations
- Topic: Tiny Places
- Replies: 42
- Views: 95545
Re: Tiny Places
Impressive amount of work you've done on this! Your graphics are really nice!
It is inspiring seeing what people can accomplish working alone.
It is inspiring seeing what people can accomplish working alone.
- Sat Jan 19, 2019 6:49 pm
- Forum: Games and Creations
- Topic: Slot machine game Multiplay81 v1.1
- Replies: 2
- Views: 6184
Re: Slot machine game Multiplay81 v1.1
I watched the game play video (haven't tried the game yet) and it looks really nice! One thing that struck me was how good the odds of winning are. It seemed that every time you spun you won. It didn't seem like gambling at all. As a player at a casino I would appreciate that but it would get dull f...
- Sat Jan 12, 2019 6:21 pm
- Forum: General
- Topic: Scroll Bar Going Too Far
- Replies: 6
- Views: 6551
Re: Scroll Bar Going Too Far
Thank you for the explanations Nelvin and Zorg
- Sat Jan 12, 2019 6:18 pm
- Forum: General
- Topic: Needing help with scaling.
- Replies: 2
- Views: 3480
Re: Needing help with scaling.
To build a little more on what pgimeno said, in order for your code to deal with any resolution the coordinates to display your various images,text, etc should be set relative to the screen size rather than using hard coded values. For instance, if you had an 800 x 600 window and were placing a pixe...
- Fri Jan 11, 2019 4:42 pm
- Forum: General
- Topic: Scroll Bar Going Too Far
- Replies: 6
- Views: 6551
Re: Scroll Bar Going Too Far
:megagrin: Thank you for being my second pair of eyes, Nelvin! I cannot say how many times I missed that. One question: I noticed you added an additional 0.5 to the calculation of the scrollbar's position: scrollBar.position = math.floor(scrollBar.y/factor + 0.5) + 1 I removed it to see if I could s...
- Fri Jan 11, 2019 5:54 am
- Forum: General
- Topic: Scroll Bar Going Too Far
- Replies: 6
- Views: 6551
Scroll Bar Going Too Far
I've been trying to get a simple scroll bar functioning for a word puzzle game I am working on but I have run into a problem that I can't seem to wrap my head around how to solve. The scroll bar works but it runs the text right off the screen. I would like to be at the end of the text at the same ti...