Is there any documentation on how to use the LoaderPlugin’s options class attribute
Here is the only information about the LoaderPlugin that I can find.
I’m a bit confuse about how to use it. From reading some of the maya code, I was able to create this
options = [
qargparse.Boolean(
"fix_missing_elements",
label="Fix missing elements",
default=True,
help="Fix the missing elements in the harmony import folder"
)
]
However, it seem like the fix_missing_element is not parsed correctly.
If the option is ticked, then the options return an empty dictionary {}. On the other hand, if the option is unticked, the options return a dictionary {"fix_missing_elements": True}
As a result, I can’t seem to get the correct state of the check box.