I have achieve the function that getting current single model_name using python below:
<code>model_name=session.viewports[session.currentViewportName].displayedObject.modelName
</code>
<code>model_name=session.viewports[session.currentViewportName].displayedObject.modelName
</code>
model_name=session.viewports[session.currentViewportName].displayedObject.modelName
Now, I want to select multi models and then get multi model_names once.
But when I select multi models and run this code, the code only can obtain the current model instead of selected models. Is there any way to obtain the model_names of selected models?