您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
37 行
886 B
37 行
886 B
using Unity.UIWidgets.ui;
|
|
|
|
namespace Unity.UIWidgets.flow {
|
|
public class PrerollContext {
|
|
public RasterCache rasterCache;
|
|
public float devicePixelRatio;
|
|
}
|
|
|
|
public class PaintContext {
|
|
public Canvas canvas;
|
|
}
|
|
|
|
public abstract class Layer {
|
|
ContainerLayer _parent;
|
|
|
|
public ContainerLayer parent {
|
|
get { return this._parent; }
|
|
set { this._parent = value; }
|
|
}
|
|
|
|
Rect _paintBounds = Rect.zero;
|
|
|
|
public Rect paintBounds {
|
|
get { return this._paintBounds; }
|
|
set { this._paintBounds = value; }
|
|
}
|
|
|
|
public bool needsPainting {
|
|
get { return !this._paintBounds.isEmpty; }
|
|
}
|
|
|
|
public virtual void preroll(PrerollContext context, Matrix3 matrix) {
|
|
}
|
|
|
|
public abstract void paint(PaintContext context);
|
|
}
|
|
}
|