Open
Conversation
Blender - Added UI(Available in the 'N' menu under 'Export Curves'), Moved the register functions to the end of the file, Removed the Export on Save Functionality in favor of Buttons, Added buttons to Export All or Selected Curves. (More Info in the file)
"Blender - Added UI(Available in the 'N' menu under 'Export Curves'), Moved the register functions to the end of the file, Removed the Export on Save Functionality in favor of Buttons, Added buttons to Export All or Selected Curves. (More Info in the file)"
Author
|
I should probably mention that I tested this with Blender 5.0.1 |
Owner
|
You're my hero. I'll take a look at it, thank you |
azimuthdeveloper
requested changes
Feb 16, 2026
Owner
azimuthdeveloper
left a comment
There was a problem hiding this comment.
logic looks good, i'm supportive of the print statements so people know what is going on. just a couple of typos and then we should be able to merge. thanks!
blender/godot-path.py
Outdated
| print('Folder does not exist.') | ||
| return False | ||
| if filename == "": | ||
| print('File name must be at least 1 charcter long.') |
blender/godot-path.py
Outdated
| if filename == "": | ||
| print('File name must be at least 1 charcter long.') | ||
| return False | ||
| print('File is being saved!!') |
Owner
There was a problem hiding this comment.
would it be beneficial to include the path of where the file is being saved to? also this would appear in the blender console correct?
Author
|
I fixed the typos and added the output file path to the print. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi, I saw this and got carried away after reading the readme and thought, I could add UI to this... So i did.
I removed the Export on Save and replaced it with a UI menu in the 'N' menu along the right hand side in a category called 'Export Curves'.
I moved the register functions to the end of the file before the name check.
1 Panel: ExportCurvesUI
2 Operators: ExportAllCurves and ExportSelectedCurves, these do what they say.
2 Properties in the Scene: curve_export_filename, curve_export_filepath.
The properties are for the exporting location and name
I modified one function to suit the needs of the new buttons but most of the code in the other functions remain the same.
Thanks
-Zore