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.
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.
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 of accessing the Reflections property SoundEvent soundEvent = new SoundEvent(); bool canReflect = soundEvent.Reflections; // Note: The Reflections property is obsolete and may not be functional.