Thanks for the great software!
Just wondering does anyone have tried rendering with an isometric camera?
Saw an Isometric camera Java Class in Sunflow Wiki, but looking through the bin/sunflow.far file through Java Decompiler didn't find the class definition anywhere.
Has anyone gone so far to decompiling Sunflow adding the Isometric camera and compiling it back?
EDIT
Downloaded the source files of the newest source files for sunflower sunflow-src-v0.07.2 and added the class from wiki and also added into the parse camera:
private void parseCamera(SunflowAPI api) throws ParserException, IOException {
...
} else if (type.equals("isometric")) {
// i guess no arguments?
api.camera(name, new IsometricLens());
} else {
...
}
Afterwards runned the bluerender with a modified scene camera type, which was set to the new isometric type. But I receive the error as shown on the attached error.png file.
Restored the original sunflower.jar file and tried running a render with a non-existing camera type, and i recieve the same error. As I don't know Java that much, could not debug the type sun flower parseCamera function recieves,
it just seems like the if clause doesn't get triggered :/
Might I be doing something wrong with replacing the sunflower.jar file, or is it more complicated then just replacing the file?