pyjallib 0.1.2__py3-none-any.whl → 0.1.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pyjallib/__init__.py
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
#!/usr/bin/env python
|
2
|
-
# -*- coding: utf-8 -*-
|
3
|
-
|
4
|
-
"""
|
5
|
-
pyjallib Package
|
6
|
-
Python library for game character development pipeline.
|
7
|
-
"""
|
8
|
-
|
9
|
-
__version__ = '0.1.2'
|
10
|
-
|
11
|
-
# reload_modules 함수를 패키지 레벨에서 사용 가능하게 함
|
12
|
-
from .namePart import NamePart, NamePartType
|
13
|
-
from .naming import Naming
|
14
|
-
from .namingConfig import NamingConfig
|
15
|
-
from .nameToPath import NameToPath
|
16
|
-
from .perforce import Perforce
|
1
|
+
#!/usr/bin/env python
|
2
|
+
# -*- coding: utf-8 -*-
|
3
|
+
|
4
|
+
"""
|
5
|
+
pyjallib Package
|
6
|
+
Python library for game character development pipeline.
|
7
|
+
"""
|
8
|
+
|
9
|
+
__version__ = '0.1.2'
|
10
|
+
|
11
|
+
# reload_modules 함수를 패키지 레벨에서 사용 가능하게 함
|
12
|
+
from .namePart import NamePart, NamePartType
|
13
|
+
from .naming import Naming
|
14
|
+
from .namingConfig import NamingConfig
|
15
|
+
from .nameToPath import NameToPath
|
16
|
+
from .perforce import Perforce
|
17
17
|
from .reloadModules import reload_modules
|
pyjallib/max/layer.py
CHANGED
@@ -65,12 +65,15 @@ class Layer:
|
|
65
65
|
Returns:
|
66
66
|
레이어에 포함된 노드 배열 또는 빈 배열
|
67
67
|
"""
|
68
|
+
returnVal = []
|
68
69
|
layer = rt.ILayerManager.getLayerObject(inLayerNum)
|
69
70
|
if layer is not None:
|
70
71
|
layerNodes = rt.refs.dependents(layer)
|
71
|
-
|
72
|
-
|
73
|
-
|
72
|
+
for item in layerNodes:
|
73
|
+
if rt.isValidNode(item):
|
74
|
+
returnVal.append(item)
|
75
|
+
|
76
|
+
return returnVal
|
74
77
|
|
75
78
|
def get_layer_number(self, inLayerName):
|
76
79
|
"""
|
@@ -1,9 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pyjallib
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: A utility library for 3D game character development pipelines.
|
5
5
|
Author-email: Dongseok Kim <jalnagakds@gmail.com>
|
6
6
|
Requires-Python: >=3.10
|
7
|
+
Requires-Dist: p4python>=2024.2.2682690
|
7
8
|
Description-Content-Type: text/markdown
|
8
9
|
|
9
10
|
# pyjallib
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pyjallib/__init__.py,sha256=
|
1
|
+
pyjallib/__init__.py,sha256=nuApOEfpw0H0-z0v_SJswZlD1KR3nrBiNrnk1-y8_k8,460
|
2
2
|
pyjallib/namePart.py,sha256=D1hnFNnZbrNicAiW2ZUaIT0LU5pro3uFYrFYOEjt7_Y,24001
|
3
3
|
pyjallib/nameToPath.py,sha256=61EWrc0Wc1K1Qsc4G6jewIccI0IHbiZWroRcU_lX1Wc,4664
|
4
4
|
pyjallib/naming.py,sha256=W1y8a-Xa2qpAR1f-lFcJeg1uEYGJF2QbVXvsaQ1VpnM,36549
|
@@ -15,7 +15,7 @@ pyjallib/max/bone.py,sha256=GYs3Uohc0AMkLWZAqZTc1DET-WDgZlvlkhSUaBeszvk,33161
|
|
15
15
|
pyjallib/max/constraint.py,sha256=QJHkSAPv7mxq2m58ni0OFc0mfrwrx91CsqupQXPfwr0,39876
|
16
16
|
pyjallib/max/header.py,sha256=CfjcRmXouCNENFycTdHSx68FLa3eoIKttC8XvIp48JY,2229
|
17
17
|
pyjallib/max/helper.py,sha256=DGoGNX1fuDRkBnndQSFYgxeYrkOfJdnkf5EVBKqsJqc,15566
|
18
|
-
pyjallib/max/layer.py,sha256=
|
18
|
+
pyjallib/max/layer.py,sha256=e9Mn8h7xf0oBYST3QIpyBpLMl8qpWTExO9Y6yH6rKc0,8795
|
19
19
|
pyjallib/max/link.py,sha256=J3z9nkP8ZxAh9yYhR16tjQFCJTCYZMSB0MGbSHfA7uI,2592
|
20
20
|
pyjallib/max/mirror.py,sha256=j8LnsXowyTINzvtWsvCNaDsQ6v7u2RjlY50R8v5JCuc,14517
|
21
21
|
pyjallib/max/name.py,sha256=z_fclfutesFxhk2hVliqZGnRQauKcB8LJpRbKQ5cYAc,16703
|
@@ -29,6 +29,6 @@ pyjallib/max/macro/jal_macro_constraint.py,sha256=0gpfan7hXES9jhnpZVlxWtCbqUCyGx
|
|
29
29
|
pyjallib/max/macro/jal_macro_helper.py,sha256=dhTVLeO3xz6tBdmJtpupgpZRCos8-kcqZBg8ff2QZgE,11504
|
30
30
|
pyjallib/max/macro/jal_macro_link.py,sha256=xkgcCX0fJw4vLfMYybtfUklT3dgcO0tHfpt2X9BfWLw,1193
|
31
31
|
pyjallib/max/macro/jal_macro_select.py,sha256=-r24l84XmDEM4W6H0r1jOBErp3q0UxNrr0m9oAHSgkE,2289
|
32
|
-
pyjallib-0.1.
|
33
|
-
pyjallib-0.1.
|
34
|
-
pyjallib-0.1.
|
32
|
+
pyjallib-0.1.4.dist-info/METADATA,sha256=k0pppkgXKWaqXSV5ocEuEL4xAQFEQFnymZwovks-I5U,869
|
33
|
+
pyjallib-0.1.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
34
|
+
pyjallib-0.1.4.dist-info/RECORD,,
|
File without changes
|