Page 1 of 1

Blender Problem

Posted: Sun Oct 22, 2006 2:26 pm
by MickeyMouse
Blender: 2.42a
Exporter: 2.40
Indigo: Latest 0.6

I'm using the Blender tutorial and crreated a basic scene as instructed. Once I export the scene to the c:\Indigo directory and run "indigo scene.xml", I get the following errror:

SceneLoaderExcep: TinyXmlWrapper: could not find element 'radiance' in element 'background' (around line 33)

Any idea what might be causing this?

Thanks

Posted: Sun Oct 22, 2006 3:22 pm
by jurasek
read error again and again and again... :wink:

Maybe you have an old Indigo version?. In earlier verision of Indigo the syntax of <background> was something like that:

Code: Select all

<background>
       <radiance>1 1 1</radiance>
</background>
Now is:

Code: Select all

<background>
   <spectrum>
          <rgb>
               <rgb>1 1 1</rgb>
          </rgb>
    </spectrum>
</background>
Check your .xml file for details.

greetz,
jur