I started a new project and imported the standard assets package. When I finish and build my simple test web game will all them assests be included or just the ones I use? Obviously I only want the ones I use to be included.
Unity automatically strips out unused assets, so only the assets you use will be included.
thank you