How to add to / set follow group from code? #137
-
In the event I have a dynamic group of nodes I want followed, can I setup the follow group in code? An example of this would be very helpful. The indirection through Properties makes it difficult to understand (for me, at least). |
Beta Was this translation helpful? Give feedback.
Answered by
ramokz
Nov 19, 2023
Replies: 1 comment
-
You can indeed! It's possible to do it either for an individual node or for an array of nodes via setter method. # For individual nodes
pcam.append_follow_group_node(node)
# For an array of nodes
pcam.append_follow_group_node_array(node_array) The documentation, with additional setter methods, can be found on this page. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mghicks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can indeed!
It's possible to do it either for an individual node or for an array of nodes via setter method.
The documentation, with additional setter methods, can be found on this page.