Today, there's a boolean from_parent on the transform3d componet. This has to be refactored into its own component as part of #6831
Suggestion by @roym899 is to make this new component more expressive by making it an enum:
enum TransformRelation {
ParentFromChild(default),
ChildFromParent,
}
Furthermore, at least in Python we should also offer ChildToParent and ParentToChild as valid variants since this is what a lot of people have in their code. We would however map that to above TransformRelation.
Today, there's a boolean
from_parenton the transform3d componet. This has to be refactored into its own component as part of #6831Suggestion by @roym899 is to make this new component more expressive by making it an enum:
Furthermore, at least in Python we should also offer
ChildToParentandParentToChildas valid variants since this is what a lot of people have in their code. We would however map that to aboveTransformRelation.