NightmareXIV / ECommons

A library for Dalamud
MIT License
34 stars 40 forks source link

Misc utilities #66

Closed Jaksuhn closed 6 days ago

Limiana commented 6 days ago

Thank you! If possible, could you please add some docs on added elements briefly describing what they do and how to use them?

Jaksuhn commented 6 days ago

Thank you! If possible, could you please add some docs on added elements briefly describing what they do and how to use them?

Added doc strings for everything. If any of them are still unclear (probably the excel combos lol) let me know

Limiana commented 6 days ago

Thank you!

Limiana commented 6 days ago

Gets a node given a chain of node IDs

I personally don't understand much, is there any example of how it can be used?

Jaksuhn commented 6 days ago

Gets a node given a chain of node IDs

I personally don't understand much, is there any example of how it can be used?

I use it semi-frequently when needing to iterate through list sub-nodes.

Example: The pattern for the text node in each tab of the FC chest is 1, 9, 9 + idx, 9. The text node isn't accessible from root via an ID since it's part of the sub-UldManager, so this method just makes it easier to access in those instances.