|
AIUTO MEL SCRIPT
|
| Autore |
Messaggio |
phazon
Junior Member
Messaggi: 1
Registrato: Jun 2012
Offline
|
|
Ciao ragazzi, qualcuno sa come aiutarmi? in pratica Maya mi da un errore nello script ovvero:
// Warning: file: /Users/******/Library/Preferences/Autodesk/maya/2012-x64/scripts/IK_renderViewBr.mel line 882: Converting string "" to an int value of 0. //
Vado alla stringa 882 e trovo : int $customResHeight = ` textField -q -text t_Height `;
Come converto lettere in numeri ?? XD
|
|
| 30-06-2012 17:59 |
|
cryptoRebel
Junior Member
Messaggi: 1
Registrato: Jul 2012
Offline
|
(30-06-2012 17:59)phazon ha scritto: Ciao ragazzi, qualcuno sa come aiutarmi? in pratica Maya mi da un errore nello script ovvero:
// Warning: file: /Users/******/Library/Preferences/Autodesk/maya/2012-x64/scripts/IK_renderViewBr.mel line 882: Converting string "" to an int value of 0. //
Vado alla stringa 882 e trovo : int $customResHeight = ` textField -q -text t_Height `;
Come converto lettere in numeri ?? XD
ciao hai provato così:
string $test = "4";
float $test2 = $test;
int $test3 = $test;
print ("String: " + $test + "\nFloat: " + $test2 + "\nInt: " + $test3 + "\n");
|
|
| 12-07-2012 16:13 |
|