Comments

Log in with itch.io to leave a comment.

Hey there Barb!

Would you be able to say which license the plugin is under once purchased?

Sorry that I missed this! Just a regular commercial license, perpetual, use on as many projects as you want, no redistribution. If you have any more specific questions I'd be happy to answer them. 

(1 edit)

Hi Barb,

Thank you, it works!


Notes:

I've encountered 2 problems which seem to be on the Godot's side.

1: After exporting and opening the Godot editor, the addon doesn't have the option to choose the "level" folder.

At this moment, just restart the editor, and the option will appear.

2: After that, the exported glb file that contains the Beizer curve object from Blender, needs to be re-imported. Otherwise, it will still appear as a mesh when it is opened in the scene.

(even if it shows as a Path3D object when one is viewing the glb file)


(I'm using Godot_v4.2.1-stable_win64, Blender 3.6.5)

Also, note the spelling:

Glad you got it working! I'm updating the instructions so I'll be sure to add the restart step, since Godot needs to actually register the classes in the addon.

(1 edit)

Hi Barb,

Could you elaborate on how to export the Beizer curve in Blender to the Path3D in Godot?

I've added the custom properties as specified in the description, but in Godot, it just shows it as mesh.

Thank you!

Can you check if you have done the following?

 - Enabled the plugin, and added an "Extensions to Register" Resource that defines your "level" folder. This tells Godot when to use the addon

 - Added the Bezier Curves Export geometry node modifier provided, note that the modifier must be applied when exporting. This packs the data into a useable format.

 - Enabled "Custom Properties" in the Blender GLTF export under Include - Data. This tells the addon what meshes to operate on.

 - Enabled "Loose Points" and "Attributes" in the Blender GLTF export under Data - Mesh. This lets us export the points which contain our information from Blender.

Apologies if it wasn't clear that "Loose Points" and "Attributes" are needed for curves, I'll update the page to reflect that.

(1 edit)

Hi Barb,

I've tried the above steps, but still got a mesh instead of a curve.

Could you kindly share a video about the steps? (or an even simpler example that can export a Beizer curve from the Blender to the Godot as a Curve3D object)

Also, how is "Extensions to Register" used?

Thank you!




Hi, it appears as if bezier has been typo'd as "beizer", can you try correcting the spelling and seeing if the problem persists?

To address how the Godot addon functions, the gltf_level_register.tscn is run on startup, and iterates over all the Resources defined in the "Extensions to Register" Array. This tells Godot that it should use that Resource, and the Resource itself which provides the functionality and is used to define which folders to look in for(this avoids iterating over all of the files in the project and applying the addon's importer only to the files we want).

Note that the curve importing will only apply to gltf files in the Resource's Level folder, which in the demo is res://data/levels

Looks amazing! Must buy it later when I transfer to godot 4.x