Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions release/scripts/mgear/shifter/component/guide.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,14 +274,18 @@ def postDraw(self):
return

def get_divisions(self):
"""Get the divisions to sample a Fcurve parameter definition.
"""Get the divisions to sample a FCurve parameter definition.

Note:
REIMPLEMENT. This method should only if the component is using
Fcurve paramDef.
REIMPLEMENT. This method must be implemented if the component is using an
FCurve paramDef.

"""
return
errmsg = (
f"'{self.compType}' has FCurve parameters but is missing a required "
f"`get_divisions` implementation in the `Guide` class."
)
raise NotImplementedError(errmsg)

def getMergedValues(self):
"""Get merged component values combining local with blueprint settings.
Expand Down
Loading