Fix typo.

This commit is contained in:
Relintai 2022-01-27 17:04:04 +01:00
parent 20276b77c7
commit e75b44089c
2 changed files with 3 additions and 3 deletions

View File

@ -165,7 +165,7 @@ func _on_split_pressed():
_plugin.split() _plugin.split()
func _on_connect_to_first_selected_pressed(): func _on_connect_to_first_selected_pressed():
_plugin.onnect_to_first_selected() _plugin.connect_to_first_selected()
func _on_connect_to_avg_pressed(): func _on_connect_to_avg_pressed():
_plugin.connect_to_avg() _plugin.connect_to_avg()

View File

@ -205,9 +205,9 @@ func generate_tangents():
if current_mesh_data_instance && current_mesh_data_instance.gizmo: if current_mesh_data_instance && current_mesh_data_instance.gizmo:
current_mesh_data_instance.gizmo.generate_tangents() current_mesh_data_instance.gizmo.generate_tangents()
func onnect_to_first_selected(): func connect_to_first_selected():
if current_mesh_data_instance && current_mesh_data_instance.gizmo: if current_mesh_data_instance && current_mesh_data_instance.gizmo:
current_mesh_data_instance.gizmo.onnect_to_first_selected() current_mesh_data_instance.gizmo.connect_to_first_selected()
func connect_to_avg(): func connect_to_avg():
if current_mesh_data_instance && current_mesh_data_instance.gizmo: if current_mesh_data_instance && current_mesh_data_instance.gizmo: