From: <272...@qq...> - 2020-08-31 17:52:17
|
I use the command below, trying to display the object one by one, with 2 seconds in between. So how to "wait for 2 seconds"? from pymol import cmd cmd.enable('protein_1') # how to hold for 2 seconds? cmd.disable('protein_1') cmd.enable('protein_2') # how to hold for 2 seconds? cmd.disable('protein_2') Thank you! |