TO0102 - npruehs/tome-editor GitHub Wiki

"The item type ... of the list type ... is not supported."

Summary

  • Name: ListItemTypeNotSupported
  • Code: TO0102
  • Category: Model Integrity
  • Severity: Error
  • Since: 0.5

Each custom list type must specify exactly one type of item it can hold, either a built-in type or a custom type.

Currently, lists of vectors are not supported.

Example

The following steps generate this type of error:

  1. Create a new custom list type using any vector type as item type.

How To Fix

  • Change the item type of the list to a non-vector type.