Author Topic: Game Editor: A simple, cross-platform and powerful 2d game creation utility!  (Read 824 times)

Banner leads to website.

Quote
Game Editor is the open source game design software that gives you the power to create the games of your dreams, and, unlike other game creation tools, gives you the chance to get and change the source code of the game creator and design and develop 2D games for personal computers as well as mobile devices.











Is it simple to get the basics?

Is it simple to get the basics?
Sure. Coding will be needed for the other half of things you might want to do, but if you're looking to make a simple platformer or something even the coding is really simple. Space shooters might be a little advanced but not by much compared to platformers - still pretty simple.

What coding language is that?




I don't know code. D:

I don't know code. D:

This is how to make your character move right:

Inside Draw event:
x =+ 5;

This is how to make him move right forever:

Inside Create Actor event:
xvelocity = 5;

This is how you make him go to the mouse:

Inside Draw event:
x = xmouse
y = ymouse

The simple things are mostly one or two lines of code. The entire language itself isn't that hard to learn either, and you don't even need to learn the entire language to make something awesome, as the events pretty much do half of it for you.

I may look into this when I feel like it.

It looks interesting.