Visual Game Editor // Really recomd it!

Hello guys,

We at Game Matter started some time ago to work on our own game editor for our project Duel Revolution. It is something that I really would like recommend to anyone woking on projects with a lot of level design.

Last month Corona Geek started a series on the issue which I really recommend! And we also did a video for our community takling about the subject. You can check it out here if you thing its something that you amy find interesting.

You can scroll to minute 1:25 if you dont want to see the whole thing :wink:https://youtu.be/b3kH8MOZihI

Be sure to tell me if you have feedback or if you have questions in case you would like to work on a visual game editor your self :slight_smile:

1 Like

I second your comments here.  Making an editor (in Corona) for your games is a great way to ramp up your ability to create content quickly.  It is hard work, but the more you make editors, the better you get and the faster you get at it.

Also, great video and super looking tool.  I especially liked the auto-paining and fill tools you showed early on.  Sweet!

-Ed

I concur with Ed, especially on the tile-filling process. How much work is it on the user’s end to “teach” it new metatiles, i.e. tiles-of-tiles? Does that support arbitrary sizes?

I don’t know how similar it is to your own situation, but I do have a sort of condition  / action  breakdown (the latter probably just a synonym for your event ) in my own projects. Usually these are properties rigged into the game objects. In a previous engine, as a research project of sorts, I also made some objects allowing us to instantiate free-floating cases of these, backed by databases to give them state, so we could mix in little islands of logic without writing little one-shot scripts, rather doing it all in the editor. Then we switched engines.  :huh: Unfortunately many of the system’s details were tied up in that, though I hold out some vague hopes of reviving it.

What I’ve also found nice, when doing that and since, is to let users drag from one node to another to connect actions to their source, or vice versa. I do in fact have this sort of thing, though it’s clunky on account of some stupid design decisions. Right now you have to wander through some dialog boxes to see the available connections; this was a lazy way to keep users from deleting objects while the GUI was visible and having to keep it in sync.  :) When I get a free weekend I mean to turn it into a poor man’s version of Unreal’s Blueprint. (One of the guys at my office has been showing me the real deal. I don’t think I’m quite up to implementing that!)

Anyhow, those are my hobby horses when it comes to editors. Probably a bit out there, but maybe you can glean some ideas from them.

I second your comments here.  Making an editor (in Corona) for your games is a great way to ramp up your ability to create content quickly.  It is hard work, but the more you make editors, the better you get and the faster you get at it.

Also, great video and super looking tool.  I especially liked the auto-paining and fill tools you showed early on.  Sweet!

-Ed

I concur with Ed, especially on the tile-filling process. How much work is it on the user’s end to “teach” it new metatiles, i.e. tiles-of-tiles? Does that support arbitrary sizes?

I don’t know how similar it is to your own situation, but I do have a sort of condition  / action  breakdown (the latter probably just a synonym for your event ) in my own projects. Usually these are properties rigged into the game objects. In a previous engine, as a research project of sorts, I also made some objects allowing us to instantiate free-floating cases of these, backed by databases to give them state, so we could mix in little islands of logic without writing little one-shot scripts, rather doing it all in the editor. Then we switched engines.  :huh: Unfortunately many of the system’s details were tied up in that, though I hold out some vague hopes of reviving it.

What I’ve also found nice, when doing that and since, is to let users drag from one node to another to connect actions to their source, or vice versa. I do in fact have this sort of thing, though it’s clunky on account of some stupid design decisions. Right now you have to wander through some dialog boxes to see the available connections; this was a lazy way to keep users from deleting objects while the GUI was visible and having to keep it in sync.  :) When I get a free weekend I mean to turn it into a poor man’s version of Unreal’s Blueprint. (One of the guys at my office has been showing me the real deal. I don’t think I’m quite up to implementing that!)

Anyhow, those are my hobby horses when it comes to editors. Probably a bit out there, but maybe you can glean some ideas from them.