whats the different between development and shipping and whats the usue of them ??
and whats the use of development and is it helps for recreate the project with more stability for developing ?
another question in the content examples (or some community contents) there are some projects with small size but when i open it it become very large one how they do it?
When you package a project in development, it’ll allow you to have access to the console so you can debug and run console commands while testing your game. When you package a game for shipping, it doesn’t come with access to the console, so you can’t enter the console commands that may be needed to test your game.
In development mode, the compiled project is not redistributable; it will still refer to certain files in the engine folder, and contains debug console^.
In shipping mode, the output can be passed off to run on other computers, but it does not contain the debug console.
^ You may see this as errors on launch referring to internationalization files, etc. from the ‘Engine…’ folder.