Skip to content
Snippets Groups Projects
Commit 6969994d authored by Campbell Barton's avatar Campbell Barton
Browse files

tabs -> spaces

parent 3a2267df
No related branches found
No related tags found
No related merge requests found
......@@ -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.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment