First off i’ve already tried searching for the answer with no luck.
Is there any benefit to only importing the specific classes you need as opposed to importing the entire class directory?
Example:
import flash.display.Loader;
import flash.display.StageScaleMode;
import flash.display.StageAlign;
import flash.display.Sprite;
import flash.display.BlendMode;
import flash.display.Bitmap;
import flash.display.BitmapData;
etc…
vs
import flash.display.*;
Id like to clean up my code but not at the expense of performance…or does this just increase compile time?