diff options
author | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2020-04-09 17:42:58 +0200 |
---|---|---|
committer | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2020-04-09 22:09:05 +0200 |
commit | 3f19b5e0b30517d307ed8a2a911a1886c6c40186 (patch) | |
tree | 55b6e47e1aedcb8e75200b7691ae78a5b0675820 /doc/classes | |
parent | 4f5ad0734b588f223aa78193b60620d7490e633b (diff) | |
download | redot-engine-3f19b5e0b30517d307ed8a2a911a1886c6c40186.tar.gz |
Clarify documentation and indicate that rect_clip_content affects only CanvasItem based nodes.
Resolves #37683
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Control.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Control.xml b/doc/classes/Control.xml index 85a75fda37..0c8d42021a 100644 --- a/doc/classes/Control.xml +++ b/doc/classes/Control.xml @@ -838,7 +838,7 @@ Controls whether the control will be able to receive mouse button input events through [method _gui_input] and how these events should be handled. Also controls whether the control can receive the [signal mouse_entered], and [signal mouse_exited] signals. See the constants to learn what each does. </member> <member name="rect_clip_content" type="bool" setter="set_clip_contents" getter="is_clipping_contents" default="false"> - Enables whether rendering of children should be clipped to this control's rectangle. If [code]true[/code], parts of a child which would be visibly outside of this control's rectangle will not be rendered. + Enables whether rendering of [CanvasItem] based children should be clipped to this control's rectangle. If [code]true[/code], parts of a child which would be visibly outside of this control's rectangle will not be rendered. </member> <member name="rect_global_position" type="Vector2" setter="_set_global_position" getter="get_global_position"> The node's global position, relative to the world (usually to the top-left corner of the window). |