Anyone need help with small projects?
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
Anyone need help with small projects?
So my computer doesnt run very well, and as a result I can't run anything I make in lua or love for more than a few seconds. This makes it really hard to learn how to make games. So I decided that instead of trying to make my own things, I'd learn by helping people with small projects and what not, since then I only have to run the program to see if my part works. However I'm still new and I'd be treating this more like a learning experience, if that's OK and someone needs help in some way, let me know in PM and I'll try to help, if it involves me learning new things then all the better.
- DaedalusYoung
- Party member
- Posts: 413
- Joined: Sun Jul 14, 2013 8:04 pm
Re: Anyone need help with small projects?
You could always try to see how Code Doodles work and try to make your own, will get you experience and feedback from others how to improve your code.
Re: Anyone need help with small projects?
Just wondering - what kind of computer do you have exactly? You should be able to run basic LÖVE games on a raspi even, so your pc would have to be extremely old to perform that bad
Re: Anyone need help with small projects?
I think he's the one who mentioned on some other thread his video card is glitchy, and stuff simply doesn't run well.s-ol wrote:Just wondering - what kind of computer do you have exactly? You should be able to run basic LÖVE games on a raspi even, so your pc would have to be extremely old to perform that bad
Well, i'll give you a nice idea them: who needs to load graphics when you have awesome functions like love.graphics.rectangle or love.graphic.ellipse or love.graphics.line?
The point being, you can make a pretty juicy game with simple polygons that are drawn in realtime by the GPU. I don't think you'll have any issues with that no matter how long you keep your love project running.
This is what i meant by "juicing":
(https://www.youtube.com/watch?v=Fy0aCDmgnxg)
You can do this whtout sprites, just rectangles, ellipses and colors. And effects, such as tweening and stuff.
https://github.com/Sulunia
Re: Anyone need help with small projects?
DaedalusYoung wrote:You could always try to see how Code Doodles work and try to make your own, will get you experience and feedback from others how to improve your code.
Oh that looks really neat I'll probably end up doing some doodles myself!
Yeah I'm that guy, and yeah I've been using rectangles for the most part, but usually if I run a program for too long, itll crash my graphics drivers, but that usually doesnt occur till i run it for maybe 5 minutes, so its better than nothing haha...I really need a new computer..Sulunia wrote:I think he's the one who mentioned on some other thread his video card is glitchy, and stuff simply doesn't run well.s-ol wrote:Just wondering - what kind of computer do you have exactly? You should be able to run basic LÖVE games on a raspi even, so your pc would have to be extremely old to perform that bad
Well, i'll give you a nice idea them: who needs to load graphics when you have awesome functions like love.graphics.rectangle or love.graphic.ellipse or love.graphics.line?
The point being, you can make a pretty juicy game with simple polygons that are drawn in realtime by the GPU. I don't think you'll have any issues with that no matter how long you keep your love project running.
This is what i meant by "juicing":
(https://www.youtube.com/watch?v=Fy0aCDmgnxg)
You can do this whtout sprites, just rectangles, ellipses and colors. And effects, such as tweening and stuff.
Also yeah, juicing up my games is something I'd love to do, but I barely understand the logic behind how most effects work :c
Re: Anyone need help with small projects?
Instead of directly defining certain values, such as the Y position of the blocks in the blockbreaker example, you instead use a math function to set this value indirectly.
would be
In this case, instead of simply appearing at the Y = 30 position, the block would slide down until it's Y was equal to 30.
Code: Select all
BlockY = 30
Code: Select all
BlockY = 0 --define this in the load
BlockY = lerp(BlockY, 30, 0.05 ) -- make sure you run this inside the update
https://github.com/Sulunia
- HaftSwimmingly
- Prole
- Posts: 13
- Joined: Fri Dec 11, 2015 8:13 am
Re: Anyone need help with small projects?
May I ask what graphics card you have?Vimm wrote:Yeah I'm that guy...Sulunia wrote:I think he's the one who mentioned on some other thread his video card is glitchy, and stuff simply doesn't run well.s-ol wrote:Just wondering - what kind of computer do you have exactly? You should be able to run basic LÖVE games on a raspi even, so your pc would have to be extremely old to perform that bad
tomaki on IRC
- kikito
- Inner party member
- Posts: 3153
- Joined: Sat Oct 03, 2009 5:22 pm
- Location: Madrid, Spain
- Contact:
Re: Anyone need help with small projects?
Notice that you don't necessarily need graphics to make cool stuff. You could, for example, investigate sound synthesis - maybe doing synth music. I remember seeing some threads about it some time ago. It's a road few people take, because there's some math and sound is less "flashy" than graphics. But it might suit you.
When I write def I mean function.
- zorg
- Party member
- Posts: 3465
- Joined: Thu Dec 13, 2012 2:55 pm
- Location: Absurdistan, Hungary
- Contact:
Re: Anyone need help with small projects?
Not to mention the fact that löve can actually work without a window at all!
... though i only have win7, but i don't know whether it's possible or not to get input from the console on any OS;
if it's not, then still, coding a console-based synthesizer that plays back some very simplistic music files (or even just a string of characters) passed in as parameters would be something!
Otherwise, true text-based adventure games await
... though i only have win7, but i don't know whether it's possible or not to get input from the console on any OS;
if it's not, then still, coding a console-based synthesizer that plays back some very simplistic music files (or even just a string of characters) passed in as parameters would be something!
Otherwise, true text-based adventure games await
Me and my stuff True Neutral Aspirant. Why, yes, i do indeed enjoy sarcastically correcting others when they make the most blatant of spelling mistakes. No bullying or trolling the innocent tho.
Re: Anyone need help with small projects?
Actually, i had an idea after watching "the matrix" again. I thought about using love2d to create a "matrix console", which would get information from a lot of different websites and spit it out on the console in realtime.zorg wrote:Not to mention the fact that löve can actually work without a window at all!
... though i only have win7, but i don't know whether it's possible or not to get input from the console on any OS;
if it's not, then still, coding a console-based synthesizer that plays back some very simplistic music files (or even just a string of characters) passed in as parameters would be something!
Otherwise, true text-based adventure games await
Quite useless, yes, but i would use threads to gather data and also would improve parsing skills/JSON, aswell as providing me with a nice "screensaver".
Currently i won't pull it off since i got my hands full with BeatFever though.
https://github.com/Sulunia
Who is online
Users browsing this forum: Ahrefs [Bot], Bing [Bot], Google [Bot] and 9 guests