EpicGamesExt / BlenderTools

Blender addons that improve the game development workflow between Blender and Unreal.
https://epicgamesext.github.io/BlenderTools/
MIT License
2.76k stars 49 forks source link

Send to Unreal is broken in Blender 4.0 beta, FBX is corrupted/Missing data #676

Open funkysandwich opened 11 months ago

funkysandwich commented 11 months ago

Hi. Upon using Push Assets in Blender 4.0 beta, the assets fail to be imported by Unreal, but in Blender 3.6 it works fine. An export using Blender's built in FBX exporter in 4.0 does import. Just not ones from Push Assets.

Snippet from Unreal output log on import

LogFactory: FactoryCreateFile: StaticMesh with FbxFactory (0 0 C:/Users/funky/AppData/Local/Temp/blender/send2ue/data/StaticMesh/Blender40ExportTest.fbx)
LogFbx: Loading FBX Scene from C:/Users/funky/AppData/Local/Temp/blender/send2ue/data/StaticMesh/Blender40ExportTest.fbx
FBXImport: Warning: FBX Scene Loading Failed : 'File is corrupted Blender40ExportTest.fbx' 
FBXImport: Warning: Can't detect import type. No mesh is found or animation track. 
LogAssetTools: Warning: Failed to import 'C:/Users/funky/AppData/Local/Temp/blender/send2ue/data/StaticMesh/Blender40ExportTest.fbx'. Failed to create asset '/Game/UNSORTED/Blender40ExportTest'.

Tested with Blender 4.0.0 Beta, and Send to Unreal 2.4.2

kapi113 commented 11 months ago

Same for Blender 4.1 I hope for a quick fix since Blender files 4.0 and above are not compatible with 3.65 anymore.

universalconquistador commented 10 months ago

Same for Blender 4.0 general release.

jesseunderdog commented 10 months ago

+1 Generated FBX for UE import flagged as corrupted. UE: 5.3.1 Blender 4.0.1

The very same file works fine with Blender 3.6.5.

grahamwheaton commented 10 months ago

Same issues for me. Blender 4.0/ UE 5.3. Was previously working fine with Blender 3.6

LiuYangArt commented 10 months ago

+1 having the same problem here. blender 4.0

somaprod commented 10 months ago

Screenshot 2023-11-24 095319 same here, blender 4.0.1

eatmylazer commented 10 months ago

Glad to know it isn't my mesh. Almost had a heart attack here. Same to me.

Ondicknek commented 10 months ago

same here, fixed it by exporting the 4.0 project as an fbx and importing it into a 3.5 beta version.

Kingfelix23 commented 10 months ago

same here, fixed it by exporting the 4.0 project as an fbx and importing it into a 3.5 beta version.

I think it is just the plugin that doesn't work. Exporting a fbx manually and importing it into unreal works

Ondicknek commented 10 months ago

yeah you could export without the plugin but its super slow and annoying

Kingfelix23 commented 10 months ago

Yes, of course, but why not just open the blend file in 3.6 instead and use send2ue as usual, no reason to export to FBX, or?

mlubich commented 10 months ago

The same with me. I had a look into the code and there seem to be some workarounds and fixes on how the 3.x series handled FBX exports. From what I see the original code (3.x) was copied and slightly altered/fixed and the original methods of the fbx exporter were overwritten during export. This for sure messes up the new 4.0 fbx exporter code. I did a quick test and reverted the overwrite and from what I see is that the export now works without any noticable problems so far. Maybe this observation helps to fix this problem.

LiuYangArt commented 10 months ago

can you share the fix version ? Thanks

mlubich @.***> 于 2023年12月1日周五 00:30写道:

The same with me. I had a look into the code and there seem to be some workarounds and fixes on how the 3.x series handled FBX exports. From what I see the original code (3.x) was copied and slightly altered/fixed and the original methods of the fbx exporter were overwritten during export. This for sure messes up the new 4.0 fbx exporter code. I did a quick test and reverted the overwrite and from what I see is that the export now works without any noticable problems so far. Maybe this observation helps to fix this problem.

— Reply to this email directly, view it on GitHub https://github.com/EpicGames/BlenderTools/issues/676#issuecomment-1834114399, or unsubscribe https://github.com/notifications/unsubscribe-auth/ALBCL6SSPOV763RSGXDH2BTYHCYAVAVCNFSM6AAAAAA6ET5FV2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMZUGEYTIMZZHE . You are receiving this because you commented.Message ID: @.***>

