Datasets:

ArXiv:
License:
roboverse_data / materials /vMaterials_2 /Paint /Carpaint /Carpaint_Shifting_Flakes.mdl
Fisher-Wang's picture
[release] materials
ae81f33
raw
history blame
69.8 kB
/******************************************************************************
* Copyright 2024 NVIDIA Corporation. All rights reserved. *
******************************************************************************
Permission is hereby granted by NVIDIA Corporation ("NVIDIA"), free of charge,
to any person obtaining a copy of the sample definition code that uses our
Material Definition Language (the "MDL Materials"), to reproduce and distribute
the MDL Materials, including without limitation the rights to use, copy, merge,
publish, distribute, and sell modified and unmodified copies of the MDL
Materials, and to permit persons to whom the MDL Materials is furnished to do
so, in all cases solely for use with NVIDIA's Material Definition Language,
subject to the following further conditions:
1. The above copyright notices, this list of conditions, and the disclaimer
that follows shall be retained in all copies of one or more of the MDL
Materials, including in any software with which the MDL Materials are bundled,
redistributed, and/or sold, and included either as stand-alone text files,
human-readable headers or in the appropriate machine-readable metadata fields
within text or binary files as long as those fields can be easily viewed by the
user, as applicable.
2. The name of NVIDIA shall not be used to promote, endorse or advertise any
Modified Version without specific prior written permission, except a) to comply
with the notice requirements otherwise contained herein; or b) to acknowledge
the contribution(s) of NVIDIA.
THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR
ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL,
INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE
THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS.
*/
mdl 1.6;
import ::df::*;
import ::math::*;
import ::anno::*;
import ::state::*;
import ::base::*;
import ::tex::*;
import ::nvidia::core_definitions::dimension;
import ::nvidia::core_definitions::blend_colors;
const string COPYRIGHT =
" Copyright 2024 NVIDIA Corporation. All rights reserved.\n"
" MDL MATERIALS ARE PROVIDED PURSUANT TO AN END USER LICENSE AGREEMENT,\n"
" WHICH WAS ACCEPTED IN ORDER TO GAIN ACCESS TO THIS FILE. IN PARTICULAR,\n"
" THE MDL MATERIALS ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n"
" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\n"
" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF\n"
" COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA\n"
" CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY\n"
" GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN\n"
" AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR\n"
" INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS.\n";
::base::texture_coordinate_info transform_coordinate_2(
float4x4 transform
[[ ::anno::description("A transformation to be applied to the source coordinates. rotation_translation_scale() is a suggested means to compute the transformation matrix.") ]],
::base::texture_coordinate_info coordinate = ::base::texture_coordinate_info()
[[ ::anno::description("Coordinate, typically sourced from coordinate_source or coordinate_projection.") ]]
) [[
::anno::description("Transform a texture coordinate by a matrix.") ,
::anno::noinline()
]]
{
// Version 2
float4 r_position = transform * float4(coordinate.position.x,coordinate.position.y,coordinate.position.z,1);
//Try aproximating it for the case that the rotation is only aroud z and assuming the texture layout is nice and z is ~constant.
//just pretend there is no other rotation happening
//get rid of scaling and translation. Then extract fields where sin and cos would be in a simple 2d transform around z.
float4 u = transform[0];
float3 ru = ::math::normalize(float3(u.x,u.y,u.z));
float cos = ru.x;
float sin = -ru.y;
return ::base::texture_coordinate_info(
float3(r_position.x,r_position.y,r_position.z),
::math::normalize(cos * coordinate.tangent_u - sin * coordinate.tangent_v),
::math::normalize(cos * coordinate.tangent_v + sin * coordinate.tangent_u));
}
// Takes the standard input that every material has. It combines a couple of
// functions in one convenience function.
::base::texture_coordinate_info vmat_transform(
float2 translation = float2(0.0f, 0.0f),
float rotation = 0.0f, // rotation in degrees
float2 scaling = float2(1.0f, 1.0f),
uniform ::base::texture_coordinate_system system = ::base::texture_coordinate_uvw,
uniform int uv_space = 0
)
{
float rotation_rad = (rotation * 3.1415926535897932384626433832f) / 180.f;
float4x4 scale =
float4x4(1.0f /scaling.x, 0.f , 0.f , 0.f,
0.f , 1.0f /scaling.y , 0.f , 0.f,
0.f , 0.f , 1.0f, 0.f,
translation.x , translation.y , 0.0f, 1.f);
float s = ::math::sin(rotation_rad);
float c = ::math::cos(rotation_rad);
float4x4 rotate =
float4x4( c , -s , 0.0f , 0.0f,
s , c , 0.0f , 0.0f,
0.0f, 0.0f , 1.0f , 0.0f,
0.f , 0.0f , 0.0f , 1.f);
return transform_coordinate_2(scale*rotate, ::base::coordinate_source(system, uv_space));
}
float histogram_range(float input, float range = 1.0f, float position = 0.5f)
{
float low = ::math::clamp(1.0f - ::math::min(((1.0f - position) + range * 0.5f), (1.0f - position) * 2), 0.0f, 1.0f);
float high = ::math::clamp(::math::min((position + range * 0.5f ), position * 2.0f), 0.0f, 1.0f);
return ::math::lerp(low, high, input);
}
//
// flake noise utilities
//
int hash(int seed, int i)
{
return (i ^ seed) * 1075385539;
}
int rnd_init(int3 pos)
{
return hash(hash(hash(0, pos.x), pos.y), pos.z);
}
int rnd_next(int seed) {
// xorshift32 using signed int
seed ^= seed << 13;
seed ^= seed >>> 17;
seed ^= seed << 5;
return seed;
}
float rnd_value(int seed)
{
//return ::math::abs(float(seed) * 4.6566fe-10f);
return ::math::abs(float(seed) * 0.00000000046566f);
}
// apply random rotation (using "Fast Random Rotation Matrices" by James Arvo)
float3 rotate_pos(float3 pos, float3 xi)
{
float theta = ::math::PI * 2.0f * xi.x;
float phi = ::math::PI * 2.0f * xi.y;
float z = xi.z * 2.0f;
float r = ::math::sqrt(z);
float[2] sp_cp = ::math::sincos(phi);
float Vx = sp_cp[0] * r;
float Vy = sp_cp[1] * r;
float Vz = ::math::sqrt(2.0f - z);
float[2] st_ct = ::math::sincos(theta);
float Sx = Vx * st_ct[1] - Vy * st_ct[0];
float Sy = Vx * st_ct[0] + Vy * st_ct[1];
float3x3 M(
Vx * Sx - st_ct[1], Vx * Sy - st_ct[0], Vx * Vz,
Vy * Sx + st_ct[0], Vy * Sy - st_ct[1], Vy * Vz,
Vz * Sx, Vz * Sy, 1.0f - z);
return M * pos;
}
struct flake_noise_value {
// flake priority (in [0..1], 0: no flake, flakes with higher priority shadow flakes "below" them)
float priority;
// Stores values from the functions (once normal, another time the color)
// current pseudo random number generator seed
int rnd_seed;
float4 carrier;
};
// flake noise function with controllable regularity, flake size, and probability
flake_noise_value flake_noise(
float3 pos,
float jitter_scale = 1.0f,
float flake_diameter = 0.75f,
float flake_probability = 1.0f)
{
float3 base_pos = ::math::floor(pos);
int3 base_pos_i = int3(base_pos);
// limit the flake size to the allowed maximum (such that looking at all neighbors is sufficient)
flake_diameter = ::math::min(flake_diameter, (1.5f - 0.5f * jitter_scale) / ::math::sqrt(3.0f));
flake_noise_value val(0.0f, 0, float4(0.0f));
for (int i = -1; i < 2; ++i) {
for (int j = -1; j < 2; ++j) {
for (int k = -1; k < 2; ++k) {
int seed = rnd_init(base_pos_i + int3(i, j, k));
seed = rnd_next(seed);
if (rnd_value(seed) > flake_probability)
continue;
seed = rnd_next(seed);
float priority = rnd_value(seed);
if (priority < val.priority)
continue;
float3 flake_pos = base_pos + float3(i, j, k) + float3(0.5f);
if (jitter_scale > 0.0f) {
seed = rnd_next(seed);
flake_pos.x += (rnd_value(seed) - 0.5f) * jitter_scale;
seed = rnd_next(seed);
flake_pos.y += (rnd_value(seed) - 0.5f) * jitter_scale;
seed = rnd_next(seed);
flake_pos.z += (rnd_value(seed) - 0.5f) * jitter_scale;
}
float3 p = pos - flake_pos;
if (::math::dot(p, p) >= flake_diameter * flake_diameter * 4.0f)
continue;
float3 xi_rot;
seed = rnd_next(seed);
xi_rot.x = rnd_value(seed);
seed = rnd_next(seed);
xi_rot.y = rnd_value(seed);
seed = rnd_next(seed);
xi_rot.z = rnd_value(seed);
p = rotate_pos(p, xi_rot);
if (::math::abs(p.x) <= flake_diameter &&
::math::abs(p.y) <= flake_diameter &&
::math::abs(p.z) <= flake_diameter)
{
val.priority = priority;
val.rnd_seed = seed;
}
}
}
}
return val;
}
// create a flake normal by importance sampling the Beckmann distribution with given roughness
flake_noise_value flake_normal(
flake_noise_value val,
float spread)
{
if (val.priority <= 0.0f)
{
val.carrier = float4(::state::normal().x, ::state::normal().y, ::state::normal().z, 1.0f);
return val;
}
int seed = rnd_next(val.rnd_seed);
float xi0 = rnd_value(seed);
seed = rnd_next(seed);
float xi1 = rnd_value(seed);
float phi = ::math::PI * 2.0f * xi0;
float roughness = spread * spread;
float tantheta = ::math::sqrt(-roughness * roughness * ::math::log(1.0f - xi1));
float sintheta = tantheta / ::math::sqrt(1.0f + tantheta * tantheta);
float costheta = ::math::sqrt(1.0f - sintheta * sintheta);
float[2] scphi = ::math::sincos(phi);
val.rnd_seed = seed;
float3 normal = ::state::texture_tangent_u(0) * scphi[1] * sintheta +
::state::texture_tangent_v(0) * scphi[0] * sintheta +
::state::normal() * costheta;
val.carrier = float4(normal.x, normal.y, normal.z, 1.0f);
return val;
}
export material Carpaint_Shifting_Flakes(
color base_color = color(0.846873f, 0.846873f, 0.846873f) [[
::anno::description("Sets the base color of the carpaint."),
::anno::display_name("Base"),
::anno::in_group("Appearance"),
::anno::ui_order(0)
]],
float ground_coat_influence = 0.24f [[
::anno::description("The ground coat layer is a metallic base layer over which the base color coat, the flakes and the clearcoat are applied. Use the parameter 'Ground Coat Brightness' to adjust its brightness."),
::anno::display_name("Base Coat Influence"),
::anno::in_group("Appearance"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(1)
]],
float ground_coat_brightness = 0.93f [[
::anno::description("Adjusts the brightness of the metallic ground coat over which the base color coat, the flakes and the clearcoat are applied. Only has an effect, if the Ground Coat Influence is greater than 0.0f."),
::anno::display_name("Base Coat Brightness"),
::anno::in_group("Appearance"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(2)
]],
float edge_darkening = 0.97f [[
::anno::description("The amount how much colors fade to darker color when looking at the carpaint at grazing angles. Low values make the carpaint look more flat."),
::anno::display_name("Edge Darkening"),
::anno::in_group("Appearance"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(3)
]],
float flakes_reflectivity = 1.0f [[
::anno::description("The reflectivity of the flakes."),
::anno::display_name("Flakes Reflectivity"),
::anno::in_group("Flakes"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(4)
]],
uniform float flakes_density = 0.29f [[
::anno::description("Adjusts the density of the flakes. Lower number means less flake particles being applied."),
::anno::display_name("Flakes Density"),
::anno::in_group("Flakes"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(5)
]],
float spread = 0.37f [[
::anno::description("The amount how much flakes are pointing to random directions. It is strongly discouraged using a value of 0.0f as the flakes will be oriented exactly as the surface normal, which will result in an unnatural look. Higher values lead to a more scintillating look of the flakes."),
::anno::display_name("Flakes Spread"),
::anno::enable_if("flakes_density > 0.0f"),
::anno::in_group("Flakes"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(6)
]],
float flakes_roughness = 0.44f [[
::anno::description("The roughness of the flakes itself. Higher values smoothen out the look of the flakes. Depending on the flakes being used in carpaints, use low values for a sparkling flake effect while mica flakes tend to have a higher roughness, leading to a smoother more pearlescent look on the final carpaint."),
::anno::display_name("Flakes Roughness"),
::anno::enable_if("flakes_density > 0.0f"),
::anno::in_group("Flakes"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(7)
]],
float flakes_size = 0.1f [[
::anno::description("Size of the metal flakes in millimeters."),
::anno::display_name("Flakes Size (mm)"),
::anno::enable_if("flakes_density > 0.0f"),
::anno::soft_range(0.f, 1.f),
::anno::in_group("Flakes"),
::anno::ui_order(8)
]],
// Flakes colorshift colors
color flakes_paint_color_1 = color(1.000000f, 0.043735f,0.672443f) //color(0.297f, 0.66f, 0.875f)
[[
::anno::display_name("Paint Color 1"),
::anno::description("First Color of the effect paint."),
::anno::in_group("Flakes", "Flakes Gradient Colors"),
::anno::ui_order(9)
]],
color flakes_paint_color_2 = color(0.982251f, 0.407240f, 1.000000f) //color(0.392f, 0.36f, 1.f)
[[
::anno::display_name("Paint Color 2"),
::anno::description("Second color of the effect paint."),
::anno::in_group("Flakes", "Flakes Gradient Colors"),
::anno::ui_order(10)
]],
color flakes_paint_color_3 = color(0.830770f, 0.830770f, 0.830770f) //color(0.75f, 0.225f, 0.64f)
[[
::anno::display_name("Paint Color 3"),
::anno::description("Third color of the effect paint."),
::anno::in_group("Flakes", "Flakes Gradient Colors"),
::anno::ui_order(11)
]],
color flakes_paint_color_4 = color(0.806952f, 0.806952f, 0.806952f) //color(0.750f, 0.508f, 0.0f)
[[
::anno::display_name("Paint Color 4"),
::anno::description("Fourth Color of the effect paint."),
::anno::in_group("Flakes", "Flakes Gradient Colors"),
::anno::ui_order(12)
]],
color flakes_paint_color_5 = color(00.830770f, 0.830770f, 0.830770f) //color(0.553f, 0.75f, 0.232f)
[[
::anno::display_name("Paint Color 5"),
::anno::description("Fifth color of the effect paint."),
::anno::in_group("Flakes", "Flakes Gradient Colors"),
::anno::ui_order(13)
]],
float flake_layer_visibility = 1.0f [[
::anno::description("Adjusts how much the flakes contribute to the final look. Lowering the value makes the flakes appear more transparent. At value of 0.0f no flakes are not rendered at all."),
::anno::display_name("Flakes Visibility"),
::anno::enable_if("flakes_density > 0.0f"),
::anno::in_group("Flakes"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(14)
]],
uniform texture_2d roughness_texture = texture_2d("./textures/smudges_scratches_A_rough.jpg", ::tex::gamma_linear) [[
::anno::description("Texture to use for adding variation to the roughness on the clearcoat."),
::anno::display_name("Roughness Texture"),
::anno::in_group("Clearcoat"),
::anno::ui_order(15)
]],
float clearcoat_rough = 0.05f [[
::anno::description("The roughness of the clearcoat."),
::anno::display_name("Clearcoat Roughness"),
::anno::in_group("Clearcoat"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(16)
]],
float roughness_variation = 0.3f [[
::anno::description("The amount of variation to apply to the roughness. This parameter only has an effect when the clearcoat roughness is not zero or one."),
::anno::display_name("Clearcoat Roughness Variation"),
::anno::in_group("Clearcoat"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(17)
]],
float clearcoat_ior = 1.600f [[
::anno::description("The index of refraction for the clearcoat layer."),
::anno::display_name("Clearcoat Index of Refraction"),
::anno::in_group("Clearcoat"),
::anno::soft_range(1.f, 3.f),
::anno::hard_range(1.f, 5.f),
::anno::ui_order(18)
]],
float clearcoat_visibility = 1.f [[
::anno::description("While the full value is the correct physical behavior of the clearcoat, lowering the value to reduce the amount of reflection for artistic purposes."),
::anno::display_name("Clearcoat Visibility"),
::anno::in_group("Clearcoat"),
::anno::hard_range(0.f, 1.f),
::anno::ui_order(19)
]],
uniform float orange_peel_strength = 0.f [[
::anno::description("Strength of the bump mapping effect."),
::anno::display_name("Coat Orange Peel Strength"),
::anno::in_group("Clearcoat"),
::anno::soft_range(0.f, 1.f),
::anno::hard_range(0.f, 2.f),
::anno::ui_order(20)
]],
uniform float orange_peel_size = 1.f [[
::anno::description("Size of the biggest feature of the pattern."),
::anno::display_name("Coat Orange Peel Size"),
::anno::soft_range(0.f, 1.f),
::anno::in_group("Clearcoat"),
::anno::ui_order(21)
]],
float2 texture_translate = float2(0.f) [[
::anno::description("Controls the position of the texture."),
::anno::display_name("Texture Translate"),
::anno::in_group("Transform"),
::anno::ui_order(22)
]],
float texture_rotate = 0.f [[
::anno::description("Rotates angle of the texture in degrees."),
::anno::display_name("Texture Rotate"),
::anno::in_group("Transform"),
::anno::soft_range(0.f, 360.f),
::anno::ui_order(23)
]],
float2 texture_scale = float2(1.f) [[
::anno::description("Larger numbers increase the size."),
::anno::display_name("Texture Scale"),
::anno::in_group("Transform"),
::nvidia::core_definitions::dimension(float2(1.0f, 1.0f)),
::anno::ui_order(24)
]],
uniform bool roundcorners_enable = false [[
::anno::description("Enables the round corneer effect. Comes at a slight performance cost as additional raytracing calls are required to evaluate the round corner effect."),
::anno::display_name("Enable Round Corners"),
::anno::in_group("Round Corners"),
::anno::ui_order(25)
]],
uniform float roundcorners_radius_mm = 1.5f [[
::anno::description("Radius of the rounded corners in millimeters."),
::anno::display_name("Round Corner Radius (mm)"),
::anno::in_group("Round Corners"),
::anno::soft_range(0.f, 10.f),
::anno::ui_order(26)
]],
uniform bool roundcorners_across_materials = false [[
::anno::description("Applies the round corner effect across different materials when enabled."),
::anno::display_name("Across Materials"),
::anno::in_group("Round Corners"),
::anno::ui_order(27)
]],
uniform int uv_space_index = 0 [[
::anno::description("Use selected UV space for material."),
::anno::display_name("UV Space Index"),
::anno::in_group("Advanced"),
::anno::ui_order(28)
]]
)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Gloss White to Pink"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "white", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Carpaint_Shifting_Flakes.png"),
::anno::copyright_notice(COPYRIGHT)
]]
=
let {
bool tmp0 = false;
// Tried Scaling factors for flakes to fit 1mm size both in Substance Designer and (Iray for) Rhino
// Rhino scaling factor: 1492.537313432835f
// Substance Designer Scaling factor: 1158.6829010512f
float flakes_size_m = (1492.537313432835f/flakes_size); // Flake scaling adjustment, so that flake size is in mm
float flake_layer_visibility_m = 1.0f - flake_layer_visibility;
::base::texture_coordinate_info coord_info = ::base::coordinate_source(::base::texture_coordinate_object, 0);
float scale_trans = ::state::transform_scale(::state::coordinate_object, ::state::coordinate_world, 1.0f);
float3 source_coord = coord_info.position * ::state::meters_per_scene_unit() * scale_trans;
::base::texture_coordinate_info transformed_coord = ::base::transform_coordinate(
::base::rotation_translation_scale(float3(0.0f), float3(0.0f), float3(scale_trans)),
coord_info
);
material_surface tmp1(::df::fresnel_layer(clearcoat_ior, clearcoat_visibility, ::df::simple_glossy_bsdf(histogram_range(::base::file_texture(roughness_texture, color(0.f, 0.f, 0.f), color(1.f, 1.f, 1.f), ::base::mono_average, vmat_transform(texture_translate, texture_rotate, texture_scale, ::base::texture_coordinate_uvw, uv_space_index), float2(0.f, 1.f), float2(0.f, 1.f), ::tex::wrap_repeat, ::tex::wrap_repeat, false).mono, roughness_variation, clearcoat_rough) * histogram_range(::base::file_texture(roughness_texture, color(0.f, 0.f, 0.f), color(1.f, 1.f, 1.f), ::base::mono_average, vmat_transform(texture_translate, texture_rotate, texture_scale, ::base::texture_coordinate_uvw, uv_space_index), float2(0.f, 1.f), float2(0.f, 1.f), ::tex::wrap_repeat, ::tex::wrap_repeat, false).mono, roughness_variation, clearcoat_rough), histogram_range(::base::file_texture(roughness_texture, color(0.f, 0.f, 0.f), color(1.f, 1.f, 1.f), ::base::mono_average, vmat_transform(texture_translate, texture_rotate, texture_scale, ::base::texture_coordinate_uvw, uv_space_index), float2(0.f, 1.f), float2(0.f, 1.f), ::tex::wrap_repeat, ::tex::wrap_repeat, false).mono, roughness_variation, clearcoat_rough) * histogram_range(::base::file_texture(roughness_texture, color(0.f, 0.f, 0.f), color(1.f, 1.f, 1.f), ::base::mono_average, vmat_transform(texture_translate, texture_rotate, texture_scale, ::base::texture_coordinate_uvw, uv_space_index), float2(0.f, 1.f), float2(0.f, 1.f), ::tex::wrap_repeat, ::tex::wrap_repeat, false).mono, roughness_variation, clearcoat_rough), color(1.0f) /* flakes tint */, color(1.0f) /* flakes_tint */, ::state::texture_tangent_u(0), ::df::scatter_reflect), ::df::directional_factor(color(1.f, 1.f, 1.f), color(1.f - edge_darkening), 1.f, flakes_density > 0.f ? ::df::weighted_layer(::math::lerp(flake_noise(source_coord * flakes_size_m, 0.5f, 1.f, flakes_density * flakes_density).priority > 0.001f ? 1.0f : 0.0f , 0.f, flake_layer_visibility_m),
// Artist-friendly color shift with custom colors
::df::measured_curve_factor(
curve_values: color[](flakes_paint_color_1, flakes_paint_color_1, flakes_paint_color_2, flakes_paint_color_3, flakes_paint_color_4, flakes_paint_color_5, flakes_paint_color_5), //applying 5th color twice, since grazing angles are seen proportinally less
base: ::df::microfacet_ggx_smith_bsdf(
flakes_roughness * flakes_roughness,
flakes_roughness * flakes_roughness,
color(flakes_reflectivity),
color(flakes_reflectivity),
::state::texture_tangent_u(0),
::df::scatter_reflect
)
),
// ::df::thin_film(
// thickness: flakes_coating_thickness * 300.0f, // Does a user understand how the thickness in thin film even works!?
// ior: color(2.5f, 2.6f, 2.7f), //flakes_coating_ior,
// base: ::df::fresnel_factor(
// ior: color(1.25f, 1.35f, 1.4f), // Needs proper IOR of base substrates
// extinction_coefficient: color(1.0f, 2.5f, 4.0f), // Needs proper IOR of base substrates
// base: ::df::microfacet_ggx_smith_bsdf(
// flakes_roughness * flakes_roughness,
// flakes_roughness * flakes_roughness,
// color(flakes_reflectivity),
// color(flakes_reflectivity),
// ::state::texture_tangent_u(0),
// ::df::scatter_reflect
// )
// )
// ),
::df::directional_factor(base_color, color(1.f - edge_darkening), 1.f, ::df::weighted_layer(ground_coat_influence * 0.5f, ::df::microfacet_ggx_vcavities_bsdf(0.40959999f, 0.40959999f, color(ground_coat_brightness * 0.949999988f + 0.0500000007f), color(ground_coat_brightness * 0.949999988f + 0.0500000007f), ::state::texture_tangent_u(0), ::df::scatter_reflect), ::df::diffuse_reflection_bsdf(base_color, 0.f), ::state::normal())), float3(flake_normal(flake_noise(source_coord * flakes_size_m, 0.5f, 1.f, flakes_density * flakes_density ), spread).carrier.x, flake_normal(flake_noise(source_coord * flakes_size_m, 0.5f, 1.f, flakes_density * flakes_density ), spread).carrier.y, flake_normal(flake_noise(source_coord * flakes_size_m, 0.5f, 1.f, flakes_density * flakes_density ), spread).carrier.z)) : ::df::directional_factor(base_color, color(1.f - edge_darkening), 1.f, ::df::weighted_layer(ground_coat_influence * 0.5f, ::df::microfacet_ggx_vcavities_bsdf(0.40959999f, 0.40959999f, color(ground_coat_brightness * 0.95f + 0.05f), color(ground_coat_brightness * 0.949999988f + 0.0500000007f), ::state::texture_tangent_u(0), ::df::scatter_reflect), ::df::diffuse_reflection_bsdf(base_color, 0.f), ::state::normal()))), orange_peel_strength > 0.f ? ::base::perlin_noise_bump_texture(transformed_coord, orange_peel_strength, orange_peel_size, false, false, 0.f, 2, false, false, float3(0.f), 1.f, 0.f, 1.f, ::state::normal()) : ::state::normal()), material_emission(emission: edf(), intensity: color(0.f, 0.f, 0.f), mode: intensity_radiant_exitance));
material_surface tmp2 = material_surface(scattering: bsdf(), emission: material_emission(emission: edf(), intensity: color(0.f, 0.f, 0.f), mode: intensity_radiant_exitance));
color tmp3 = color(1.f, 1.f, 1.f);
material_volume tmp4 = material_volume(scattering: vdf(), absorption_coefficient: color(0.f, 0.f, 0.f), scattering_coefficient: color(0.f, 0.f, 0.f));
material_geometry tmp5(float3(0.f), 1.f, roundcorners_enable ? ::state::rounded_corner_normal(roundcorners_radius_mm * 0.00100000005f, roundcorners_across_materials, 1.f) : ::state::normal());
hair_bsdf tmp6 = hair_bsdf();
} in
material(
thin_walled: tmp0,
surface: tmp1,
backface: tmp2,
ior: tmp3,
volume: tmp4,
geometry: tmp5,
hair: tmp6);
// ------------------- 2 White to Purple -------------------
export material White_to_Purple(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - White to Purple"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "white", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.White_to_Purple.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.846873f, 0.846873f, 0.846873f),
ground_coat_influence: 0.20f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.97f,
flakes_reflectivity: 1.00f,
flakes_density: 0.29f,
spread: 0.37f,
flakes_roughness: 0.44f,
flakes_size: 0.1f,
flakes_paint_color_1: color(0.337164f, 0.043735f, 1.000000f),
flakes_paint_color_2: color(0.737910f, 0.407240f, 1.000000f),
flakes_paint_color_3: color(0.830770f, 0.830770f, 0.830770f),
flakes_paint_color_4: color(0.806952f, 0.806952f, 0.806952f),
flakes_paint_color_5: color(0.830770f, 0.830770f, 0.830770f),
flake_layer_visibility: 0.95f,
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 3 White to Blue -------------------
export material White_to_Blue(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - White to Blue"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "white", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.White_to_Blue.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.846873f, 0.846873f, 0.846873f),
ground_coat_influence: 0.24f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.97f,
flakes_reflectivity: 1.00f,
flakes_density: 0.29f,
spread: 0.37f,
flakes_roughness: 0.44f,
flakes_size: 0.1f,
flakes_paint_color_1: color(0.027321f, 0.029557f, 0.871367f),
flakes_paint_color_2: color(0.052861f, 0.029557f, 0.871367f),
flakes_paint_color_3: color(0.830770f, 0.830770f, 0.830770f),
flakes_paint_color_4: color(0.806952f, 0.806952f, 0.806952f),
flakes_paint_color_5: color(0.830770f, 0.830770f, 0.830770f),
flake_layer_visibility: 0.95f,
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 4 White to Gold -------------------
export material White_to_Gold(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - White to Gold"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "white", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.White_to_Gold.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.846873f, 0.846873f, 0.846873f),
ground_coat_influence: 0.00f,
ground_coat_brightness: 0.34f,
edge_darkening: 0.57f,
flakes_reflectivity: 1.00f,
flakes_density: 0.16f,
spread: 0.52f,
flakes_roughness: 0.19f,
flakes_size: 0.1f,
flakes_paint_color_1: color(1.000000f, 0.552011f, 0.024158f),
flakes_paint_color_2: color(1.000000f, 0.752942f, 0.187821f),
flakes_paint_color_3: color(1.000000f, 1.000000f, 1.000000f),
flakes_paint_color_4: color(1.000000f, 1.000000f, 1.000000f),
flakes_paint_color_5: color(0.955973f, 0.955973f, 0.955973f),
flake_layer_visibility: 0.95f,
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 5 White Chameleon -------------------
export material White_Chameleon(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - White Chameleon"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "white", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.White_Chameleon.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.846873f, 0.846873f, 0.846873f),
ground_coat_influence: 0.00f,
ground_coat_brightness: 0.34f,
edge_darkening: 0.57f,
flakes_reflectivity: 1.00f,
flakes_density: 0.16f,
spread: 0.52f,
flakes_roughness: 0.19f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.072272f, 0.737910f, 0.737910f),
flakes_paint_color_2: color(0.127438f, 0.107023f, 1.000000f),
flakes_paint_color_3: color(0.520996f, 0.040915f, 0.366253f),
flakes_paint_color_4: color(0.520996f, 0.223228f, 0.000000f),
flakes_paint_color_5: color(0.266356f, 0.520996f, 0.043735f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 6 Green Aquatic -------------------
export material Green_Aquatic(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Green Aquatic"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "green", "multicolor", "intense", "saturated")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Green_Aquatic.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.010960f, 0.296138f, 0.031896f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.1f,
flakes_reflectivity: 1.0f,
flakes_density: 0.57f,
spread: 0.37f,
flakes_roughness: 0.27f,
flakes_size: 0.1f,
flake_layer_visibility: 1.00f,
flakes_paint_color_1: color(0.174647f, 0.407240f, 0.031896f),
flakes_paint_color_2: color(0.031896f, 0.300544f, 0.009134f),
flakes_paint_color_3: color(0.035601f, 0.610496f, 0.270498f),
flakes_paint_color_4: color(0.042311f, 0.479320f, 0.644480f),
flakes_paint_color_5: color(0.000304f, 0.158961f, 0.171441f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 7 Dimmed Green -------------------
export material Dimmed_Green(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Dimmed Green"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Dimmed_Green.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.177888f, 0.296138f, 0.109462f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.50f,
spread: 0.40f,
flakes_roughness: 0.19f,
flakes_size: 0.1f,
flakes_paint_color_1: color(0.274677f, 0.149960f, 0.021219f),
flakes_paint_color_2: color(0.467784f, 0.434154f, 0.013702f),
flakes_paint_color_3: color(0.063010f, 0.174647f, 0.341914f),
flakes_paint_color_4: color(0.194618f, 0.080220f, 0.520996f),
flakes_paint_color_5: color(0.296138f, 0.074214f, 0.552011f),
flake_layer_visibility: 1.00f,
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 8 Goblin Fire -------------------
export material Goblin_Fire(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Goblin Fire"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "multicolor", "green", "red", "saturated", "intense")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Goblin_Fire.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.010960f, 0.250158f, 0.015996f),
ground_coat_influence: 0.24f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.99f,
flakes_reflectivity: 1.00f,
flakes_density: 1.00f,
spread: 0.37f,
flakes_roughness: 0.29f,
flakes_size: 0.1f,
flake_layer_visibility: 0.82f,
flakes_paint_color_1: color(0.491021f, 0.022174f, 0.022174f),
flakes_paint_color_2: color(0.467784f, 0.491021f, 0.016807f),
flakes_paint_color_3: color(0.165132f, 0.491021f, 0.039546f),
flakes_paint_color_4: color(0.035601f, 0.479320f, 0.102242f),
flakes_paint_color_5: color(0.034340f, 0.407240f, 0.033105f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 9 Emerald to Blue-------------------
export material Emerald_to_Blue(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Emerald to Blue"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "intense", "saturated", "blue", "cool")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Emerald_to_Blue.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.017642f, 0.171441f, 0.262251f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.99f,
flakes_reflectivity: 1.00f,
flakes_density: 1.00f,
spread: 0.31f,
flakes_roughness: 0.28f,
flakes_size: 0.1f,
flake_layer_visibility: 0.82f,
flakes_paint_color_1: color(0.054480f, 0.381326f, 0.162029f),
flakes_paint_color_2: color(0.029557f, 0.194618f, 0.051269f),
flakes_paint_color_3: color(0.076185f, 0.381326f, 0.603827f),
flakes_paint_color_4: color(0.141263f, 0.064803f, 0.571125f),
flakes_paint_color_5: color(0.102242f, 0.068478f, 0.539479f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 10 Nebular -------------------
export material Nebular(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Nebular"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "intense", "saturated", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Nebular.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.033105f, 0.086500f, 0.212231f),
ground_coat_influence: 0.24f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.60f,
flakes_reflectivity: 1.00f,
flakes_density: 1.00f,
spread: 0.32f,
flakes_roughness: 0.29f,
flakes_size: 0.1f,
clearcoat_rough: 0.06f,
flakes_paint_color_1: color(0.467784f, 0.491021f, 0.016807f),
flakes_paint_color_2: color(0.822786f, 0.171441f, 0.000000f),
flakes_paint_color_3: color(0.165132f, 0.491021f, 0.039546f),
flakes_paint_color_4: color(0.012286f, 0.630757f, 0.723055f),
flakes_paint_color_5: color(0.011612f, 0.072272f, 0.760525f),
flake_layer_visibility: 1.00f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 11 Elegant Emerald -------------------
export material Elegant_Emerald(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Elegant Emerald"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "emerald", "green")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Elegant_Emerald.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.017642f, 0.262251f, 0.088656f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.33f,
spread: 0.31f,
flakes_roughness: 0.28f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.054480f, 0.381326f, 0.162029f),
flakes_paint_color_2: color(0.029557f, 0.194618f, 0.051269f),
flakes_paint_color_3: color(0.076185f, 0.381326f, 0.603827f),
flakes_paint_color_4: color(0.141263f, 0.064803f, 0.571125f),
flakes_paint_color_5: color(0.102242f, 0.068478f, 0.539479f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 12 Purple Red Orange -------------------
export material Purple_Red_Orange(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Purple Red Orange"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "purple", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Purple_Red_Orange.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.097587f, 0.017642f, 0.262251f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.7f,
flakes_reflectivity: 1.00f,
flakes_density: 1.00f,
spread: 0.31f,
flakes_roughness: 0.28f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.212231f, 0.076185f, 0.623960f),
flakes_paint_color_2: color(0.318547f, 0.038204f, 0.038204f),
flakes_paint_color_3: color(0.242281f, 0.063010f, 0.491021f),
flakes_paint_color_4: color(0.806952f, 0.371238f, 0.088656f),
flakes_paint_color_5: color(0.730461f, 0.428690f, 0.088656f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 13 Golden Green Intense-------------------
export material Golden_Green_Intense(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Golden Green Intense"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Golden_Green_Intense.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.023153f, 0.283149f, 0.102242f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.99f,
flakes_reflectivity: 1.00f,
flakes_density: 0.58f,
spread: 0.24f,
flakes_roughness: 0.27f,
flakes_size: 0.1f,
flake_layer_visibility: 0.93f,
flakes_paint_color_1: color(0.571125f, 0.434154f, 0.042311f),
flakes_paint_color_2: color(0.462077f, 0.351533f, 0.035601f),
flakes_paint_color_3: color(0.496933f, 0.610496f, 0.068478f),
flakes_paint_color_4: color(0.165132f, 0.644480f, 0.242281f),
flakes_paint_color_5: color(0.048172f, 0.171441f, 0.086500f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 14 Soft Golden Green -------------------
export material Soft_Golden_Green(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Soft Golden Green"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "green", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Soft_Golden_Green.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.029557f, 0.124772f, 0.052861f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.53f,
spread: 0.37f,
flakes_roughness: 0.27f,
flakes_size: 0.1f,
flake_layer_visibility: 0.53f,
flakes_paint_color_1: color(0.571125f, 0.434154f, 0.042311f),
flakes_paint_color_2: color(0.327778f, 0.462077f, 0.035601f),
flakes_paint_color_3: color(0.450786f, 0.610496f, 0.198069f),
flakes_paint_color_4: color(0.165132f, 0.644480f, 0.177888f),
flakes_paint_color_5: color(0.048172f, 0.171441f, 0.086500f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 15 -------------------
export material Gold_Green_Purple(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Blue Gold Green Purple"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "multicolor", "blue", "cool", "intense")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Gold_Green_Purple.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.029557f, 0.097587f, 0.141263f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.70f,
flakes_reflectivity: 1.00f,
flakes_density: 0.35f,
spread: 0.31f,
flakes_roughness: 0.36f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.491021f, 0.258183f, 0.029557f),
flakes_paint_color_2: color(0.024158f, 0.445201f, 0.119538f),
flakes_paint_color_3: color(0.042311f, 0.479320f, 0.584078f),
flakes_paint_color_4: color(0.147027f, 0.049707f, 0.806952f),
flakes_paint_color_5: color(0.318547f, 0.088656f, 0.730461f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 16 -------------------
export material Electric_Shimmer(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Electric Shimmer"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "blue", "saturated", "intense", "multicolor", "cool")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Electric_Shimmer.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.029557f, 0.309469f, 0.479320f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.45f,
spread: 0.31f,
flakes_roughness: 0.28f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.054480f, 0.351533f, 0.381326f),
flakes_paint_color_2: color(0.029557f, 0.138432f, 0.194618f),
flakes_paint_color_3: color(0.076185f, 0.381326f, 0.603827f),
flakes_paint_color_4: color(0.141263f, 0.064803f, 0.571125f),
flakes_paint_color_5: color(0.102242f, 0.068478f, 0.539479f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 17 -------------------
export material Blue_Purple_Emerald(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Blue Purple Emerald"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "blue", "purple", "cool", "intense", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Blue_Purple_Emerald.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.011612f, 0.147027f, 0.109462f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.73f,
spread: 0.49f,
flakes_roughness: 0.23f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.082283f, 0.539479f, 0.584078f),
flakes_paint_color_2: color(0.144128f, 0.040915f, 0.283149f),
flakes_paint_color_3: color(0.278894f, 0.078187f, 0.479320f),
flakes_paint_color_4: color(0.051269f, 0.462077f, 0.181164f),
flakes_paint_color_5: color(0.052861f, 0.462077f, 0.141263f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 18 -------------------
export material Petrol_Purple(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Petrol Purple"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "blue", "intense", "cool", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Petrol_Purple.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.013702f, 0.086500f, 0.187821f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.30f,
spread: 0.31f,
flakes_roughness: 0.25f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.201556f, 0.258183f, 0.539479f),
flakes_paint_color_2: color(0.095307f, 0.270498f, 0.508881f),
flakes_paint_color_3: color(0.107023f, 0.439657f, 0.637597f),
flakes_paint_color_4: color(0.283149f, 0.093059f, 0.520996f),
flakes_paint_color_5: color(0.423268f, 0.155926f, 0.745404f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 19 -------------------
export material Deep_Blue_Purple(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Deep Blue Purple"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "blue", "purple", "multicolor", "cool", "intense", "saturated")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Deep_Blue_Purple.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.013702f, 0.086500f, 0.187821f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.3f,
spread: 0.31f,
flakes_roughness: 0.25f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.201556f, 0.258183f, 0.539479f),
flakes_paint_color_2: color(0.095307f, 0.270498f, 0.508881f),
flakes_paint_color_3: color(0.107023f, 0.439657f, 0.637597f),
flakes_paint_color_4: color(0.283149f, 0.093059f, 0.520996f),
flakes_paint_color_5: color(0.423268f, 0.155926f, 0.745404f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 20 Turquoise Purple -------------------
export material Turquoise_Purple(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Turquoise Purple"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "turquoise", "blue", "cool", "multicolor", "intense")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Turquoise_Purple.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.017642f, 0.004025f, 0.051269f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.50f,
flakes_reflectivity: 1.00f,
flakes_density: 0.40f,
spread: 0.35f,
flakes_roughness: 0.24f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.022174f, 0.571125f, 0.309469f),
flakes_paint_color_2: color(0.028426f, 0.571125f, 0.278894f),
flakes_paint_color_3: color(0.012286f, 0.033105f, 0.155926f),
flakes_paint_color_4: color(0.356400f, 0.022174f, 0.366253f),
flakes_paint_color_5: color(0.318547f, 0.031896f, 0.162029f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 21 -------------------
export material Desert_Wind(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Desert Wind"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "red", "warm", "multicolor", "intense")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Desert_Wind.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.366253f, 0.023153f, 0.023153f),
ground_coat_influence: 0.3f,
ground_coat_brightness: 0.8f,
edge_darkening: 0.54f,
flakes_reflectivity: 1.00f,
flakes_density: 0.25f,
spread: 0.28f,
flakes_roughness: 0.33f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.745404f, 0.571125f, 0.111932f),
flakes_paint_color_2: color(0.637597f, 0.456411f, 0.070360f),
flakes_paint_color_3: color(0.658375f, 0.039546f, 0.391572f),
flakes_paint_color_4: color(0.479320f, 0.035601f, 0.174647f),
flakes_paint_color_5: color(0.407240f, 0.033105f, 0.250158f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 22 -------------------
export material Green_Dragon_Monsterflakes(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Green Dragon Monsterflakes"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "green", "intense", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Green_Dragon_Monsterflakes.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.042311f, 0.296138f, 0.010960f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.44f,
spread: 0.37f,
flakes_roughness: 0.27f,
flakes_size: 0.85f,
flake_layer_visibility: 1.00f,
flakes_paint_color_1: color(0.099899f, 0.318547f, 0.462077f),
flakes_paint_color_2: color(0.107023f, 0.318547f, 0.462077f),
flakes_paint_color_3: color(0.116971f, 0.450786f, 0.672443f),
flakes_paint_color_4: color(0.107023f, 0.708376f, 0.242281f),
flakes_paint_color_5: color(0.078187f, 0.434154f, 0.099899f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 23 -------------------
export material Andromeda(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Andromeda"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "multicolor", "intense")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Andromeda.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.010330f, 0.010330f, 0.010330f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.36f,
spread: 0.47f,
flakes_roughness: 0.27f,
flakes_size: 0.1f,
flake_layer_visibility: 1.00f,
flakes_paint_color_1: color(0.637597f, 0.144128f, 0.070360f),
flakes_paint_color_2: color(0.198069f, 0.730461f, 0.016807f),
flakes_paint_color_3: color(0.017642f, 0.658375f, 0.049707f),
flakes_paint_color_4: color(0.017642f, 0.034340f, 0.904661f),
flakes_paint_color_5: color(0.278894f, 0.018500f, 1.000000f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 24 -------------------
export material Blue_Saphire(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Blue Saphire"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "blue", "purple", "multicolor", "cool", "intense")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Blue_Saphire.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.016807f, 0.026241f, 0.144128f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.36f,
spread: 0.47f,
flakes_roughness: 0.27f,
flakes_size: 0.1f,
flake_layer_visibility: 1.00f,
flakes_paint_color_1: color(0.082283f, 0.122139f, 0.708376f),
flakes_paint_color_2: color(0.074214f, 0.074214f, 0.708376f),
flakes_paint_color_3: color(0.019382f, 0.033105f, 0.124772f),
flakes_paint_color_4: color(0.381326f, 0.054480f, 0.904661f),
flakes_paint_color_5: color(0.270498f, 0.042311f, 0.623960f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 25 -------------------
export material Bionic_Flare(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Bionic Flare"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "green", "multicolor", "saturated", "intense")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Bionic_Flare.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.019382f, 0.017642f, 0.003677f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.43f,
spread: 0.47f,
flakes_roughness: 0.27f,
flakes_size: 0.1f,
flake_layer_visibility: 1.00f,
flakes_paint_color_1: color(0.527115f, 0.708376f, 0.082283f),
flakes_paint_color_2: color(0.423268f, 0.708376f, 0.074214f),
flakes_paint_color_3: color(0.019382f, 0.124772f, 0.025187f),
flakes_paint_color_4: color(0.104616f, 0.904661f, 0.054480f),
flakes_paint_color_5: color(0.042311f, 0.623960f, 0.177888f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 26 -------------------
export material Aquatic(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Aquatic"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "blue", "green", "cool", "multicolor", "intense")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Aquatic.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.017642f, 0.171441f, 0.262251f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.42f,
spread: 0.23f,
flakes_roughness: 0.30f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.054480f, 0.445201f, 0.059511f),
flakes_paint_color_2: color(0.019382f, 0.283149f, 0.059511f),
flakes_paint_color_3: color(0.141263f, 0.603827f, 0.187821f),
flakes_paint_color_4: color(0.111932f, 0.571125f, 0.491021f),
flakes_paint_color_5: color(0.090842f, 0.539479f, 0.462077f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 27 -------------------
export material Poseidon(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Poseidon"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "blue", "multicolor", "intense", "cool")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Poseidon.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.017642f, 0.171441f, 0.262251f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.44f,
spread: 0.23f,
flakes_roughness: 0.30f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.114435f, 0.215861f, 0.445201f),
flakes_paint_color_2: color(0.068478f, 0.158961f, 0.283149f),
flakes_paint_color_3: color(0.158961f, 0.219526f, 0.242281f),
flakes_paint_color_4: color(0.346704f, 0.147027f, 0.571125f),
flakes_paint_color_5: color(0.258183f, 0.141263f, 0.539479f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 28 -------------------
export material Red_Elegance(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Red Elegance"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "red", "warm", "multicolor", "intense")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Red_Elegance.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.262251f, 0.080220f, 0.017642f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 1.00f,
flakes_reflectivity: 1.00f,
flakes_density: 0.44f,
spread: 0.23f,
flakes_roughness: 0.30f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.407240f, 0.008568f, 0.152926f),
flakes_paint_color_2: color(0.300544f, 0.009134f, 0.109462f),
flakes_paint_color_3: color(0.610496f, 0.080220f, 0.010330f),
flakes_paint_color_4: color(0.644480f, 0.381326f, 0.010960f),
flakes_paint_color_5: color(0.552011f, 0.341914f, 0.009134f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 29 -------------------
export material Princess_Fire(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Pink Fire"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "pink", "rose", "intense", "warm", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Princess_Fire.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.417885f, 0.198069f, 0.187821f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.57f,
flakes_reflectivity: 1.00f,
flakes_density: 0.39f,
spread: 0.23f,
flakes_roughness: 0.30f,
flakes_size: 0.1f,
flake_layer_visibility: 0.95f,
flakes_paint_color_1: color(0.508881f, 0.270498f, 0.396755f),
flakes_paint_color_2: color(0.462077f, 0.012286f, 0.162029f),
flakes_paint_color_3: color(0.610496f, 0.381326f, 0.102242f),
flakes_paint_color_4: color(0.644480f, 0.371238f, 0.007499f),
flakes_paint_color_5: color(0.552011f, 0.337164f, 0.006995f),
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 30 -------------------
export material Magic_Green(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Magic Green"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design", "green", "intense", "saturated", "multicolor")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Magic_Green.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.630757f, 0.520996f, 0.111932f),
ground_coat_influence: 0.76f,
ground_coat_brightness: 0.93f,
edge_darkening: 0.57f,
flakes_reflectivity: 1.00f,
flakes_density: 0.66f,
spread: 0.23f,
flakes_roughness: 0.3f,
flakes_size: 0.1f,
flakes_paint_color_1: color(0.238398f, 0.637597f, 0.004025f),
flakes_paint_color_2: color(0.003677f, 0.407240f, 0.003677f),
flakes_paint_color_3: color(0.012983f, 0.351533f, 0.223228f),
flakes_paint_color_4: color(0.006049f, 0.174647f, 0.130136f),
flakes_paint_color_5: color(0.003677f, 0.024158f, 0.191202f),
flake_layer_visibility: 0.95f,
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);
// ------------------- 31 -------------------
export material Voodoo(*)
[[
::anno::author("NVIDIA"),
::anno::display_name("Carpaint Chameleon - Voodoo"),
::anno::description("Multilayered carpaint material with metallic flakes."),
::anno::key_words(string[]("carpaint", "chameleon", "flipflop", "colorshift", "reflective", "artificial", "multilayer", "new", "shiny", "flakes", "metallic", "glitter", "pigment", "clearcoat", "automotive", "design")),
::anno::thumbnail("./.thumbs/Carpaint_Shifting_Flakes.Voodoo.png"),
::anno::copyright_notice(COPYRIGHT)
]]
= Carpaint_Shifting_Flakes(
base_color: color(0.009134f, 0.045186f, 0.111932f),
ground_coat_influence: 0.00f,
ground_coat_brightness: 0.34f,
edge_darkening: 0.57f,
flakes_reflectivity: 1.00f,
flakes_density: 0.16f,
spread: 0.52f,
flakes_roughness: 0.19f,
flakes_size: 0.1f,
flakes_paint_color_1: color(0.212231f, 0.025187f, 0.637597f),
flakes_paint_color_2: color(0.407240f, 0.010960f, 0.323143f),
flakes_paint_color_3: color(0.351533f, 0.021219f, 0.038204f),
flakes_paint_color_4: color(0.174647f, 0.006049f, 0.007499f),
flakes_paint_color_5: color(0.191202f, 0.141263f, 0.008023f),
flake_layer_visibility: 0.82f,
clearcoat_rough: 0.06f,
roughness_variation: 0.14f,
clearcoat_ior: 1.6f,
clearcoat_visibility: 1.0f,
orange_peel_strength: 0.00f,
orange_peel_size: 0.01f
);