diff options
author | Jonathan "Geenz" Goodman <geenz@lindenlab.com> | 2025-06-25 14:32:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-25 14:32:09 -0400 |
commit | e15a89282171251924a7c75c9007f1cfbc37a8be (patch) | |
tree | 43740d9cba9f41d2f5cdc3b60cdcc107379bfda9 /indra/newview/app_settings | |
parent | feb4494365e019efd68d6881e4ff63e939a01264 (diff) | |
parent | 6c394f02829ae11b80385d3ff1884a70e623bdef (diff) |
Merge pull request #4177 from DarlCat/hud-media-autoplay
Media changes including support for PRIM_MEDIA_FIRST_CLICK_INTERACT and HUD autoplay
Diffstat (limited to 'indra/newview/app_settings')
-rw-r--r-- | indra/newview/app_settings/settings.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 8cfe4f3d97..b515540e1e 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -16190,5 +16190,27 @@ <key>Value</key> <integer>1</integer> </map> + <key>MediaAutoPlayHuds</key> + <map> + <key>Comment</key> + <string>Automatically play HUD media</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>Boolean</string> + <key>Value</key> + <integer>1</integer> + </map> + <key>MediaFirstClickInteract</key> + <map> + <key>Comment</key> + <string>This setting controls which media (once loaded) does not require a first click to focus before interaction can begin. This allows clicks to be passed directly to media bypassing the focus click requirement. This setting is a bitfield, precomputed values are as follows: Disabled=0; Worn HUDs only=1; Owned objects=3; Friend objects=7; Group objects=15; Landowner objects=31; Any object=31; All MOAP=1073741824. For complete details see lltoolpie.h enum MediaFirstClickTypes.</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>S32</string> + <key>Value</key> + <integer>1</integer> + </map> </map> </llsd> |