SetVariable(variable, <another_variable>) sequencer command... possible?
Posted: Fri Jun 21, 2019 11:44 pm
Hi there, long time no see.
I'm curious (and this may be quite basic) if it is possible to set a variable's value to another variable's value, with a sequencer command?
More specifically, a string variable...
I've tried
...but it just assigns the word speaker, instead of the Actor's name.
I've also written...:
...which gives the var=speaker value, and...:
...which gives a nil value.
So, am I missing something?
Btw, I'm calling these commands from a sequencer shortcut.
Thanks.
I'm curious (and this may be quite basic) if it is possible to set a variable's value to another variable's value, with a sequencer command?
More specifically, a string variable...
I've tried
Code: Select all
SetVariable(variable, speaker);
I've also written...:
Code: Select all
SetVariable(variable, var=speaker);
Code: Select all
SetVariable(variable, [var=speaker]);
So, am I missing something?
Btw, I'm calling these commands from a sequencer shortcut.
Thanks.