Skip to content

Commit

Permalink
Merge pull request #205 from TheDuckCow/roadcontainer_unsnapping_issu…
Browse files Browse the repository at this point in the history
…e_4x_204

Fixed snapping issue
  • Loading branch information
TheDuckCow authored Dec 13, 2024
2 parents 0591a43 + 02aff9e commit 82774a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/road-generator/nodes/road_container.gd
Original file line number Diff line number Diff line change
Expand Up @@ -461,8 +461,8 @@ func get_connected_edges()->Array:
var target_cont: RoadContainer = get_node_or_null(edge_containers[idx])
# var is_scene =
# Find out if the target container is a scene
if target_cont and target_cont.filename:
print("%s %s is a scene %s" % [Time.get_ticks_msec(), target_cont.name, target_cont.filename])
if target_cont and target_cont.scene_file_path:
print("%s %s is a scene %s" % [Time.get_ticks_msec(), target_cont.name, target_cont.scene_file_path])
# else:
# print("target_cont is null")
if not target_cont:
Expand Down

0 comments on commit 82774a0

Please sign in to comment.