But I’ve got a question: Is it possible to use unity without the editor?
I’m really a script based programmer… I want to create everything from one big script!
Is this possible with unity?
And last but not least: What do you think about the project?
No, you must use the editor. You can do most stuff by script though. In the most extreme case you could have a scene with a single empty object in it that has a script attached that builds the rest of the game, but you’d be better off using the editor for things that make your life a lot easier. (Such as linking prefabs in the inspector, so you can just swap that out if you want with a different prefab instead of re-writing code.)