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
6969994d
Commit
6969994d
authored
14 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
tabs -> spaces
parent
3a2267df
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
io_coat3D/__init__.py
+163
-163
163 additions, 163 deletions
io_coat3D/__init__.py
io_coat3D/coat.py
+421
-421
421 additions, 421 deletions
io_coat3D/coat.py
io_coat3D/tex.py
+336
-347
336 additions, 347 deletions
io_coat3D/tex.py
with
920 additions
and
931 deletions
io_coat3D/__init__.py
+
163
−
163
View file @
6969994d
...
...
@@ -45,177 +45,177 @@ from io_coat3D import tex
def
register
():
bpy
.
coat3D
=
dict
()
bpy
.
coat3D
[
'
active_coat
'
]
=
''
bpy
.
coat3D
[
'
status
'
]
=
0
bpy
.
coat3D
[
'
kuva
'
]
=
1
bpy
.
coat3D
=
dict
()
bpy
.
coat3D
[
'
active_coat
'
]
=
''
bpy
.
coat3D
[
'
status
'
]
=
0
bpy
.
coat3D
[
'
kuva
'
]
=
1
class
coat3D
(
bpy
.
types
.
IDPropertyGroup
):
pass
bpy
.
types
.
Object
.
coat3D
=
PointerProperty
(
name
=
"
Applink Variables
"
,
type
=
coat3D
,
description
=
"
Applink variables
"
)
coat3D
.
objpath
=
StringProperty
(
name
=
"
Object_Path
"
,
default
=
""
)
coat3D
.
coatpath
=
StringProperty
(
name
=
"
Coat_Path
"
,
default
=
""
)
class
coat3D
(
bpy
.
types
.
IDPropertyGroup
):
pass
bpy
.
types
.
Scene
.
coat3D
=
PointerProperty
(
name
=
"
Applink Variables
"
,
type
=
coat3D
,
description
=
"
Applink variables
"
)
coat3D
.
objectdir
=
StringProperty
(
name
=
"
ObjectPath
"
,
subtype
=
"
FILE_PATH
"
,
default
=
""
)
coat3D
.
exchangedir
=
StringProperty
(
name
=
"
FilePath
"
,
subtype
=
"
DIR_PATH
"
,
default
=
""
)
coat3D
.
wasactive
=
StringProperty
(
name
=
"
Pass active object
"
,
default
=
""
)
coat3D
.
export_on
=
BoolProperty
(
name
=
"
Export_On
"
,
description
=
"
Add Modifiers and export.
"
,
default
=
False
)
coat3D
.
smooth_on
=
BoolProperty
(
name
=
"
Auto Smooth
"
,
description
=
"
Add Modifiers and export.
"
,
default
=
True
)
coat3D
.
exportfile
=
BoolProperty
(
name
=
"
No Import File
"
,
description
=
"
Add Modifiers and export.
"
,
default
=
False
)
coat3D
.
importmod
=
BoolProperty
(
name
=
"
Remove Modifiers
"
,
description
=
"
Import and add modifiers.
"
,
default
=
True
)
coat3D
.
exportmod
=
BoolProperty
(
name
=
"
Modifiers
"
,
description
=
"
Export modifiers.
"
,
default
=
False
)
coat3D
.
export_pos
=
BoolProperty
(
name
=
"
Remember Position
"
,
description
=
"
Remember position.
"
,
default
=
True
)
coat3D
.
importtextures
=
BoolProperty
(
name
=
"
Bring Textures
"
,
description
=
"
Import Textures.
"
,
default
=
True
)
coat3D
.
exportover
=
BoolProperty
(
name
=
"
Export Obj
"
,
description
=
"
Import Textures.
"
,
default
=
False
)
coat3D
.
importmesh
=
BoolProperty
(
name
=
"
Mesh
"
,
description
=
"
Import Mesh.
"
,
default
=
True
)
#copy location
coat3D
.
cursor
=
FloatVectorProperty
(
name
=
"
Cursor
"
,
description
=
"
Location.
"
,
subtype
=
"
XYZ
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
loca
=
FloatVectorProperty
(
name
=
"
location
"
,
description
=
"
Location.
"
,
subtype
=
"
XYZ
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
rota
=
FloatVectorProperty
(
name
=
"
location
"
,
description
=
"
Location.
"
,
subtype
=
"
EULER
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
scal
=
FloatVectorProperty
(
name
=
"
location
"
,
description
=
"
Location.
"
,
subtype
=
"
XYZ
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
dime
=
FloatVectorProperty
(
name
=
"
dimension
"
,
description
=
"
Dimension.
"
,
subtype
=
"
XYZ
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
type
=
EnumProperty
(
name
=
"
Export Type
"
,
description
=
"
Diffrent Export Types.
"
,
items
=
(
(
"
ppp
"
,
"
Per-Pixel Painting
"
,
""
),
(
"
mv
"
,
"
Microvertex Painting
"
,
""
),
(
"
ptex
"
,
"
Ptex Painting
"
,
""
),
(
"
uv
"
,
"
UV-Mapping
"
,
""
),
(
"
ref
"
,
"
Reference Mesh
"
,
""
),
(
"
retopo
"
,
"
Retopo mesh as new layer
"
,
""
),
(
"
vox
"
,
"
Mesh As Voxel Object
"
,
""
),
(
"
alpha
"
,
"
Mesh As New Pen Alpha
"
,
""
),
(
"
prim
"
,
"
Mesh As Voxel Primitive
"
,
""
),
(
"
autopo
"
,
"
Mesh for Auto-retopology
"
,
""
),
),
default
=
"
ppp
"
)
class
coat3D
(
bpy
.
types
.
IDPropertyGroup
):
pass
bpy
.
types
.
Object
.
coat3D
=
PointerProperty
(
name
=
"
Applink Variables
"
,
type
=
coat3D
,
description
=
"
Applink variables
"
)
coat3D
.
objpath
=
StringProperty
(
name
=
"
Object_Path
"
,
default
=
""
)
coat3D
.
coatpath
=
StringProperty
(
name
=
"
Coat_Path
"
,
default
=
""
)
class
coat3D
(
bpy
.
types
.
IDPropertyGroup
):
pass
bpy
.
types
.
Scene
.
coat3D
=
PointerProperty
(
name
=
"
Applink Variables
"
,
type
=
coat3D
,
description
=
"
Applink variables
"
)
coat3D
.
objectdir
=
StringProperty
(
name
=
"
ObjectPath
"
,
subtype
=
"
FILE_PATH
"
,
default
=
""
)
coat3D
.
exchangedir
=
StringProperty
(
name
=
"
FilePath
"
,
subtype
=
"
DIR_PATH
"
,
default
=
""
)
coat3D
.
wasactive
=
StringProperty
(
name
=
"
Pass active object
"
,
default
=
""
)
coat3D
.
export_on
=
BoolProperty
(
name
=
"
Export_On
"
,
description
=
"
Add Modifiers and export.
"
,
default
=
False
)
coat3D
.
smooth_on
=
BoolProperty
(
name
=
"
Auto Smooth
"
,
description
=
"
Add Modifiers and export.
"
,
default
=
True
)
coat3D
.
exportfile
=
BoolProperty
(
name
=
"
No Import File
"
,
description
=
"
Add Modifiers and export.
"
,
default
=
False
)
coat3D
.
importmod
=
BoolProperty
(
name
=
"
Remove Modifiers
"
,
description
=
"
Import and add modifiers.
"
,
default
=
True
)
coat3D
.
exportmod
=
BoolProperty
(
name
=
"
Modifiers
"
,
description
=
"
Export modifiers.
"
,
default
=
False
)
coat3D
.
export_pos
=
BoolProperty
(
name
=
"
Remember Position
"
,
description
=
"
Remember position.
"
,
default
=
True
)
coat3D
.
importtextures
=
BoolProperty
(
name
=
"
Bring Textures
"
,
description
=
"
Import Textures.
"
,
default
=
True
)
coat3D
.
exportover
=
BoolProperty
(
name
=
"
Export Obj
"
,
description
=
"
Import Textures.
"
,
default
=
False
)
coat3D
.
importmesh
=
BoolProperty
(
name
=
"
Mesh
"
,
description
=
"
Import Mesh.
"
,
default
=
True
)
#copy location
coat3D
.
cursor
=
FloatVectorProperty
(
name
=
"
Cursor
"
,
description
=
"
Location.
"
,
subtype
=
"
XYZ
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
loca
=
FloatVectorProperty
(
name
=
"
location
"
,
description
=
"
Location.
"
,
subtype
=
"
XYZ
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
rota
=
FloatVectorProperty
(
name
=
"
location
"
,
description
=
"
Location.
"
,
subtype
=
"
EULER
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
scal
=
FloatVectorProperty
(
name
=
"
location
"
,
description
=
"
Location.
"
,
subtype
=
"
XYZ
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
dime
=
FloatVectorProperty
(
name
=
"
dimension
"
,
description
=
"
Dimension.
"
,
subtype
=
"
XYZ
"
,
default
=
(
0.0
,
0.0
,
0.0
)
)
coat3D
.
type
=
EnumProperty
(
name
=
"
Export Type
"
,
description
=
"
Diffrent Export Types.
"
,
items
=
(
(
"
ppp
"
,
"
Per-Pixel Painting
"
,
""
),
(
"
mv
"
,
"
Microvertex Painting
"
,
""
),
(
"
ptex
"
,
"
Ptex Painting
"
,
""
),
(
"
uv
"
,
"
UV-Mapping
"
,
""
),
(
"
ref
"
,
"
Reference Mesh
"
,
""
),
(
"
retopo
"
,
"
Retopo mesh as new layer
"
,
""
),
(
"
vox
"
,
"
Mesh As Voxel Object
"
,
""
),
(
"
alpha
"
,
"
Mesh As New Pen Alpha
"
,
""
),
(
"
prim
"
,
"
Mesh As Voxel Primitive
"
,
""
),
(
"
autopo
"
,
"
Mesh for Auto-retopology
"
,
""
),
),
default
=
"
ppp
"
)
def
unregister
():
import
bpy
import
bpy
del
bpy
.
types
.
Object
.
coat3D
del
bpy
.
types
.
Scene
.
coat3D
del
bpy
.
coat3D
del
bpy
.
types
.
Object
.
coat3D
del
bpy
.
types
.
Scene
.
coat3D
del
bpy
.
coat3D
if
__name__
==
"
__main__
"
:
register
()
register
()
This diff is collapsed.
Click to expand it.
io_coat3D/coat.py
+
421
−
421
View file @
6969994d
This diff is collapsed.
Click to expand it.
io_coat3D/tex.py
+
336
−
347
View file @
6969994d
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