Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
4c037a84
Commit
4c037a84
authored
7 years ago
by
meta-androcto
Browse files
Options
Downloads
Patches
Plain Diff
object_skinify.py fix for 2.79 release T52536
parent
31d6fbc2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
object_skinify.py
+7
-36
7 additions, 36 deletions
object_skinify.py
with
7 additions
and
36 deletions
object_skinify.py
+
7
−
36
View file @
4c037a84
...
@@ -133,47 +133,18 @@ class Idx_Store(object):
...
@@ -133,47 +133,18 @@ class Idx_Store(object):
if
not
self
.
rig_type
==
Rig_type
.
LEGACY
and
not
self
.
rig_type
==
Rig_type
.
HUMAN
and
not
self
.
rig_type
==
Rig_type
.
PITCHIPOY
:
if
not
self
.
rig_type
==
Rig_type
.
LEGACY
and
not
self
.
rig_type
==
Rig_type
.
HUMAN
and
not
self
.
rig_type
==
Rig_type
.
PITCHIPOY
:
return
return
if
self
.
rig_type
==
Rig_type
.
LEGACY
:
if
self
.
rig_type
==
Rig_type
.
LEGACY
:
if
os_type
==
'
win32
'
:
self
.
hand_l_merge
=
[
7
,
12
,
16
,
21
,
26
,
27
]
self
.
hand_l_merge
=
[
7
,
8
,
13
,
17
,
22
,
27
]
self
.
hand_r_merge
=
[
30
,
31
,
36
,
40
,
45
,
50
]
self
.
hand_r_merge
=
[
30
,
35
,
39
,
44
,
45
,
50
]
self
.
hands_pretty
=
[
6
,
29
]
self
.
hands_pretty
=
[
6
,
29
]
self
.
root
=
[
59
]
self
.
root
=
[
59
]
print
(
"
WIN
"
)
if
os_type
==
'
linux
'
:
self
.
hand_l_merge
=
[
8
,
9
,
14
,
18
,
23
,
28
]
self
.
hand_r_merge
=
[
31
,
32
,
37
,
41
,
46
,
51
]
self
.
hands_pretty
=
[
7
,
30
]
self
.
root
=
[
59
]
print
(
"
LIN
"
)
if
os_type
==
'
darwin
'
:
self
.
hand_l_merge
=
[
7
,
12
,
16
,
17
,
22
,
27
]
self
.
hand_r_merge
=
[
30
,
35
,
39
,
40
,
45
,
50
]
self
.
hands_pretty
=
[
6
,
29
]
self
.
root
=
[
59
]
print
(
"
DARWIN
"
)
if
self
.
rig_type
==
Rig_type
.
HUMAN
or
self
.
rig_type
==
Rig_type
.
PITCHIPOY
:
if
self
.
rig_type
==
Rig_type
.
HUMAN
or
self
.
rig_type
==
Rig_type
.
PITCHIPOY
:
if
os_type
==
'
win32
'
:
self
.
hand_l_merge
=
[
9
,
10
,
15
,
19
,
24
,
29
]
self
.
hand_l_merge
=
[
9
,
14
,
18
,
23
,
24
,
29
]
self
.
hand_r_merge
=
[
32
,
33
,
37
,
42
,
47
,
52
]
self
.
hand_r_merge
=
[
32
,
37
,
41
,
46
,
51
,
52
]
self
.
hands_pretty
=
[
8
,
31
]
self
.
hands_pretty
=
[
8
,
31
]
self
.
root
=
[
56
]
self
.
root
=
[
56
]
print
(
"
WIN
"
)
if
os_type
==
'
linux
'
:
self
.
hand_l_merge
=
[
10
,
11
,
16
,
20
,
25
,
30
]
self
.
hand_r_merge
=
[
33
,
34
,
39
,
43
,
48
,
53
]
self
.
hands_pretty
=
[
9
,
32
]
self
.
root
=
[
56
]
print
(
"
LIN
"
)
if
os_type
==
'
darwin
'
:
self
.
hand_l_merge
=
[
10
,
15
,
19
,
29
,
24
,
30
]
self
.
hand_r_merge
=
[
33
,
38
,
42
,
47
,
48
,
53
]
self
.
hands_pretty
=
[
9
,
32
]
self
.
root
=
[
56
]
print
(
"
DARWIN
"
)
def
get_all_idx
(
self
):
def
get_all_idx
(
self
):
...
...
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