You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 19:31:35 +00:00
Fix ParticlesMaterial build after #61238
This commit is contained in:
@@ -1451,12 +1451,12 @@ void ParticlesMaterial::_validate_property(PropertyInfo &p_property) const {
|
||||
}
|
||||
}
|
||||
|
||||
if (property.name == "collision_friction" && collision_mode != COLLISION_RIGID) {
|
||||
property.usage = PROPERTY_USAGE_NONE;
|
||||
if (p_property.name == "collision_friction" && collision_mode != COLLISION_RIGID) {
|
||||
p_property.usage = PROPERTY_USAGE_NONE;
|
||||
}
|
||||
|
||||
if (property.name == "collision_bounce" && collision_mode != COLLISION_RIGID) {
|
||||
property.usage = PROPERTY_USAGE_NONE;
|
||||
if (p_property.name == "collision_bounce" && collision_mode != COLLISION_RIGID) {
|
||||
p_property.usage = PROPERTY_USAGE_NONE;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user