Skip to content
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

Convert operators to use passed in properties #691

Open
BradyAJohnston opened this issue Dec 16, 2024 · 0 comments
Open

Convert operators to use passed in properties #691

BradyAJohnston opened this issue Dec 16, 2024 · 0 comments

Comments

@BradyAJohnston
Copy link
Owner

Operators currently access the scene properties to execute. This should be changed so they are passed in:

# current
bpy.context.scene.MN_import_wwpdb_code = '4OZS'
bpy.ops.mn.impmort_wwpdb()

# what should be done
bpy.ops.mn.import_wwpdb(code='4OZS')

# in the ui the code is passed in from the scene property value
# but the value can be set if we call the operator elsewhere
op = layout.operator('mn.import_wwpdb')
op.code = context.scene.MN_import_wwpdb_code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant