Skip to content

Commit f776fbc

Browse files
committed
Blender 3.2.x Compatibility Update
1 parent 51267d7 commit f776fbc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
from bpy.types import (Panel, Menu, Operator, PropertyGroup)
1010
import addon_utils
1111

12-
addon_version = "2.1.0"
12+
addon_version = "2.1.1"
1313

1414
bl_info = {
1515
"name": "Godot Game Tools",
1616
"description": "This Add-On provides features for better export options with Godot Game Engine",
1717
"author": "Vinicius Guerrero & Contributors",
18-
"version": (2, 1, 0),
18+
"version": (2, 1, 1),
1919
"blender": (3, 2, 0),
2020
"location": "3D View > Tools",
2121
"warning": "",

src/operators/export_character_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def execute(self, context):
3838
if target_armature.animation_data is not None:
3939
if action is not None:
4040
track = target_armature.animation_data.nla_tracks.new()
41-
start = action.frame_range[0]
41+
start = int(action.frame_range[0])
4242
track.strips.new(action.name, start, action)
4343
track.name = action.name
4444
if character_export_animation_loops: track.name += "-loop"

0 commit comments

Comments
 (0)