Perfume, B3, capsuleのみんなが
2月14日にCD発売だそうで。
capsuleは置いといて,バレンタインデーになると男がCDを買いたくなるのか????
それとも、たまたまですかい。よくわからない。
昔作ったevalNoteのpython版。
import maya.cmds as maya
def evalMelNote():
# select an object which note includes MEL command, then invoke me
tmp = maya.ls(selection=True)
if not tmp:
return
obj = tmp[0]
try:
note = maya.getAttr(obj + ".nts", asString=True)
if note:
return eval(note)
else:
print "no note in %s" % obj
except:
maya.confirmDialog(message="%s has no note." % obj)
やっぱしMELよりPythonがモダンすなあ。