Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
JennaHuntsman
XDG Integration
Commits
9d898633
Commit
9d898633
authored
8 years ago
by
Brad Payne (Vir Linden)
Browse files
Options
Downloads
Patches
Plain Diff
SL-242 - fix for slider param groups, added default args for skel_tool.py
parent
888ed6d6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/character/avatar_lad.xml
+5
-5
5 additions, 5 deletions
indra/newview/character/avatar_lad.xml
scripts/content_tools/skel_tool.py
+4
-4
4 additions, 4 deletions
scripts/content_tools/skel_tool.py
with
9 additions
and
9 deletions
indra/newview/character/avatar_lad.xml
+
5
−
5
View file @
9d898633
...
...
@@ -3897,7 +3897,7 @@
<param
id=
"30646"
group=
"
0
"
group=
"
1
"
name=
"Egg_Head"
value_min=
"-1.3"
value_max=
"1"
...
...
@@ -4106,7 +4106,7 @@
<param
id=
"30119"
group=
"
0
"
group=
"
1
"
name=
"Eyebrow Size"
value_min=
"0"
value_max=
"1"
...
...
@@ -4149,7 +4149,7 @@
<param
id=
"30031"
group=
"
0
"
group=
"
1
"
name=
"Arced_Eyebrows"
value_min=
"0"
value_max=
"2"
...
...
@@ -4192,7 +4192,7 @@
<param
id=
"30757"
group=
"
0
"
group=
"
1
"
name=
"Lower_Eyebrows"
value_min=
"-4"
value_max=
"2"
...
...
@@ -4235,7 +4235,7 @@
<param
id=
"30016"
group=
"
0
"
group=
"
1
"
name=
"Pointy_Eyebrows"
value_min=
"-.5"
value_max=
"3"
>
...
...
This diff is collapsed.
Click to expand it.
scripts/content_tools/skel_tool.py
+
4
−
4
View file @
9d898633
...
...
@@ -366,17 +366,17 @@ def compare_skel_trees(atree,btree):
parser
=
argparse
.
ArgumentParser
(
description
=
"
process SL avatar_skeleton/avatar_lad files
"
)
parser
.
add_argument
(
"
--verbose
"
,
action
=
"
store_true
"
,
help
=
"
verbose flag
"
)
parser
.
add_argument
(
"
--ogfile
"
,
help
=
"
specify file containing base bones
"
)
parser
.
add_argument
(
"
--ogfile
"
,
help
=
"
specify file containing base bones
"
,
default
=
"
avatar_skeleton_orig.xml
"
)
parser
.
add_argument
(
"
--ref_file
"
,
help
=
"
specify another file containing replacements for missing fields
"
)
parser
.
add_argument
(
"
--lad_file
"
,
help
=
"
specify avatar_lad file to check
"
)
parser
.
add_argument
(
"
--orig_lad_file
"
,
help
=
"
specify avatar_lad file to compare to
"
)
parser
.
add_argument
(
"
--lad_file
"
,
help
=
"
specify avatar_lad file to check
"
,
default
=
"
avatar_lad.xml
"
)
parser
.
add_argument
(
"
--orig_lad_file
"
,
help
=
"
specify avatar_lad file to compare to
"
,
default
=
"
avatar_lad_orig.xml
"
)
parser
.
add_argument
(
"
--aliases
"
,
help
=
"
specify file containing bone aliases
"
)
parser
.
add_argument
(
"
--validate
"
,
action
=
"
store_true
"
,
help
=
"
check specified input file for validity
"
)
parser
.
add_argument
(
"
--fix
"
,
action
=
"
store_true
"
,
help
=
"
try to correct errors
"
)
parser
.
add_argument
(
"
--remove
"
,
nargs
=
"
+
"
,
help
=
"
remove specified joints
"
)
parser
.
add_argument
(
"
--list
"
,
action
=
"
store_true
"
,
help
=
"
list joint names
"
)
parser
.
add_argument
(
"
--compare
"
,
help
=
"
alternate skeleton file to compare
"
)
parser
.
add_argument
(
"
infilename
"
,
help
=
"
name of a skel .xml file to input
"
)
parser
.
add_argument
(
"
infilename
"
,
help
=
"
name of a skel .xml file to input
"
,
default
=
"
avatar_skeleton.xml
"
)
parser
.
add_argument
(
"
outfilename
"
,
nargs
=
"
?
"
,
help
=
"
name of a skel .xml file to output
"
)
args
=
parser
.
parse_args
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment