Title: Setting a parameter in all keyframes at once... Post by: nameinuse2 on January 13, 2011, 10:40:56 AM Here's a little bash/perl script that sets a parameter to the same value across all keyframes at once:
Code: #!/bin/bash I was getting a bit sick of setting up a bunch of keyframes, then having to go through them one by one after finding a better fog setting, or realising the resolution had been set really low the whole time. Save this script as something like "setall.sh" in your .mandelbulber/keyframes directory, give it execute permission, and invoke it like Code: ./setall.sh parameter_name new_value Then it's all good! Found the exact most aesthetically pleasing glow intensity at the end of a grueling dive? Code: ./setall.sh glow_intensity 1.775 Bam! Forgot you disabled shadows for speed but now you're at keyframe 181? Code: ./setall.sh shadows_enabled 1 Blammo! Say no to manual editing! Title: Re: Setting a parameter in all keyframes at once... Post by: bib on January 13, 2011, 10:47:34 AM Say no to manual editing! Say no to scripting, use Mandelbulb3D! Just kidding ;) Title: Re: Setting a parameter in all keyframes at once... Post by: Buddhi on January 25, 2011, 07:56:58 PM Here's a little bash/perl script that sets a parameter to the same value across all keyframes at once: Thank you for this useful script. I have to add option like this directly in Mandelbulber, because I know how annoying is when there is needed to change the same parameter for all keyframes. |