Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Maya looks: support for native Redshift texture format #2971

Merged
Show file tree
Hide file tree
Changes from 60 commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
3770eb6
add rstex function
Mar 29, 2022
72b4522
fix style warnings
Mar 29, 2022
e65a1ea
remove extra line
Mar 29, 2022
2406f78
fix trailing whitespace
Mar 29, 2022
be840d3
add exectuable path finder function
Apr 4, 2022
d4b8d47
use redshift tool finder in extractor
Apr 4, 2022
abc299e
Add redshift texture processing option to schema
Apr 5, 2022
640415a
adjust key name
Apr 5, 2022
0bcf353
add redshift texture create option to look creator
Apr 5, 2022
7bbf381
add rs_tex option to schema defaults
Apr 5, 2022
078775e
add rstex variable to process_resources
Apr 5, 2022
6ac5cd4
Add redshift texture processing flag
Apr 8, 2022
c43ec04
add redshift processor call to generate .rstexbin
Apr 8, 2022
c36552e
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Apr 14, 2022
92c1ac7
refactor convertor function to abstract class and inherited class
Apr 19, 2022
74f2c78
refactor tx conversion into class
Apr 19, 2022
7b1346e
add processor list and adjust logic for more options later
Apr 19, 2022
ae8ecfe
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Jun 1, 2022
3c3be40
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Jun 6, 2022
0bebd06
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Jun 7, 2022
0100ea5
Move redshift tool finder function to extractor.
Jun 7, 2022
2102e4f
Add variable for redshift os path.
Jun 7, 2022
406ac82
Style fix
Jun 7, 2022
710ed3a
Start moving processors logic.
Jun 8, 2022
68caaa7
move function
Jun 9, 2022
a74e8c2
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Jun 9, 2022
29b69bc
Class cleanup
Jun 9, 2022
e78314c
Remove unused maketx code.
Jun 9, 2022
00d877e
Move processors list
Jun 9, 2022
2933e40
Handle texture processing through processors separately
Jun 9, 2022
b054175
Reorganize functionality for do_maketx to linearize properly.
Jun 9, 2022
fd3125d
Style fixes
Jun 9, 2022
41e7ac7
adjust comment
Jun 9, 2022
35be816
Fix returned filepath
Jun 10, 2022
cfb9093
Append processors check, append path return.
Jun 10, 2022
eb99944
Style fix
Jun 10, 2022
77c15e0
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Jun 10, 2022
8f8845e
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Jul 26, 2022
e5fdd9e
Syntax fix.
Jul 26, 2022
ab14895
Change metaclass inheritance formatting to 2.7
Jul 26, 2022
c471bbe
Fix inheritance with `six`, adjust processing code
Jul 26, 2022
5f4d06b
Remove unnecessary comment, style fixes.
Jul 26, 2022
9098822
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Jul 31, 2022
9b0cc4d
Continue refactor
Aug 1, 2022
c35f1cf
Remove leftover code
Aug 1, 2022
099dfba
Fix return bug
Aug 1, 2022
8995dcd
Check for return value, adjust argument
Aug 1, 2022
787c797
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Aug 14, 2022
3cd7fd5
Fix assignment bug, remove unnecessary class sugar
Aug 15, 2022
ac0b931
Merge branch 'feature/OP-2524_Maya-looks-support-for-native-Redshift-…
Aug 15, 2022
0179c63
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Aug 15, 2022
d28c7e1
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Aug 22, 2022
9ec42cb
Fix bugs
Aug 23, 2022
cc62035
Fix destination finding for copying resrouce.
Aug 23, 2022
09bbb30
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Aug 23, 2022
ad8177c
Removed submodule vendor/configs/OpenColorIO-Configs
Aug 23, 2022
7413ca6
Merge branch 'develop' into feature/OP-2524_Maya-looks-support-for-na…
Oct 4, 2022
590538e
Fix import bug
Oct 4, 2022
035281f
Style fix
Oct 4, 2022
18435fa
Add validation to check for texture
Oct 4, 2022
3728ce0
Style fix
Oct 4, 2022
c9c2635
Merge remote-tracking branch 'origin/develop' into feature/OP-2524_Ma…
antirotor Oct 27, 2022
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
4 changes: 3 additions & 1 deletion openpype/hosts/maya/plugins/create/create_look.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class CreateLook(plugin.Creator):
family = "look"
icon = "paint-brush"
make_tx = True
rs_tex = False

def __init__(self, *args, **kwargs):
super(CreateLook, self).__init__(*args, **kwargs)
Expand All @@ -20,7 +21,8 @@ def __init__(self, *args, **kwargs):

# Whether to automatically convert the textures to .tx upon publish.
self.data["maketx"] = self.make_tx

# Whether to automatically convert the textures to .rstex upon publish.
self.data["rstex"] = self.rs_tex
# Enable users to force a copy.
# - on Windows is "forceCopy" always changed to `True` because of
# windows implementation of hardlinks
Expand Down
Loading