What engine would be good to make 2d games?
#1 Members - Reputation: 208
Posted 02 August 2012 - 08:42 AM
Should I:
try to look for a way to make a 2d game in Unity?
or try to look for libraries for java or javascript that will help me make a 2d game?
Thanks for the help!
#2 Members - Reputation: 788
Posted 02 August 2012 - 08:51 AM
However, to clarifty one point, you can definitely make 2d games in Unity - in fact, there is an entire tutorial available on their site for making a 2d platformer. My suggestion is run through that tutorial and see what you think.
#5 Members - Reputation: 208
Posted 02 August 2012 - 09:53 AM
Unfortunately, this question can really only be answered by you, since it depends on many things, such as your comfort level and available time for learning programming, specific goals, type of 2d games you are interested in developing, etc.
However, to clarifty one point, you can definitely make 2d games in Unity - in fact, there is an entire tutorial available on their site for making a 2d platformer. My suggestion is run through that tutorial and see what you think.
i have (sorry for not explaining) but i would like to have it like 2d sprites. An example of the type of game i want to make is rayman origins.
#6 Members - Reputation: 208
Posted 02 August 2012 - 09:53 AM
Just use flat assets and a fixed camera angle, it will look like a 2d game more or less
Plain and simple: you can make a 2D game with any engine. (correct me if I'm wrong of course)
ok i will try and look it up
Edited by mk.jr.fan, 02 August 2012 - 09:54 AM.
#7 Members - Reputation: 382
Posted 02 August 2012 - 10:17 AM
They have similar names but their purpose and syntax are pretty different
About the 2D engine:
- I tried making a 2D game in Unity3D but it was not so nice.
- You would have to use a 2D framework (as a plugin in Unity) to help you. I used a free one (Orthello2D) but I didn't like it much. A lot of people recommended a paid one (Sprite Manager) but I didn't want to risk buying one without knowing for sure it would fit my needs.
- Anyways you can find a good tutorial with the Orthello2D here.
Hope this helps somehow
#8 Members - Reputation: 451
Posted 02 August 2012 - 12:23 PM
#9 Members - Reputation: 392
Posted 02 August 2012 - 02:16 PM
Quite a few folks like using Java, due to the portability.
Some folks like using Python / Pygame because of easy language.
It's all up to you. 2D games with sprites have been made in HTML / PHP / Jscript before.
Heck, due to the power of HTML5, many things are possible with that.
The #1 question you have to ask yourself is:
Do I feel comfortable with the language?
If you want to distribute your game, than portability comes into play, but just to code a 2D game, almost any language can be used.
#11 Members - Reputation: 208
Posted 03 August 2012 - 07:18 PM
Just to make sure it is clear to you one thing: Java and Javascript are completely different languages.
They have similar names but their purpose and syntax are pretty different
About the 2D engine:
- I tried making a 2D game in Unity3D but it was not so nice.
- You would have to use a 2D framework (as a plugin in Unity) to help you. I used a free one (Orthello2D) but I didn't like it much. A lot of people recommended a paid one (Sprite Manager) but I didn't want to risk buying one without knowing for sure it would fit my needs.
- Anyways you can find a good tutorial with the Orthello2D here.
Hope this helps somehow
i think i will try Orthello2d. What was the problem with orthello?
Also when making your 2d game what went wrong?
Edited by mk.jr.fan, 03 August 2012 - 07:21 PM.
#12 Members - Reputation: 208
Posted 03 August 2012 - 07:20 PM
A lot of folks are using C# / XML because of the wide Windows / Xbox support.
Quite a few folks like using Java, due to the portability.
Some folks like using Python / Pygame because of easy language.
It's all up to you. 2D games with sprites have been made in HTML / PHP / Jscript before.
Heck, due to the power of HTML5, many things are possible with that.
The #1 question you have to ask yourself is:
Do I feel comfortable with the language?
If you want to distribute your game, than portability comes into play, but just to code a 2D game, almost any language can be used.
The thing is that i am going to be learning javascript in school so i would probably become comfortable with it i just want to know if it is powerful enough to make games as big as limbo or have lighting effects like shadows.
#14 Members - Reputation: 540
Posted 04 August 2012 - 02:41 AM
I've never used Unity, so I can't compare.
#16 Members - Reputation: 1050
Posted 04 August 2012 - 04:30 AM
Just make sure your not confusing javascript and java. Javascript is an embedded language most commonly used in HTML web pages (I think this is the one your referring to). Java is a full programming language.learning javascript in school so i would probably become comfortable with it i just want to know if it is powerful enough to make games as big as limbo or have lighting effects like shadows.
Javascript is not a very powerful language, its meant to be "bolted onto" something else for basic control of that. In most cases that's a web browser and it can be used to detect that the mouse has entered the area a button covers and then change the colour of the button. With HTML5's canvas element and javascript you can make a basic game, alot of CPU power would be lost just in moving 1 sprite though. Internet explorer doesn't seem to like canvas elements though, kinda just ignores them. Theres also webGL which is far more powerful than a canvas element on its own but much harder to use. Unfortunately few browsers support webGL, the webkit API itself does so any browser with webkit will most likely support webGL (chrome and safari are 2 examples that use webkit and support webGL, there is other work to be done though so there are webkit browsers that don't support it), I don't know if firefox does, internet explorer doesn't. Making a limbo clone through javascript and canvas would be a bit convoluted, through webGL would be slightly less convoluted but a bit harder, performance would still be less than desirable. Shadows would almost certainly not be possible without webGL.
Usually those sorts of browser games are done as either a flash object or java applet, minecraft for example is usually played as a standalone java program but there is a java applet playable in browser (link to free version thats played in browser: http://www.minecraft.net/classic/play). Only thing about using flash or java applets is that the web browser will require additional plugins and the user will have to have flash or java on their systems, not usually an issue anyway.
#17 Members - Reputation: 208
Posted 05 August 2012 - 09:35 PM
Just make sure your not confusing javascript and java. Javascript is an embedded language most commonly used in HTML web pages (I think this is the one your referring to). Java is a full programming language.
learning javascript in school so i would probably become comfortable with it i just want to know if it is powerful enough to make games as big as limbo or have lighting effects like shadows.
Javascript is not a very powerful language, its meant to be "bolted onto" something else for basic control of that. In most cases that's a web browser and it can be used to detect that the mouse has entered the area a button covers and then change the colour of the button. With HTML5's canvas element and javascript you can make a basic game, alot of CPU power would be lost just in moving 1 sprite though. Internet explorer doesn't seem to like canvas elements though, kinda just ignores them. Theres also webGL which is far more powerful than a canvas element on its own but much harder to use. Unfortunately few browsers support webGL, the webkit API itself does so any browser with webkit will most likely support webGL (chrome and safari are 2 examples that use webkit and support webGL, there is other work to be done though so there are webkit browsers that don't support it), I don't know if firefox does, internet explorer doesn't. Making a limbo clone through javascript and canvas would be a bit convoluted, through webGL would be slightly less convoluted but a bit harder, performance would still be less than desirable. Shadows would almost certainly not be possible without webGL.
Usually those sorts of browser games are done as either a flash object or java applet, minecraft for example is usually played as a standalone java program but there is a java applet playable in browser (link to free version thats played in browser: http://www.minecraft.net/classic/play). Only thing about using flash or java applets is that the web browser will require additional plugins and the user will have to have flash or java on their systems, not usually an issue anyway.
but how can javascript be used in unity? if i try to code the game in javascript not by it self but with unity would it have less capabilities then coding in c#? or is it because it is "bolted onto" unity that it makes it it stronger?
I've recently started having a play around with Moai which is primarily for 2D games and I've been very impressed.
what is moai? is it just a cloud storage? or do you just put your game on that cloud for people to use?
Edited by mk.jr.fan, 05 August 2012 - 09:40 PM.
#18 Members - Reputation: 392
Posted 06 August 2012 - 12:37 AM
Read the website for more info ( I do not personally use it ) http://getmoai.com
Here is a tutorial if you wish to take a look at whats involved http://getmoai.com/m...g-squisher.html
Edited by Shippou, 06 August 2012 - 12:43 AM.
#19 Members - Reputation: 208
Posted 06 August 2012 - 11:03 AM
ok thanks!Moai SDK is a platform for game development which uses the Lua scripting language.
Read the website for more info ( I do not personally use it ) http://getmoai.com
Here is a tutorial if you wish to take a look at whats involved http://getmoai.com/m...g-squisher.html






