Returns the modifier's properties.
Last updated 1 month ago
properties() → APIList[MethodProps]
properties() →
APIList
[
MethodProps
]
from glider import * def query(): # Fetch a list of modifiers modifiers = Modifiers().exec(1) # Retrieve the properties of the first modifier properties = modifiers[0].properties() for prop in properties: print(prop) return modifiers