Kingfelix23 commented 10 months ago

I am a bit unsure what you mean. Did you change code in send2ue or in Blender itself?

mlubich commented 10 months ago

I am a bit unsure what you mean. Did you change code in send2ue or in Blender itself?

I did change the python code of the send2ue plugin.

The change I did is a crude hack, as it bypasses all the fixes/additions done by the authors of send2ue. There are certainly problems with this approach as I do not know what was fixed in the new blender FBX export code and which send2ue fixes are still needed.

Here is a comment from the io.export method in which the send2ue developers are describing the overall idea:

Note that this function imports the blender FBX addon's module and monkey patches
some functions to fix the scale factor and world origins of the objects, so that they import
nicely into unreal engine.

If you want to experminet yourself you can do the following:


Again, I do not think that this approach is a feasible stable solution. The original authors should have a look at the current blender 4.0 fbx implementation and decide if all any of fixes present in send2ue are still needed.
Kingfelix23 commented 10 months ago

Ok, cool. thanks.

I guess you dont know whether it was a specific attribute was the culprit, or do you have to turn them all of, or maybe that doesnt matter?

mlubich commented 10 months ago

I guess you dont know whether it was a specific attribute was the culprit, or do you have to turn them all of, or maybe that doesnt matter?

No, I do not know. I just deactivated all of them just to see if this makes any difference. I only have one project I am transferring from blender to unreal, so that sample size to catch any problems is quite low :) I do not export any animations or armatures, just plain static meshes.

JoshQuake commented 10 months ago

Here's a proper fix until addon is updated:

the fbx.py file mentioned above is what we need to change

go to line 35, add elem_data_single_char to the list so it looks like

from io_scene_fbx.fbx_utils import (
    FBX_MODELS_VERSION,
    FBX_POSE_BIND_VERSION,
    FBX_DEFORMER_SKIN_VERSION,
    FBX_DEFORMER_CLUSTER_VERSION,
    BLENDER_OBJECT_TYPES_MESHLIKE,
    units_convertor_iter,
    matrix4_to_array,
    get_fbx_uuid_from_key,
    get_blenderID_name,
    get_blender_bindpose_key,
    get_blender_anim_stack_key,
    get_blender_anim_layer_key,
    elem_empty,
    elem_data_single_bool,
    elem_data_single_int32,
    elem_data_single_int64,
    elem_data_single_float64,
    elem_data_single_string,
    elem_data_single_int32_array,
    elem_data_single_float64_array,
    elem_properties,
    elem_props_template_init,
    elem_props_template_set,
    elem_props_template_finalize,
    fbx_name_class,
    elem_data_single_char
)

Search for b"Shading" and replace elem_data_single_bool(model, b"Shading", True) with elem_data_single_char(model, b"Shading", b"\x01")

That's all!

geekrelief commented 10 months ago

Here's a proper fix until addon is updated:

the fbx.py file mentioned above is what we need to change

go to line 35, add elem_data_single_char to the list so it looks like

from io_scene_fbx.fbx_utils import (
    FBX_MODELS_VERSION,
    FBX_POSE_BIND_VERSION,
    FBX_DEFORMER_SKIN_VERSION,
    FBX_DEFORMER_CLUSTER_VERSION,
    BLENDER_OBJECT_TYPES_MESHLIKE,
    units_convertor_iter,
    matrix4_to_array,
    get_fbx_uuid_from_key,
    get_blenderID_name,
    get_blender_bindpose_key,
    get_blender_anim_stack_key,
    get_blender_anim_layer_key,
    elem_empty,
    elem_data_single_bool,
    elem_data_single_int32,
    elem_data_single_int64,
    elem_data_single_float64,
    elem_data_single_string,
    elem_data_single_int32_array,
    elem_data_single_float64_array,
    elem_properties,
    elem_props_template_init,
    elem_props_template_set,
    elem_props_template_finalize,
    fbx_name_class,
    elem_data_single_char
)

Search for b"Shading" and replace elem_data_single_bool(model, b"Shading", True) with elem_data_single_char(model, b"Shading", b"\x01")

That's all!

Thanks for the instructions. I just tried it and it worked for me in Blender 4.1 Alpha.

AveryX01 commented 10 months ago

Here's a proper fix until addon is updated:

the fbx.py file mentioned above is what we need to change

go to line 35, add elem_data_single_char to the list so it looks like

