-
Notifications
You must be signed in to change notification settings - Fork 8
/
menu_pipe.py
75 lines (56 loc) · 2.81 KB
/
menu_pipe.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
'''
https://github.com/franklinvfx/NUKE_TOOLS
1. Deplacer le dossier "NUKE_TOOLS" et l'ensemble de son contenu a l'endroit souhaite (en local ou sur votre reseau).
2. Deplacer ce fichier dans ton repertoire .nuke local (exemple: C:/Users/Franklin/.nuke)
2. Copier / coller les 3 lignes suivantes n'importe ou dans ton fichier menu.py
#>>>F_Start
import menu_pipe
#>>>F_End
3. Au premier lancement de nuke, selectionnez l'emplacement du repertoire "NUKE_TOOLS"
Par la suite ce repertoire sera systematiquement memorise.
Copyright (c) 2018 Franklin VFX Co.
'''
#-----------------------------------------------------------------------------------------------------------------
# SET FOLDER FOR NUKE TOOLS
#-----------------------------------------------------------------------------------------------------------------
import nuke, sys, platform, os
def isPathValid(path):
if os.path.isfile(path + "Authors.py"):
return True
else:
return False
if platform.system() == "Darwin":
pipe_path = '' #PathMac
elif platform.system() == "Windows":
pipe_path = '' #PathWin
nukeFolder = os.path.expanduser('~') + '/.nuke/'
keepLooping = not isPathValid(pipe_path)
while keepLooping and (pipe_path == "[EMPTY_PATH]" or pipe_path == "" or not isPathValid(pipe_path)):
pipe_path = nuke.getFilename('Selectionner le dossier telecharge depuis https://github.com/franklinvfx/NUKE_TOOLS', '*/')
if isPathValid(pipe_path):
menu_file = open(nukeFolder + 'menu_pipe.py', 'r')
menu_content = menu_file.read()
menu_file.close()
if platform.system() == "Darwin":
menu_content = menu_content.replace("'' #PathMac", "'" + pipe_path + "' #PathMac")
elif platform.system() == "Windows":
menu_content = menu_content.replace("'' #PathWin", "'" + pipe_path + "' #PathWin")
menu_file = open(nukeFolder + 'menu_pipe.py', 'w')
menu_file.write(menu_content)
menu_file.close()
keepLooping = False
else:
nuke.message('Le dossier selectionne ne contient pas les fichiers attendu.\nFaites un autre choix.')
#-----------------------------------------------------------------------------------------------------------------
# ADD PATH - IMPORT CONFIG
#-----------------------------------------------------------------------------------------------------------------
if isPathValid(pipe_path):
nuke.pluginAddPath(pipe_path + "./config")
# import MM_config
# import MM_config_F
# import Home_config
import Default_config
#-----------------------------------------------------------------------------------------------------------------
# DEBUG OPTIONS
#-----------------------------------------------------------------------------------------------------------------
# import callbacksTrace # show all callbacks