This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // How do we link the preset browser and a tool plugin? | |
| // | |
| // We need to trigger a call to tmod_Evaluate when a profile is selected or changed | |
| // in a similar way to what happens when a dynamic attribute value is changed. | |
| // | |
| // Should work like poly.bevel; e.g. when profile selection is changed we see, | |
| // 'tool.setAttr content.preset path /home/neil/...' | |
| // | |
| // What I have so far... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // This is not a complete implementation, but rather code snippets. | |
| // Tool packet offsets are defined elsewhere. | |
| // | |
| CLxUser_VectorStack vector_stack (tool_vector); | |
| if (! vector_stack.test ()) | |
| { | |
| return LXe_FALSE; | |
| } |