diff --git a/doc/classes/NavigationAgent2D.xml b/doc/classes/NavigationAgent2D.xml index 74c776e73db..83e2767b6e8 100644 --- a/doc/classes/NavigationAgent2D.xml +++ b/doc/classes/NavigationAgent2D.xml @@ -109,7 +109,7 @@ - If [code]true[/code] the agent is registered for an RVO avoidance callback on the [NavigationServer2D]. When [method NavigationAgent2D.set_velocity] is used and the processing is completed a [code]safe_velocity[/code] Vector2 is received with a signal connection to [signal velocity_computed]. Avoidance processing with many registered agents has a significant performance cost and should only be enabled on agents that currently require it. + If [code]true[/code] the agent is registered for an RVO avoidance callback on the [NavigationServer2D]. When [method set_velocity] is used and the processing is completed a [code]safe_velocity[/code] Vector2 is received with a signal connection to [signal velocity_computed]. Avoidance processing with many registered agents has a significant performance cost and should only be enabled on agents that currently require it. If [code]true[/code] shows debug visuals for this agent. @@ -193,7 +193,7 @@ - Notifies when the collision avoidance velocity is calculated. Emitted by [method set_velocity]. Only emitted when [member avoidance_enabled] is true. + Notifies when the collision avoidance velocity is calculated. Emitted at the end of the physics frame in which [method set_velocity] is called. Only emitted when [member avoidance_enabled] is true. diff --git a/doc/classes/NavigationAgent3D.xml b/doc/classes/NavigationAgent3D.xml index 7d0ca1c160b..8630801f3e8 100644 --- a/doc/classes/NavigationAgent3D.xml +++ b/doc/classes/NavigationAgent3D.xml @@ -112,7 +112,7 @@ The NavigationAgent height offset is subtracted from the y-axis value of any vector path position for this NavigationAgent. The NavigationAgent height offset does not change or influence the navigation mesh or pathfinding query result. Additional navigation maps that use regions with navigation meshes that the developer baked with appropriate agent radius or height values are required to support different-sized agents. - If [code]true[/code] the agent is registered for an RVO avoidance callback on the [NavigationServer3D]. When [method NavigationAgent3D.set_velocity] is used and the processing is completed a [code]safe_velocity[/code] Vector3 is received with a signal connection to [signal velocity_computed]. Avoidance processing with many registered agents has a significant performance cost and should only be enabled on agents that currently require it. + If [code]true[/code] the agent is registered for an RVO avoidance callback on the [NavigationServer3D]. When [method set_velocity] is used and the processing is completed a [code]safe_velocity[/code] Vector3 is received with a signal connection to [signal velocity_computed]. Avoidance processing with many registered agents has a significant performance cost and should only be enabled on agents that currently require it. If [code]true[/code] shows debug visuals for this agent. @@ -136,7 +136,7 @@ The maximum speed that an agent can move. - A bitfield determining what navigation layers of navigation regions this NavigationAgent will use to calculate path. Changing it runtime will clear current navigation path and generate new one, according to new navigation layers. + A bitfield determining what navigation layers of navigation regions this agent will use to calculate path. Changing it runtime will clear current navigation path and generate new one, according to new navigation layers. The distance to search for other agents. @@ -196,7 +196,7 @@ - Notifies when the collision avoidance velocity is calculated. Emitted by [method set_velocity]. Only emitted when [member avoidance_enabled] is true. + Notifies when the collision avoidance velocity is calculated. Emitted at the end of the physics frame in which [method set_velocity] is called. Only emitted when [member avoidance_enabled] is true. diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml index 03248b7dcb0..fd4172f88a7 100644 --- a/doc/classes/RenderingServer.xml +++ b/doc/classes/RenderingServer.xml @@ -587,7 +587,7 @@ - Creates a light occluder and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]canvas_light_ocluder_*[/code] RenderingServer functions. + Creates a light occluder and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]canvas_light_occluder_*[/code] RenderingServer functions. Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. diff --git a/doc/classes/TextServer.xml b/doc/classes/TextServer.xml index df7e741f71b..4f387853699 100644 --- a/doc/classes/TextServer.xml +++ b/doc/classes/TextServer.xml @@ -1163,7 +1163,7 @@ - Adjusts text with to fit to specified width, returns new text width. + Adjusts text width to fit to specified width, returns new text width. diff --git a/doc/classes/Vector2.xml b/doc/classes/Vector2.xml index 7be743fb918..35ccac120fe 100644 --- a/doc/classes/Vector2.xml +++ b/doc/classes/Vector2.xml @@ -226,7 +226,7 @@ - Returns [code]true[/code] if the vector is normalized, [code]false[/code] otherwise. + Returns [code]true[/code] if the vector is normalized, i.e. its length is approximately equal to 1. diff --git a/doc/classes/Vector3.xml b/doc/classes/Vector3.xml index 79d25b8091a..d55e31f7b7a 100644 --- a/doc/classes/Vector3.xml +++ b/doc/classes/Vector3.xml @@ -194,7 +194,7 @@ - Returns [code]true[/code] if the vector is [method normalized], [code]false[/code] otherwise. + Returns [code]true[/code] if the vector is normalized, i.e. its length is approximately equal to 1. diff --git a/doc/classes/Vector4.xml b/doc/classes/Vector4.xml index 74ae115421b..ea00ddaae12 100644 --- a/doc/classes/Vector4.xml +++ b/doc/classes/Vector4.xml @@ -145,7 +145,7 @@ - Returns [code]true[/code] if the vector is normalized, i.e. its length is equal to 1. + Returns [code]true[/code] if the vector is normalized, i.e. its length is approximately equal to 1.