diff --git a/source/W3MayaAnimUtil.cpp b/source/W3MayaAnimUtil.cpp index 4403fb6..e9bade7 100644 --- a/source/W3MayaAnimUtil.cpp +++ b/source/W3MayaAnimUtil.cpp @@ -1295,6 +1295,9 @@ void MAU::onChanged_eventContentRow(int newRow) { eventsUpdateContentData(map, ui->checkEventsVarEnumType, "enumType", "CName"); eventsUpdateContentData(map, ui->checkEventsVarEnumValue, "enumValue", "Int32"); + if ( !map.isEmpty() ) { + addLog(QString("[WARNING] SEnumVariant %1, the following vars are unknown for this type: %2").arg(entryName).arg(map.keys().join("; ")), logWarning); + } } else if (entryType == "CPreAttackEventData") { ui->stackEventsValue->setCurrentIndex(6); QHash map = value.value< QHash >(); @@ -1314,6 +1317,9 @@ void MAU::onChanged_eventContentRow(int newRow) { eventsUpdateContentData(map, ui->checkEventsVarAttackSwingDir, "swingDir", "EAttackSwingDirection"); eventsUpdateContentData(map, ui->checkEventsVarAttackSound, "soundAttackType", "CName"); eventsUpdateContentData(map, ui->checkEventsVarAttackCanBeDodged, "canBeDodged", "Bool"); + if ( !map.isEmpty() ) { + addLog(QString("[WARNING] CPreAttackEventData %1, the following vars are unknown for this type: %2").arg(entryName).arg(map.keys().join("; ")), logWarning); + } } m_eventsAcceptSignals = true;