from io_scene_fbx.fbx_utils import (
    FBX_MODELS_VERSION,
    FBX_POSE_BIND_VERSION,
    FBX_DEFORMER_SKIN_VERSION,
    FBX_DEFORMER_CLUSTER_VERSION,
    BLENDER_OBJECT_TYPES_MESHLIKE,
    units_convertor_iter,
    matrix4_to_array,
    get_fbx_uuid_from_key,
    get_blenderID_name,
    get_blender_bindpose_key,
    get_blender_anim_stack_key,
    get_blender_anim_layer_key,
    elem_empty,
    elem_data_single_bool,
    elem_data_single_int32,
    elem_data_single_int64,
    elem_data_single_float64,
    elem_data_single_string,
    elem_data_single_int32_array,
    elem_data_single_float64_array,
    elem_properties,
    elem_props_template_init,
    elem_props_template_set,
    elem_props_template_finalize,
    fbx_name_class,
    elem_data_single_char
)

Search for b"Shading" and replace elem_data_single_bool(model, b"Shading", True) with elem_data_single_char(model, b"Shading", b"\x01")

That's all!

I was having the same issue with the fully released version of blender 4.0 and this worked perfectly! Until the Send2UE devs manage to make a fix for this version of blender, this should definetely be the pinned fix. Thanks for figuring this out :)

vikista commented 9 months ago

Im like not getting any error but my exported mesh from blender to unreal is not updated when I press export. Even when I add new object to Export collection it is not exported. Any ide what can be with that?

Kingfelix23 commented 9 months ago

Well, it isn't working at all in 4.0 if you dont patch the file with the code AveryX01 provided. If you run earlier maybe the python setting isn't turned on, but it it isn't related to 4.0 you would probably be better of making a new thread

vikista commented 9 months ago

Well, it is a different version of Blender, mine is now 4.0.2.

so 9. 12. 2023 o 15:29 Kingfelix23 @.***> napísal(a):

Well, it isn't working at all in 4.0 if you dont patch the file with the code AveryX01 provided. If you run earlier maybe the python setting isn't turned on, but it it isn't related to 4.0 you would probably be better of making a new thread

— Reply to this email directly, view it on GitHub https://github.com/EpicGames/BlenderTools/issues/676#issuecomment-1848425421, or unsubscribe https://github.com/notifications/unsubscribe-auth/AR7345EC6PWAE2KIQSJ3VQLYIRYVJAVCNFSM6AAAAAA6ET5FV2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQNBYGQZDKNBSGE . You are receiving this because you commented.Message ID: @.***>

Kingfelix23 commented 9 months ago

Strange, it works for me, are you sure you put in the code correctly?

geekrelief commented 9 months ago

@JoshQuake Have you had any issues with normals? I tried exporting Suzanne and the normals are off on some faces. In this case turning on smooth shading looks correct. In other meshes I've edited sometimes flat works, but smooth does not. I tried the different geometry smoothing options for Send To Unreal, but nothing seems to help.

Suzanne flat has problems https://github.com/EpicGames/BlenderTools/assets/27040/5426664b-9120-4055-870c-157bfe505491

Some of the rounded corners have problems blender_OEDU5KXdRK

Rounded cube https://github.com/EpicGames/BlenderTools/assets/27040/d7a388f9-9ed0-4715-aa9b-421c373a3a40

JoshQuake commented 9 months ago

Im like not getting any error but my exported mesh from blender to unreal is not updated when I press export. Even when I add new object to Export collection it is not exported. Any ide what can be with that?

Did you miss the comma when adding elem_data_single_char to the list? Maybe open console and see if there is an error.

fbx_name_class,
elem_data_single_char
JoshQuake commented 9 months ago

@JoshQuake Have you had any issues with normals? I tried exporting Suzanne and the normals are off on some faces. In this case turning on smooth shading looks correct. In other meshes I've edited sometimes flat works, but smooth does not. I tried the different geometry smoothing options for Send To Unreal, but nothing seems to help.

Suzanne flat has problems https://github.com/EpicGames/BlenderTools/assets/27040/5426664b-9120-4055-870c-157bfe505491

Some of the rounded corners have problems blender_OEDU5KXdRK

Rounded cube https://github.com/EpicGames/BlenderTools/assets/27040/d7a388f9-9ed0-4715-aa9b-421c373a3a40

I couldn't tell ya. I only went into the newer fbx io plugin to see what values could have changed. Only difference I saw was how Shading True was being set and it solved the crash.

I tried exporting a flat suzanne and rounded cube but I do not get the same result as you.

Blender 4.0.1

