Q.
The following script error occurred:
error CS0029: Cannot implicitly convert type ‘System.Type’ to ‘Type’
A.
This is because the code that uses the System.Type class in AnyPortrait was written as “Type” instead of explicitly writing “System.Type”.
In future updates, we will write the full package name for all possible normal classes in the code.
However, if a user creates a class with the same name as a class with a common name (e.g. Type, Text, Image) belonging to the System, this problem may occur in other code.
Therefore, if possible, it is recommended to avoid creating a class name with a common name, and if unavoidable, it is also recommended to use a separate Namespace.