diff options
author | Cosmic Linden <cosmic@lindenlab.com> | 2022-11-11 15:53:45 -0800 |
---|---|---|
committer | Cosmic Linden <cosmic@lindenlab.com> | 2022-11-15 18:11:27 -0800 |
commit | fd76c195c83d4af7469cc41f59c3fdcb02716012 (patch) | |
tree | ffd3959bb381001398bf0f59ad39ccea2b1b34d8 /indra/newview/skins/default/xui/en/panel_tools_texture.xml | |
parent | 911aba0c1c3ddaae61af487bb01bf689b7dd938f (diff) |
SL-18632: Implement editing GLTF material texture transforms in build floater
Diffstat (limited to 'indra/newview/skins/default/xui/en/panel_tools_texture.xml')
-rw-r--r-- | indra/newview/skins/default/xui/en/panel_tools_texture.xml | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/indra/newview/skins/default/xui/en/panel_tools_texture.xml b/indra/newview/skins/default/xui/en/panel_tools_texture.xml index 91cd28d80a..06e2a6e98e 100644 --- a/indra/newview/skins/default/xui/en/panel_tools_texture.xml +++ b/indra/newview/skins/default/xui/en/panel_tools_texture.xml @@ -896,10 +896,12 @@ follows="left|top" height="19" initial_value="1" - label="ScaleU" + label="Scale u" label_width="205" layout="topleft" left="10" + min_val="-100" + max_val="100" name="gltfTextureScaleU" top_delta="-115" width="265" /> @@ -907,10 +909,12 @@ follows="left|top" height="19" initial_value="1" - label="ScaleV" + label="Scale v" label_width="205" layout="topleft" left="10" + min_val="-100" + max_val="100" name="gltfTextureScaleV" width="265" /> <spinner @@ -921,27 +925,33 @@ label_width="205" layout="topleft" left="10" + min_val="-360" + max_val="360" name="gltfTextureRotation" width="265" /> <spinner follows="left|top" height="19" initial_value="0" - label="TranslationU" + label="Offset u" label_width="205" layout="topleft" left="10" - name="gltfTextureTranslationU" + min_val="-999" + max_val="999" + name="gltfTextureOffsetU" width="265" /> <spinner follows="left|top" height="19" initial_value="0" - label="TranslationV" + label="Offset v" label_width="205" layout="topleft" left="10" - name="gltfTextureTranslationV" + min_val="-999" + max_val="999" + name="gltfTextureOffsetV" width="265" /> <!-- END PBR Material texture transform parameters --> <check_box |