Skip to content

Commit 96f832a

Browse files
committed
v1.14.3 (2023-09-11T09:32Z)
- fixed cam and bvh import for Blender 3.5+, closes #44
1 parent e58a414 commit 96f832a

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

advancedfx/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
bl_info = {
44
"name": "advancedfx Blender Scripts",
55
"author": "advancedfx.org",
6-
"version": (1, 14, 2),
7-
"blender": (2, 80, 0),
6+
"version": (1, 14, 3),
7+
"blender": (3, 5, 0),
88
"location": "File > Import/Export",
99
"description": "For inter-operation with HLAE.",
1010
#"warning": "",

advancedfx/import_bvh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def readBvh(self, context):
246246
file = None
247247

248248
try:
249-
file = open(self.filepath, 'rU')
249+
file = open(self.filepath, 'r')
250250

251251
rootName = ReadRootName(file)
252252
if not rootName:

advancedfx/import_cam.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def readCam(self, context):
126126
file = None
127127

128128
try:
129-
file = open(self.filepath, 'rU')
129+
file = open(self.filepath, 'r')
130130

131131
version = 0
132132
scaleFov = ''

advancedfx/readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ You need to install latest Blender Source Tools first
44
( http://steamreview.org/BlenderSourceTools/ ),
55
since we depend on it.
66
This version of afx-blender-scripts was tested using
7-
Blender Source Tools 3.2.0.
7+
Blender Source Tools 3.2.5.
88

99
If you have a previous version of afx-blender-scripts installed, uninstall
1010
it first through Blender!
@@ -49,6 +49,10 @@ For more informations visit it's Advancedfx Wiki page ( https://github.com/advan
4949

5050

5151
Changelog:
52+
53+
1.14.3 (2023-09-11T09:32Z):
54+
- fixed cam and bvh import for Blender 3.5+
55+
5256
1.14.2 (2022-06-12T10:43Z):
5357
- fixed AGR Batch Export issue, which caused an error on export if an armature was deleted of the viewport
5458
- fixed documentation button in addon preferences

0 commit comments

Comments
 (0)