您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
12 行
421 B
12 行
421 B
namespace Unity.UIWidgets.engine {
|
|
public static class UIWidgetsGlobalConfiguration {
|
|
//disable auto adjust framerate by default
|
|
public static bool EnableAutoAdjustFramerate = false;
|
|
|
|
//enable incremental gc by default
|
|
public static bool EnableIncrementalGC = true;
|
|
|
|
//disable debug at runtime by default
|
|
public static bool EnableDebugAtRuntime = false;
|
|
}
|
|
}
|