image

geekrelief commented 9 months ago

ld have changed. Only difference I saw was how Shading True was being set and it solved the crash.

Thanks for double checking for me. I guess something is wrong with my build of Blender. I'll try 4.0.1. Thanks! Edit: Thanks to JoshQuake for telling me I was missing UV info on my character which led to the shading issues.

BiffKakan commented 9 months ago

Here's a proper fix until addon is updated:

the fbx.py file mentioned above is what we need to change

go to line 35, add elem_data_single_char to the list so it looks like

from io_scene_fbx.fbx_utils import (
    FBX_MODELS_VERSION,
    FBX_POSE_BIND_VERSION,
    FBX_DEFORMER_SKIN_VERSION,
    FBX_DEFORMER_CLUSTER_VERSION,
    BLENDER_OBJECT_TYPES_MESHLIKE,
    units_convertor_iter,
    matrix4_to_array,
    get_fbx_uuid_from_key,
    get_blenderID_name,
    get_blender_bindpose_key,
    get_blender_anim_stack_key,
    get_blender_anim_layer_key,
    elem_empty,
    elem_data_single_bool,
    elem_data_single_int32,
    elem_data_single_int64,
    elem_data_single_float64,
    elem_data_single_string,
    elem_data_single_int32_array,
    elem_data_single_float64_array,
    elem_properties,
    elem_props_template_init,
    elem_props_template_set,
    elem_props_template_finalize,
    fbx_name_class,
    elem_data_single_char
)

Search for b"Shading" and replace elem_data_single_bool(model, b"Shading", True) with elem_data_single_char(model, b"Shading", b"\x01")

That's all!

This solved the issue for me in Blender 4.0.1 Thanks!

maxpiepenbrink commented 9 months ago

Here's a proper fix until addon is updated:

the fbx.py file mentioned above is what we need to change

go to line 35, add elem_data_single_char to the list so it looks like

from io_scene_fbx.fbx_utils import (
    FBX_MODELS_VERSION,
    FBX_POSE_BIND_VERSION,
    FBX_DEFORMER_SKIN_VERSION,
    FBX_DEFORMER_CLUSTER_VERSION,
    BLENDER_OBJECT_TYPES_MESHLIKE,
    units_convertor_iter,
    matrix4_to_array,
    get_fbx_uuid_from_key,
    get_blenderID_name,
    get_blender_bindpose_key,
    get_blender_anim_stack_key,
    get_blender_anim_layer_key,
    elem_empty,
    elem_data_single_bool,
    elem_data_single_int32,
    elem_data_single_int64,
    elem_data_single_float64,
    elem_data_single_string,
    elem_data_single_int32_array,
    elem_data_single_float64_array,
    elem_properties,
    elem_props_template_init,
    elem_props_template_set,
    elem_props_template_finalize,
    fbx_name_class,
    elem_data_single_char
)

Search for b"Shading" and replace elem_data_single_bool(model, b"Shading", True) with elem_data_single_char(model, b"Shading", b"\x01")

That's all!

Chiming in to say this also got me up and running with Blender 4.x, thank you!

Fxnarji commented 8 months ago

Here's a proper fix until addon is updated:

the fbx.py file mentioned above is what we need to change

go to line 35, add elem_data_single_char to the list so it looks like

from io_scene_fbx.fbx_utils import (
    FBX_MODELS_VERSION,
    FBX_POSE_BIND_VERSION,
    FBX_DEFORMER_SKIN_VERSION,
    FBX_DEFORMER_CLUSTER_VERSION,
    BLENDER_OBJECT_TYPES_MESHLIKE,
    units_convertor_iter,
    matrix4_to_array,
    get_fbx_uuid_from_key,
    get_blenderID_name,
    get_blender_bindpose_key,
    get_blender_anim_stack_key,
    get_blender_anim_layer_key,
    elem_empty,
    elem_data_single_bool,
    elem_data_single_int32,
    elem_data_single_int64,
    elem_data_single_float64,
    elem_data_single_string,
    elem_data_single_int32_array,
    elem_data_single_float64_array,
    elem_properties,
    elem_props_template_init,
    elem_props_template_set,
    elem_props_template_finalize,
    fbx_name_class,
    elem_data_single_char
)

Search for b"Shading" and replace elem_data_single_bool(model, b"Shading", True) with elem_data_single_char(model, b"Shading", b"\x01")

That's all!

such a godsend!!

alexisrivera3d commented 8 months ago

