Skip to content
Snippets Groups Projects
Commit e8247d97 authored by Bastien Montagne's avatar Bastien Montagne
Browse files

Fix error in rBA049a5a86edcf.

Please at least try to start Blender and look at the console after such changes, next time!
parent 049a5a86
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,19 @@ bl_info = {
"category": "Object",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
"Scripts/Object/Animated_Render_Baker",
"tracker_url": "https://developer.blender.org/T24836", filepath, frame):
"tracker_url": "https://developer.blender.org/T24836"}
import bpy
from bpy.props import IntProperty
class OBJECT_OT_animrenderbake(bpy.types.Operator):
bl_label = "Animated Render Bake"
bl_description= "Bake animated image textures of selected objects"
bl_idname = "object.anim_bake_image"
bl_register = True
def framefile(self, filepath, frame):
"""
Set frame number to file name image.png -> image0013.png
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment