Page 20 of 54
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 8:30 pm
				by Amplitude
				you mean it wasn't implemented before? I thought it was. 
I'm using per object smoothing angles and I had the impression it was read correctly by octane.
			 
			
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 8:32 pm
				by face
				Amplitude wrote:you mean it wasn't implemented before? I thought it was. 
I'm using per object smoothing angles and I had the impression it was read correctly by octane.
Also your smooth option in Octane is enabled when it should?
Not at me  
 
The first object from the top, in the scene explorer in Softimage, is the first mesh that will be exported, and that is ever smoothed.
face
 
			 
			
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 8:37 pm
				by Amplitude
				No in fact it works correctly with the native exporter but not the plugin.
I still have to manually check bool smooth parameter in Octane but the smoothing angles are respected. With an .obj from the plugin everything is smoothed the same (like 60° angle)
			
				
			
 
			-  from the plugin export
 		
		
		
		
			  
			 
			
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 8:43 pm
				by mlody47
				So what do we do now??
I mean You  

 
			 
			
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 8:43 pm
				by face
				What you mean are the user normals, i thing.
Will fix it to write they too...
When you set it to 0°, the smooth option in Octane is on, but the user normals are shown as smooth is off 
To test it, create a cube and export it.
Open the obj-file with a texteditor and type in under the g option a "s off"
That should tell Octane, that the smooth option should be off, but for the first mesh, it is ever on.
Code: Select all
o test.obj
mtllib test.mtl
g cube
s off
#begin 26 vertices
v -0.277778 -0.277778 -0.277778
v 0.277778 -0.277778 -0.277778
 
			 
			
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 8:51 pm
				by mlody47
				I got example whith something else. 

 ill paste it here in couple of minutes since its rendering
 
			 
			
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 8:51 pm
				by Amplitude
				I tested it right away and the bool smooth is off in Octane. Is it what you expected?
			 
			
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 8:55 pm
				by Amplitude
				off topic but while I'm at it and you're rendering stuff mlody47 have you experienced significant slowdowns with your 295 in multi gpu mode? 
take a look here: 
http://www.refractivesoftware.com/forum ... 6&start=14 
			 
			
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 8:58 pm
				by face
				mlody47 wrote:I got example whith something else. 

 ill paste it here in couple of minutes since its rendering
 
Try to export 2 cubes and set after all g options the "s off" flag
also:
Code: Select all
o test.obj
mtllib test.mtl
g cube
s off
#begin 26 vertices
v -0.277778 -0.277778 -0.277778
v 0.277778 -0.277778 -0.277778
.
.
.
g cube1
s off
#begin 26 vertices
.
.
.
The second cube is set to smooth off.
Try to change the s option in "s 1" for cube and "s 2" for cube2.
Like this:
Code: Select all
o test.obj
mtllib test.mtl
g cube
s 1
#begin 26 vertices
v -0.277778 -0.277778 -0.277778
v 0.277778 -0.277778 -0.277778
.
.
.
g cube1
s 2
#begin 26 vertices
.
.
.
You see, the second cube(cube1) has also smooth on.
Also, the smooth on/off option in Octane works only from the second mesh. The first is ever smooth on.
face
 
			 
			
					
				Re: Beta 2.2 RC1: SoftImage XSI plugin testing thread
				Posted: Wed Jun 02, 2010 9:00 pm
				by face
				Amplitude wrote:I tested it right away and the bool smooth is off in Octane. Is it what you expected?
Hm,
maybe Octane reads the user normals and switch the smooth on or off...
Hope i can implement to write they too..
face