File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ XPS Tools
3
3
Blender Toolshelf, an addon for Blender to
4
4
5
5
Import/Export XPS Models, Poses.
6
- (Requieres Blender 2.74 up )
6
+ (Requieres Blender 2.79 )
7
7
8
8
Main Features:
9
9
- Imports and Exports XPS/XNALara models with armature.
Original file line number Diff line number Diff line change 4
4
bl_info = {
5
5
"name" : "XNALara/XPS Import/Export" ,
6
6
"author" : "johnzero7" ,
7
- "version" : (1 , 8 , 6 ),
7
+ "version" : (1 , 8 , 7 ),
8
8
"blender" : (2 , 74 , 0 ),
9
9
"location" : "File > Import-Export > XNALara/XPS" ,
10
10
"description" : "Import-Export XNALara/XPS" ,
Original file line number Diff line number Diff line change 27
27
import operator
28
28
import bpy_extras .io_utils
29
29
30
- from progress_report import ProgressReport , ProgressReportSubstep
30
+ try :
31
+ from progress_report import ProgressReport , ProgressReportSubstep
32
+ except ImportError :
33
+ from bpy_extras .wm_utils .progress_report import ProgressReport , ProgressReportSubstep
31
34
32
35
33
36
def name_compat (name ):
Original file line number Diff line number Diff line change 41
41
from bpy_extras .io_utils import unpack_list
42
42
from bpy_extras .image_utils import load_image
43
43
44
- from progress_report import ProgressReport , ProgressReportSubstep
44
+ try :
45
+ from progress_report import ProgressReport , ProgressReportSubstep
46
+ except ImportError :
47
+ from bpy_extras .wm_utils .progress_report import ProgressReport , ProgressReportSubstep
45
48
46
49
47
50
def line_value (line_split ):
You can’t perform that action at this time.
0 commit comments