-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d52968
commit ad6505e
Showing
6 changed files
with
12 additions
and
22 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,9 @@ | ||
|
||
import os | ||
from rez.plugin_managers import RezPluginType, plugin_manager | ||
ModifyList = globals()["ModifyList"] | ||
|
||
|
||
plugin_path = ModifyList(append=[ | ||
# The path *above* rezplugins/ directory | ||
os.path.dirname(__file__) | ||
]) | ||
|
||
plugins = { | ||
"live_resolve": { | ||
"sweet": { | ||
}, | ||
} | ||
} | ||
|
||
|
||
class LiveResolvePluginType(RezPluginType): | ||
"""Support for live resolving suite. | ||
""" | ||
type_name = "live_resolve" | ||
|
||
|
||
plugin_manager.register_plugin_type(LiveResolvePluginType) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
from rez.plugin_managers import extend_path | ||
__path__ = extend_path(__path__, __name__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters