Reputation: 559
I used "export-world" to export the state of my model. But when I import my world from "import-world", I obtain this error message (I use the time Extension):
Thanks very much for your help.
Upvotes: 2
Views: 89
Reputation: 30498
Looks like the extension you're using doesn't support import-world
for the custom data type(s) it defines.
It's something you'd need to take up with the extension's author, or try to hack the extension yourself.
And/or, you could you try to work around it as follows:
export-world
, convert all of the custom objects to their equivalent strings, replacing them in place.import-world
, reverse the process, converting the strings back to the custom data type.Upvotes: 2