Redefined some properties of node type 'attract_shot'.

This commit is contained in:
2016-09-23 17:14:03 +02:00
parent 092cc6aa72
commit 5c94fb5f9c

View File

@@ -2,17 +2,17 @@ node_type_shot = {
'name': 'attract_shot', 'name': 'attract_shot',
'description': 'Shot Node Type, for shots', 'description': 'Shot Node Type, for shots',
'dyn_schema': { 'dyn_schema': {
# TODO: document what this URL is used for. # How many frames are trimmed from the start of the shot in the edit.
'url': { 'trim_start_in_frames': {
'type': 'string', 'type': 'integer',
}, },
# TODO: document what cut_in means. # Duration (of the visible part) of the shot in the edit.
'cut_in': { 'duration_in_edit_in_frames': {
'type': 'integer' 'type': 'integer',
}, },
# TODO: document what cut_out means. # Cut-in time of the shot in the edit (i.e. frame number where it starts to be visible).
'cut_out': { 'cut_in_timeline_in_frames': {
'type': 'integer' 'type': 'integer',
}, },
'status': { 'status': {
'type': 'string', 'type': 'string',
@@ -29,13 +29,6 @@ node_type_shot = {
'type': 'string', 'type': 'string',
'maxlength': 256, 'maxlength': 256,
}, },
'shot_group': {
'type': 'string',
#'data_relation': {
# 'resource': 'nodes',
# 'field': '_id',
#},
},
}, },
'form_schema': {}, 'form_schema': {},
'parent': ['scene'] 'parent': ['scene']