-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
templates.yml
81 lines (64 loc) · 2.56 KB
/
templates.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# ----------------------------------------------------------------------------
# Copyright (c) 2020, Diego Garcia Huerta.
#
# Your use of this software as distributed in this GitHub repository, is
# governed by the Apache License 2.0
#
# Your use of the Shotgun Pipeline Toolkit is governed by the applicable
# license agreement between you and Autodesk / Shotgun.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
# Author: Diego Garcia Huerta
# Contact: https://www.linkedin.com/in/diegogh/
#
# YOU SHOULD MERGE these entries into your template.yml configuration file, as
# THIS FILE BY ITSELF WILL NOT WORK
# These are the additions to the template.yml to get the engine up and
# running with the default tk-apps
paths:
#
# Blender
#
# Asset based paths
# Location of a work area
asset_work_area_blender:
definition: '@asset_root/work/blender'
root_name: 'primary'
# Location of a publish area
asset_publish_area_blender:
definition: '@asset_root/publish/blender'
root_name: 'primary'
# Location of WIP session files
blender_asset_work:
definition: '@asset_work_area_blender/{name}.v{version}.blend'
root_name: 'primary'
# Location of backups of WIP session files
blender_asset_snapshot:
definition: '@asset_work_area_blender/snapshots/{name}.v{version}.{timestamp}.blend'
root_name: 'primary'
# Location of the published session files
blender_asset_publish:
definition: '@asset_publish_area_blender/{name}.v{version}.blend'
root_name: 'primary'
# Shot based paths
# define the location of a work area
shot_work_area_blender:
definition: '@shot_root/work/blender'
root_name: 'primary'
# define the location of a publish area
shot_publish_area_blender:
definition: '@shot_root/publish/blender'
root_name: 'primary'
# The location of WIP session files
blender_shot_work:
definition: '@shot_root/work/blender/{name}.v{version}/{name}.v{version}.blend'
root_name: 'primary'
# The location of backups of WIP session files
blender_shot_snapshot:
definition: '@shot_root/work/blender/snapshots/{name}.v{version}/{name}.v{version}.{timestamp}.blend'
root_name: 'primary'
# The location of published session files
blender_shot_publish:
definition: '@shot_root/publish/blender/{name}.v{version}/{name}.v{version}.blend'
root_name: 'primary'