Notifications
Clear all

[Closed] Shhhhh from Maxscript to Mel/Python

How to test if a variable is undefined

MaxScript


if DavesMagicTool == undefined do
    DavesMagicTool = DavesToolOfJoy()

Python


if not ('DavesMagicTool' in globals()):
    DavesMagicTool = DavesToolOfJoy()

Page 4 / 4