Nell
Nell

Reputation: 559

Error message with "import-world"

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):enter image description here

Thanks very much for your help.

Upvotes: 2

Views: 89

Answers (1)

Seth Tisue
Seth Tisue

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:

  • If the extension doesn't provide them, define your own procedures for converting the custom data type to a string and back.
  • Before doing export-world, convert all of the custom objects to their equivalent strings, replacing them in place.
  • After doing import-world, reverse the process, converting the strings back to the custom data type.

Upvotes: 2

Related Questions