What I want to do with this code is when i turn on the User Data (Boolean) of the Python Tag, it hits the "Record Animated":
import c4d
def main():
pass #put in your code here
onoff = op[c4d.ID_USERDATA, 1]
print ("userdataXD: ", onoff)
if onoff == 1:
c4d.CallCommand(202665) # Record Animated
For some reason the call command for Record Animated does not work (but in theory it should; I am new at this so this might sound newbie to most of you guys)
Thank you