I was reading some tutorials on Internet to have an idea how to develop games with defold.
All tutorials that I found used graphics tool (scene editor, for instance).
Is that a requirement or is it possible to make entire project just coding in VIM or Visual Studio Code, for instance.
In case it were possible to completely ignore graphical tools and use just a plain text editor, could you please point me some tutorials that took this path?
I prefer do develop just writing plainnLua code
Thanks.
You can, but you have to do some bootstrapping in the editor anyway.
For myself I have developed a python script that converts all my assets into game objects and adds factory components to a collection for them. This way I can create entire game using factories from code and I don’t need to work with the editor much.