I want to access all the sprites in a scene (*.unity file) in a editor script. but I have no idea how to load a *.unity file in code. LoadAssetAtPath just return null and Resources.Load report an error.
Finally I got the way through EditorApplication.OpenScene, and then get all the sprites using
GameObject.FindObjectsOfType.
Application.LoadLevel not working for me.