mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/app.git
synced 2025-06-28 07:54:44 +08:00
feat: performance r_DepthOfField support
This commit is contained in:
@ -1027,6 +1027,12 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
"performance_json_text_displayinfo_info": MessageLookupByLibrary.simpleMessage(
|
||||
"Display frame rates, server information, etc. in the upper right corner of the screen",
|
||||
),
|
||||
"performance_json_text_dof": MessageLookupByLibrary.simpleMessage(
|
||||
"Depth of field effect",
|
||||
),
|
||||
"performance_json_text_dof_info": MessageLookupByLibrary.simpleMessage(
|
||||
"Controls the depth of field effect on mobiGlass pages, etc.",
|
||||
),
|
||||
"performance_json_text_fov": MessageLookupByLibrary.simpleMessage(
|
||||
"Set viewing angle FOV",
|
||||
),
|
||||
|
@ -888,6 +888,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
),
|
||||
"performance_json_text_displayinfo_info":
|
||||
MessageLookupByLibrary.simpleMessage("在屏幕右上角展示帧率,服务器信息等"),
|
||||
"performance_json_text_dof": MessageLookupByLibrary.simpleMessage("景深效果"),
|
||||
"performance_json_text_dof_info": MessageLookupByLibrary.simpleMessage(
|
||||
"控制手环页面等的景深效果",
|
||||
),
|
||||
"performance_json_text_fov": MessageLookupByLibrary.simpleMessage(
|
||||
"设置视角FOV",
|
||||
),
|
||||
|
@ -894,6 +894,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||
),
|
||||
"performance_json_text_displayinfo_info":
|
||||
MessageLookupByLibrary.simpleMessage("在螢幕右上角展示幀率,伺服器資訊等"),
|
||||
"performance_json_text_dof": MessageLookupByLibrary.simpleMessage("景深效果"),
|
||||
"performance_json_text_dof_info": MessageLookupByLibrary.simpleMessage(
|
||||
"控製手環頁面等的景深效果",
|
||||
),
|
||||
"performance_json_text_fov": MessageLookupByLibrary.simpleMessage(
|
||||
"設定視角FOV",
|
||||
),
|
||||
|
@ -3922,6 +3922,26 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `Depth of field effect`
|
||||
String get performance_json_text_dof {
|
||||
return Intl.message(
|
||||
'Depth of field effect',
|
||||
name: 'performance_json_text_dof',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Controls the depth of field effect on mobiGlass pages, etc.`
|
||||
String get performance_json_text_dof_info {
|
||||
return Intl.message(
|
||||
'Controls the depth of field effect on mobiGlass pages, etc.',
|
||||
name: 'performance_json_text_dof_info',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Swip light after the screen light`
|
||||
String get performance_json_text_ssdo {
|
||||
return Intl.message(
|
||||
|
Reference in New Issue
Block a user