Page 1 of 1

Undo Command

Posted: Fri Nov 30, 2012 7:50 am
by nehale
When is the undo function going to be available for the stand alone version of Octane Render?, it's really frustrating to change something and not be able to undo what you just did

Re: Undo Command

Posted: Fri Nov 30, 2012 7:54 am
by nehale
Or at least a value rest function like the "right click on spinner" in C4D to set it to the default value

Re: Undo Command

Posted: Sat Dec 01, 2012 11:11 am
by treddie
Yah, I run into that too. I find that I have to be super-careful when my mouse is wandering around the nodes on the far right. If I inadvertently rotate the mousewheel over a parameter, I'm screwed. I have to open an earlier version of the project to remember what the value was supposed to be. So I have a habit of saving many versions of a project so that I can always go back to an earlier version if I mess up.

Re: Undo Command

Posted: Sat Dec 01, 2012 11:27 am
by matej
I also hate that the mouse wheel changes values - like anyone uses the wheel to set parameters. You either grab the sliders, or input exact values manually. The wheel cant be used to scroll the GUI area and change values at the same time - its bad design, because you can inadvertently change values.

Undo also shouldn't be too difficult to implement - all the work you do in Octane can be represented by a stack of value changes in the node graph == perfect for implementing undo (& very light on memory).

Re: Undo Command

Posted: Sat Dec 01, 2012 8:56 pm
by treddie
It's funny because I've programmed for years and it is the easiest thing to implement, but no fun at all. It takes time because you have to gather all the parameters, create the stack and so on, and on....No glory. It's like, if you have a programming team and you yell out, "OK...Who wants to do the Undo System?". Everyone will probably call in sick the next day. :)