From fab10e3196494e349f280b211063fa19737aa875 Mon Sep 17 00:00:00 2001 From: Florian Meyer <florianfelix@web.de> Date: Sat, 18 Sep 2010 14:12:39 +0000 Subject: [PATCH] - fix for api changes --- io_import_images_as_planes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/io_import_images_as_planes.py b/io_import_images_as_planes.py index 7fc94bea5..f8efd1127 100644 --- a/io_import_images_as_planes.py +++ b/io_import_images_as_planes.py @@ -21,7 +21,7 @@ bl_addon_info = { "author": "Florian Meyer (testscreenings)", "version": (0,7), "blender": (2, 5, 3), - "api": 31847, + "api": 31998, "location": "File > Import > Images as Planes", "description": "Imports images and creates planes with the appropriate aspect ratio. The images are mapped to the planes.", "warning": "", @@ -416,13 +416,13 @@ class ImportImagesAsPlanes(bpy.types.Operator): description="Only import files of this type.", items=extEnum) - shadeless = BoolProperty(name="Shadeless", + use_shadeless = BoolProperty(name="Shadeless", description="Set material to shadeless", default=False) transp = BoolProperty(name="Use alpha", description="Use alphachannel for transparency.", default=False) - premultiply = BoolProperty(name="Premultiply", + use_premultiply = BoolProperty(name="Premultiply", description="Premultiply image", default=False) -- GitLab