Axiom.Demos.Dot3Bump.FlipLightState C# (CSharp) Method

FlipLightState() private method

Flips the light states for the light at the specified index.
private FlipLightState ( int index ) : void
index int
return void
		void FlipLightState( int index )
		{
			lightState[ index ] = !lightState[ index ];
			lights[ index ].IsVisible = lightState[ index ];
			lightFlareSets[ index ].IsVisible = lightState[ index ];
		}
	}