-
-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Godot Export Manager: Cannot export anything. Location Unknown Error: -1 #110
Comments
I'm having possibly the same problem. Here are the messages that show in my console when I try to export something. Traceback (most recent call last): location: :-1 |
@MaywormIII The Collada exporter in this repository hasn't been updated for Blender 2.8 yet. Moreover, I'm not sure if any of the forks have updated the Godot Export Manager (which is a separate add-on). |
@Calinou Is there a work around for fix for this bug? Is using and older version of Blender a fix? I'm kind of stuck right now unable to put animations into my Godot project, because of this same error trace. I'm not sure what to do because I'm having problems with .fbx and .glb as well. |
@Xekkel for Godot projects you can use the Godot Export Manager. |
I was stuck at the same error, the solution is quite simple. The error says "TypeError: Mesh.update(): takes at most 2 arguments, got 3", for file export_dae.py. A look-up on DuckDuckGo told me that Mesh.update() only takes calc_edges and calc_edges_loose. So, open export_dae.py in any text editor, goto line 642 and delete , calc_loop_triangles=True from inside the brackets of Mesh.update() and save it. Once I did that, BetterCollada exported the mesh with animation and if I check copy images, it exported images also. The only problem is the shader, which is too bright, which makes the material color look faded. Note that I have tested this on Linux, with extracted version of Blender 2.83 and Godot 3.2.1. Better Collada Add-on for 2.8x can be downloaded from here: BetterCollada for Blender 2.8. Enjoy Godot :) |
The text was updated successfully, but these errors were encountered: