Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arnold 7.2.2 support #93

Open
wants to merge 41 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
76f56c7
update adclm patching
JenusL Apr 2, 2023
782a156
add new triplanar parameters
JenusL Apr 2, 2023
e255b27
add dual-lobe phase to standard_volume
JenusL Apr 2, 2023
2977537
hide displacement from standard_volume ppg
JenusL Apr 2, 2023
2922804
add emission scaling to standard_volume
JenusL Apr 2, 2023
0043aca
add blackbody contrast to standard_volume
JenusL Apr 2, 2023
b3405c5
tweak min/max of standard_volume parameters
JenusL Apr 2, 2023
f8172ac
add AI_LOG_PLUGINS to info log level
JenusL Apr 2, 2023
f8b1300
adjust checkerboard ui
JenusL Apr 24, 2023
10fddfd
updated noIcon to exr and tx in testsuite
JenusL Apr 24, 2023
78dca32
add adp settings command
JenusL Apr 24, 2023
581aad4
bump min arnold version
JenusL Apr 24, 2023
530e75c
add support for curve basis and wrap_mode
JenusL Apr 24, 2023
06799af
skip export of min_pixel_width in unsupported modes
JenusL Apr 24, 2023
2fd68e5
add setting for auto maketx
JenusL Apr 24, 2023
01900fd
add support for multi output shaders
JenusL Apr 24, 2023
d39a199
add support for osl shaders in build system
JenusL Apr 24, 2023
2ccd993
don't create shaderdef for osl versions of default softimage shaders
JenusL Apr 24, 2023
846df76
add some osl shaders of standard softiamge shaders as example
JenusL Apr 24, 2023
ee1d863
multiple output shader test
JenusL Apr 24, 2023
c80bc60
version up
JenusL Apr 24, 2023
87b8a95
update abuild logic to use python or py launcher
JenusL Apr 24, 2023
6681df3
update dev env helper
JenusL Apr 24, 2023
cfca070
tiny change of osl build dir
JenusL Apr 24, 2023
ba98ba3
package adp and crashdump files
JenusL Apr 24, 2023
74e7611
delete scntoc file
JenusL Apr 24, 2023
a212857
api changes
JenusL Jun 4, 2023
69c8002
add shadow and sss to autobump visibility
JenusL Jun 4, 2023
b0ab9c9
remove global sss_use_autobump option
JenusL Jun 4, 2023
6ba7c4d
add enable_sky to physical_sky
JenusL Jun 4, 2023
e91668d
add wset and uvw_matrix to uv_transform
JenusL Jun 4, 2023
910d94b
fix api change typo
JenusL Jun 4, 2023
034f3a8
add distance shader
JenusL Jun 4, 2023
aacc7b1
add global light sampling options
JenusL Jun 4, 2023
4b165a9
clean up operator parameters linkability
JenusL Jun 4, 2023
9f20673
remove matrixes from non animatable list
JenusL Jun 11, 2023
d96b550
add special cases for set_transform matrix to support motion blur
JenusL Jun 11, 2023
a726081
update autobump in sss test
JenusL Jun 11, 2023
29c0756
update operators test with motion blur
JenusL Jun 11, 2023
0b73166
bump minimum arnold version
JenusL Jun 12, 2023
38b577a
update SItoA version and added one more number
JenusL Jun 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add new triplanar parameters
JenusL committed Apr 2, 2023
commit 782a15618da89f938443bc1934a9c907b5d2331c
17 changes: 14 additions & 3 deletions shaders/metadata/arnold_shaders.mtd
Original file line number Diff line number Diff line change
@@ -3987,13 +3987,22 @@ softmax FLOAT 5
##############################################################################
[node triplanar]
soft.category STRING "Texture"
soft.order STRING "BeginGroup Main input coord_space pref_name blend EndGroup "
"BeginGroup Transform scale rotate offset EndGroup "
soft.order STRING "BeginGroup Main input input_per_axis input_Y input_Z EndGroup "
"BeginGroup Transform scale rotate offset coord_space pref_name blend flip_on_opposite_direction EndGroup "
"BeginGroup Cell cell cell_rotate cell_blend EndGroup"

[attr input]
desc STRING "The image to be looked up by the computed projection."

[attr input_per_axis]
desc STRING "Option to use different textures for each axis. If set to true input will be used on faces facing primarily the xaxis, input_y on faces facing primarily the yaxis, input_z on faces facing primarily the zaxis."

[attr input_Y]
desc STRING "The image to be looked up by the computed projection."

[attr input_Z]
desc STRING "The image to be looked up by the computed projection."

[attr scale]
desc STRING "Scale applied to the projected UV"

@@ -4011,12 +4020,14 @@ soft.label STRING "Coordinate Space"
desc STRING "Specify the name of the reference position user-data array. Previously, the name was hard-coded as Pref, which is still the default."
soft.disable_when STRING "{ coord_space != Pref }"


[attr blend]
desc STRING "Blending factor at the seems."
min FLOAT 0
max FLOAT 1

[attr flip_on_opposite_direction]
desc STRING "Used to control the behavior of the shader on faces facing the corresponding negative axis, if set to true a vertical symmetry transformation is applied to the texture on faces facing the opposite direction."

[attr cell]
desc STRING "Enable Voronoi cellular projection."
soft.label STRING "Enable Cell"