Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Meyer <florianfelix@web.de>2010-09-18 18:12:39 +0400
committerFlorian Meyer <florianfelix@web.de>2010-09-18 18:12:39 +0400
commitfab10e3196494e349f280b211063fa19737aa875 (patch)
tree430e4b4d17e04b7d7409e0b92feeb6cf8deff03c /io_import_images_as_planes.py
parent99a3707f6be2ff21eb72781d144890cece64be07 (diff)
- fix for api changes
Diffstat (limited to 'io_import_images_as_planes.py')
-rw-r--r--io_import_images_as_planes.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_import_images_as_planes.py b/io_import_images_as_planes.py
index 7fc94bea..f8efd112 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)