Using Python 2.2.3 within Blender 2.32, I can get Zloc and other data on objects in my model. However, I cannot get the current frame number. Per ExcellentWhale freeware, that portion of the code should be:
import Blender
from Blender.Const import *
cfra=Blender.Get(BP_CURFRAME)
However, using as-is yields Import error that no module is named Const.
Perhaps there has been a module name change - so what module now defines BP_CURFRAME, or has that been renamed too?
Thank you.