Hello.
I am currently re-organizing my project files and folders, I am a bit confused by how to organize tscn and script file in a project, these are the 2 approaches I am currently planning to use:
Separated scripts and scenes files(like in Unity)
-root folder
--assets
---scenes
----objects (tscn only)
----levels (tscn only)
----blahblahs (tscn only)
---scripts
----objects (.gd file only)
----levels (.gd file only)
----blahblahs (.gd file only)One Object per folder:
--assets
---objects
----player (player.tscn and player.gd)
----mobs (mob.tscn and mob.gd)
----blahblah ( blahblah.tscn and blahblah.gd)
So which one is optimal in a long run?
Or is there a 'rules/standards' for organizing such files that is better than the 2 approaches listed above
Thanks