Newer
Older
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
"""Import, export and render to POV engines.
These engines can be POV-Ray or Uberpov but others too, since POV is a
Scene Description Language. The script has been split in as few files
Update new variables to values from older API. This file needs an update
Provide property buttons for the user to set up the variables
Display some POV native primitives in 3D view for input and output
Translate shading properties to declared textures at the top of a pov file
nodes.py
Translate node trees to the pov file
render.py :
Translate geometry and UI properties (Blender and POV native) to the POV file
Along these essential files also coexist a few additional libraries to help make
Blender stand up to other POV IDEs such as povwin or QTPOV
apple.py ; chicken.py ; cream.py ; Ketchup.py ; marble.py ;
potato.py ; skim_milk.py ; skin1.py ; skin2.py ; whole_milk.py
Radiosity
01_Debug.py ; 02_Fast.py ; 03_Normal.py ; 04_Two_Bounces.py ;
05_Final.py ; 06_Outdoor_Low_Quality.py ; 07_Outdoor_High_Quality.py ;
08_Outdoor(Sun)Light.py ; 09_Indoor_Low_Quality.py ;
10_Indoor_High_Quality.py ;
World
01_Clear_Blue_Sky.py ; 02_Partly_Hazy_Sky.py ; 03_Overcast_Sky.py ;
04_Cartoony_Sky.py ; 05_Under_Water.py ;
Light
01_(4800K)_Direct_Sun.py ;
02_(5400K)_High_Noon_Sun.py ;
03_(6000K)_Daylight_Window.py ;
04_(6000K)_2500W_HMI_(Halogen_Metal_Iodide).py ;
05_(4000K)_100W_Metal_Halide.py ;
06_(3200K)_100W_Quartz_Halogen.py ;
07_(2850K)_100w_Tungsten.py ;
08_(2600K)_40w_Tungsten.py ;
09_(5000K)_75W_Full_Spectrum_Fluorescent_T12.py ;
10_(4300K)_40W_Vintage_Fluorescent_T12.py ;
11_(5000K)_18W_Standard_Fluorescent_T8 ;
12_(4200K)_18W_Cool_White_Fluorescent_T8.py ;
14_(6500K)_54W_Grow_Light_Fluorescent_T5-HO.py ;
15_(3200K)_40W_Induction_Fluorescent.py ;
16_(2100K)_150W_High_Pressure_Sodium.py ;
17_(1700K)_135W_Low_Pressure_Sodium.py ;
18_(6800K)_175W_Mercury_Vapor.py ;
19_(5200K)_700W_Carbon_Arc.py ;
20_(6500K)_15W_LED_Spot.py ;
21_(2700K)_7W_OLED_Panel.py ;
23_(30000K)_40W_Black_Light_Bulb.py;
24_(1850K)_Candle.py
templates:
abyss.pov ; biscuit.pov ; bsp_Tango.pov ; chess2.pov ;
cornell.pov ; diffract.pov ; diffuse_back.pov ; float5 ;
gamma_showcase.pov ; grenadine.pov ; isocacti.pov ;
mediasky.pov ; patio-radio.pov ; subsurface.pov ; wallstucco.pov
"""
"name": "Persistence of Vision",
"author": "Campbell Barton, "
"Maurice Raybaud, "
"Leonid Desyatkov, "
"Bastien Montagne, "
"Constantin Rahn, "
"Silvio Falcinelli",
"location": "Render Properties > Render Engine > Persistence of Vision",
"description": "Persistence of Vision integration for blender",
"doc_url": "{BLENDER_MANUAL_URL}/addons/render/povray.html",
"category": "Render",
"warning": "Under active development, seeking co-maintainer(s)",
importlib.reload(render)
importlib.reload(primitives)
importlib.reload(update_files)
from bpy.utils import register_class, unregister_class
# import addon_utils # To use some other addons
import nodeitems_utils # for Nodes
from nodeitems_utils import NodeCategory, NodeItem # for Nodes
from bl_operators.presets import AddPresetBase
from bpy.types import (
AddonPreferences,
PropertyGroup,
NodeSocket,
)
StringProperty,
BoolProperty,
IntProperty,
FloatProperty,
EnumProperty,
PointerProperty,
CollectionProperty,
)
from . import ui, render, update_files
CoDEmanX
committed
def string_strip_hyphen(name):
"""Remove hyphen characters from a string to avoid POV errors"""
return name.replace("-", "")
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
def pov_context_tex_datablock(context):
"""Texture context type recreated as deprecated in blender 2.8"""
idblock = context.brush
if idblock and context.scene.texture_context == 'OTHER':
return idblock
# idblock = bpy.context.active_object.active_material
idblock = context.view_layer.objects.active.active_material
if idblock and context.scene.texture_context == 'MATERIAL':
return idblock
idblock = context.world
if idblock and context.scene.texture_context == 'WORLD':
return idblock
idblock = context.light
if idblock and context.scene.texture_context == 'LIGHT':
return idblock
if context.particle_system and context.scene.texture_context == 'PARTICLES':
idblock = context.particle_system.settings
return idblock
idblock = context.line_style
if idblock and context.scene.texture_context == 'LINESTYLE':
return idblock
def brush_texture_update(self, context):
"""Brush texture rolldown must show active slot texture props"""
idblock = pov_context_tex_datablock(context)
if idblock is not None:
#mat = context.view_layer.objects.active.active_material
idblock = pov_context_tex_datablock(context)
slot = idblock.pov_texture_slots[idblock.pov.active_texture_index]
tex = slot.texture
if tex:
# Switch paint brush to active texture so slot and settings remain contextual
bpy.context.tool_settings.image_paint.brush.texture = bpy.data.textures[tex]
bpy.context.tool_settings.image_paint.brush.mask_texture = bpy.data.textures[tex]
def active_texture_name_from_uilist(self, context):
idblock = pov_context_tex_datablock(context)
#mat = context.view_layer.objects.active.active_material
if idblock is not None:
index = idblock.pov.active_texture_index
name = idblock.pov_texture_slots[index].name
newname = idblock.pov_texture_slots[index].texture
tex = bpy.data.textures[name]
tex.name = newname
idblock.pov_texture_slots[index].name = newname
def active_texture_name_from_search(self, context):
"""Texture rolldown to change the data linked by an existing texture"""
idblock = pov_context_tex_datablock(context)
#mat = context.view_layer.objects.active.active_material
if idblock is not None:
index = idblock.pov.active_texture_index
slot = idblock.pov_texture_slots[index]
name = slot.texture_search
try:
tex = bpy.data.textures[name]
slot.name = name
slot.texture = name
# Switch paint brush to this texture so settings remain contextual
#bpy.context.tool_settings.image_paint.brush.texture = tex
#bpy.context.tool_settings.image_paint.brush.mask_texture = tex
Bastien Montagne
committed
###############################################################################
# Scene POV properties.
###############################################################################
class RenderPovSettingsScene(PropertyGroup):
"""Declare scene level properties controllable in UI and translated to POV"""
name="Enable SDL window",
description="Enable the SDL window in Linux OS",
default=True,
)
name="Text Scene Name",
description="Name of POV scene to use. "
"Set when clicking Run to render current text only",
maxlen=1024,
)
name="Enable Tempfiles",
description="Enable the OS-Tempfiles. Otherwise set the path where"
name="POV editor",
description="Don't Close POV editor after rendering (Overridden"
deletefiles_enable: BoolProperty(
name="Delete files",
description="Delete files after rendering. "
name="Scene Name",
description="Name of POV scene to create. Empty name will use "
"the name of the blend file",
maxlen=1024,
)
name="Export scene path",
# Bug in POV-Ray RC3
# description="Path to directory where the exported scene "
# "(POV and INI) is created",
description="Path to directory where the files are created",
maxlen=1024,
subtype="DIR_PATH",
)
renderimage_path: StringProperty(
name="Rendered image path",
description="Full path to directory where the rendered image is "
"saved",
maxlen=1024,
subtype="DIR_PATH",
)
name="LF in lists",
description="Enable line breaks in lists (vectors and indices). "
"Disabled: lists are exported in one line",
default=True,
)
# Not a real pov option, just to know if we should write
name="Enable Radiosity",
description="Enable POV radiosity calculation",
default=True,
)
radio_display_advanced: BoolProperty(
name="Advanced Options",
description="Show advanced options",
default=False,
)
name="Enable Media",
description="Enable POV atmospheric media",
default=False,
)
name="Samples",
description="Number of samples taken from camera to first object "
"encountered along ray path for media calculation",
min=1,
max=100,
default=35,
)
media_scattering_type: EnumProperty(
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
name="Scattering Type",
description="Scattering model",
items=(
(
'1',
"1 Isotropic",
"The simplest form of scattering because"
" it is independent of direction."
),
(
'2',
"2 Mie haze ",
"For relatively small particles such as "
"minuscule water droplets of fog, cloud "
"particles, and particles responsible "
"for the polluted sky. In this model the"
" scattering is extremely directional in"
" the forward direction i.e. the amount "
"of scattered light is largest when the "
"incident light is anti-parallel to the "
"viewing direction (the light goes "
"directly to the viewer). It is smallest"
" when the incident light is parallel to"
" the viewing direction. "
),
(
'3',
"3 Mie murky",
"Like haze but much more directional"
),
(
'4',
"4 Rayleigh",
"For extremely small particles such as "
"molecules of the air. The amount of "
"scattered light depends on the incident"
" light angle. It is largest when the "
"incident light is parallel or "
"anti-parallel to the viewing direction "
"and smallest when the incident light is "
"perpendicular to viewing direction."
),
(
'5',
"5 Henyey-Greenstein",
"The default eccentricity value "
"of zero defines isotropic "
"scattering while positive "
"values lead to scattering in "
"the direction of the light and "
"negative values lead to "
"scattering in the opposite "
"direction of the light. Larger "
"values of e (or smaller values "
"in the negative case) increase "
"the directional property of the"
" scattering."
)
),
default='1',
)
media_diffusion_scale: FloatProperty(
name="Scale",
description="Scale factor of Media Diffusion Color",
Bastien Montagne
committed
precision=6, step=0.00000001, min=0.000000001, max=1.0,
media_diffusion_color: FloatVectorProperty(
name="Media Diffusion Color",
description="The atmospheric media color",
precision=4, step=0.01, min=0, soft_max=1,
default=(0.001, 0.001, 0.001),
options={'ANIMATABLE'},
subtype='COLOR',
)
Bastien Montagne
committed
media_absorption_scale: FloatProperty(
name="Scale",
description="Scale factor of Media Absorption Color. "
"use 1/depth of media volume in meters",
Bastien Montagne
committed
precision=6,
step=0.000001,
min=0.000000001,
max=1.0,
default=(0.00002),
)
media_absorption_color: FloatVectorProperty(
name="Media Absorption Color",
description="The atmospheric media absorption color",
precision=4, step=0.01, min=0, soft_max=1,
default=(0.0, 0.0, 0.0),
options={'ANIMATABLE'},
subtype='COLOR',
)
media_eccentricity: FloatProperty(
name="Media Eccenticity Factor",
description="Positive values lead"
" to scattering in the direction of the light and negative "
"values lead to scattering in the opposite direction of the "
"light. Larger values of e (or smaller values in the negative"
" case) increase the directional property of the scattering.",
precision=2,
step=0.01,
min=-1.0,
max=1.0,
default=(0.0),
options={'ANIMATABLE'},
)
name="Enable Baking",
description="Enable POV texture baking",
default=False
)
indentation_character: EnumProperty(
name="Indentation",
description="Select the indentation type",
items=(
('NONE', "None", "No indentation"),
('TAB', "Tabs", "Indentation with tabs"),
('SPACE', "Spaces", "Indentation with spaces")
),
name="Quantity of spaces",
description="The number of spaces for indentation",
min=1,
max=10,
default=4,
)
name="Enable Comments",
description="Add comments to pov file",
default=True,
)
command_line_switches: StringProperty(
name="Command Line Switches",
description="Command line switches consist of a + (plus) or - "
"(minus) sign, followed by one or more alphabetic "
"characters and possibly a numeric value",
maxlen=500,
)
name="Anti-Alias", description="Enable Anti-Aliasing",
default=True,
)
name="Method",
description="AA-sampling method. Type 1 is an adaptive, "
"non-recursive, super-sampling method. Type 2 is an "
"adaptive and recursive super-sampling method. Type 3 "
"is a stochastic halton based super-sampling method",
items=(
("0", "non-recursive AA", "Type 1 Sampling in POV"),
("1", "recursive AA", "Type 2 Sampling in POV"),
("2", "stochastic AA", "Type 3 Sampling in POV")
),
default="1",
)
antialias_confidence: FloatProperty(
name="Antialias Confidence",
description="how surely the computed color "
"of a given pixel is indeed"
"within the threshold error margin",
min=0.0001,
max=1.0000,
default=0.9900,
precision=4
name="Antialias Depth",
description="Depth of pixel for sampling",
antialias_threshold: FloatProperty(
name="Antialias Threshold",
description="Tolerance for sub-pixels",
min=0.0,
max=1.0,
soft_min=0.05,
soft_max=0.5,
default=0.03,
)
name="Jitter",
description="Enable Jittering. Adds noise into the sampling "
"process (it should be avoided to use jitter in "
"animation)",
default=False,
)
name="Jitter Amount",
description="Amount of jittering",
min=0.0,
max=1.0,
soft_min=0.01,
soft_max=1.0,
default=1.0,
)
name="Antialias Gamma",
description="POV-Ray compares gamma-adjusted values for super "
"sampling. Antialias Gamma sets the Gamma before "
"comparison",
min=0.0,
max=5.0,
soft_min=0.01,
soft_max=2.5,
default=2.5,
)
name="Alpha",
description="Representation of alpha information in the RGBA pixels",
items=(
("SKY", "Sky", "Transparent pixels are filled with sky color"),
(
"TRANSPARENT",
"Transparent",
"Transparent, World background is transparent with premultiplied alpha",
),
),
default="SKY",
)
name="Shadows",
description="Calculate shadows while rendering",
default=True,
)
name="Max Trace Level",
description="Number of reflections/refractions allowed on ray "
"path",
adc_bailout_enable: BoolProperty(
name="Enable",
description="",
default=False,
)
Maurice Raybaud
committed
name="ADC Bailout",
description="Adaptive Depth Control (ADC) to stop computing additional"
"reflected or refracted rays when their contribution is insignificant."
"The default value is 1/255, or approximately 0.0039, since a change "
"smaller than that could not be visible in a 24 bit image. Generally "
"this value is fine and should be left alone."
"Setting adc_bailout to 0 will disable ADC, relying completely on "
"max_trace_level to set an upper limit on the number of rays spawned. ",
min=0.0,
max=1000.0,
default=0.00392156862745,
precision=3
)
Maurice Raybaud
committed
ambient_light_enable: BoolProperty(
name="Enable",
description="",
default=False,
)
Maurice Raybaud
committed
ambient_light: FloatVectorProperty(
name="Ambient Light",
description="Ambient light is used to simulate the effect of inter-diffuse reflection",
precision=4, step=0.01, min=0, soft_max=1,
default=(1, 1, 1), options={'ANIMATABLE'}, subtype='COLOR',
global_settings_advanced: BoolProperty(
name="Advanced",
description="",
default=False,
)
Maurice Raybaud
committed
irid_wavelength_enable: BoolProperty(
name="Enable",
description="",
default=False,
)
Maurice Raybaud
committed
irid_wavelength: FloatVectorProperty(
name="Irid Wavelength",
description=(
"Iridescence calculations depend upon the dominant "
"wavelengths of the primary colors of red, green and blue light"
),
precision=4,
step=0.01,
min=0,
soft_max=1,
default=(0.25,0.18,0.14),
options={'ANIMATABLE'},
subtype='COLOR'
# Deprecated (autodetected in pov3.8):
# charset: EnumProperty(
# name="Charset",
# description="This allows you to specify the assumed character set of all text strings",
# items=(
# ("ascii", "ASCII", ""),
# ("utf8", "UTF-8", ""),
# ("sys", "SYS", "")
# ),
# default="utf8",
# )
Maurice Raybaud
committed
max_intersections_enable: BoolProperty(
name="Enable",
description="",
default=False,
)
Maurice Raybaud
committed
name="Max Intersections",
description="POV-Ray uses a set of internal stacks to collect ray/object intersection points",
min=2,
max=1024,
default=64,
)
Maurice Raybaud
committed
number_of_waves_enable: BoolProperty(
name="Enable",
description="",
default=False,
)
Maurice Raybaud
committed
name="Number Waves",
description=(
"The waves and ripples patterns are generated by summing a series of waves, "
"each with a slightly different center and size"
),
min=1,
max=10,
default=1000,
)
Maurice Raybaud
committed
noise_generator_enable: BoolProperty(
name="Enable",
description="",
default=False,
)
Maurice Raybaud
committed
name="Noise Generator",
description="There are three noise generators implemented",
min=1,
max=3,
default=2,
)
########################### PHOTONS #######################################
name="Photons",
description="Enable global photons",
default=False,
)
photon_enable_count: BoolProperty(
name="Spacing / Count",
description="Enable count photons",
default=False,
)
name="Count",
description="Photons count",
min=1,
max=100000000,
default=20000
)
name="Spacing",
description="Average distance between photons on surfaces. half "
"this get four times as many surface photons",
min=0.001,
max=1.000,
soft_min=0.001,
soft_max=1.000,
photon_max_trace_level: IntProperty(
name="Max Trace Level",
description="Number of reflections/refractions allowed on ray "
"path",
min=1,
max=256,
default=5
)
photon_adc_bailout: FloatProperty(
name="ADC Bailout",
description="The adc_bailout for photons. Use adc_bailout = "
"0.01 / brightest_ambient_object for good results",
min=0.0,
max=1000.0,
soft_min=0.0,
soft_max=1.0,
precision=3,
default=0.1,
)
name="Gather Min", description="Minimum number of photons gathered"
"for each point",
min=1, max=256, default=20
)
name="Gather Max", description="Maximum number of photons gathered for each point",
min=1, max=256, default=100
)
photon_map_file_save_load: EnumProperty(
name="Operation",
description="Load or Save photon map file",
items=(
("NONE", "None", ""),
("save", "Save", ""),
("load", "Load", "")
),
default="NONE",
)
photon_map_filename: StringProperty(
name="Filename",
description="",
maxlen=1024
)
name="Directory",
description="",
maxlen=1024,
subtype="DIR_PATH",
)
name="File",
description="",
maxlen=1024,
subtype="FILE_PATH"
)
radio_adc_bailout: FloatProperty(
name="ADC Bailout",
description="The adc_bailout for radiosity rays. Use "
"adc_bailout = 0.01 / brightest_ambient_object for good results",
min=0.0,
max=1000.0,
soft_min=0.0,
soft_max=1.0,
default=0.0039,
precision=4,
)
radio_always_sample: BoolProperty(
name="Always Sample",
description="Only use the data from the pretrace step and not gather "
"any new samples during the final radiosity pass",
default=False,
)
name="Brightness",
description="Amount objects are brightened before being returned "
"upwards to the rest of the system",
min=0.0, max=1000.0, soft_min=0.0, soft_max=10.0, default=1.0
)
name="Ray Count",
description="Number of rays for each new radiosity value to be calculated "
"(halton sequence over 1600)",
min=1, max=10000, soft_max=1600, default=35
)
radio_error_bound: FloatProperty(
name="Error Bound",
description="One of the two main speed/quality tuning values, "
"lower values are more accurate",
min=0.0, max=1000.0, soft_min=0.1, soft_max=10.0, default=10.0
radio_gray_threshold: FloatProperty(
name="Gray Threshold",
description="One of the two main speed/quality tuning values, "
"lower values are more accurate",
min=0.0, max=1.0, soft_min=0, soft_max=1, default=0.0
)
radio_low_error_factor: FloatProperty(
name="Low Error Factor",
description="Just enough samples is slightly blotchy. Low error changes error "
"tolerance for less critical last refining pass",
min=0.000001, max=1.0, soft_min=0.000001, soft_max=1.0, default=0.5
)
name="Media",
description="Radiosity estimation can be affected by media",
default=True,
)
name="Subsurface",
description="Radiosity estimation can be affected by Subsurface Light Transport",
default=False,
)
Maurice Raybaud
committed
radio_minimum_reuse: FloatProperty(
name="Minimum Reuse",
description="Fraction of the screen width which sets the minimum radius of reuse "
"for each sample point (At values higher than 2% expect errors)",
min=0.0, max=1.0, soft_min=0.1, soft_max=0.1, default=0.015, precision=3
)
radio_maximum_reuse: FloatProperty(
name="Maximum Reuse",
description="The maximum reuse parameter works in conjunction with, and is similar to that of minimum reuse, "
"the only difference being that it is an upper bound rather than a lower one",
min=0.0, max=1.0,default=0.2, precision=3
)
Maurice Raybaud
committed
radio_nearest_count: IntProperty(
name="Nearest Count",
description="Number of old ambient values blended together to "
"create a new interpolated value",
min=1, max=20, default=1
)
name="Normals",
description="Radiosity estimation can be affected by normals",
default=False,
)
radio_recursion_limit: IntProperty(
name="Recursion Limit",
description="how many recursion levels are used to calculate "
"the diffuse inter-reflection",
min=1, max=20, default=1
)
radio_pretrace_start: FloatProperty(
name="Pretrace Start",
description="Fraction of the screen width which sets the size of the "
"blocks in the mosaic preview first pass",
min=0.005, max=1.00, soft_min=0.02, soft_max=1.0, default=0.04
# XXX TODO set automatically to pretrace_end = 8 / max (image_width, image_height)
# for non advanced mode
radio_pretrace_end: FloatProperty(
name="Pretrace End",
description="Fraction of the screen width which sets the size of the blocks "
"in the mosaic preview last pass",
min=0.000925, max=1.00, soft_min=0.01, soft_max=1.00, default=0.004, precision=3
Bastien Montagne
committed
###############################################################################
# Material POV properties.
###############################################################################
"""Declare material texture slot level properties for UI and translated to POV."""
bl_idname="pov_texture_slots",
bl_description="Texture_slots from Blender-2.79",
# Adding a "real" texture datablock as property is not possible
# (or at least not easy through a dynamically populated EnumProperty).
# That's why we'll use a prop_search() UILayout function in ui.py.
# So we'll assign the name of the needed texture datablock to the below StringProperty.
texture : StringProperty(update=active_texture_name_from_uilist)
# and use another temporary StringProperty to change the linked data
texture_search : StringProperty(
name="",
update = active_texture_name_from_search,
description = "Browse Texture to be linked",
)
name="Alpha",
description="Amount texture affects alpha",
name="",
description="Amount texture affects ambient",
name="",
description="Method to use for bump mapping",
items=(
("BUMP_ORIGINAL", "Bump Original", ""),
("BUMP_COMPATIBLE", "Bump Compatible", ""),
("BUMP_DEFAULT", "Bump Default", ""),
("BUMP_BEST_QUALITY", "Bump Best Quality", "")
),
default="BUMP_ORIGINAL",
)
name="",
description="Space to apply bump mapping in",
items=(
("BUMP_VIEWSPACE", "Bump Viewspace", ""),
("BUMP_OBJECTSPACE", "Bump Objectspace", ""),
("BUMP_TEXTURESPACE", "Bump Texturespace", "")
),
default="BUMP_VIEWSPACE",
)
name="",
description="Amount texture affects density",
name="",
description="Amount texture affects diffuse color",
name="",
description="Amount texture affects diffuse reflectivity",
name="",
description="Amount texture displaces the surface",
name="",
description="Amount texture affects emission color",
name="",
description="Amount texture affects emission",
name="",
description="Amount texture affects emission",
name="",
description="Amount texture affects hardness",
name="",
description="",
items=(("FLAT", "Flat", ""),
("CUBE", "Cube", ""),
("TUBE", "Tube", ""),
("SPHERE", "Sphere", "")),
default="FLAT",
)
name="",
description="",
items=(("NONE", "", ""),
("X", "", ""),
("Y", "", ""),
("Z", "", "")),
default="NONE",
)
name="",
description="",
items=(("NONE", "", ""),
("X", "", ""),
("Y", "", ""),
("Z", "", "")),
default="NONE",
)
name="",
description="",
items=(("NONE", "", ""),
("X", "", ""),
("Y", "", ""),
("Z", "", "")),
default="NONE",
)
name="",
description="Amount texture affects mirror color",
name="",
description="Amount texture affects normal values",
name="",
description="Sets space of normal map image",
items=(("CAMERA", "Camera", ""),
("WORLD", "World", ""),
("OBJECT", "Object", ""),
("TANGENT", "Tangent", "")),
default="CAMERA",
)
name="Object",
description="Object to use for mapping with Object texture coordinates",
default ="",
)
name="",
description="Amount texture affects ray mirror",
reflection_color_factor: FloatProperty(
name="",
description="Amount texture affects color of out-scattered light",
name="",
description="Amount texture affects brightness of out-scattered light",
name="",
description="Amount texture affects scattering",
specular_color_factor: FloatProperty(
name="",
description="Amount texture affects specular color",
name="",
description="Amount texture affects specular reflectivity",
default = 1.0,
)
offset: FloatVectorProperty(
name="Offset",
description=("Fine tune of the texture mapping X, Y and Z locations "),
precision=4,
step=0.1,
soft_min= -100.0,
soft_max=100.0,
default=(0.0,0.0,0.0),
options={'ANIMATABLE'},
subtype='TRANSLATION',
scale: FloatVectorProperty(
name="Size",
subtype='XYZ',
size=3,
description="Set scaling for the texture’s X, Y and Z sizes ",
precision=4,
step=0.1,
soft_min= -100.0,
soft_max=100.0,
default=(1.0,1.0,1.0),
options={'ANIMATABLE'},
)
items=(
("GLOBAL", "Global", ""),
("OBJECT", "Object", ""),
("UV", "UV", ""),
("ORCO", "Original Coordinates", ""),
("STRAND", "Strand", ""),
("STICKY", "Sticky", ""),
("WINDOW", "Window", ""),
("NORMAL", "Normal", ""),
("REFLECTION", "Reflection", ""),
("STRESS", "Stress", ""),
("TANGENT", "Tangent", "")
),
name="",
description="Amount texture affects translucency",
transmission_color_factor: FloatProperty(
name="",
description="Amount texture affects result color after light has been scattered/absorbed",
name="",
description="Enable this material texture slot",
default = True,
)
name="",
description="Dupli’s instanced from verts, faces or particles, inherit texture coordinate from their parent",
default = False,
)
name="",
description="Dupli’s derive their object coordinates from the original objects transformation",
default = False,
)
use_interpolation: BoolProperty(
name="",
description="Interpolates pixels using selected filter ",
default = False,
)
name="",
description="Causes the texture to affect the alpha value",
default = False,
)
name="",
description="Causes the texture to affect the value of ambient",
default = False,
)
name="",
description="Causes the texture to affect basic color of the material",
use_map_color_emission: BoolProperty(
name="",
description="Causes the texture to affect the color of emission",
default = False,
)
use_map_color_reflection: BoolProperty(
name="",
description="Causes the texture to affect the color of scattered light",
default = False,
)
name="",
description="Causes the texture to affect the specularity color",
default = False,
)
use_map_color_transmission: BoolProperty(
name="",
description="Causes the texture to affect the result color after other light has been scattered/absorbed",
default = False,
)
name="",
description="Causes the texture to affect the volume’s density",
default = False,
)
name="",
description="Causes the texture to affect the value of the materials diffuse reflectivity",
default = False,
)
name="",
description="Let the texture displace the surface",
default = False,
)
name="",
description="Causes the texture to affect the volume’s emission",
default = False,
)
name="",
description="Causes the texture to affect the emit value",
default = False,
)
name="",
description="Causes the texture to affect the hardness value",
default = False,
)
name="",
description="Causes the texture to affect the mirror color",
default = False,
)
name="",
description="Causes the texture to affect the rendered normal",
default = False,
)
name="",
description="Causes the texture to affect the ray-mirror value",
default = False,
)
name="",
description="Causes the texture to affect the reflected light’s brightness",
default = False,
)
name="",
description="Causes the texture to affect the volume’s scattering",
default = False,
)
name="",
description="Causes the texture to affect the value of specular reflectivity",
default = False,
)
name="",
description="Causes the texture to affect the translucency value",
default = False,
)
name="",
description="Let the texture warp texture coordinates of next channels",
default = False,
)
name="",
description="UV layer to use for mapping with UV texture coordinates",
default = "",
)
name="",
description="Amount texture affects texture coordinates of next channels",
default = 0.0,
)
#######################################
name="Blend",
description="Amount texture affects color progression of the "
"background",
soft_min=0.0, soft_max=1.0, default=1.0,
)
name="Horizon",
description="Amount texture affects color of the horizon"
"",
soft_min=0.0, soft_max=1.0, default=1.0
)
name="Object",
description="Object to use for mapping with Object texture coordinates",
default="",
)
name="Coordinates",
description="Texture coordinates used to map the texture onto the background",
items=(
("VIEW", "View", "Use view vector for the texture coordinates"),
("GLOBAL", "Global", "Use global coordinates for the texture coordinates (interior mist)"),
("ANGMAP", "AngMap", "Use 360 degree angular coordinates, e.g. for spherical light probes"),
("SPHERE", "Sphere", "For 360 degree panorama sky, spherical mapped, only top half"),
("EQUIRECT", "Equirectangular", "For 360 degree panorama sky, equirectangular mapping"),
("TUBE", "Tube", "For 360 degree panorama sky, cylindrical mapped, only top half"),
("OBJECT", "Object", "Use linked object’s coordinates for texture coordinates")
),
name="Blend Map",
description="Affect the color progression of the background",
default=True,
)
name="Horizon Map",
description="Affect the color of the horizon",
default=False,
)
name="", description="Affect the color of the zenith below",
default=False,
)
name="Zenith Up Map", description="Affect the color of the zenith above",
default=False,
)
name="Zenith Down",
description="Amount texture affects color of the zenith below",
soft_min=0.0, soft_max=1.0, default=1.0
)
name="Zenith Up",
description="Amount texture affects color of the zenith above",
soft_min=0.0, soft_max=1.0, default=1.0
)
# former Space properties from removed Blender Internal added below at superclass level
# so as to be available in World, Material, Light for texture slots use
bpy.types.ID.use_limited_texture_context = BoolProperty(
name="",
description="Use the limited version of texture user (for ‘old shading’ mode)",
default=True,
)
bpy.types.ID.texture_context = EnumProperty(
name="Texture context",
description="Type of texture data to display and edit",
items=(
('MATERIAL', "", "Show material textures", "MATERIAL",0), # "Show material textures"
('WORLD', "", "Show world textures", "WORLD",1), # "Show world textures"
('LIGHT', "", "Show lamp textures", "LIGHT",2), # "Show lamp textures"
('PARTICLES', "", "Show particles textures", "PARTICLES",3), # "Show particles textures"
('LINESTYLE', "", "Show linestyle textures", "LINE_DATA",4), # "Show linestyle textures"
('OTHER', "", "Show other data textures", "TEXTURE_DATA",5) # "Show other data textures"
),
# bpy.types.ID.active_texture_index = IntProperty(
# name = "Index for texture_slots",
# default = 0,
# )
class RenderPovSettingsMaterial(PropertyGroup):
"""Declare material level properties controllable in UI and translated to POV."""
######################Begin Old Blender Internal Props#########################
# former Space properties from removed Blender Internal
use_limited_texture_context: BoolProperty(
name="",
description="Use the limited version of texture user (for ‘old shading’ mode)",
default=True,
)
texture_context: EnumProperty(
name="Texture context",
description="Type of texture data to display and edit",
items=(
('MATERIAL', "", "Show material textures", "MATERIAL",0), # "Show material textures"
('WORLD', "", "Show world textures", "WORLD",1), # "Show world textures"
('LAMP', "", "Show lamp textures", "LIGHT",2), # "Show lamp textures"
('PARTICLES', "", "Show particles textures", "PARTICLES",3), # "Show particles textures"
('LINESTYLE', "", "Show linestyle textures", "LINE_DATA",4), # "Show linestyle textures"
('OTHER', "", "Show other data textures", "TEXTURE_DATA",5) # "Show other data textures"
),
active_texture_index: IntProperty(
name = "Index for texture_slots",
default = 0,
update = brush_texture_update
transparency_method: EnumProperty(
name="Specular Shader Model",
description="Method to use for rendering transparency",
items=(
("MASK", "Mask", "Mask the background"),
("Z_TRANSPARENCY", "Z Transparency", "Use alpha buffer for transparent faces"),
("RAYTRACE", "Raytrace", "Use raytracing for transparent refraction rendering")
),
use_transparency: BoolProperty(
name="Transparency",
description="Render material as transparent",
default=False,
)
alpha: FloatProperty(
name="Alpha",
description="Alpha transparency of the material",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3,
)
specular_alpha: FloatProperty(
name="Specular alpha",
description="Alpha transparency for specular areas",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3,
)
ambient: FloatProperty(
name="Ambient",
description="Amount of global ambient color the material receives",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3,
)
diffuse_color: FloatVectorProperty(
name="Diffuse color",
description=("Diffuse color of the material"),
precision=4, step=0.01, min=0, # max=inf, soft_max=1,
default=(0.6,0.6,0.6), options={'ANIMATABLE'}, subtype='COLOR',
)
darkness: FloatProperty(
name="Darkness",
description="Minnaert darkness",
min=0.0, max=2.0, soft_min=0.0, soft_max=2.0, default=1.0, precision=3,
)
diffuse_fresnel: FloatProperty(
name="Diffuse fresnel",
description="Power of Fresnel",
min=0.0, max=5.0, soft_min=0.0, soft_max=5.0, default=1.0, precision=3,
)
diffuse_fresnel_factor: FloatProperty(
name="Diffuse fresnel factor",
description="Blending factor of Fresnel",
min=0.0, max=5.0, soft_min=0.0, soft_max=5.0, default=0.5, precision=3,
)
diffuse_intensity: FloatProperty(
name="Diffuse intensity",
description="Amount of diffuse reflection multiplying color",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=0.8, precision=3,
)
diffuse_ramp_blend: EnumProperty(
name="Diffuse ramp blend",
description="Blending method of the ramp and the diffuse color",
items=(
("MIX", "Mix", ""),
("ADD", "Add", ""),
("MULTIPLY", "Multiply", ""),
("SUBTRACT", "Subtract", ""),
("SCREEN", "Screen", ""),
("DIVIDE", "Divide", ""),
("DIFFERENCE", "Difference", ""),
("DARKEN", "Darken", ""),
("LIGHTEN", "Lighten", ""),
("OVERLAY", "Overlay", ""),
("DODGE", "Dodge", ""),
("BURN", "Burn", ""),
("HUE", "Hue", ""),
("SATURATION", "Saturation", ""),
("VALUE", "Value", ""),
("COLOR", "Color", ""),
("SOFT_LIGHT", "Soft light", ""),
("LINEAR_LIGHT", "Linear light", "")
),
diffuse_ramp_factor: FloatProperty(
name="Factor",
description="Blending factor (also uses alpha in Colorband)",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3,
)
diffuse_ramp_input: EnumProperty(
name="Input",
description="How the ramp maps on the surface",
items=(
("SHADER", "Shader", ""),
("ENERGY", "Energy", ""),
("NORMAL", "Normal", ""),
("RESULT", "Result", "")
),
default="SHADER",
diffuse_shader: EnumProperty(
name="Diffuse Shader Model",
description="How the ramp maps on the surface",
items=(
("LAMBERT", "Lambert", "Use a Lambertian shader"),
("OREN_NAYAR", "Oren-Nayar", "Use an Oren-Nayar shader"),
("MINNAERT", "Minnaert", "Use a Minnaert shader"),
("FRESNEL", "Fresnel", "Use a Fresnel shader")
),
diffuse_toon_size: FloatProperty(
name="Size",
description="Size of diffuse toon area",
min=0.0, max=3.14, soft_min=0.0, soft_max=3.14, default=0.5, precision=3,
)
diffuse_toon_smooth: FloatProperty(
name="Smooth",
description="Smoothness of diffuse toon area",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=0.1, precision=3,
)
emit: FloatProperty(
name="Emit",
description="Amount of light to emit",
min=0.0, soft_min=0.0, # max=inf, soft_max=inf,
default=0.0, precision=3,
)
mirror_color: FloatVectorProperty(
name="Mirror color",
description=("Mirror color of the material"),
precision=4, step=0.01, min=0, # max=inf, soft_max=1,
default=(0.6,0.6,0.6), options={'ANIMATABLE'}, subtype='COLOR'
)
roughness: FloatProperty(
name="Roughness",
description="Oren-Nayar Roughness",
min=0.0, max=3.14, soft_min=0.0, soft_max=3.14,
precision=3,
default=0.5,
)
halo: BoolProperty(
name="Halo",
description=" Halo settings for the material",
default=False,
)
# (was readonly in Blender2.79, never None)
line_color: FloatVectorProperty(
name="Line color",
description=("Line color used for Freestyle line rendering"),
precision=4, step=0.01, min=0, # max=inf, soft_max=1,
default=(0.0,0.0,0.0), options={'ANIMATABLE'}, subtype='COLOR'
)
# diffuse_ramp:
## Color ramp used to affect diffuse shading
## Type: ColorRamp, (readonly)
# cr_node = bpy.data.materials['Material'].node_tree.nodes['ColorRamp']
# layout.template_color_ramp(cr_node, "color_ramp", expand=True)
# ou
# class bpy.types.ColorRamp(bpy_struct)
line_priority: IntProperty(
name="Recursion Limit",
description="The line color of a higher priority is used at material boundaries",
min=0, max=32767, default=0,
)
specular_color: FloatVectorProperty(
name="Specular color",
description=("Specular color of the material "),
precision=4, step=0.01, min=0, # max=inf, soft_max=1,
default=(1.0,1.0,1.0), options={'ANIMATABLE'}, subtype='COLOR'
)
specular_hardness: IntProperty(
name="Hardness",
description="How hard (sharp) the specular reflection is",
min=1, max=511, default=50,
)
specular_intensity: FloatProperty(
name="Intensity",
description="How intense (bright) the specular reflection is",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=0.5, precision=3
)
name="IOR",
description="Specular index of refraction",
min=-10.0, max=10.0, soft_min=0.0, soft_max=10.0, default=1.0, precision=3
)
name="IOR",
description="Index of refraction",
min=-10.0, max=10.0, soft_min=0.0, soft_max=10.0, default=1.0, precision=3
)
specular_shader: EnumProperty(
name="Specular Shader Model",
description="How the ramp maps on the surface",
items=(
("COOKTORR", "CookTorr", "Use a Cook-Torrance shader"),
("PHONG", "Phong", "Use a Phong shader"),
("BLINN", "Blinn", "Use a Blinn shader"),
("TOON", "Toon", "Use a Toon shader"),
("WARDISO", "WardIso", "Use a Ward anisotropic shader")
),
specular_slope: FloatProperty(
name="Slope",
description="The standard deviation of surface slope",
min=0.0, max=0.4, soft_min=0.0, soft_max=0.4, default=0.1, precision=3
)
specular_toon_size: FloatProperty(
name="Size",
description="Size of specular toon area",
min=0.0, max=0.53, soft_min=0.0, soft_max=0.53, default=0.5, precision=3
)
specular_toon_smooth: FloatProperty(
name="Smooth",
description="Smoothness of specular toon area",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=0.1, precision=3
)
translucency: FloatProperty(
name="Translucency",
description="Amount of diffuse shading on the back side",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=0.0, precision=3
)
transparency_method: EnumProperty(
name="Specular Shader Model",
description="Method to use for rendering transparency",
items=(
("MASK", "Mask", "Mask the background"),
("Z_TRANSPARENCY", "Z Transparency", "Use an ior of 1 for transparent faces"),
("RAYTRACE", "Raytrace", "Use raytracing for transparent refraction rendering")
),
type: EnumProperty(
name="Type",
description="Material type defining how the object is rendered",
items=(
("SURFACE", "Surface", "Render object as a surface"),
("WIRE", "Wire", "Render the edges of faces as wires (not supported in raytracing)"),# TO UPDATE > USE MACRO AND CHANGE DESCRIPTION
("VOLUME", "Volume", "Render object as a volume"),
("‘HALO’", "Halo", "Render object as halo particles")
), # TO UPDATE > USE MACRO AND CHANGE DESCRIPTION
use_cast_shadows: BoolProperty(
name="Cast",
description="Allow this material to cast shadows",
default=True,
)
use_cast_shadows_only: BoolProperty(
name="Cast Only",
description="Make objects with this material "
"appear invisible (not rendered), only "
"casting shadows",
default=False,
)
use_cubic: BoolProperty(
name="Cubic Interpolation",
description="Use cubic interpolation for diffuse "
"values, for smoother transitions",
default=False,
)
use_diffuse_ramp: BoolProperty(
name="Ramp",
description="Toggle diffuse ramp operations",
default=False,
)
use_light_group_exclusive: BoolProperty(
name="Exclusive",
description="Material uses the light group exclusively"
"- these lamps are excluded from other "
"scene lighting",
default=False,
)
use_light_group_local: BoolProperty(
name="Local",
description="When linked in, material uses local light"
" group with the same name",
default=False,
)
use_mist: BoolProperty(
name="Use Mist",
description="Use mist with this material "
"(in world settings)",
default=True,
)
use_nodes: BoolProperty(
name="Nodes",
description="Use shader nodes to render the material",# Add Icon in UI or here? icon='NODES'
default=False,
)
use_object_color: BoolProperty(
name="Object Color",
description="Modulate the result with a per-object color",
default=False,
)
use_only_shadow: BoolProperty(
name="Shadows Only",
description="Render shadows as the material’s alpha "
"value, making the material transparent "
"except for shadowed areas",
default=False,
)
use_shadeless: BoolProperty(
name="Shadeless",
description="Make this material insensitive to "
"light or shadow",
default=False,
)
use_shadows: BoolProperty(
name="Receive",
description="Allow this material to receive shadows",
default=True,
)
use_sky: BoolProperty(
name="Sky",
description="Render this material with zero alpha, "
"with sky background in place (scanline only)",
default=False,
)
use_specular_ramp: BoolProperty(
name="Ramp",
description="Toggle specular ramp operations",
default=False,
)
use_tangent_shading: BoolProperty(
name="Tangent Shading",
description="Use the material’s tangent vector instead"
"of the normal for shading - for "
"anisotropic shading effects",
default=False,
)
use_transparent_shadows: BoolProperty(
name="Receive Transparent",
description="Allow this object to receive transparent "
"shadows cast through other object",
default=False,
) # linked to fake caustics
use_vertex_color_light: BoolProperty(
name="Vertex Color Light",
description="Add vertex colors as additional lighting",
default=False,
)
use_vertex_color_paint: BoolProperty(
name="Vertex Color Paint", description="Replace object base color with vertex "
"colors (multiply with ‘texture face’ "
"face assigned textures)",
default=False,
)
specular_ramp_blend: EnumProperty(
name="Specular ramp blend",
description="Blending method of the ramp and the specular color",
items=(
("MIX", "Mix", ""),
("ADD", "Add", ""),
("MULTIPLY", "Multiply", ""),
("SUBTRACT", "Subtract", ""),
("SCREEN", "Screen", ""),
("DIVIDE", "Divide", ""),
("DIFFERENCE", "Difference", ""),
("DARKEN", "Darken", ""),
("LIGHTEN", "Lighten", ""),
("OVERLAY", "Overlay", ""),
("DODGE", "Dodge", ""),
("BURN", "Burn", ""),
("HUE", "Hue", ""),
("SATURATION", "Saturation", ""),
("VALUE", "Value", ""),
("COLOR", "Color", ""),
("SOFT_LIGHT", "Soft light", ""),
("LINEAR_LIGHT", "Linear light", "")
),
specular_ramp_factor: FloatProperty(
name="Factor",
description="Blending factor (also uses alpha in Colorband)",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3,
)
specular_ramp_input: EnumProperty(
name="Input",
description="How the ramp maps on the surface",
items=(
("SHADER", "Shader", ""),
("ENERGY", "Energy", ""),
("NORMAL", "Normal", ""),
("RESULT", "Result", "")
),
name="Iridescence coating",
description="Newton's thin film interference (like an oil slick on a puddle of "
"water or the rainbow hues of a soap bubble.)",
default=False,
)
name="Correct Reflection",
description="Use same IOR as raytrace transparency to calculate mirror reflections. "
"More physically correct",
default=False,
)
name="Metallic Reflection",
description="mirror reflections get colored as diffuse (for metallic materials)",
default=False,
)
name="Conserve Energy",
description="Light transmitted is more correctly reduced by mirror reflections, "
"also the sum of diffuse and translucency gets reduced below one ",
default=True,
)
name="amount",
description="Contribution of the iridescence effect to the overall surface color. "
"As a rule of thumb keep to around 0.25 (25% contribution) or less, "
"but experiment. If the surface is coming out too white, try lowering "
"the diffuse and possibly the ambient values of the surface",
min=0.0, max=1.0, soft_min=0.01, soft_max=1.0, default=0.25,
)
name="thickness",
description="A very thin film will have a high frequency of color changes while a "
"thick film will have large areas of color",
min=0.0, max=1000.0, soft_min=0.1, soft_max=10.0, default=1,
)
name="turbulence",
description="This parameter varies the thickness",
min=0.0, max=10.0, soft_min=0.000, soft_max=1.0, default=0
)
interior_fade_color: FloatVectorProperty(
name="Interior Fade Color",
description="Color of filtered attenuation for transparent "
"materials",
precision=4, step=0.01, min=0.0, soft_max=1.0,
default=(0, 0, 0), options={'ANIMATABLE'}, subtype='COLOR'
)
Bastien Montagne
committed
name="Caustics",
description="use only fake refractive caustics (default) or photon based "
"reflective/refractive caustics",
default=True,
)
name="Fake Caustics",
description="use only (Fast) fake refractive caustics",
default=True,
)
fake_caustics_power: FloatProperty(
name="Fake caustics power",
description="Values typically range from 0.0 to 1.0 or higher. Zero is no caustics. "
"Low, non-zero values give broad hot-spots while higher values give "
"tighter, smaller simulated focal points",
min=0.00, max=10.0, soft_min=0.00, soft_max=5.0, default=0.15
)
refraction_caustics: BoolProperty(
name="Refractive Caustics",
description="hotspots of light focused when going through the material",
default=True,
)
photons_dispersion: FloatProperty(
name="Chromatic Dispersion",
description="Light passing through will be separated according to wavelength. "
"This ratio of refractive indices for violet to red controls how much "
"the colors are spread out 1 = no dispersion, good values are 1.01 to 1.1",
min=1.0000, max=10.000, soft_min=1.0000, soft_max=1.1000, precision=4,
default=1.0000,
)
photons_dispersion_samples: IntProperty(
name="Dispersion Samples",
description="Number of color-steps for dispersion",
min=2, max=128, default=7,
)
Maurice Raybaud
committed
photons_reflection: BoolProperty(
name="Reflective Photon Caustics",
description="Use this to make your Sauron's ring ;-P",
default=False,
)
items=[
("1", "Z Transparency Fake Caustics", "use fake caustics"),
("2", "Raytrace Photons Caustics", "use photons for refractive caustics")],
name="Refraction Type:",
description="use fake caustics (fast) or true photons for refractive Caustics",
default="1",
)
Maurice Raybaud
committed
Bastien Montagne
committed
##################################CustomPOV Code############################
replacement_text: StringProperty(
name="Declared name:",
description="Type the declared name in custom POV code or an external "
".inc it points at. texture {} expected",
default="",
)
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
def use_material_nodes_callback(self, context):
if hasattr(context.space_data, "tree_type"):
context.space_data.tree_type = 'ObjectNodeTree'
mat=context.object.active_material
if mat.pov.material_use_nodes:
mat.use_nodes=True
tree = mat.node_tree
tree.name=mat.name
links = tree.links
default = True
if len(tree.nodes) == 2:
o = 0
m = 0
for node in tree.nodes:
if node.type in {"OUTPUT","MATERIAL"}:
tree.nodes.remove(node)
default = True
for node in tree.nodes:
if node.bl_idname == 'PovrayOutputNode':
o+=1
if node.bl_idname == 'PovrayTextureNode':
m+=1
if o == 1 and m == 1:
default = False
elif len(tree.nodes) == 0:
default = True
else:
default = False
if default:
output = tree.nodes.new('PovrayOutputNode')
output.location = 200,200
tmap = tree.nodes.new('PovrayTextureNode')
tmap.location = 0,200
links.new(tmap.outputs[0],output.inputs[0])
tmap.select = True
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
else:
mat.use_nodes=False
def use_texture_nodes_callback(self, context):
tex=context.object.active_material.active_texture
if tex.pov.texture_use_nodes:
tex.use_nodes=True
if len(tex.node_tree.nodes)==2:
for node in tex.node_tree.nodes:
if node.type in {"OUTPUT","CHECKER"}:
tex.node_tree.nodes.remove(node)
else:
tex.use_nodes=False
def node_active_callback(self, context):
items = []
mat=context.material
mat.node_tree.nodes
for node in mat.node_tree.nodes:
node.select=False
for node in mat.node_tree.nodes:
if node.name==mat.pov.material_active_node:
node.select=True
mat.node_tree.nodes.active=node
return node
def node_enum_callback(self, context):
items = []
mat=context.material
nodes=mat.node_tree.nodes
for node in nodes:
items.append(("%s"%node.name,"%s"%node.name,""))
return items
def pigment_normal_callback(self, context):
render = context.scene.pov.render
items = [("pigment", "Pigment", ""),("normal", "Normal", "")]
if render == 'hgpovray':
items = [("pigment", "Pigment", ""),("normal", "Normal", ""),("modulation", "Modulation", "")]
return items
def glow_callback(self, context):
scene = context.scene
ob = context.object
ob.pov.mesh_write_as_old = ob.pov.mesh_write_as
if scene.pov.render == 'uberpov' and ob.pov.glow:
ob.pov.mesh_write_as = 'NONE'
else:
ob.pov.mesh_write_as = ob.pov.mesh_write_as_old
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
material_use_nodes: BoolProperty(
name="Use nodes",
description="",
update=use_material_nodes_callback,
default=False,
)
material_active_node: EnumProperty(
name="Active node",
description="",
items=node_enum_callback,
update=node_active_callback
)
preview_settings: BoolProperty(
name="Preview Settings",
description="",
default=False,
)
object_preview_transform: BoolProperty(
name="Transform object",
description="",
default=False,
)
object_preview_scale: FloatProperty(
name="XYZ",
min=0.5,
max=2.0,
default=1.0,
)
object_preview_rotate: FloatVectorProperty(
name="Rotate",
description="",
min=-180.0,
max=180.0,
default=(0.0,0.0,0.0),
subtype='XYZ',
)
object_preview_bgcontrast: FloatProperty(
name="Contrast",
min=0.0,
max=1.0,
default=0.5,
)
class MaterialRaytraceTransparency(PropertyGroup):
"""Declare transparency panel properties controllable in UI and translated to POV."""
name="Depth",
description="Maximum allowed number of light inter-refractions",
min=0, max=32767, default=2
)
name="Depth",
description="Maximum depth for light to travel through the "
"transparent material before becoming fully filtered (0.0 is disabled)",
name="Falloff",
description="Falloff power for transmissivity filter effect (1.0 is linear)",
min=0.1, max=10.0, default=1.0, precision=3
)
name="Filter",
description="Amount to blend in the material’s diffuse color in raytraced "
"transparency (simulating absorption)",
min=0.0, max=1.0, default=0.0, precision=3
)
name="Fresnel",
description="Power of Fresnel for transparency (Ray or ZTransp)",
min=0.0, max=5.0, soft_min=0.0, soft_max=5.0, default=0.0, precision=3
)
fresnel_factor: FloatProperty(
name="Blend",
description="Blending factor for Fresnel",
min=0.0, max=5.0, soft_min=0.0, soft_max=5.0, default=1.250, precision=3
)
name="Amount",
description="The clarity of the refraction. "
"(values < 1.0 give diffuse, blurry refractions)",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3
)
gloss_samples: IntProperty(
description="frequency of the noise sample used for blurry refractions",
gloss_threshold: FloatProperty(
name="Threshold",
description="Threshold for adaptive sampling (if a sample "
"contributes less than this amount [as a percentage], "
"sampling is stopped)",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=0.005, precision=3
)
name="IOR",
description="Sets angular index of refraction for raytraced refraction",
min=-0.0, max=10.0, soft_min=0.25, soft_max=4.0, default=1.3
)
class MaterialRaytraceMirror(PropertyGroup):
"""Declare reflection panel properties controllable in UI and translated to POV."""
bl_description = "Raytraced reflection settings for the Material",
use: BoolProperty(
name="Mirror",
description="Enable raytraced reflections",
default=False,
)
depth: IntProperty(
name="Depth",
description="Maximum allowed number of light inter-reflections",
min=0, max=32767, default=2
)
distance: FloatProperty(
name="Max Dist",
description="Maximum distance of reflected rays "
"(reflections further than this range "
"fade to sky color or material color)",
min=0.0, max=100000.0, soft_min=0.0, soft_max=10000.0, default=0.0, precision=3
)
fade_to: EnumProperty(
items=[
("FADE_TO_SKY", "Fade to sky", ""),
("FADE_TO_MATERIAL", "Fade to material color", "")],
name="Fade-out Color",
description="The color that rays with no intersection within the "
"Max Distance take (material color can be best for "
"indoor scenes, sky color for outdoor)",
default="FADE_TO_SKY",
)
fresnel: FloatProperty(
name="Fresnel",
description="Power of Fresnel for mirror reflection",
min=0.0, max=5.0, soft_min=0.0, soft_max=5.0, default=0.0, precision=3,
)
fresnel_factor: FloatProperty(
name="Blend",
description="Blending factor for Fresnel",
min=0.0, max=5.0, soft_min=0.0, soft_max=5.0, default=1.250, precision=3
)
gloss_anisotropic: FloatProperty(
name="Anisotropic",
description="The shape of the reflection, from 0.0 (circular) "
"to 1.0 (fully stretched along the tangent",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3
)
gloss_factor: FloatProperty(
name="Amount",
description="The shininess of the reflection "
"(values < 1.0 give diffuse, blurry reflections)",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3
)
gloss_samples: IntProperty(
name="Noise",
description="Frequency of the noise pattern bumps averaged for blurry reflections",
gloss_threshold: FloatProperty(
name="Threshold",
description="Threshold for adaptive sampling (if a sample "
"contributes less than this amount [as a percentage], "
"sampling is stopped)",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=0.005, precision=3
)
name="Mirror color",
description=("Mirror color of the material"),
precision=4, step=0.01,
default=(1.0,1.0,1.0), options={'ANIMATABLE'}, subtype='COLOR'
)
reflect_factor: FloatProperty(
name="Reflectivity",
description="Amount of mirror reflection for raytrace",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3
)
class MaterialSubsurfaceScattering(PropertyGroup):
r"""Declare SSS/SSTL properties controllable in UI and translated to POV."""
bl_description = "Subsurface scattering settings for the material",
use: BoolProperty(
name="Subsurface Scattering",
description="Enable diffuse subsurface scatting "
"effects in a material",
default=False,
)
back: FloatProperty(
name="Back",
description="Back scattering weight",
min=0.0, max=10.0, soft_min=0.0, soft_max=10.0, default=1.0, precision=3
)
color: FloatVectorProperty(
name="Scattering color",
description=("Scattering color"),
precision=4, step=0.01,
default=(0.604,0.604,0.604), options={'ANIMATABLE'}, subtype='COLOR'
)
color_factor: FloatProperty(
name="Color",
description="Blend factor for SSS colors",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=1.0, precision=3
)
error_threshold: FloatProperty(
name="Error",
description="Error tolerance (low values are slower and higher quality)",
default=0.050, precision=3
)
front: FloatProperty(
name="Front",
description="Front scattering weight",
min=0.0, max=2.0, soft_min=0.0, soft_max=2.0, default=1.0, precision=3
)
ior: FloatProperty(
name="IOR",
description="Index of refraction (higher values are denser)",
min=-0.0, max=10.0, soft_min=0.1, soft_max=2.0, default=1.3
)
radius: FloatVectorProperty(
name="RGB Radius",
description=("Mean red/green/blue scattering path length"),
precision=4, step=0.01, min=0.001,
default=(1.0,1.0,1.0), options={'ANIMATABLE'}
)
scale: FloatProperty(
name="Scale",
description="Object scale factor",
default=0.100, precision=3
)
texture_factor: FloatProperty(
name="Texture",
description="Texture scattering blend factor",
min=0.0, max=1.0, soft_min=0.0, soft_max=1.0, default=0.0, precision=3
)
"""Declare strand properties controllable in UI and translated to POV."""
bl_description = "Strand settings for the material",
name="Distance",
description="Worldspace distance over which to blend in the surface normal",
min=0.0, max=10.0, soft_min=0.0, soft_max=10.0, default=0.0, precision=3
)
name="Root",
description="Start size of strands in pixels or Blender units",
min=0.25, default=1.0, precision=5
)
name="Shape",
description="Positive values make strands rounder, negative ones make strands spiky",
min=-0.9, max=0.9, default=0.0, precision=3
)
name="Minimum",
description="Minimum size of strands in pixels",
min=0.001, max=10.0, default=1.0, precision=3
)
name="Tip",
description="End size of strands in pixels or Blender units",
min=0.0, default=1.0, precision=5
)
name="Blender Units",
description="Use Blender units for widths instead of pixels",
default=False,
)
name="Surface diffuse",
description="Make diffuse shading more similar to shading the surface",
default=False,
)
name="Tangent Shading",
description="Use direction of strands as normal for tangent-shading",
default=True,
)
name="UV Layer",
# icon="GROUP_UVS",
description="Name of UV map to override",
default="",
)
name="Width Fade",
description="Transparency along the width of the strand",
min=0.0, max=2.0, default=0.0, precision=3
)
# halo
# Halo settings for the material
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
# ambient
# Amount of global ambient color the material receives
# Type: float in [0, 1], default 0.0
# darkness
# Minnaert darkness
# Type: float in [0, 2], default 0.0
# diffuse_color
# Diffuse color of the material
# Type: float array of 3 items in [0, inf], default (0.0, 0.0, 0.0)
# diffuse_fresnel
# Power of Fresnel
# Type: float in [0, 5], default 0.0
# diffuse_fresnel_factor
# Blending factor of Fresnel
# Type: float in [0, 5], default 0.0
# diffuse_intensity
# Amount of diffuse reflection
# Type: float in [0, 1], default 0.0
# diffuse_ramp
# Color ramp used to affect diffuse shading
# Type: ColorRamp, (readonly)
# diffuse_ramp_blend
# Blending method of the ramp and the diffuse color
# Type: enum in [‘MIX’, ‘ADD’, ‘MULTIPLY’, ‘SUBTRACT’, ‘SCREEN’, ‘DIVIDE’, ‘DIFFERENCE’, ‘DARKEN’, ‘LIGHTEN’, ‘OVERLAY’, ‘DODGE’, ‘BURN’, ‘HUE’, ‘SATURATION’, ‘VALUE’, ‘COLOR’, ‘SOFT_LIGHT’, ‘LINEAR_LIGHT’], default ‘MIX’
# diffuse_ramp_factor
# Blending factor (also uses alpha in Colorband)
# Type: float in [0, 1], default 0.0
# diffuse_ramp_input
# How the ramp maps on the surface
# Type: enum in [‘SHADER’, ‘ENERGY’, ‘NORMAL’, ‘RESULT’], default ‘SHADER’
# diffuse_shader
# LAMBERT Lambert, Use a Lambertian shader.
# OREN_NAYAR Oren-Nayar, Use an Oren-Nayar shader.
# TOON Toon, Use a toon shader.
# MINNAERT Minnaert, Use a Minnaert shader.
# FRESNEL Fresnel, Use a Fresnel shader.
# Type: enum in [‘LAMBERT’, ‘OREN_NAYAR’, ‘TOON’, ‘MINNAERT’, ‘FRESNEL’], default ‘LAMBERT’
# diffuse_toon_size
# Size of diffuse toon area
# Type: float in [0, 3.14], default 0.0
# diffuse_toon_smooth
# Smoothness of diffuse toon area
# Type: float in [0, 1], default 0.0
# emit
# Amount of light to emit
# Type: float in [0, inf], default 0.0
# game_settings
# Game material settings
# Type: MaterialGameSettings, (readonly, never None)
# halo
# Halo settings for the material
# Type: MaterialHalo, (readonly, never None)
# invert_z
# Render material’s faces with an inverted Z buffer (scanline only)
# Type: boolean, default False
# light_group
# Limit lighting to lamps in this Group
# Type: Group
# line_color
# Line color used for Freestyle line rendering
# Type: float array of 4 items in [0, inf], default (0.0, 0.0, 0.0, 0.0)
# line_priority
# The line color of a higher priority is used at material boundaries
# Type: int in [0, 32767], default 0
# mirror_color
# Mirror color of the material
# Type: float array of 3 items in [0, inf], default (0.0, 0.0, 0.0)
# node_tree
# Node tree for node based materials
# Type: NodeTree, (readonly)
# offset_z
# Give faces an artificial offset in the Z buffer for Z transparency
# Type: float in [-inf, inf], default 0.0
# paint_active_slot
# Index of active texture paint slot
# Type: int in [0, 32767], default 0
# paint_clone_slot
# Index of clone texture paint slot
# Type: int in [0, 32767], default 0
# pass_index
# Index number for the “Material Index” render pass
# Type: int in [0, 32767], default 0
# physics
# Game physics settings
# Type: MaterialPhysics, (readonly, never None)
# preview_render_type
# Type of preview render
# FLAT Flat, Flat XY plane.
# SPHERE Sphere, Sphere.
# CUBE Cube, Cube.
# MONKEY Monkey, Monkey.
# HAIR Hair, Hair strands.
# SPHERE_A World Sphere, Large sphere with sky.
# Type: enum in [‘FLAT’, ‘SPHERE’, ‘CUBE’, ‘MONKEY’, ‘HAIR’, ‘SPHERE_A’], default ‘FLAT’
# raytrace_mirror
# Raytraced reflection settings for the material
# Type: MaterialRaytraceMirror, (readonly, never None)
# raytrace_transparency
# Raytraced transparency settings for the material
# Type: MaterialRaytraceTransparency, (readonly, never None)
# roughness
# Oren-Nayar Roughness
# Type: float in [0, 3.14], default 0.0
# shadow_buffer_bias
# Factor to multiply shadow buffer bias with (0 is ignore)
# Type: float in [0, 10], default 0.0
# shadow_cast_alpha
# Shadow casting alpha, in use for Irregular and Deep shadow buffer
# Type: float in [0.001, 1], default 0.0
# shadow_only_type
# How to draw shadows
# SHADOW_ONLY_OLD Shadow and Distance, Old shadow only method.
# SHADOW_ONLY Shadow Only, Improved shadow only method.
# SHADOW_ONLY_SHADED Shadow and Shading, Improved shadow only method which also renders lightless areas as shadows.
# Type: enum in [‘SHADOW_ONLY_OLD’, ‘SHADOW_ONLY’, ‘SHADOW_ONLY_SHADED’], default ‘SHADOW_ONLY_OLD’
# shadow_ray_bias
# Shadow raytracing bias to prevent terminator problems on shadow boundary
# Type: float in [0, 0.25], default 0.0
# specular_color
# Specular color of the material
# Type: float array of 3 items in [0, inf], default (0.0, 0.0, 0.0)
# specular_hardness
# How hard (sharp) the specular reflection is
# Type: int in [1, 511], default 0
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
# specular_intensity
# How intense (bright) the specular reflection is
# Type: float in [0, 1], default 0.0
# specular_ior
# Specular index of refraction
# Type: float in [1, 10], default 0.0
# specular_ramp
# Color ramp used to affect specular shading
# Type: ColorRamp, (readonly)
# specular_ramp_blend
# Blending method of the ramp and the specular color
# Type: enum in [‘MIX’, ‘ADD’, ‘MULTIPLY’, ‘SUBTRACT’, ‘SCREEN’, ‘DIVIDE’, ‘DIFFERENCE’, ‘DARKEN’, ‘LIGHTEN’, ‘OVERLAY’, ‘DODGE’, ‘BURN’, ‘HUE’, ‘SATURATION’, ‘VALUE’, ‘COLOR’, ‘SOFT_LIGHT’, ‘LINEAR_LIGHT’], default ‘MIX’
# specular_ramp_factor
# Blending factor (also uses alpha in Colorband)
# Type: float in [0, 1], default 0.0
# specular_ramp_input
# How the ramp maps on the surface
# Type: enum in [‘SHADER’, ‘ENERGY’, ‘NORMAL’, ‘RESULT’], default ‘SHADER’
# specular_shader
# COOKTORR CookTorr, Use a Cook-Torrance shader.
# PHONG Phong, Use a Phong shader.
# BLINN Blinn, Use a Blinn shader.
# TOON Toon, Use a toon shader.
# WARDISO WardIso, Use a Ward anisotropic shader.
# Type: enum in [‘COOKTORR’, ‘PHONG’, ‘BLINN’, ‘TOON’, ‘WARDISO’], default ‘COOKTORR’
# specular_slope
# The standard deviation of surface slope
# Type: float in [0, 0.4], default 0.0
# specular_toon_size
# Size of specular toon area
# Type: float in [0, 1.53], default 0.0
# specular_toon_smooth
# Smoothness of specular toon area
# Type: float in [0, 1], default 0.0
# strand
# Strand settings for the material
# Type: MaterialStrand, (readonly, never None)
# subsurface_scattering
# Subsurface scattering settings for the material
# Type: MaterialSubsurfaceScattering, (readonly, never None)
# texture_paint_images
# Texture images used for texture painting
# Type: bpy_prop_collection of Image, (readonly)
# texture_paint_slots
# Texture slots defining the mapping and influence of textures
# Type: bpy_prop_collection of TexPaintSlot, (readonly)
# texture_slots
# Texture slots defining the mapping and influence of textures
# Type: MaterialTextureSlots bpy_prop_collection of MaterialTextureSlot, (readonly)
# translucency
# Amount of diffuse shading on the back side
# Type: float in [0, 1], default 0.0
# transparency_method
# Method to use for rendering transparency
# MASK Mask, Mask the background.
# Z_TRANSPARENCY Z Transparency, Use alpha buffer for transparent faces.
# RAYTRACE Raytrace, Use raytracing for transparent refraction rendering.
# Type: enum in [‘MASK’, ‘Z_TRANSPARENCY’, ‘RAYTRACE’], default ‘MASK’
# type
# Material type defining how the object is rendered
# SURFACE Surface, Render object as a surface.
# WIRE Wire, Render the edges of faces as wires (not supported in raytracing).
# VOLUME Volume, Render object as a volume.
# HALO Halo, Render object as halo particles.
# Type: enum in [‘SURFACE’, ‘WIRE’, ‘VOLUME’, ‘HALO’], default ‘SURFACE’
# use_cast_approximate
# Allow this material to cast shadows when using approximate ambient occlusion
# Type: boolean, default False
# use_cast_buffer_shadows
# Allow this material to cast shadows from shadow buffer lamps
# Type: boolean, default False
# use_cast_shadows
# Allow this material to cast shadows
# Type: boolean, default False
# use_cast_shadows_only
# Make objects with this material appear invisible (not rendered), only casting shadows
# Type: boolean, default False
# use_cubic
# Use cubic interpolation for diffuse values, for smoother transitions
# Type: boolean, default False
# use_diffuse_ramp
# Toggle diffuse ramp operations
# Type: boolean, default False
# use_face_texture
# Replace the object’s base color with color from UV map image textures
# Type: boolean, default False
# use_face_texture_alpha
# Replace the object’s base alpha value with alpha from UV map image textures
# Type: boolean, default False
# use_full_oversampling
# Force this material to render full shading/textures for all anti-aliasing samples
# Type: boolean, default False
# use_light_group_exclusive
# Material uses the light group exclusively - these lamps are excluded from other scene lighting
# Type: boolean, default False
# use_light_group_local
# When linked in, material uses local light group with the same name
# Type: boolean, default False
# use_mist
# Use mist with this material (in world settings)
# Type: boolean, default False
# use_nodes
# Use shader nodes to render the material
# Type: boolean, default False
# use_object_color
# Modulate the result with a per-object color
# Type: boolean, default False
# use_only_shadow
# Render shadows as the material’s alpha value, making the material transparent except for shadowed areas
# Type: boolean, default False
# use_ray_shadow_bias
# Prevent raytraced shadow errors on surfaces with smooth shaded normals (terminator problem)
# Type: boolean, default False
# use_raytrace
# Include this material and geometry that uses it in raytracing calculations
# Type: boolean, default False
# use_shadeless
# Make this material insensitive to light or shadow
# Type: boolean, default False
# use_shadows
# Allow this material to receive shadows
# Type: boolean, default False
# use_sky
# Render this material with zero alpha, with sky background in place (scanline only)
# Type: boolean, default False
# use_specular_ramp
# Toggle specular ramp operations
# Type: boolean, default False
# use_tangent_shading
# Use the material’s tangent vector instead of the normal for shading - for anisotropic shading effects
# Type: boolean, default False
# use_textures
# Enable/Disable each texture
# Type: boolean array of 18 items, default (False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False)
# use_transparency
# Render material as transparent
# Type: boolean, default False
# use_transparent_shadows
# Allow this object to receive transparent shadows cast through other objects
# Type: boolean, default False
# use_uv_project
# Use to ensure UV interpolation is correct for camera projections (use with UV project modifier)
# Type: boolean, default False
# use_vertex_color_light
# Add vertex colors as additional lighting
# Type: boolean, default False
# use_vertex_color_paint
# Replace object base color with vertex colors (multiply with ‘texture face’ face assigned textures)
# Type: boolean, default False
# volume
# Volume settings for the material
# Type: MaterialVolume, (readonly, never None)
'''
(mat.type in {'SURFACE', 'WIRE', 'VOLUME'})
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
"use_transparency")
mat.use_transparency and mat.transparency_method == 'Z_TRANSPARENCY'
col.prop(mat, "use_raytrace")
col.prop(mat, "use_full_oversampling")
sub.prop(mat, "use_sky")
col.prop(mat, "use_cast_shadows", text="Cast")
col.prop(mat, "use_cast_shadows_only", text="Cast Only")
col.prop(mat, "use_cast_buffer_shadows")
sub.active = mat.use_cast_buffer_shadows
sub.prop(mat, "shadow_cast_alpha", text="Casting Alpha")
col.prop(mat, "use_cast_approximate")
col.prop(mat, "diffuse_color", text="")
sub.active = (not mat.use_shadeless)
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
sub.prop(mat, "diffuse_intensity", text="Intensity")
col.prop(mat, "diffuse_shader", text="")
col.prop(mat, "use_diffuse_ramp", text="Ramp")
if mat.diffuse_shader == 'OREN_NAYAR':
col.prop(mat, "roughness")
elif mat.diffuse_shader == 'MINNAERT':
col.prop(mat, "darkness")
elif mat.diffuse_shader == 'TOON':
row.prop(mat, "diffuse_toon_size", text="Size")
row.prop(mat, "diffuse_toon_smooth", text="Smooth")
elif mat.diffuse_shader == 'FRESNEL':
row.prop(mat, "diffuse_fresnel", text="Fresnel")
row.prop(mat, "diffuse_fresnel_factor", text="Factor")
if mat.use_diffuse_ramp:
col.template_color_ramp(mat, "diffuse_ramp", expand=True)
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
row.prop(mat, "diffuse_ramp_input", text="Input")
row.prop(mat, "diffuse_ramp_blend", text="Blend")
col.prop(mat, "diffuse_ramp_factor", text="Factor")
col.prop(mat, "specular_color", text="")
col.prop(mat, "specular_intensity", text="Intensity")
col.prop(mat, "specular_shader", text="")
col.prop(mat, "use_specular_ramp", text="Ramp")
if mat.specular_shader in {'COOKTORR', 'PHONG'}:
col.prop(mat, "specular_hardness", text="Hardness")
elif mat.specular_shader == 'BLINN':
row.prop(mat, "specular_hardness", text="Hardness")
row.prop(mat, "specular_ior", text="IOR")
elif mat.specular_shader == 'WARDISO':
col.prop(mat, "specular_slope", text="Slope")
elif mat.specular_shader == 'TOON':
row.prop(mat, "specular_toon_size", text="Size")
row.prop(mat, "specular_toon_smooth", text="Smooth")
if mat.use_specular_ramp:
layout.separator()
layout.template_color_ramp(mat, "specular_ramp", expand=True)
layout.separator()
row = layout.row()
row.prop(mat, "specular_ramp_input", text="Input")
row.prop(mat, "specular_ramp_blend", text="Blend")
layout.prop(mat, "specular_ramp_factor", text="Factor")
class MATERIAL_PT_shading(MaterialButtonsPanel, Panel):
bl_label = "Shading"
COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_GAME'}
@classmethod
def poll(cls, context):
mat = context.material
engine = context.scene.render.engine
return check_material(mat) and (mat.type in {'SURFACE', 'WIRE'}) and (engine in cls.COMPAT_ENGINES)
def draw(self, context):
layout = self.layout
mat = active_node_mat(context.material)
if mat.type in {'SURFACE', 'WIRE'}:
split = layout.split()
col = split.column()
sub = col.column()
sub.active = not mat.use_shadeless
sub.prop(mat, "emit")
sub.prop(mat, "ambient")
sub = col.column()
sub.prop(mat, "translucency")
col = split.column()
col.prop(mat, "use_shadeless")
sub = col.column()
sub.active = not mat.use_shadeless
sub.prop(mat, "use_tangent_shading")
sub.prop(mat, "use_cubic")
class MATERIAL_PT_transp(MaterialButtonsPanel, Panel):
bl_label = "Transparency"
COMPAT_ENGINES = {'BLENDER_RENDER'}
@classmethod
def poll(cls, context):
mat = context.material
engine = context.scene.render.engine
return check_material(mat) and (mat.type in {'SURFACE', 'WIRE'}) and (engine in cls.COMPAT_ENGINES)
def draw_header(self, context):
mat = context.material
if simple_material(mat):
self.layout.prop(mat, "use_transparency", text="")
def draw(self, context):
layout = self.layout
base_mat = context.material
mat = active_node_mat(context.material)
rayt = mat.raytrace_transparency
if simple_material(base_mat):
row = layout.row()
row.active = mat.use_transparency
row.prop(mat, "transparency_method", expand=True)
split = layout.split()
split.active = base_mat.use_transparency
col = split.column()
col.prop(mat, "alpha")
row = col.row()
row.active = (base_mat.transparency_method != 'MASK') and (not mat.use_shadeless)
row.prop(mat, "specular_alpha", text="Specular")
col = split.column()
col.active = (not mat.use_shadeless)
col.prop(rayt, "fresnel")
sub = col.column()
sub.active = (rayt.fresnel > 0.0)
sub.prop(rayt, "fresnel_factor", text="Blend")
if base_mat.transparency_method == 'RAYTRACE':
layout.separator()
split = layout.split()
split.active = base_mat.use_transparency
col = split.column()
col.prop(rayt, "ior")
col.prop(rayt, "filter")
col.prop(rayt, "falloff")
col.prop(rayt, "depth_max")
col.prop(rayt, "depth")
col = split.column()
col.label(text="Gloss:")
col.prop(rayt, "gloss_factor", text="Amount")
sub = col.column()
sub.active = rayt.gloss_factor < 1.0
sub.prop(rayt, "gloss_threshold", text="Threshold")
sub.prop(rayt, "gloss_samples", text="Samples")
class MATERIAL_PT_mirror(MaterialButtonsPanel, Panel):
bl_label = "Mirror"
bl_options = {'DEFAULT_CLOSED'}
COMPAT_ENGINES = {'BLENDER_RENDER'}
@classmethod
def poll(cls, context):
mat = context.material
engine = context.scene.render.engine
return check_material(mat) and (mat.type in {'SURFACE', 'WIRE'}) and (engine in cls.COMPAT_ENGINES)
def draw_header(self, context):
raym = active_node_mat(context.material).raytrace_mirror
self.layout.prop(raym, "use", text="")
def draw(self, context):
layout = self.layout
mat = active_node_mat(context.material)
raym = mat.raytrace_mirror
layout.active = raym.use
split = layout.split()
col = split.column()
col.prop(raym, "reflect_factor")
col.prop(mat, "mirror_color", text="")
col = split.column()
col.prop(raym, "fresnel")
sub = col.column()
sub.active = (raym.fresnel > 0.0)
sub.prop(raym, "fresnel_factor", text="Blend")
split = layout.split()
col = split.column()
col.separator()
col.prop(raym, "depth")
col.prop(raym, "distance", text="Max Dist")
col.separator()
sub = col.split(percentage=0.4)
sub.active = (raym.distance > 0.0)
sub.label(text="Fade To:")
sub.prop(raym, "fade_to", text="")
col = split.column()
col.label(text="Gloss:")
col.prop(raym, "gloss_factor", text="Amount")
sub = col.column()
sub.active = (raym.gloss_factor < 1.0)
sub.prop(raym, "gloss_threshold", text="Threshold")
sub.prop(raym, "gloss_samples", text="Samples")
sub.prop(raym, "gloss_anisotropic", text="Anisotropic")
class MATERIAL_PT_sss(MaterialButtonsPanel, Panel):
bl_label = "Subsurface Scattering"
bl_options = {'DEFAULT_CLOSED'}
COMPAT_ENGINES = {'BLENDER_RENDER'}
@classmethod
def poll(cls, context):
mat = context.material
engine = context.scene.render.engine
return check_material(mat) and (mat.type in {'SURFACE', 'WIRE'}) and (engine in cls.COMPAT_ENGINES)
def draw_header(self, context):
mat = active_node_mat(context.material)
sss = mat.subsurface_scattering
self.layout.active = (not mat.use_shadeless)
self.layout.prop(sss, "use", text="")
def draw(self, context):
layout = self.layout
mat = active_node_mat(context.material)
sss = mat.subsurface_scattering
layout.active = (sss.use) and (not mat.use_shadeless)
row = layout.row().split()
sub = row.row(align=True).split(align=True, percentage=0.75)
sub.menu("MATERIAL_MT_sss_presets", text=bpy.types.MATERIAL_MT_sss_presets.bl_label)
sub.operator("material.sss_preset_add", text="", icon='ZOOMIN')
sub.operator("material.sss_preset_add", text="", icon='ZOOMOUT').remove_active = True
split = layout.split()
col = split.column()
col.prop(sss, "ior")
col.prop(sss, "scale")
col.prop(sss, "color", text="")
col.prop(sss, "radius", text="RGB Radius", expand=True)
col = split.column()
sub = col.column(align=True)
sub.label(text="Blend:")
sub.prop(sss, "color_factor", text="Color")
sub.prop(sss, "texture_factor", text="Texture")
sub.label(text="Scattering Weight:")
sub.prop(sss, "front")
sub.prop(sss, "back")
col.separator()
col.prop(sss, "error_threshold", text="Error")
class MATERIAL_PT_halo(MaterialButtonsPanel, Panel):
bl_label = "Halo"
COMPAT_ENGINES = {'BLENDER_RENDER'}
@classmethod
def poll(cls, context):
mat = context.material
engine = context.scene.render.engine
return mat and (mat.type == 'HALO') and (engine in cls.COMPAT_ENGINES)
def draw(self, context):
layout = self.layout
mat = context.material # don't use node material
halo = mat.halo
def number_but(layout, toggle, number, name, color):
row = layout.row(align=True)
row.prop(halo, toggle, text="")
sub = row.column(align=True)
sub.active = getattr(halo, toggle)
sub.prop(halo, number, text=name, translate=False)
if not color == "":
sub.prop(mat, color, text="")
split = layout.split()
col = split.column()
col.prop(mat, "alpha")
col.prop(mat, "diffuse_color", text="")
col.prop(halo, "seed")
col = split.column()
col.prop(halo, "size")
col.prop(halo, "hardness")
col.prop(halo, "add")
layout.label(text="Options:")
split = layout.split()
col = split.column()
col.prop(halo, "use_texture")
col.prop(halo, "use_vertex_normal")
col.prop(halo, "use_extreme_alpha")
col.prop(halo, "use_shaded")
col.prop(halo, "use_soft")
col = split.column()
number_but(col, "use_ring", "ring_count", iface_("Rings"), "mirror_color")
number_but(col, "use_lines", "line_count", iface_("Lines"), "specular_color")
number_but(col, "use_star", "star_tip_count", iface_("Star Tips"), "")
class MATERIAL_PT_flare(MaterialButtonsPanel, Panel):
bl_label = "Flare"
COMPAT_ENGINES = {'BLENDER_RENDER'}
@classmethod
def poll(cls, context):
mat = context.material
engine = context.scene.render.engine
return mat and (mat.type == 'HALO') and (engine in cls.COMPAT_ENGINES)
def draw_header(self, context):
halo = context.material.halo
self.layout.prop(halo, "use_flare_mode", text="")
def draw(self, context):
layout = self.layout
mat = context.material # don't use node material
halo = mat.halo
layout.active = halo.use_flare_mode
split = layout.split()
col = split.column()
col.prop(halo, "flare_size", text="Size")
col.prop(halo, "flare_boost", text="Boost")
col.prop(halo, "flare_seed", text="Seed")
col = split.column()
col.prop(halo, "flare_subflare_count", text="Subflares")
col.prop(halo, "flare_subflare_size", text="Subsize")
'''
#######################End Old Blender Internal Props##########################
###############################################################################
# Povray Nodes
###############################################################################
class PovraySocketUniversal(NodeSocket):
bl_idname = 'PovraySocketUniversal'
bl_label = 'Povray Socket'
value_unlimited: bpy.props.FloatProperty(default=0.0)
value_0_1: bpy.props.FloatProperty(min=0.0,max=1.0,default=0.0)
value_0_10: bpy.props.FloatProperty(min=0.0,max=10.0,default=0.0)
value_000001_10: bpy.props.FloatProperty(min=0.000001,max=10.0,default=0.0)
value_1_9: bpy.props.IntProperty(min=1,max=9,default=1)
value_0_255: bpy.props.IntProperty(min=0,max=255,default=0)
percent: bpy.props.FloatProperty(min=0.0,max=100.0,default=0.0)
def draw(self, context, layout, node, text):
space = context.space_data
tree = space.edit_tree
links=tree.links
if self.is_linked:
value=[]
for link in links:
if link.from_node==node:
inps=link.to_node.inputs
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
if inp.bl_idname=="PovraySocketFloat_0_1" and inp.is_linked:
prop="value_0_1"
if prop not in value:
value.append(prop)
if inp.bl_idname=="PovraySocketFloat_000001_10" and inp.is_linked:
prop="value_000001_10"
if prop not in value:
value.append(prop)
if inp.bl_idname=="PovraySocketFloat_0_10" and inp.is_linked:
prop="value_0_10"
if prop not in value:
value.append(prop)
if inp.bl_idname=="PovraySocketInt_1_9" and inp.is_linked:
prop="value_1_9"
if prop not in value:
value.append(prop)
if inp.bl_idname=="PovraySocketInt_0_255" and inp.is_linked:
prop="value_0_255"
if prop not in value:
value.append(prop)
if inp.bl_idname=="PovraySocketFloatUnlimited" and inp.is_linked:
prop="value_unlimited"
if prop not in value:
value.append(prop)
if len(value)==1:
layout.prop(self, "%s"%value[0], text=text)
else:
layout.prop(self, "percent", text="Percent")
else:
layout.prop(self, "percent", text=text)
def draw_color(self, context, node):
return (1, 0, 0, 1)
class PovraySocketFloat_0_1(NodeSocket):
bl_idname = 'PovraySocketFloat_0_1'
bl_label = 'Povray Socket'
default_value: bpy.props.FloatProperty(description="Input node Value_0_1",min=0,max=1,default=0)
def draw(self, context, layout, node, text):
if self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text, slider=True)
def draw_color(self, context, node):
return (0.5, 0.7, 0.7, 1)
class PovraySocketFloat_0_10(NodeSocket):
bl_idname = 'PovraySocketFloat_0_10'
bl_label = 'Povray Socket'
default_value: bpy.props.FloatProperty(description="Input node Value_0_10",min=0,max=10,default=0)
def draw(self, context, layout, node, text):
if node.bl_idname == 'ShaderNormalMapNode' and node.inputs[2].is_linked:
self.hide_value=True
if self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text, slider=True)
def draw_color(self, context, node):
return (0.65, 0.65, 0.65, 1)
class PovraySocketFloat_10(NodeSocket):
bl_idname = 'PovraySocketFloat_10'
bl_label = 'Povray Socket'
default_value: bpy.props.FloatProperty(description="Input node Value_10",min=-10,max=10,default=0)
def draw(self, context, layout, node, text):
if node.bl_idname == 'ShaderNormalMapNode' and node.inputs[2].is_linked:
self.hide_value=True
if self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text, slider=True)
def draw_color(self, context, node):
return (0.65, 0.65, 0.65, 1)
class PovraySocketFloatPositive(NodeSocket):
bl_idname = 'PovraySocketFloatPositive'
bl_label = 'Povray Socket'
default_value: bpy.props.FloatProperty(description="Input Node Value Positive", min=0.0, default=0)
def draw(self, context, layout, node, text):
if self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text, slider=True)
def draw_color(self, context, node):
return (0.045, 0.005, 0.136, 1)
class PovraySocketFloat_000001_10(NodeSocket):
bl_idname = 'PovraySocketFloat_000001_10'
bl_label = 'Povray Socket'
default_value: bpy.props.FloatProperty(min=0.000001,max=10,default=0.000001)
def draw(self, context, layout, node, text):
if self.is_output or self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text, slider=True)
def draw_color(self, context, node):
return (1, 0, 0, 1)
class PovraySocketFloatUnlimited(NodeSocket):
bl_idname = 'PovraySocketFloatUnlimited'
bl_label = 'Povray Socket'
default_value: bpy.props.FloatProperty(default = 0.0)
def draw(self, context, layout, node, text):
if self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text, slider=True)
def draw_color(self, context, node):
return (0.7, 0.7, 1, 1)
class PovraySocketInt_1_9(NodeSocket):
bl_idname = 'PovraySocketInt_1_9'
bl_label = 'Povray Socket'
default_value: bpy.props.IntProperty(description="Input node Value_1_9",min=1,max=9,default=6)
def draw(self, context, layout, node, text):
if self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text)
def draw_color(self, context, node):
return (1, 0.7, 0.7, 1)
class PovraySocketInt_0_256(NodeSocket):
bl_idname = 'PovraySocketInt_0_256'
bl_label = 'Povray Socket'
default_value: bpy.props.IntProperty(min=0,max=255,default=0)
def draw(self, context, layout, node, text):
if self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text)
def draw_color(self, context, node):
return (0.5, 0.5, 0.5, 1)
class PovraySocketPattern(NodeSocket):
bl_idname = 'PovraySocketPattern'
bl_label = 'Povray Socket'
default_value: bpy.props.EnumProperty(
name="Pattern",
description="Select the pattern",
items=(
('boxed', "Boxed", ""),
('brick', "Brick", ""),
('cells', "Cells", ""),
('checker', "Checker", ""),
('granite', "Granite", ""),
('leopard', "Leopard", ""),
('marble', "Marble", ""),
('onion', "Onion", ""),
('planar', "Planar", ""),
('quilted', "Quilted", ""),
('ripples', "Ripples", ""),
('radial', "Radial", ""),
('spherical', "Spherical", ""),
('spotted', "Spotted", ""),
('waves', "Waves", ""),
('wood', "Wood", ""),
('wrinkles', "Wrinkles", "")
),
default='granite')
def draw(self, context, layout, node, text):
if self.is_output or self.is_linked:
else:
layout.prop(self, "default_value", text=text)
def draw_color(self, context, node):
return (1, 1, 1, 1)
class PovraySocketColor(NodeSocket):
bl_idname = 'PovraySocketColor'
bl_label = 'Povray Socket'
default_value: bpy.props.FloatVectorProperty(
precision=4, step=0.01, min=0, soft_max=1,
default=(0.0, 0.0, 0.0), options={'ANIMATABLE'}, subtype='COLOR')
def draw(self, context, layout, node, text):
if self.is_output or self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text)
def draw_color(self, context, node):
return (1, 1, 0, 1)
class PovraySocketColorRGBFT(NodeSocket):
bl_idname = 'PovraySocketColorRGBFT'
bl_label = 'Povray Socket'
default_value: bpy.props.FloatVectorProperty(
precision=4, step=0.01, min=0, soft_max=1,
default=(0.0, 0.0, 0.0), options={'ANIMATABLE'}, subtype='COLOR')
f: bpy.props.FloatProperty(default = 0.0,min=0.0,max=1.0)
t: bpy.props.FloatProperty(default = 0.0,min=0.0,max=1.0)
def draw(self, context, layout, node, text):
if self.is_output or self.is_linked:
layout.label(text)
else:
layout.prop(self, "default_value", text=text)
def draw_color(self, context, node):
return (1, 1, 0, 1)
class PovraySocketTexture(NodeSocket):
bl_idname = 'PovraySocketTexture'
bl_label = 'Povray Socket'
default_value: bpy.props.IntProperty()
def draw(self, context, layout, node, text):
layout.label(text)
def draw_color(self, context, node):
return (0, 1, 0, 1)
class PovraySocketTransform(NodeSocket):
bl_idname = 'PovraySocketTransform'
bl_label = 'Povray Socket'
default_value: bpy.props.IntProperty(min=0,max=255,default=0)
def draw(self, context, layout, node, text):
layout.label(text)
def draw_color(self, context, node):
return (99/255, 99/255, 199/255, 1)
class PovraySocketNormal(NodeSocket):
bl_idname = 'PovraySocketNormal'
bl_label = 'Povray Socket'
default_value: bpy.props.IntProperty(min=0,max=255,default=0)
def draw(self, context, layout, node, text):
layout.label(text)
def draw_color(self, context, node):
return (0.65, 0.65, 0.65, 1)
class PovraySocketSlope(NodeSocket):
bl_idname = 'PovraySocketSlope'
bl_label = 'Povray Socket'
default_value: bpy.props.FloatProperty(min = 0.0, max = 1.0)
height: bpy.props.FloatProperty(min = 0.0, max = 10.0)
slope: bpy.props.FloatProperty(min = -10.0, max = 10.0)
def draw(self, context, layout, node, text):
if self.is_output or self.is_linked:
layout.label(text)
else:
layout.prop(self,'default_value',text='')
layout.prop(self,'height',text='')
layout.prop(self,'slope',text='')
def draw_color(self, context, node):
return (0, 0, 0, 1)
class PovraySocketMap(NodeSocket):
bl_idname = 'PovraySocketMap'
bl_label = 'Povray Socket'
default_value: bpy.props.StringProperty()
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
def draw(self, context, layout, node, text):
layout.label(text)
def draw_color(self, context, node):
return (0.2, 0, 0.2, 1)
class PovrayShaderNodeCategory(NodeCategory):
@classmethod
def poll(cls, context):
return context.space_data.tree_type == 'ObjectNodeTree'
class PovrayTextureNodeCategory(NodeCategory):
@classmethod
def poll(cls, context):
return context.space_data.tree_type == 'TextureNodeTree'
class PovraySceneNodeCategory(NodeCategory):
@classmethod
def poll(cls, context):
return context.space_data.tree_type == 'CompositorNodeTree'
node_categories = [
PovrayShaderNodeCategory("SHADEROUTPUT", "Output", items=[
NodeItem("PovrayOutputNode"),
]),
PovrayShaderNodeCategory("SIMPLE", "Simple texture", items=[
NodeItem("PovrayTextureNode"),
]),
PovrayShaderNodeCategory("MAPS", "Maps", items=[
NodeItem("PovrayBumpMapNode"),
NodeItem("PovrayColorImageNode"),
NodeItem("ShaderNormalMapNode"),
NodeItem("PovraySlopeNode"),
NodeItem("ShaderTextureMapNode"),
NodeItem("ShaderNodeValToRGB"),
]),
PovrayShaderNodeCategory("OTHER", "Other patterns", items=[
NodeItem("PovrayImagePatternNode"),
NodeItem("ShaderPatternNode"),
]),
PovrayShaderNodeCategory("COLOR", "Color", items=[
NodeItem("PovrayPigmentNode"),
]),
PovrayShaderNodeCategory("TRANSFORM", "Transform", items=[
NodeItem("PovrayMappingNode"),
NodeItem("PovrayMultiplyNode"),
NodeItem("PovrayModifierNode"),
NodeItem("PovrayTransformNode"),
NodeItem("PovrayValueNode"),
]),
PovrayShaderNodeCategory("FINISH", "Finish", items=[
NodeItem("PovrayFinishNode"),
NodeItem("PovrayDiffuseNode"),
NodeItem("PovraySpecularNode"),
NodeItem("PovrayPhongNode"),
NodeItem("PovrayAmbientNode"),
NodeItem("PovrayMirrorNode"),
NodeItem("PovrayIridescenceNode"),
NodeItem("PovraySubsurfaceNode"),
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
PovrayShaderNodeCategory("CYCLES", "Cycles", items=[
NodeItem("ShaderNodeAddShader"),
NodeItem("ShaderNodeAmbientOcclusion"),
NodeItem("ShaderNodeAttribute"),
NodeItem("ShaderNodeBackground"),
NodeItem("ShaderNodeBlackbody"),
NodeItem("ShaderNodeBrightContrast"),
NodeItem("ShaderNodeBsdfAnisotropic"),
NodeItem("ShaderNodeBsdfDiffuse"),
NodeItem("ShaderNodeBsdfGlass"),
NodeItem("ShaderNodeBsdfGlossy"),
NodeItem("ShaderNodeBsdfHair"),
NodeItem("ShaderNodeBsdfRefraction"),
NodeItem("ShaderNodeBsdfToon"),
NodeItem("ShaderNodeBsdfTranslucent"),
NodeItem("ShaderNodeBsdfTransparent"),
NodeItem("ShaderNodeBsdfVelvet"),
NodeItem("ShaderNodeBump"),
NodeItem("ShaderNodeCameraData"),
NodeItem("ShaderNodeCombineHSV"),
NodeItem("ShaderNodeCombineRGB"),
NodeItem("ShaderNodeCombineXYZ"),
NodeItem("ShaderNodeEmission"),
NodeItem("ShaderNodeExtendedMaterial"),
NodeItem("ShaderNodeFresnel"),
NodeItem("ShaderNodeGamma"),
NodeItem("ShaderNodeGeometry"),
NodeItem("ShaderNodeGroup"),
NodeItem("ShaderNodeHairInfo"),
NodeItem("ShaderNodeHoldout"),
NodeItem("ShaderNodeHueSaturation"),
NodeItem("ShaderNodeInvert"),
NodeItem("ShaderNodeLampData"),
NodeItem("ShaderNodeLayerWeight"),
NodeItem("ShaderNodeLightFalloff"),
NodeItem("ShaderNodeLightPath"),
NodeItem("ShaderNodeMapping"),
NodeItem("ShaderNodeMaterial"),
NodeItem("ShaderNodeMath"),
NodeItem("ShaderNodeMixRGB"),
NodeItem("ShaderNodeMixShader"),
NodeItem("ShaderNodeNewGeometry"),
NodeItem("ShaderNodeNormal"),
NodeItem("ShaderNodeNormalMap"),
NodeItem("ShaderNodeObjectInfo"),
NodeItem("ShaderNodeOutput"),
NodeItem("ShaderNodeOutputLamp"),
NodeItem("ShaderNodeOutputLineStyle"),
NodeItem("ShaderNodeOutputMaterial"),
NodeItem("ShaderNodeOutputWorld"),
NodeItem("ShaderNodeParticleInfo"),
NodeItem("ShaderNodeRGB"),
NodeItem("ShaderNodeRGBCurve"),
NodeItem("ShaderNodeRGBToBW"),
NodeItem("ShaderNodeScript"),
NodeItem("ShaderNodeSeparateHSV"),
NodeItem("ShaderNodeSeparateRGB"),
NodeItem("ShaderNodeSeparateXYZ"),
NodeItem("ShaderNodeSqueeze"),
NodeItem("ShaderNodeSubsurfaceScattering"),
NodeItem("ShaderNodeTangent"),
NodeItem("ShaderNodeTexBrick"),
NodeItem("ShaderNodeTexChecker"),
NodeItem("ShaderNodeTexCoord"),
NodeItem("ShaderNodeTexEnvironment"),
NodeItem("ShaderNodeTexGradient"),
NodeItem("ShaderNodeTexImage"),
NodeItem("ShaderNodeTexMagic"),
NodeItem("ShaderNodeTexMusgrave"),
NodeItem("ShaderNodeTexNoise"),
NodeItem("ShaderNodeTexPointDensity"),
NodeItem("ShaderNodeTexSky"),
NodeItem("ShaderNodeTexVoronoi"),
NodeItem("ShaderNodeTexWave"),
NodeItem("ShaderNodeTexture"),
NodeItem("ShaderNodeUVAlongStroke"),
NodeItem("ShaderNodeUVMap"),
NodeItem("ShaderNodeValToRGB"),
NodeItem("ShaderNodeValue"),
NodeItem("ShaderNodeVectorCurve"),
NodeItem("ShaderNodeVectorMath"),
NodeItem("ShaderNodeVectorTransform"),
NodeItem("ShaderNodeVolumeAbsorption"),
NodeItem("ShaderNodeVolumeScatter"),
NodeItem("ShaderNodeWavelength"),
NodeItem("ShaderNodeWireframe"),
]),
PovrayTextureNodeCategory("TEXTUREOUTPUT", "Output", items=[
NodeItem("TextureNodeValToRGB"),
NodeItem("TextureOutputNode"),
]),
PovraySceneNodeCategory("ISOSURFACE", "Isosurface", items=[
NodeItem("IsoPropsNode"),
]),
PovraySceneNodeCategory("FOG", "Fog", items=[
NodeItem("PovrayFogNode"),
]),
]
############### end nodes
Bastien Montagne
committed
###############################################################################
# Texture POV properties.
###############################################################################
class RenderPovSettingsTexture(PropertyGroup):
"""Declare texture level properties controllable in UI and translated to POV."""
# former Space properties from removed Blender Internal
active_texture_index: IntProperty(
use_limited_texture_context: BoolProperty(
name="",
description="Use the limited version of texture user (for ‘old shading’ mode)",
default=True,
)
texture_context: EnumProperty(
name="Texture context",
description="Type of texture data to display and edit",
items=(
('MATERIAL', "", "Show material textures", "MATERIAL",0), # "Show material textures"
('WORLD', "", "Show world textures", "WORLD",1), # "Show world textures"
('LAMP', "", "Show lamp textures", "LIGHT",2), # "Show lamp textures"
('PARTICLES', "", "Show particles textures", "PARTICLES",3), # "Show particles textures"
('LINESTYLE', "", "Show linestyle textures", "LINE_DATA",4), # "Show linestyle textures"
('OTHER', "", "Show other data textures", "TEXTURE_DATA",5), # "Show other data textures"
default = 'MATERIAL',
)
# Custom texture gamma
name="Enable custom texture gamma",
description="Notify some custom gamma for which texture has been precorrected "
"without the file format carrying it and only if it differs from your "
"OS expected standard (see pov doc)",
default=False,
)
name="Custom texture gamma",
description="value for which the file was issued e.g. a Raw photo is gamma 1.0",
min=0.45, max=5.00, soft_min=1.00, soft_max=2.50, default=1.00
)
Bastien Montagne
committed
##################################CustomPOV Code############################
# commented out below if we wanted custom pov code in texture only, inside exported material:
# replacement_text = StringProperty(
# name="Declared name:",
# description="Type the declared name in custom POV code or an external .inc "
# "it points at. pigment {} expected",
# default="")
Bastien Montagne
committed
name="Texture_Type",
description="Choose between Blender or POV parameters to specify texture",
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
items= (
('agate', 'Agate', '','PLUGIN', 0),
('aoi', 'Aoi', '', 'PLUGIN', 1),
('average', 'Average', '', 'PLUGIN', 2),
('boxed', 'Boxed', '', 'PLUGIN', 3),
('bozo', 'Bozo', '', 'PLUGIN', 4),
('bumps', 'Bumps', '', 'PLUGIN', 5),
('cells', 'Cells', '', 'PLUGIN', 6),
('crackle', 'Crackle', '', 'PLUGIN', 7),
('cubic', 'Cubic', '', 'PLUGIN', 8),
('cylindrical', 'Cylindrical', '', 'PLUGIN', 9),
('density_file', 'Density', '(.df3)', 'PLUGIN', 10),
('dents', 'Dents', '', 'PLUGIN', 11),
('fractal', 'Fractal', '', 'PLUGIN', 12),
('function', 'Function', '', 'PLUGIN', 13),
('gradient', 'Gradient', '', 'PLUGIN', 14),
('granite', 'Granite', '', 'PLUGIN', 15),
('image_pattern', 'Image pattern', '', 'PLUGIN', 16),
('leopard', 'Leopard', '', 'PLUGIN', 17),
('marble', 'Marble', '', 'PLUGIN', 18),
('onion', 'Onion', '', 'PLUGIN', 19),
('pigment_pattern', 'pigment pattern', '', 'PLUGIN', 20),
('planar', 'Planar', '', 'PLUGIN', 21),
('quilted', 'Quilted', '', 'PLUGIN', 22),
('radial', 'Radial', '', 'PLUGIN', 23),
('ripples', 'Ripples', '', 'PLUGIN', 24),
('slope', 'Slope', '', 'PLUGIN', 25),
('spherical', 'Spherical', '', 'PLUGIN', 26),
('spiral1', 'Spiral1', '', 'PLUGIN', 27),
('spiral2', 'Spiral2', '', 'PLUGIN', 28),
('spotted', 'Spotted', '', 'PLUGIN', 29),
('waves', 'Waves', '', 'PLUGIN', 30),
('wood', 'Wood', '', 'PLUGIN', 31),
('wrinkles', 'Wrinkles', '', 'PLUGIN', 32),
('brick', "Brick", "", 'PLUGIN', 33),
('checker', "Checker", "", 'PLUGIN', 34),
('hexagon', "Hexagon", "", 'PLUGIN', 35),
('object', "Mesh", "", 'PLUGIN', 36),
('emulator', "Blender Type Emulator", "", 'SCRIPTPLUGINS', 37)
name="Magnet style",
description="magnet or julia",
items=(('mandel', "Mandelbrot", ""),('julia', "Julia", "")),
default='julia',
)
name="Magnet_type",
description="1 or 2",
name="Warp Types",
description="Select the type of warp",
items=(('PLANAR', "Planar", ""), ('CUBIC', "Cubic", ""),
('SPHERICAL', "Spherical", ""), ('TOROIDAL', "Toroidal", ""),
('CYLINDRICAL', "Cylindrical", ""), ('NONE', "None", "No indentation")),
default='NONE'
)
name="Warp Orientation",
description="Select the orientation of warp",
items=(('x', "X", ""), ('y', "Y", ""), ('z', "Z", "")),
default='y',
)
name="Waves type",
description="Select the type of waves",
items=(('ramp', "Ramp", ""), ('sine', "Sine", ""), ('scallop', "Scallop", ""),
('cubic', "Cubic", ""), ('poly', "Poly", ""), ('triangle', 'Triangle', "")),
default='ramp',
)
name="Noise Generators",
description="Noise Generators",
min=1, max=3, default=1,
)
name="Distance exponent",
description="Distance exponent",
min=0.0, max=100.0, default=1.0,
)
warp_tor_major_radius: FloatProperty(
name="Major radius",
description="Torus is distance from major radius",
min=0.0, max=5.0, default=1.0,
)
warp_turbulence_x: FloatProperty(
name="Turbulence X",
description="Turbulence X",
min=0.0, max=5.0, default=0.0,
)
warp_turbulence_y: FloatProperty(
name="Turbulence Y",
description="Turbulence Y",
min=0.0, max=5.0, default=0.0
)
warp_turbulence_z: FloatProperty(
name="Turbulence Z",
description="Turbulence Z",
min=0.0, max=5.0, default=0.0
)
name="Turbulence octaves",
description="Turbulence octaves",
min=1, max=10, default=1
)
name="Turbulence lambda",
description="Turbulence lambda",
min=0.0, max=5.0, default=1.00
)
name="Turbulence omega",
description="Turbulence omega",
min=0.0, max=10.0, default=1.00
)
name="Phase",
description="The phase value causes the map entries to be shifted so that the map "
"starts and ends at a different place",
min=0.0, max=2.0, default=0.0
)
modifier_frequency: FloatProperty(
name="Frequency",
description="The frequency keyword adjusts the number of times that a color map "
"repeats over one cycle of a pattern",
min=0.0, max=25.0, default=2.0
)
modifier_turbulence: FloatProperty(
name="Turbulence",
description="Turbulence",
min=0.0, max=5.0, default=2.0
)
name="Numbers",
description="Numbers",
min=1, max=27, default=2
)
name="Control0",
description="Control0",
min=0, max=100, default=1
)
name="Control1",
description="Control1",
min=0, max=100, default=1
)
name="Brick size x",
description="",
min=0.0000, max=1.0000, default=0.2500
)
name="Brick size y",
description="",
min=0.0000, max=1.0000, default=0.0525
)
name="Brick size z",
description="",
min=0.0000, max=1.0000, default=0.1250
)
name="Mortar",
description="Mortar",
min=0.000, max=1.500, default=0.01
)
name="Julia Complex 1",
description="",
min=0.000, max=1.500, default=0.360
)
name="Julia Complex 2",
description="",
min=0.000, max=1.500, default=0.250
)
name="Fractal Iteration",
description="",
min=0, max=100, default=20
)
name="Fractal Exponent",
description="",
min=2, max=33, default=2
)
name="Fractal Interior",
description="",
min=1, max=6, default=1
)
name="Fractal Interior Factor",
description="",
min=0.0, max=10.0, default=1.0
)
name="Fractal Exterior",
description="",
min=1, max=8, default=1
)
name="Fractal Exterior Factor",
description="",
min=0.0, max=10.0, default=1.0
)
name="Gradient orientation X",
description="",
min=0, max=1, default=0
)
name="Gradient orientation Y",
description="",
min=0, max=1, default=1
)
name="Gradient orientation Z",
description="",
min=0, max=1, default=0
)
items=(
('3', "3", ""),
('4', "4", ""),
('6', "6", "")
),
name="Pavement pattern 2",
description="maximum: 2",
min=1, max=2, default=2
)
name="Pavement pattern 3",
description="maximum: 3",
min=1, max=3, default=3
)
name="Pavement pattern 4",
description="maximum: 4",
min=1, max=4, default=4
)
name="Pavement pattern 5",
description="maximum: 5",
min=1, max=5, default=5
)
name="Pavement pattern 7",
description="maximum: 7",
min=1, max=7, default=7
)
name="Pavement pattern 12",
description="maximum: 12",
min=1, max=12, default=12
)
name="Pavement pattern 22",
description="maximum: 22",
min=1, max=22, default=22
)
name="Pavement pattern 35",
description="maximum: 35",
min=1, max=35, default=35,
)
name="Pavement tiles",
description="If sides = 6, maximum tiles 5!!!",
min=1, max=6, default=1
)
name="Pavement form",
description="",
min=0, max=4, default=0
)
#########FUNCTIONS#############################################################################
#########FUNCTIONS#############################################################################
name="Functions",
description="Select the function for create pattern",
items=(
('NONE', "None", "No indentation"),
("f_algbr_cyl1","Algbr cyl1",""), ("f_algbr_cyl2","Algbr cyl2",""),
("f_algbr_cyl3","Algbr cyl3",""), ("f_algbr_cyl4","Algbr cyl4",""),
("f_bicorn","Bicorn",""), ("f_bifolia","Bifolia",""),
("f_blob","Blob",""), ("f_blob2","Blob2",""),
("f_boy_surface","Boy surface",""), ("f_comma","Comma",""),
("f_cross_ellipsoids","Cross ellipsoids",""),
("f_crossed_trough","Crossed trough",""), ("f_cubic_saddle","Cubic saddle",""),
Loading
Loading full blame…