Skip to content
Nick Pruehs edited this page Mar 12, 2017 · 4 revisions

"The value type ... of the map type ... is not supported."

Summary

  • Name: MapValueTypeNotSupported
  • Code: TO0106
  • Category: Model Integrity
  • Severity: Error
  • Since: 0.5

Each custom map type must specify exactly one value type for items it can hold, either a built-in type or a custom type.

Currently, maps using vectors as values are not supported.

Example

The following steps generate this type of error:

  1. Create a new custom map type using any vector type as value type.

How To Fix

  • Change the value type of the map to a non-vector type.