bool Reflections { get; set; }

robot_2Generated
code_blocksInput

Description

The Reflections property of the SoundEvent class determines whether the sound can trace reflections, allowing it to be heard indirectly. This property is marked as obsolete and is hidden from JSON serialization and the UI.

Usage

To use the Reflections property, you can access it directly from an instance of the SoundEvent class. However, note that this property is marked as obsolete, indicating that it may be removed in future versions or is no longer recommended for use.

Example

// Example of accessing the Reflections property
SoundEvent soundEvent = new SoundEvent();
bool canReflect = soundEvent.Reflections;

// Note: The Reflections property is obsolete and may not be functional.