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:
authorCampbell Barton <ideasman42@gmail.com>2010-08-18 11:14:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-18 11:14:32 +0400
commit1a45c5c8f49e265adaffdcb57a85c7233251c4e7 (patch)
treef1dc9f58e1c4bbc49e380290963fa3fd2ba08e95 /io_import_scene_unreal_psk.py
parentb5b76c0d78c9010c16189f7e5c81e150b00db8a9 (diff)
update for rna api changes
Diffstat (limited to 'io_import_scene_unreal_psk.py')
-rw-r--r--io_import_scene_unreal_psk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_import_scene_unreal_psk.py b/io_import_scene_unreal_psk.py
index e1080d41..3b518f1f 100644
--- a/io_import_scene_unreal_psk.py
+++ b/io_import_scene_unreal_psk.py
@@ -489,7 +489,7 @@ def pskimport(infile):
me_ob.vertices.foreach_set("co", unpack_list(verts))
me_ob.faces.foreach_set("vertices_raw", faces)
- me_ob.faces.foreach_set("smooth", [False] * len(me_ob.faces))
+ me_ob.faces.foreach_set("use_smooth", [False] * len(me_ob.faces))
me_ob.update()
#===================================================================================================