mirror of
https://github.com/EatTheFuture/compify.git
synced 2025-01-22 00:09:11 -05:00
13 lines
416 B
Python
13 lines
416 B
Python
|
MAIN_NODE_NAME = "Compify Footage"
|
||
|
BAKE_IMAGE_NODE_NAME = "Baked Lighting"
|
||
|
UV_LAYER_NAME = 'Compify Baked Lighting'
|
||
|
|
||
|
# Gets the Compify Material name for the active scene.
|
||
|
def compify_mat_name(context):
|
||
|
return "Compify Footage | " + context.scene.name
|
||
|
|
||
|
|
||
|
# Gets the Compify baked lighting image name for the active scene.
|
||
|
def compify_baked_texture_name(context):
|
||
|
return "Compify Bake | " + context.scene.name
|