- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi.
If I choose Biped and play the animation with motion panel open, there will be a delay(Frame drop).
So, I made a simple MaxScript to unselect object and play the animation before playing the animation.
There's no problem in general situations.
But if I open the Workbench window and play the animation,
3dsMax closes with an error.
I looked for a command to close the WorkBench window before playing the animation, but I couldn't find it.
Is there a another command to close the WorkBench window?
Or I was wondering if there is a command that can bypass the error.
==========================================================================
global SelObject_for_FastPlay = #()
fn PsKit_FastPlay =
(
SelObject_for_FastPlay = selection as array
clearSelection()
)
fn PsKit_PlayEnd =
(
if SelObject_For_FastPlay.count != 0 do select SelObject_for_FastPlay
)
callbacks.addScript #playbackStart "PsKit_FastPlay()" ID:#PsKit_FastPlay
callbacks.addScript #playbackEnd "PsKit_PlayEnd()" ID:#PsKit_FastPlayEnd
Solved! Go to Solution.
Link copied