I kinda want to practice my Java skills at the same time. I looked at all the Java graphics stuff, and honestly, my head kinda hurts from it. I like love-it's a simple, fast game engine, but as I said, I kinda want to practice Java whilst game developing.
How to?!?!?!?
So, I really like love and game development, but...
- slime
- Solid Snayke
- Posts: 3172
- Joined: Mon Aug 23, 2010 6:45 am
- Location: Nova Scotia, Canada
- Contact:
Re: So, I really like love and game development, but...
Have you looked into libgdx? It's a bit different from LÖVE, but it still shares many of the same fundamental concepts.
Re: So, I really like love and game development, but...
Hmm, okay. I looked a little bit at that, but didn't really read into it. Thanks for your advice!
- purplehuman
- Citizen
- Posts: 72
- Joined: Thu Mar 05, 2015 4:25 pm
- Location: Ankara, Turkey
- Contact:
Re: So, I really like love and game development, but...
I'd suggest learning a bit of programming basics before jumping into game development. Although, making games is a legitimate way to learn better programming, it's not suited for an absolute beginner.
Learn a little Java first. Make some text based games or programs for example. Only then look into graphical gamemaking.
While some may disagree with me, I think this is the way to go.
Learn a little Java first. Make some text based games or programs for example. Only then look into graphical gamemaking.
While some may disagree with me, I think this is the way to go.
Re: So, I really like love and game development, but...
I'd say you should do what you find the most fun - that way you'll probably get more done
My game called Hat Cat and the Obvious Crimes Against the Fundamental Laws of Physics is out now!
Re: So, I really like love and game development, but...
Hey, it's okay. I'm pretty experienced with programming now. I actually started with Java. I am currently trying to create an algorithm for roguelike-style dungeon generation in Love2D, and it's going okay. One of things that's currently bugging me is the lack of a continue statement in lua, thoughpurplehuman wrote:I'd suggest learning a bit of programming basics before jumping into game development. Although, making games is a legitimate way to learn better programming, it's not suited for an absolute beginner.
Learn a little Java first. Make some text based games or programs for example. Only then look into graphical gamemaking.
While some may disagree with me, I think this is the way to go.
- purplehuman
- Citizen
- Posts: 72
- Joined: Thu Mar 05, 2015 4:25 pm
- Location: Ankara, Turkey
- Contact:
Re: So, I really like love and game development, but...
Ah, alright. Then, I agree that libgdx is the way to go.sladjkf wrote: Hey, it's okay. I'm pretty experienced with programming now. I actually started with Java. I am currently trying to create an algorithm for roguelike-style dungeon generation in Love2D, and it's going okay. One of things that's currently bugging me is the lack of a continue statement in lua, though
Re: So, I really like love and game development, but...
http://donjon.bin.sh/d20/dungeon/sladjkf wrote:I am currently trying to create an algorithm for roguelike-style dungeon generation in Love2D
From PIL: "...A typical and well-behaved use of a goto is to simulate some construction that you learned from another language but that is absent from Lua, such as continue, multi-level break, multi-level continue, redo, local error handling, etc. A continue statement is simply a goto to a label at the end of a loop block; a redo statement jumps to the beginning of the block:sladjkf wrote:One of things that's currently bugging me is the lack of a continue statement in lua
while some_condition do
::redo::
if some_other_condition then goto continue
else if yet_another_condition then goto redo
end
<some code>
::continue::
end
..."
Who is online
Users browsing this forum: No registered users and 1 guest