Skip to content

Commit

Permalink
Blender 3.2.x Compatibility Update
Browse files Browse the repository at this point in the history
  • Loading branch information
vini-guerrero committed Jul 27, 2022
1 parent 51267d7 commit f776fbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
from bpy.types import (Panel, Menu, Operator, PropertyGroup)
import addon_utils

addon_version = "2.1.0"
addon_version = "2.1.1"

bl_info = {
"name": "Godot Game Tools",
"description": "This Add-On provides features for better export options with Godot Game Engine",
"author": "Vinicius Guerrero & Contributors",
"version": (2, 1, 0),
"version": (2, 1, 1),
"blender": (3, 2, 0),
"location": "3D View > Tools",
"warning": "",
Expand Down
2 changes: 1 addition & 1 deletion src/operators/export_character_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def execute(self, context):
if target_armature.animation_data is not None:
if action is not None:
track = target_armature.animation_data.nla_tracks.new()
start = action.frame_range[0]
start = int(action.frame_range[0])
track.strips.new(action.name, start, action)
track.name = action.name
if character_export_animation_loops: track.name += "-loop"
Expand Down

0 comments on commit f776fbc

Please sign in to comment.