-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from masqu3rad3/TIK-113-installer-and-document…
…ation-for-Mari mari installer and documentation
- Loading branch information
Showing
12 changed files
with
98 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Mari Integration | ||
=================== | ||
|
||
1. Locate the Mari scripts folder. (Create the Scripts folder if it doesn't exist) | ||
|
||
.. tip:: | ||
| On Linux: ``/Mari/Scripts`` | ||
| On Windows: ``Documents\Mari\Scripts`` | ||
| On Mac: ``/Documents/Mari/Scripts`` | ||
2. Find the ``tikmanager4_init.py`` file in the ``tik_manager4/dcc/mari/setup`` folder and copy it to the Mari scripts folder. | ||
|
||
3. Open the copied ``tikmanager4_init.py`` with a text editor and replace the ``PATH\\TO\\PARENT\\FOLDER\\OF\\TIKMANAGER4\\`` with the extracted parent of the tik_manager4 folder. | ||
|
||
.. attention:: | ||
The Path MUST be the parent of the tik_manager4 folder. If you extracted the contents directly from the zip file it will be something like ``tik_manager4-4.0.7-beta``. | ||
|
||
4. Open Mari and you should see the Tik Manager menu in the top menu bar. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version_info__ = ('4', '0', '6') | ||
__version_info__ = ('4', '0', '8') | ||
__version__ = '.'.join(__version_info__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,18 @@ | ||
Tik Manager 4 <template_dcc_name> Installation Guide | ||
Mari Integration | ||
=================== | ||
|
||
1. Locate the Mari scripts folder. (Create the Scripts folder if it doesn't exist) | ||
|
||
.. tip:: | ||
| On Linux: ``/Mari/Scripts`` | ||
| On Windows: ``Documents\Mari\Scripts`` | ||
| On Mac: ``/Documents/Mari/Scripts`` | ||
|
||
2. Find the ``tikmanager4_init.py`` file in the ``tik_manager4/dcc/mari/setup`` folder and copy it to the Mari scripts folder. | ||
|
||
3. Open the copied ``tikmanager4_init.py`` with a text editor and replace the ``PATH\\TO\\PARENT\\FOLDER\\OF\\TIKMANAGER4\\`` with the extracted parent of the tik_manager4 folder. | ||
|
||
.. attention:: | ||
The Path MUST be the parent of the tik_manager4 folder. If you extracted the contents directly from the zip file it will be something like ``tik_manager4-4.0.7-beta``. | ||
|
||
4. Open Mari and you should see the Tik Manager menu in the top menu bar. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Tik Manager 4 [Start] | ||
import mari | ||
import sys | ||
tik_path = 'PATH\\TO\\PARENT\\FOLDER\\OF\\TIKMANAGER4\\' | ||
if not tik_path in sys.path: | ||
sys.path.append(tik_path) | ||
|
||
tik_main_ui_action = mari.actions.create('Main UI', 'from tik_manager4.ui import main;main.launch("mari")') | ||
mari.menus.addAction(tik_main_ui_action, 'MainWindow/Tik Manager') | ||
|
||
tik_new_version = mari.actions.create('New Version', 'from tik_manager4.ui import main;tui = main.launch("Mari", dont_show=True);tui.on_new_version()') | ||
mari.menus.addAction(tik_new_version, 'MainWindow/Tik Manager') | ||
|
||
tik_publish = mari.actions.create('Publish', 'from tik_manager4.ui import main;tui = main.launch("Mari", dont_show=True);tui.on_publish_scene()') | ||
mari.menus.addAction(tik_publish, 'MainWindow/Tik Manager') | ||
# Tik Manager 4 [End] | ||
|
||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.