update
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
namespace Rive.Components
|
||||
{
|
||||
/// <summary>
|
||||
/// Controls how often a widget requests a redraw from its panel.
|
||||
/// </summary>
|
||||
public enum DrawOptimizationOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// The widget will request a redraw every frame.
|
||||
/// </summary>
|
||||
AlwaysDraw = 0,
|
||||
|
||||
/// <summary>
|
||||
/// The widget will only request redraws when its underlying content changes.
|
||||
/// </summary>
|
||||
DrawWhenChanged = 1
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user