We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add an option to keep placeholders for maya workfile templates. If turned off, it would delete all of the placeholders after importing the files.
keep placeholders
This seems to be already implemented for nuke templates:
No response
Current workaround i could find: Creating a script placeholder and running this after build:
from maya import cmds # Placeholders to delete del_nodes = ["Context_model_folder"] for node in del_nodes: cmds.delete(node) # Delete script placeholder cmds.delete(placeholder.scene_identifier)
Not the most ideal, requires manual input of the placeholders that have to be deleted.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Please describe the feature you have in mind and explain what the current shortcomings are?
Add an option to
keep placeholders
for maya workfile templates.If turned off, it would delete all of the placeholders after importing the files.
This seems to be already implemented for nuke templates:
![Image](https://private-user-images.githubusercontent.com/58472763/407791004-73eb666a-4b86-4db3-bb74-23a7a92a7605.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk5NzUwNTEsIm5iZiI6MTczOTk3NDc1MSwicGF0aCI6Ii81ODQ3Mjc2My80MDc3OTEwMDQtNzNlYjY2NmEtNGI4Ni00ZGIzLWJiNzQtMjNhN2E5MmE3NjA1LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE5VDE0MTkxMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWI5YmJhNDRmNTk3NDI5NzFlYzgwYWRhZWViOGJkNTQ2ZWE4NDFjMWQzN2M0OWUzN2RkMWFhZjI3MGI0ZDk0NmMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.RZyOT1QZE4KZkuXlOrQcOFtol6xpmewuTInbIYpaSnk)
Suggested implementation?
No response
Describe alternatives you've considered:
Current workaround i could find:
Creating a script placeholder and running this after build:
Not the most ideal, requires manual input of the placeholders that have to be deleted.
The text was updated successfully, but these errors were encountered: