mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
added basic info about the tool
This commit is contained in:
parent
c91a463775
commit
30af1869b3
2 changed files with 23 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue