Skip to content

Commit

Permalink
v1.14.3 (2023-09-11T09:32Z)
Browse files Browse the repository at this point in the history
- fixed cam and bvh import for Blender 3.5+, closes #44
  • Loading branch information
dtugend committed Sep 11, 2023
1 parent e58a414 commit 96f832a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions advancedfx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
bl_info = {
"name": "advancedfx Blender Scripts",
"author": "advancedfx.org",
"version": (1, 14, 2),
"blender": (2, 80, 0),
"version": (1, 14, 3),
"blender": (3, 5, 0),
"location": "File > Import/Export",
"description": "For inter-operation with HLAE.",
#"warning": "",
Expand Down
2 changes: 1 addition & 1 deletion advancedfx/import_bvh.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def readBvh(self, context):
file = None

try:
file = open(self.filepath, 'rU')
file = open(self.filepath, 'r')

rootName = ReadRootName(file)
if not rootName:
Expand Down
2 changes: 1 addition & 1 deletion advancedfx/import_cam.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def readCam(self, context):
file = None

try:
file = open(self.filepath, 'rU')
file = open(self.filepath, 'r')

version = 0
scaleFov = ''
Expand Down
6 changes: 5 additions & 1 deletion advancedfx/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ You need to install latest Blender Source Tools first
( http://steamreview.org/BlenderSourceTools/ ),
since we depend on it.
This version of afx-blender-scripts was tested using
Blender Source Tools 3.2.0.
Blender Source Tools 3.2.5.

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


Changelog:

1.14.3 (2023-09-11T09:32Z):
- fixed cam and bvh import for Blender 3.5+

1.14.2 (2022-06-12T10:43Z):
- fixed AGR Batch Export issue, which caused an error on export if an armature was deleted of the viewport
- fixed documentation button in addon preferences
Expand Down

0 comments on commit 96f832a

Please sign in to comment.