Add support for array of Visual Script objects

This commit is contained in:
Wojtek Figat
2022-05-01 20:42:05 +02:00
parent c5bfdc66a4
commit 74b23d0e00
20 changed files with 221 additions and 62 deletions

View File

@@ -375,9 +375,9 @@ namespace FlaxEditor.Content
}
/// <inheritdoc />
public bool ImplementInterface(ScriptType c)
public bool HasInterface(ScriptType c)
{
return BaseType.ImplementInterface(c);
return BaseType.HasInterface(c);
}
/// <inheritdoc />