-
-
Notifications
You must be signed in to change notification settings - Fork 184
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
Get python component module via bpy #793
Comments
panzergame
added a commit
that referenced
this issue
Aug 19, 2018
Previously the components name was exposed by a property non-editable which was rendered in light gray and the component box was always expanded. Also the module name was inaccesible from bpy. The last issue is simply solved by exposing the "module" string to RNA. The name the property is replaced by a label in the UI. To expanse the box the property "show_expanded" similar to the logic brick is implemented, when this property is True, an inner box is generated conatining all the properties. Fix issue #793.
panzergame
added a commit
that referenced
this issue
Aug 19, 2018
Previously the components name was exposed by a property non-editable which was rendered in light gray and the component box was always expanded. Also the module name was inaccesible from bpy. The last issue is simply solved by exposing the "module" string to RNA. The name property is replaced by a label in the UI. To expanse the box the property "show_expanded" similar to the logic brick is implemented, when this property is True, an inner box is generated containing all the properties. Fix issue #793.
panzergame
added a commit
that referenced
this issue
Aug 19, 2018
Previously the components name was exposed by a property non-editable which was rendered in light gray and the component box was always expanded. Also the module name was inaccesible from bpy. The last issue is simply solved by exposing the "module" string to RNA. The name property is replaced by a label in the UI. To expanse the box the property "show_expanded" similar to the logic brick is implemented, when this property is True, an inner box is generated containing all the properties. Fix issue #793.
panzergame
added a commit
that referenced
this issue
Sep 1, 2018
Previously the components name was exposed by a property non-editable which was rendered in light gray and the component box was always expanded. Also the module name was inaccesible from bpy. The last issue is simply solved by exposing the "module" string to RNA. The name property is replaced by a label in the UI. To expanse the box the property "show_expanded" similar to the logic brick is implemented, when this property is True, an inner box is generated containing all the properties. Fix issue #793.
Thank you :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm working on an addon that needs to access the python component's "path". There is an attribute called "name", but this only returns the component/class name of the component, not the module (in module.ComponentName).
Is there a way to get this? If not, please see this issue as a feature request, it would be great to have access to the full path :)
The text was updated successfully, but these errors were encountered: