// example config file for z.minify

// singl-line comments get filtered out

aGlobal = blah

/*
multi-line
comments also
get filtered
out!
*/

anotherGlobal = blahdy

/*
//some commented-out block of code
space0 {
 image = blah.tif
}
*/

////////////////////////////////////////////////////////////////////////////
// some example namespaces
////////////////////////////////////////////////////////////////////////////
space1 { // <--left curly braces need to be on the same line as their block name, for now
// the dot ('.') is a reserved character for block names - do not use it	
	i1 { 
		image = i1.tif
		sound = i1.wav 
		sizeFading = 0. 0.3 6. // size that equals -inf dB, size that equals -0dB, dB reduction per halved size
	}
	
	i2 {
		image = i2.tif 
		sound = i2.wav
		sizeFading = 0. 0.3 6. 
	}
	
	i3 {
		image = i3.tif 
		sound = i3.wav 
		sizeFading = 0. 0.3 6. 
	}
	
	i4 {      
		image = i4.tif 
		sound = i4.wav
		sizeFading = 0. 0.3 6. // size that equals -inf dB, size that equals -0dB, dB reduction per halved size
	
		i1 {
			image = i4.i1.tif
			sound = i4.i1.wav 
			sizeFading = 0. 0.3 6. 

				i1 {
					image = i4.i1.i1.tif
					sound = i4.i1.i1.wav 
					sizeFading = 0. 0.3 6. 
				}
				i2 {
					image = i4.i1.i2.tif
					sound = i4.i1.i2.wav 
					sizeFading = 0. 0.3 6. 
				}
		}
		i2 {
			sound = i4.i2.wav 
			sizeFading = 0. 0.3 6. 
		}

	}

	i5 {
		image = i5.tif 
		sound = i5.wav 
		sizeFading = 0. 0.3 6. 
	}

	i6 {
		image = i6.tif 
		sound = i6.wav 
		sizeFading = 0. 0.3 6. 

		i1 {
			image = i6.i1.tif
			sound = i6.i1.wav 
			sizeFading = 0. 0.3 6. 
		}
	}
	
}

space2 {
	i1b {
		image = i1b.tif
		sound = i1b.wav 
		sizeFading = 0. 0.3 6. 
	}
}