Here's a proper fix until addon is updated:

the fbx.py file mentioned above is what we need to change

go to line 35, add elem_data_single_char to the list so it looks like

from io_scene_fbx.fbx_utils import (
    FBX_MODELS_VERSION,
    FBX_POSE_BIND_VERSION,
    FBX_DEFORMER_SKIN_VERSION,
    FBX_DEFORMER_CLUSTER_VERSION,
    BLENDER_OBJECT_TYPES_MESHLIKE,
    units_convertor_iter,
    matrix4_to_array,
    get_fbx_uuid_from_key,
    get_blenderID_name,
    get_blender_bindpose_key,
    get_blender_anim_stack_key,
    get_blender_anim_layer_key,
    elem_empty,
    elem_data_single_bool,
    elem_data_single_int32,
    elem_data_single_int64,
    elem_data_single_float64,
    elem_data_single_string,
    elem_data_single_int32_array,
    elem_data_single_float64_array,
    elem_properties,
    elem_props_template_init,
    elem_props_template_set,
    elem_props_template_finalize,
    fbx_name_class,
    elem_data_single_char
)

Search for b"Shading" and replace elem_data_single_bool(model, b"Shading", True) with elem_data_single_char(model, b"Shading", b"\x01")

That's all!

I can't find b"Shading" it says there is no text called like that, I am in fbx.py

ok-great commented 8 months ago

Total Novice here gang. I edited the fbx.py mentioned above, but still have the same exact problem when pushing to unreal Using Unreal 5.2.1 & Blender 4.0.2

Capture5

Am I missing something? Yes the comma is there fbx2

fbx3

ajcastany commented 8 months ago

Total Novice here gang. I edited the fbx.py mentioned above, but still have the same exact problem when pushing to unreal Using Unreal 5.2.1 & Blender 4.0.2

Capture5

Am I missing something? Yes the comma is there fbx2

fbx3

same here!

antonlicht commented 7 months ago

Total Novice here gang. I edited the fbx.py mentioned above, but still have the same exact problem when pushing to unreal Using Unreal 5.2.1 & Blender 4.0.2

Capture5

Am I missing something? Yes the comma is there fbx2

fbx3

I had to close and reopen blender. Maybe that helps you too.

motionforge commented 7 months ago

Thanks for the update! This does fix the issue for me.

FYI: For anyone interested - not all steps may be required, but I was just being cautious.

after 2 before 2 after Before
baliame commented 7 months ago

Can confirm, patching and then restarting Blender resolved the issue.

WindMill90 commented 7 months ago

Trid this and got the following error..

(just the last few lines of error)

File "D:\Blender Versions\blender-4.1.0-beta+v41.c6e229d3e470-windows.amd64-release\blender-4.1.0-beta+v41.c6e229d3e470-windows.amd64-release\4.1\python\Lib\re_parser.py", line 850, in _parse

