added basic info about the tool

This commit is contained in:
iLLiCiTiT 2021-06-10 18:07:26 +02:00
parent c91a463775
commit 30af1869b3
2 changed files with 23 additions and 0 deletions

View file

@ -1,3 +1,24 @@
"""Project Manager tool
Purpose of the tool is to be able create and modify hierarchy under project
ready for OpenPype pipeline usage. Tool also give ability to create new
projects.
# Brief info
Project hierarchy consist of two types "asset" and "task". Assets can be
children of Project or other Asset. Task can be children of Asset.
It is not possible to have duplicated Asset name across whole project.
It is not possible to have duplicated Task name under one Asset.
Asset can't be moved or renamed if has or it's children has published content.
Deleted assets are not deleted from database but their type is changed to
"archived_asset".
Tool allows to modify Asset attributes like frame start/end, fps, etc.
"""
from .project_manager import (
ProjectManagerWindow,
main

View file

@ -16,6 +16,8 @@ from avalon.api import AvalonMongoDB
class ProjectManagerWindow(QtWidgets.QWidget):
"""Main widget of Project Manager tool."""
def __init__(self, parent=None):
super(ProjectManagerWindow, self).__init__(parent)