Home Website Youtube GitHub

Sdk_io export issue

Hi

When i try to export the driven keys from a blendShape node I’m getting this error. I tried doing this for object to object driven key and even that is giving the same error.

Also can some one suggest me a method to connect with blendShapes instead of driven keys. I tried Rbf manager but it wont import once the poses are set for the blendshapes during the post custom scripts.

Thanks

Hey niteshms04,

The export command expects the first argument to be a list of nodes to export.
If you use [sel] instead of sel as an argument, it should work :slight_smile:.

1 Like

Hey

when I do that i.e [sel], I’m getting a list index out of range error

Hey,

Could you try again with Stack trace turned on in the script editor? It’s under History.
Might give some more information. Otherwise if we could have an example scene to debug, would be very helpful :slight_smile:

Cheers,

1 Like

Hi,

Sorry for the late response but this issue happens only when its a blendShape node. For every thing else it works absolutely fine.

Thanks for helping me out

2 Likes

No problem,

Would be a nice bug report to keep track of on Github.

I’ll have to try this out myself to see if I can reproduce it and add the bug report :slight_smile:.

2 Likes

I am digging up this necro thread because I ran into the same issue when trying to export my SDK setup for blendshapes.

To fix this you can add the ‘blendShape’ to the exported types:

# sdk_io, line 118
connectionTypes = [SDK_UTILITY_TYPE[0], "transform", "blendShape"]
1 Like

I updated the sdk_io file to include:

  • blendshapes
  • skip conversion nodes if needed
  • sdks connected to shapes instead of transforms

Since I am just learning how to fork and contribute to open-source projects, here’s my version in the meantime for anyone searching.

Maybe @Miquel wants a look as well - I’ll make a PR next month once I learn how to contribute to open source properly :smiley:

1 Like

Thanks @Chris_NtBerg
I will check this ASAP. It looks a super useful addition :smiley: