Page 5 of 7

Re: Plugin v1.19

Posted: Wed Jan 16, 2013 7:47 am
by arnaud
As me ;)

Re: Plugin v1.19

Posted: Wed Jan 16, 2013 9:48 pm
by SreckoM
Thanks a lot!

Re: Plugin v1.19

Posted: Wed Feb 13, 2013 7:06 pm
by regionfive
hi there,

I switched to Windows 8 and I suddenly get this message after trying to render.

Traceback (most recent call last):
File "C:\Users\R5-Sound\AppData\Roaming\Blender Foundation\Blender\2.65\scripts\addons\octanerender\operators.py", line 95, in invoke
return self.execute(context)
File "C:\Users\R5-Sound\AppData\Roaming\Blender Foundation\Blender\2.65\scripts\addons\octanerender\operators.py", line 74, in execute
log ('Rendering still image')
File "C:\Users\R5-Sound\AppData\Roaming\Blender Foundation\Blender\2.65\scripts\addons\octanerender\utils.py", line 76, in log
print ('Octane plug-in ' + octanerender.Version + ' on %d.%d.%d' % tuple(bpy.app.version) + '.' + (bpy.app.build_revision) + ' : ' + (log))
TypeError: Can't convert 'bytes' object to str implicitly

location: <unknown location>:-1


I wanted to use Blender 2.65 with octane 1.1 and I thought it might be the case that the newest versions don´t fit.
So I reinstalled 2.63 and octane 1.0, a configuration once definitely worked. but it´s still the same. Both programs work perfectly fine by their own.
what have i done wrong that i cannot export anymore? what is this bytes object to str?

Thanks for your help!

Re: Plugin v1.19

Posted: Wed Mar 20, 2013 11:21 am
by wakyak
Hi!

Hope someone with a kind heart will be able to help me. I'm currently in the middle of a project where I use the particle system to randomly distribute a group of objects across an animated mesh. For stills it works fine to "Make duplicates real" before I render. Not so for animations.

So I thought of shoddily hacking the script to do something like this:

Press "render animation"
1. Blender selects specifily named object (my animated mesh) using select pattern - extend set to false
2. Executes "Make duplicates real" on mesh - parenting set to true
3. The script goes along as usual exporting and rendering
4. Blender once again selects the mesh
5. Selects child objects
6. Deletes child objects
7. Next frame
8. Step 1 ...and so on

I literally know nothing about Python and my attempts at pasting blender commands (bpy.ops.object.duplicates_make_r... etc) into the script have been futile.

Is anyone willing to help me out or at least point me in the right direction?

Cheers /Erik

Re: Plugin v1.19

Posted: Wed Mar 20, 2013 11:38 pm
by ROUBAL
I have the same problem with my current character. I would like to animate it and render in Octane, but the fur of the clothes can't be exported for each frame...

The instances exporter works only for real objects, and particles have to be converted before generating the scatter file.

Re: Plugin v1.19

Posted: Thu Mar 21, 2013 8:33 am
by matej
@wakyak

If your visualization object is a mesh (ie. not a strand), you can use this script to export the instances of your particle system. It doesn't work for group visualization tho, so you'll need to separate each distinct object in its own particle system.

Re: Plugin v1.19

Posted: Fri Mar 22, 2013 6:15 pm
by ROUBAL
@Matej : for my own, I still can't get the script work on particles. I have to make them real before generating the csv file, otherwize, the csv is also generated, but is not valid : nothing appears in Octane. Tested with 1.18 and 1.19 as well.

EDIT : After more tests, 1.19 seems to work with particles, but the size of the particles is much smaller with same settings as when making them real !

Re: Plugin v1.19

Posted: Wed Mar 27, 2013 2:32 pm
by vimaxus
I needed a couple of features like sampling rate for emission materials that weren't there and roughness for glossy that because of the format change was always replaced by a default value so I made a few tweaks so that when rendering animations the exported OCS files are read a little better by Octane 1.11. There are a lot of things to do still but I think I have a handle on how the exporter works.

Here it is:
octanerender.v1.21.zip
Blender plugin
(66.97 KiB) Downloaded 1040 times
It's messier that it I found it, gonna clean it up but I thought others might need it before that.

Also, I would like to point out a possible typo to the developers, since it concerns the file format. All the node names are separated by spaces where needed except sampling_rate where it's separated by an underscore

Re: Plugin v1.19

Posted: Mon Apr 01, 2013 4:46 pm
by mib2berlin
Thank you vimaxus, work fine with 2.66a on linux.

Cheers, mib.

Re: Plugin v1.19

Posted: Fri Apr 05, 2013 9:06 am
by Italic_
vimaxus, that would be most fantastic. Glad someone else is taking up the task of fixing some of the plugin. I am excited to see where you can take it.