diff --git a/Changes.md b/Changes.md index bbd386b062d..3f11e9e79bc 100644 --- a/Changes.md +++ b/Changes.md @@ -25,6 +25,7 @@ API --- - TweakPlug : Added `applyElementwiseTweak()` method, for tweaking elements of a `*VectorData`. +- IECoreArnold, IECoreDelight : Added support for config files installed on `GAFFER_STARTUP_PATHS`. 1.5.2.0 (relative to 1.5.1.0) ======= diff --git a/python/IECoreArnold/__init__.py b/python/IECoreArnold/__init__.py index f16f05c2b32..2e180edaa60 100644 --- a/python/IECoreArnold/__init__.py +++ b/python/IECoreArnold/__init__.py @@ -44,3 +44,5 @@ from ._IECoreArnold import * from .UniverseBlock import UniverseBlock + +__import__( "IECore" ).loadConfig( "GAFFER_STARTUP_PATHS", subdirectory = "IECoreArnold" ) diff --git a/python/IECoreDelight/__init__.py b/python/IECoreDelight/__init__.py index 9f9ff52a17b..277259e9578 100644 --- a/python/IECoreDelight/__init__.py +++ b/python/IECoreDelight/__init__.py @@ -42,3 +42,5 @@ del os, pathlib # Don't pollute the namespace from ._IECoreDelight import * + +__import__( "IECore" ).loadConfig( "GAFFER_STARTUP_PATHS", subdirectory = "IECoreDelight" )