Skip to content

Commit 952498a

Browse files
Fix crash when importing a model in a 3D layer
1 parent bbc93e3 commit 952498a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Tools/3DTools/3DShapeEdit.gd

+1-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ func _set_node_values(to_edit: Object, properties: Dictionary) -> void:
367367
if property_path.ends_with("v2"):
368368
property_path = property_path.replace("v2", "")
369369
var value = to_edit.get_indexed(property_path)
370-
if value == null:
370+
if not is_instance_valid(value):
371371
continue
372372
if "scale" in prop:
373373
value *= 100

src/Tools/3DTools/3DShapeEdit.tscn

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[ext_resource type="PackedScene" uid="uid://ctfgfelg0sho8" path="res://src/Tools/BaseTool.tscn" id="1"]
44
[ext_resource type="Script" path="res://src/Tools/3DTools/3DShapeEdit.gd" id="2"]
5-
[ext_resource type="PackedScene" path="res://src/UI/Nodes/Sliders/ValueSliderV2.tscn" id="3"]
5+
[ext_resource type="PackedScene" uid="uid://bbnqcxa20a5a5" path="res://src/UI/Nodes/Sliders/ValueSliderV2.tscn" id="3"]
66
[ext_resource type="PackedScene" uid="uid://yjhp0ssng2mp" path="res://src/UI/Nodes/Sliders/ValueSlider.tscn" id="4"]
77
[ext_resource type="Script" path="res://src/UI/Nodes/Sliders/ValueSlider.gd" id="5"]
88
[ext_resource type="Script" path="res://src/UI/Nodes/CollapsibleContainer.gd" id="6"]
@@ -521,7 +521,6 @@ unique_name_in_owner = true
521521
layout_mode = 2
522522
size_flags_horizontal = 3
523523
mouse_default_cursor_shape = 2
524-
selected = 0
525524

526525
[node name="MeshPixelSizeLabel" type="Label" parent="ObjectOptions/MeshOptions/GridContainer" index="24"]
527526
layout_mode = 2

0 commit comments

Comments
 (0)