Check if the modified component exist before accessing the prop

This commit is contained in:
Manuel Martin 2021-10-19 13:22:45 +02:00
Родитель dcac17be62
Коммит d6874a521e
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -463,7 +463,10 @@ export default function EditorNodeMixin(Object3DClass) {
}
optionalPropertyExportValue(componentName, propName) {
return this.modifiedProperties[componentName][propName] ? this[propName] : undefined;
if (this.modifiedProperties[componentName]) {
return this.modifiedProperties[componentName][propName] ? this[propName] : undefined;
}
return undefined;
}
set modifiedProperties(object) {