1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 21:38:00 +08:00

Merge pull request #14821 from smoogipoo/particle-spewer-disable-ftb

Disable FtB pass for particle spewer
This commit is contained in:
Dean Herbert 2021-09-21 15:22:11 +09:00 committed by GitHub
commit 112bfc8cbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -115,6 +115,8 @@ namespace osu.Game.Graphics
null, TextureCoords);
}
}
protected override bool CanDrawOpaqueInterior => false;
}
private readonly struct ParticlePart

View File

@ -164,6 +164,8 @@ namespace osu.Game.Graphics
return Vector2Extensions.Transform(new Vector2(x, y), DrawInfo.Matrix);
}
protected override bool CanDrawOpaqueInterior => false;
}
#endregion