diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-29 13:53:34 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-29 13:53:34 +0100 |
commit | 1cc9190c70ac1a1b0e460353f291c1c661fafc9e (patch) | |
tree | 493cbc68cc45172d20cd069434dff9595281bf41 /doc/classes/NodePath.xml | |
parent | 05b44f3ef285d518da61c0f3a307c43c41b5ec8e (diff) | |
parent | cd221c1816fe1ffa9c0e730667ade2940dd14632 (diff) | |
download | redot-engine-1cc9190c70ac1a1b0e460353f291c1c661fafc9e.tar.gz |
Merge pull request #81822 from nlupugla/nodepath-slice
Add `NodePath::slice` method
Diffstat (limited to 'doc/classes/NodePath.xml')
-rw-r--r-- | doc/classes/NodePath.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/classes/NodePath.xml b/doc/classes/NodePath.xml index fa6f158b6e..6e0799e796 100644 --- a/doc/classes/NodePath.xml +++ b/doc/classes/NodePath.xml @@ -199,6 +199,16 @@ Returns [code]true[/code] if the node path has been constructed from an empty [String] ([code]""[/code]). </description> </method> + <method name="slice" qualifiers="const"> + <return type="NodePath" /> + <param index="0" name="begin" type="int" /> + <param index="1" name="end" type="int" default="2147483647" /> + <description> + Returns the slice of the [NodePath], from [param begin] (inclusive) to [param end] (exclusive), as a new [NodePath]. + The absolute value of [param begin] and [param end] will be clamped to the sum of [method get_name_count] and [method get_subname_count], so the default value for [param end] makes it slice to the end of the [NodePath] by default (i.e. [code]path.slice(1)[/code] is a shorthand for [code]path.slice(1, path.get_name_count() + path.get_subname_count())[/code]). + If either [param begin] or [param end] are negative, they will be relative to the end of the [NodePath] (i.e. [code]path.slice(0, -2)[/code] is a shorthand for [code]path.slice(0, path.get_name_count() + path.get_subname_count() - 2)[/code]). + </description> + </method> </methods> <operators> <operator name="operator !="> |