def check_missing_data_scene(props): autothumb.update_upload_model_preview(None, None) if not props.has_thumbnail: write_to_report(props, 'Add thumbnail:') props.report += props.thumbnail_generating_state + '\n' if props.engine == 'NONE': write_to_report(props, 'Set at least one rendering/output engine')
def get_missing_data_scene(props): props.report = '' autothumb.update_upload_model_preview(None, None) if props.name == '': write_to_report(props, 'Set scene name') # if props.tags == '': # write_to_report(props, 'Write at least 3 tags') if not props.has_thumbnail: write_to_report(props, 'Add thumbnail:') props.report += props.thumbnail_generating_state + '\n' if props.engine == 'NONE': write_to_report(props, 'Set at least one rendering/output engine')
def get_missing_data_model(props): props.report = '' autothumb.update_upload_model_preview(None, None) if props.name == '': write_to_report(props, 'Set model name') # if props.tags == '': # write_to_report(props, 'Write at least 3 tags') if not props.has_thumbnail: write_to_report(props, 'Add thumbnail:') props.report += props.thumbnail_generating_state + '\n' if props.engine == 'NONE': write_to_report(props, 'Set at least one rendering/output engine') if not any(props.dimensions): write_to_report(props, 'Run autotags operator or fill in dimensions manually')
def get_missing_data_scene(props): props.report = '' autothumb.update_upload_model_preview(None, None) if props.name == '': write_to_report(props, 'Set scene name') if props.tags == '': write_to_report(props, 'Write at least 3 tags') if not props.has_thumbnail: write_to_report(props, 'Add thumbnail:') props.report += props.thumbnail_generating_state + '\n' if props.work_hours == 0.0: write_to_report(props, 'Fill in work hours') if props.engine == 'NONE': write_to_report(props, 'Set at least one rendering/output engine')
def get_missing_data_model(props): props.report = '' autothumb.update_upload_model_preview(None, None) if props.name == '': write_to_report(props, 'Set model name') if props.tags == '': write_to_report(props, 'Write at least 3 tags') if not props.has_thumbnail: write_to_report(props, 'Add thumbnail:') props.report += props.thumbnail_generating_state + '\n' if props.work_hours == 0.0: write_to_report(props, 'Fill in work hours') if props.engine == 'NONE': write_to_report(props, 'Set at least one rendering/output engine') if not any(props.dimensions): write_to_report(props, 'Run autotags operator or fill in dimensions manually')