compify/names.py
2023-01-13 13:51:56 -08:00

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