Search found 33 matches

by NobodysSon
Mon Nov 16, 2020 7:18 am
Forum: Games and Creations
Topic: Particles
Replies: 5
Views: 6790

Re: Particles

Mesmerizing to watch...
by NobodysSon
Fri Jun 19, 2020 1:20 am
Forum: Libraries and Tools
Topic: Card Game Framework
Replies: 6
Views: 9258

Re: Card Game Framework

I don't have any solutions but I am watching with curiosity to see what you come up with.
by NobodysSon
Thu Jun 11, 2020 3:47 pm
Forum: General
Topic: Is LÖVE2D a good framework for Windows desktop apps?
Replies: 9
Views: 8003

Re: Is LÖVE2D a good framework for Windows desktop apps?

zorg wrote: Thu Jun 11, 2020 3:33 pm I myself am working on a music composing software with it
You never cease to amaze me, zorg :)
by NobodysSon
Sat May 30, 2020 4:02 pm
Forum: Games and Creations
Topic: Gami Planes (Anrdoid & iOS)
Replies: 2
Views: 7221

Re: Gami Planes (Anrdoid & iOS)

Having the glider be able to wrap around the screen is a nice touch.
by NobodysSon
Fri Apr 03, 2020 4:56 pm
Forum: Games and Creations
Topic: Tiny Places
Replies: 42
Views: 88494

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.
by NobodysSon
Sat Jan 19, 2019 6:49 pm
Forum: Games and Creations
Topic: Slot machine game Multiplay81 v1.1
Replies: 2
Views: 5848

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...
by NobodysSon
Sat Jan 12, 2019 6:21 pm
Forum: General
Topic: Scroll Bar Going Too Far
Replies: 6
Views: 6008

Re: Scroll Bar Going Too Far

Thank you for the explanations Nelvin and Zorg
by NobodysSon
Sat Jan 12, 2019 6:18 pm
Forum: General
Topic: Needing help with scaling.
Replies: 2
Views: 3290

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...
by NobodysSon
Fri Jan 11, 2019 4:42 pm
Forum: General
Topic: Scroll Bar Going Too Far
Replies: 6
Views: 6008

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...
by NobodysSon
Fri Jan 11, 2019 5:54 am
Forum: General
Topic: Scroll Bar Going Too Far
Replies: 6
Views: 6008

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