fix: convert constraints fails to convert animations (#1522)

Closes: #1520
This commit is contained in:
bd_ 2025-03-22 18:57:04 -07:00 committed by GitHub
parent 713a0d3b1d
commit dff7f03c2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Fixed
- [#1522] `Convert Constraints` がアニメーション参照を変換できない問題を修正
### Changed

View File

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Fixed
- [#1522] `Convert Constraints` failed to convert animation references
### Changed

View File

@ -103,7 +103,7 @@ namespace nadena.dev.modular_avatar.core.editor
};
var curve = clip.GetFloatCurve(ecb);
clip.SetFloatCurve(newBinding, curve);
clip.SetFloatCurve(newBinding, null);
clip.SetFloatCurve(ecb, null);
}
}
}