-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/multiassetpath #580
base: alpha-dev
Are you sure you want to change the base?
Feat/multiassetpath #580
Conversation
Only prints arguments and help so far.
util imports numpy, which conflicts with util and platform. Renaming to utils and platforms.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great - I am only unsure about patterns based on absolute paths, see my comments.
Thanks for the review, I addressed your comments and fixed the absolute path logic. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great thanks! Will merge after resolution of #572
@KRiedmiller I just realized, that we need this not only for |
python/helios/scene.py
Outdated
) | ||
) | ||
|
||
return [cls._from_cpp(part) for part in _cpp_parts] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couldn't we just implement this via [ScenePart.from_obj(f) for f in obj_files]
. THat would not duplicate the underlying logic.
Parse asset paths containing wildcards. This is useful for loading multiple
.obj
files at once into multiple SceneParts.Implements a new MultiAssetPath type. Only functions which want to use this feature need to switch from the unchanged AssetPath to the new MultiAssetPath.
This PR is based on the PR #572 branch
Fixes #557