This commit is contained in:
ChenX
2024-10-29 17:14:43 +08:00
parent 3cdbeeb178
commit dccd6ec73e
2683 changed files with 37067 additions and 201 deletions

23
types/Common/SystemEnum.d.ts vendored Normal file
View File

@@ -0,0 +1,23 @@
export declare enum AAType {
FXAA = 0,//快速近似抗锯齿(性能更好)
SMAA = 1
}
export declare enum ViewDirType {
FS = 0,
YAS = 1,
ZS = 2,
YS = 3,
QS = 4,
HS = 5,
XN = 6
}
export declare enum FractionDigitsType {
zero = 0,
one = 1,
two = 2,
three = 3,
four = 4,
five = 5,
six = 6
}
//# sourceMappingURL=SystemEnum.d.ts.map