mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
Fix various typos
* Add TODO notes for typos that should be fixed for 5.0 Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
This commit is contained in:
@@ -458,7 +458,7 @@ float GraphEditArranger::_calculate_threshold(const StringName &p_v, const Strin
|
||||
Vector2 pos_from = gnode_from->get_output_port_position(incoming->from_port) * graph_edit->get_zoom();
|
||||
Vector2 pos_to = gnode_to->get_input_port_position(incoming->to_port) * graph_edit->get_zoom();
|
||||
|
||||
// If connected block node is selected, calculate thershold or add current block to list.
|
||||
// If connected block node is selected, calculate threshold or add current block to list.
|
||||
if (gnode_from->is_selected()) {
|
||||
Vector2 connected_block_pos = r_node_positions[r_root[incoming->from_node]];
|
||||
if (connected_block_pos.y != FLT_MAX) {
|
||||
@@ -489,7 +489,7 @@ float GraphEditArranger::_calculate_threshold(const StringName &p_v, const Strin
|
||||
Vector2 pos_from = gnode_from->get_output_port_position(outgoing->from_port) * graph_edit->get_zoom();
|
||||
Vector2 pos_to = gnode_to->get_input_port_position(outgoing->to_port) * graph_edit->get_zoom();
|
||||
|
||||
// If connected block node is selected, calculate thershold or add current block to list.
|
||||
// If connected block node is selected, calculate threshold or add current block to list.
|
||||
if (gnode_to->is_selected()) {
|
||||
Vector2 connected_block_pos = r_node_positions[r_root[outgoing->to_node]];
|
||||
if (connected_block_pos.y != FLT_MAX) {
|
||||
|
||||
Reference in New Issue
Block a user