Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support 77312 #66

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion origin/data/global/dataversionbuild.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
75728
77312
136 changes: 101 additions & 35 deletions origin/data/global/ui/layouts/gameplayoptionspanelhd.json
Original file line number Diff line number Diff line change
Expand Up @@ -869,41 +869,47 @@
},
]
},
{
"type": "TableRowWidget", "name": "Row GreetingsSubtitles",
"children": [
{
"type": "TextBoxWidget", "name": "GreetingsSubtitlesText",
"fields": {
"text": "@GreetingsSubtitles",
"style": "$StyleSettingsText",
}
},
{
"type": "ToggleButtonWidget", "name": "GreetingsSubtitles",
"fields": {
"rect": "$OptionsToggleRect",
"sound": "cursor_menu_select_hd",
"focusIndicatorPadding": "$OptionsToggleFocusIndicatorPadding",
"focusIndicatorFilename": "$OptionsToggleFocusIndicatorFilename",
"filename": "Lobby\\CreateGame\\CreateGame_AdvancedCheckbox",
"focusIndicatorOffset": { "x": 0, "y": -4 },
"untoggledFrame": 0,
"untoggledPressedFrame": 1,
"untoggledHoveredFrame": 3,
"untoggledDisabledFrame": 2,
"toggledFrame": 4,
"toggledPressedFrame": 5,
"toggledHoveredFrame": 6,
"onClickMessage": "OptionsPanelMessage:SetGreetingsSubtitles",
"tooltipString": "@OptionsMenuGreetingsSubtitlesTooltip",
"tooltipStyle": {
"showAfterDelay": true,
}
},
},
]
},
{
"type": "TableRowWidget",
"name": "Row GreetingsSubtitles",
"children": [
{
"type": "TextBoxWidget",
"name": "GreetingsSubtitlesText",
"fields": {
"text": "@GreetingsSubtitles",
"style": "$StyleSettingsText",
}
},
{
"type": "ToggleButtonWidget",
"name": "GreetingsSubtitles",
"fields": {
"rect": "$OptionsToggleRect",
"sound": "cursor_menu_select_hd",
"focusIndicatorPadding": "$OptionsToggleFocusIndicatorPadding",
"focusIndicatorFilename": "$OptionsToggleFocusIndicatorFilename",
"filename": "Lobby\\CreateGame\\CreateGame_AdvancedCheckbox",
"focusIndicatorOffset": {
"x": 0,
"y": -4
},
"untoggledFrame": 0,
"untoggledPressedFrame": 1,
"untoggledHoveredFrame": 3,
"untoggledDisabledFrame": 2,
"toggledFrame": 4,
"toggledPressedFrame": 5,
"toggledHoveredFrame": 6,
"onClickMessage": "OptionsPanelMessage:SetGreetingsSubtitles",
"tooltipString": "@OptionsMenuGreetingsSubtitlesTooltip",
"tooltipStyle": {
"showAfterDelay": true,
}
},
},
]
},
{
"type": "TableRowWidget", "name": "Row Controller Options",
"children": [
Expand Down Expand Up @@ -1463,6 +1469,66 @@
},
]
},
{
"type": "TableRowWidget", "name": "Row DataPrivacy",
"children": [
{
"type": "TextBoxWidget", "name": "DataPrivacy",
"fields": {
"text": "@DataPrivacyHeader",
"style": "$StyleSettingsTitle"
},
"children": [
{
"type": "ImageWidget", "name": "Divider",
"fields": {
"rect": "$OptionsDividerRect",
"filename": "PauseMenu\\Divider",
}
},
]
},
]
},
{
"type": "TableRowWidget", "name": "Row DataSharingOptOut",
"children": [
{
"type": "TextBoxWidget", "name": "DataSharingOptOutText",
"fields": {
"text": "@DataSharingOptOut",
"style": "$StyleSettingsText"
}
},
{
"type": "ToggleButtonWidget",
"name": "DataSharingOptOut",
"fields": {
"rect": "$OptionsToggleRect",
"sound": "cursor_menu_select_hd",
"focusIndicatorPadding": "$OptionsToggleFocusIndicatorPadding",
"focusIndicatorFilename": "$OptionsToggleFocusIndicatorFilename",
"filename": "Lobby\\CreateGame\\CreateGame_AdvancedCheckbox",
"focusIndicatorOffset": {
"x": 0,
"y": -4
},
"untoggledFrame": 0,
"untoggledPressedFrame": 1,
"untoggledHoveredFrame": 3,
"untoggledDisabledFrame": 2,
"toggledFrame": 4,
"toggledPressedFrame": 5,
"toggledHoveredFrame": 6,
"onClickMessage": "OptionsPanelMessage:SetDataSharingOptOut",
"tooltipString": "@OptionsDataSharingOptOutTooltip",
"tooltipStyle": {
"showAfterDelay": true
}
}
},
]
},
{
"type": "TableRowWidget", "name": "Row Spacer",
},
Expand Down
Loading