I would like to know if it's possible to save values using Mel or python. For example, I am using :
int $a = 5;
int $b = 4;
string $declare = ( "matrix $m[" + $a + "][" + $b + "];" );
eval $declare;
$m[0][1] = 1;
//etc..
And so forth, so I can modify values in it, but the storage has a limitation. Is it possible to save data in Maya, maybe by saving them is a single file? Thanks for any response!