Update usages of BufferedContainer in line with framework changes

This commit is contained in:
Dean Herbert
2021-11-05 15:54:27 +09:00
parent 9b5ed791b5
commit 6399c695e8
11 changed files with 13 additions and 23 deletions

View File

@ -393,6 +393,7 @@ namespace osu.Game.Screens.Menu
public class OutlineTriangle : BufferedContainer
{
public OutlineTriangle(bool outlineOnly, float size)
: base(cachedFrameBuffer: true)
{
Size = new Vector2(size);
@ -414,7 +415,6 @@ namespace osu.Game.Screens.Menu
}
Blending = BlendingParameters.Additive;
CacheDrawnFrameBuffer = true;
}
}
}