raise source.error('global flags not at the start '

re.error: global flags not at the start of the expression at position 19

bruteforks commented 7 months ago

Fix worked perfectly. Thank you!

Attaching this because I thought someone would have posted a fixed version in comments, but I didn't see one. Enjoy

send2ue_2.4.3_editedwithfix.zip

WindMill90 commented 7 months ago

Okay the fix works in 4.1 alpha but not on 4.1 beta( throws errror I posted above) .. Still in 4.1 alpha exporting skeletal mesh works fine but exporting animation resulted in the following error..

Python: Traceback (most recent call last): File "C:\Users**\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\operators.py", line 71, in modal raise error File "C:\Users***\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\operators.py", line 61, in modal function(args, kwargs) File "C:\Users**\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\export.py", line 265, in export_animation export_file(properties) File "C:\Users**\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\export.py", line 166, in export_file export_fbx_file(file_path, export_settings) File "C:\Users**\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\export.py", line 83, in export_fbx_file io.fbx.export( File "C:\Users**\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\io\fbx.py", line 552, in export export_fbx_bin.save(self, bpy.context, keywords) File "D:\Blender Versions\blender-4.1.0-alpha+main.2b0448c91d7a-windows.amd64-release\4.1\scripts\addons\io_scene_fbx\export_fbx_bin.py", line 3628, in save ret = save_single(operator, context.scene, depsgraph, filepath, kwargs_mod) File "D:\Blender Versions\blender-4.1.0-alpha+main.2b0448c91d7a-windows.amd64-release\4.1\scripts\addons\io_scene_fbx\export_fbx_bin.py", line 3496, in save_single scene_data = fbx_data_from_scene(scene, depsgraph, settings) File "D:\Blender Versions\blender-4.1.0-alpha+main.2b0448c91d7a-windows.amd64-release\4.1\scripts\addons\io_scene_fbx\export_fbx_bin.py", line 2867, in fbx_data_from_scene animations, animated, frame_start, frame_end = fbx_animations(tmp_scdata) File "D:\Blender Versions\blender-4.1.0-alpha+main.2b0448c91d7a-windows.amd64-release\4.1\scripts\addons\io_scene_fbx\export_fbx_bin.py", line 2455, in fbx_animations fbx_animations_do(scene_data, strip, strip.frame_start, strip.frame_end, True, force_keep=True)) File "C:\Users***\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\io\fbx.py", line 160, in fbx_animations_do anim_loc.add_keyframe(real_currframe, loc location_multiple) AttributeError: 'AnimationCurveNodeWrapper' object has no attribute 'add_keyframe'. Did you mean: 'set_keyframes'?

maronh commented 7 months ago

Fix worked perfectly. Thank you!

Attaching this because I thought someone would have posted a fixed version in comments, but I didn't see one. Enjoy

send2ue_2.4.3_editedwithfix.zip

Thank you! I had no idea what to do lol

alexwhitlam commented 6 months ago

Hi... where can I find the documentation for these tools? Link dead.

Kingfelix23 commented 6 months ago

Dunno what happened to all the links, hopefully temporarily bug, but videos are still up:

https://www.youtube.com/playlist?list=PLZlv_N0_O1gZfQaN9qXynWllL7bzX8H3t

alexisrivera3d commented 6 months ago

Fix worked perfectly. Thank you!

Attaching this because I thought someone would have posted a fixed version in comments, but I didn't see one. Enjoy

send2ue_2.4.3_editedwithfix.zip

Working on Blender 4.0.1, thank you!

MalikuMane commented 6 months ago

Okay the fix works in 4.1 alpha but not on 4.1 beta( throws errror I posted above) .. Still in 4.1 alpha exporting skeletal mesh works fine but exporting animation resulted in the following error..

Python: Traceback (most recent call last): File "C:\Users_\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\operators.py", line 71, in modal raise error File "C:\Users_\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\operators.py", line 61, in modal function(args, **kwargs) File "C:\Users***\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\export.py", line 265, in export_animation exportfile(properties) File "C:\Users*\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\export.py", line 166, in export_file export_fbx_file(file_path, exportsettings) File "C:\Users***\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\export.py", line 83, in export_fbx_file io.fbx.export( File "C:\Users***\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\io\fbx.py", line 552, in export export_fbx_bin.save(self, bpy.context, _keywords) File "D:\Blender Versions\blender-4.1.0-alpha+main.2b0448c91d7a-windows.amd64-release\4.1\scripts\addons\io_scene_fbx\export_fbx_bin.py", line 3628, in save ret = save_single(operator, context.scene, depsgraph, filepath, kwargs_mod) File "D:\Blender Versions\blender-4.1.0-alpha+main.2b0448c91d7a-windows.amd64-release\4.1\scripts\addons\io_scene_fbx\export_fbx_bin.py", line 3496, in save_single scene_data = fbx_data_from_scene(scene, depsgraph, settings) File "D:\Blender Versions\blender-4.1.0-alpha+main.2b0448c91d7a-windows.amd64-release\4.1\scripts\addons\io_scene_fbx\export_fbx_bin.py", line 2867, in fbx_data_from_scene animations, animated, frame_start, frame_end = fbx_animations(tmp_scdata) File "D:\Blender Versions\blender-4.1.0-alpha+main.2b0448c91d7a-windows.amd64-release\4.1\scripts\addons\io_scene_fbx\export_fbx_bin.py", line 2455, in fbx_animations fbx_animations_do(scene_data, strip, strip.frame_start, strip.frame_end, True, forcekeep=True)) File "C:\Users***\AppData\Roaming\Blender Foundation\Blender\4.1\scripts\addons\send2ue\core\io\fbx.py", line 160, in fbx_animations_do anim_loc.add_keyframe(real_currframe, loc * location_multiple) AttributeError: 'AnimationCurveNodeWrapper' object has no attribute 'add_keyframe'. Did you mean: 'set_keyframes'?

Found this one is reported in, https://github.com/EpicGamesExt/BlenderTools/issues/696. fixed in https://github.com/EpicGamesExt/BlenderTools/pull/706.