Grid Size node title

This commit is contained in:
barsdeveloper
2023-09-25 00:02:38 +02:00
parent 25a445ec0e
commit 354944d5c6
5 changed files with 27 additions and 5 deletions

View File

@@ -61,7 +61,7 @@ export default class IEntity extends Serializable {
let attribute = attributes[attributeName]
if (!suppressWarns && value !== undefined) {
if (!(attributeName in attributes)) {
if (!(attributeName in attributes) && !attributeName.startsWith("#SubObject")) {
const typeName = value instanceof Array ? `[${value[0]?.constructor.name}]` : value.constructor.name
console.warn(
`UEBlueprint: Attribute ${attributeName} (of type ${typeName}) in the serialized data is not `