bool ReflectionOverride { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The ReflectionOverride property in the BaseSoundComponent class is a boolean flag that determines whether the sound reflection settings should be overridden. When set to true, it allows the user to customize the reflection behavior of the sound component, potentially altering how sound reflections are processed in the scene.

Usage

To use the ReflectionOverride property, you can set it to true if you want to manually control the reflection settings of the sound component. This is useful when you need specific reflection behavior that differs from the default settings.

Example usage:

var soundComponent = new BaseSoundComponent();
soundComponent.ReflectionOverride = true; // Enable custom reflection settings

Example

// Example of setting the ReflectionOverride property
BaseSoundComponent soundComponent = new BaseSoundComponent();
soundComponent.ReflectionOverride = true; // Enable custom reflection settings