[Bf-python] RenderEngine API - fractional frame

Nicholas Yue yue.nicholas at gmail.com
Wed Jul 27 04:07:33 CEST 2011


On 26 July 2011 22:00, Nicholas Yue <yue.nicholas at gmail.com> wrote:
> I ran a test query vert.co[] data of a simple plane with 4 points at
> fractional frame, the returned value is the same as on the integer frame.
>
> Looks like either I may have missed calling some required update-status
> function as even basic geometry (non-sim) is not quiet right.
>

Here is the printout from the Blender Python console

>>> scene.frame_set(2,0.2)
>>> print(bpy.data.meshes["Plane"].vertices[0].co)
Vector((0.9999999403953552, 0.9999999403953552, 0.0))

>>> scene.frame_set(3)
>>> print(bpy.data.meshes["Plane"].vertices[0].co)
Vector((0.9999999403953552, 0.9999999403953552, 0.0))



More information about the Bf-python mailing list