diff --git a/doc/classes/Node2D.xml b/doc/classes/Node2D.xml index 2a8e26af531..3ce51e83d6a 100644 --- a/doc/classes/Node2D.xml +++ b/doc/classes/Node2D.xml @@ -49,20 +49,20 @@ [param point] should not be the same as the node's position, otherwise the node always looks to the right. - + - Applies a local translation on the node's X axis based on the [method Node._process]'s [param delta]. If [param scaled] is [code]false[/code], normalizes the movement. + Applies a local translation on the node's X axis with the amount specified in [param delta]. If [param scaled] is [code]false[/code], normalizes the movement to occur independently of the node's [member scale]. - + - Applies a local translation on the node's Y axis based on the [method Node._process]'s [param delta]. If [param scaled] is [code]false[/code], normalizes the movement. + Applies a local translation on the node's Y axis with the amount specified in [param delta]. If [param scaled] is [code]false[/code], normalizes the movement to occur independently of the node's [member scale]. diff --git a/doc/classes/Node3D.xml b/doc/classes/Node3D.xml index d1dadc97a48..88fc49c529c 100644 --- a/doc/classes/Node3D.xml +++ b/doc/classes/Node3D.xml @@ -275,7 +275,7 @@ [b]Note:[/b] Despite the naming convention, this operation is [b]not[/b] calculated in parent space for compatibility reasons. To translate in parent space, add [param offset] to the [member position] ([code]node_3d.position += offset[/code]). - +