-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
questionFurther information is requestedFurther information is requested
Description
Is the current protocol on update_states good?
Blender-Soft-Rod/src/bsr/geometry/protocol.py
Lines 51 to 52 in 96190a1
| def update_states(self, *args: Any) -> None: | |
| """Updates the mesh object with the given states.""" |
Will it be better to change *args to **kwargs? Since the states might be different for different objects?
I have the following protocol on update_material:
Blender-Soft-Rod/src/bsr/geometry/protocol.py
Lines 55 to 56 in 051ddbe
| def update_material(self, **kwargs: dict[str, Any]) -> None: | |
| """Updates the material of the mesh object.""" |
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested