@colijnit/configuratorcore 262.1.3 → 262.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2401,10 +2401,12 @@ class SelectionUtils {
|
|
|
2401
2401
|
}
|
|
2402
2402
|
if (!connected && placedAdjustables.length > 1) {
|
|
2403
2403
|
DebugUtils.log(`No connection found for: ${adjustable ? adjustable.name : adjustables[i].decoNode.gameObjectName}`);
|
|
2404
|
-
result.push(`No connection found for: ${adjustable ? adjustable.name : adjustables[i].decoNode.gameObjectName}`);
|
|
2405
2404
|
}
|
|
2406
2405
|
}
|
|
2407
2406
|
}
|
|
2407
|
+
else {
|
|
2408
|
+
result.push('NO_ADJUSTABLES', 'NO_ADJUSTABLES_INFO');
|
|
2409
|
+
}
|
|
2408
2410
|
return result;
|
|
2409
2411
|
}
|
|
2410
2412
|
static LinkSelectionsAndDecos(selections, decos, variations) {
|
|
@@ -2629,7 +2631,7 @@ class SelectionUtils {
|
|
|
2629
2631
|
return name;
|
|
2630
2632
|
}
|
|
2631
2633
|
static IsMoveableObject(obj) {
|
|
2632
|
-
return obj.userData && obj.userData.selection && obj.userData.selection.hdecoPositioning ===
|
|
2634
|
+
return obj.userData && obj.userData.selection && obj.userData.selection.hdecoPositioning === 'V';
|
|
2633
2635
|
}
|
|
2634
2636
|
static AddElementOnConnector(currentItem, element, connector, connectedNodeId) {
|
|
2635
2637
|
// TODO this should do something, but not sure what
|