Эх сурвалжийг харах

Fixed - Dragging files from windows explorer into the Hierarchy Frame caused the engine to crash.

raheelx 10 жил өмнө
parent
commit
0c2dd945f8

+ 3 - 0
Script/AtomicEditor/ui/frames/HierarchyFrame.ts

@@ -331,6 +331,9 @@ class HierarchyFrame extends Atomic.UIWidget {
 
     handleDragEnded(ev: Atomic.DragEndedEvent) {
 
+        if (!ev.dragObject.object)
+            return;
+
         var typeName = ev.dragObject.object.typeName;
 
         var dropNode: Atomic.Node = this.scene.getNode(Number(this.hierList.hoverItemID));