Jump to content


nightrobin

Member Since 06 Oct 2012
Offline Last Active May 05 2013 10:51 AM
-----

Posts I've Made

In Topic: Difficulty In Creating Own Game Editor

08 January 2013 - 02:45 AM

Thank you very much guys! I know I can count on you Posted Image

In Topic: Difficulty In Creating Own Game Editor

08 January 2013 - 02:44 AM

View Postrouncer, on 07 January 2013 - 06:42 PM, said:

what are you making anyway, 2d tile based?

Yes, 2D Tile Based

In Topic: Difficulty In Creating Own Game Editor

07 January 2013 - 05:32 PM

View PostTheNut, on 07 January 2013 - 04:55 PM, said:

The principle behind a level editor is to database your assets, place instances of those assets in a level, and provide scripting to perform logic. To write scripts, you must first construct the API for your game, which means you have to design your game first. Know what the inputs and outputs are and make them accessible by scripts. For example, read/write character health from a script, trigger an explosion effect, trigger a level modification effect (translate / rotate walls for instance), or trigger a cinematic sequence. These all constitute features of your underlying game engine that you must design first.

I would recommend you take a look at Blender 3D. It's a general purpose 3D modelling tool, but can also be used as a level editor and more. As a standalone, you can use it directly with python (a scripting language) to create Blender games or like me just write a python script to export the data to a specific game file format that your engine will load. Other reasons for using Blender and reading up on its python API will give you a better idea how to organize your own game assets and incorporate scripting to perform logic. Also take a look at the Collada format since it's organized in a similar way, but note that this is only a file format, not a system for executing games. Using Blender or similar tools as the basis for your editor will save you a lot of time from having to deal with the basics of writing your own level editor, which is very time consuming to develop.

Thank you Very Much! :)

In Topic: PROBLEM - Block breaker with air hockey PLAYED as 2 HUMAN PLAYERS

31 October 2012 - 01:44 PM

thank you very much :D