On 23/10/2017 at 02:30, xxxxxxxx wrote:
hi there...
i'm a bit confused about the use of globals in python tags ....
it seems to me that global variables are shared with all instances of the same (or all) python tags?
is that correct?
what is the best approach to have a individual "global" for each tag instance?
import c4d
gvar = {}
def main() :
print "this individual python tags global is", gvar
# or is gvar the same for all tag instances???