Thanks...you created some great models, very nice.
@elturco95732 жыл бұрын
Hello, I am a subscriber. Is this a game engine you are developing? What library do you use for the GUI?
@MrEscen2 жыл бұрын
Yes my own game engine. I'm using Qt for my GUI. Editor and engine are two separated executables with a network communication.
@elturco95732 жыл бұрын
@@MrEscen Interesting, and exactly why have you chosen that communication architecture, as opposed to for example making the editor a kind of game itself?
@elturco95732 жыл бұрын
I guess part of it is because the Qt GUI is not part of the engine, so it has to be a separate program.
@MrEscen2 жыл бұрын
@@elturco9573 main reason: a smaller list of dependencies in my engine. Qt is just to big for a simple GUI use in a game in my opinion. Other small GUI libraries can take care of that. Second, when the engine runs standalone I'm able to control a scene with just some simple network commands.