This commit is contained in:
Nyx
2025-08-26 11:28:45 -06:00

View File

@@ -48,4 +48,15 @@ void SteamAudioSource::_validate_property(PropertyInfo &property) const {
property.name.begins_with("attenuation") || property.name.begins_with("emission_")) { property.name.begins_with("attenuation") || property.name.begins_with("emission_")) {
property.usage = PROPERTY_USAGE_NO_EDITOR; property.usage = PROPERTY_USAGE_NO_EDITOR;
} }
}
void SteamAudioSource::_notification(int p_what) {
}
void SteamAudioSource::_process(double p_delta) {
}
void SteamAudioSource::update_source() {
} }