We have a phython export script that exports the (selected) scene graph objects to a custom file format (XAML). Since it seems there are so many changes in the underlying architecture of blender, will we need to rewrite/adjust our script for 2.5 ? Here are the namespaces/modules we are using:
import Blender
from Blender import Scene
from Blender import Texture
from Blender import Mathutils
from Blender import Lamp
import BPyMesh
import BPyObject
Another question: Is there anything new in 2.5 that we could use and potentially could improve export scripts?