I want to make a script like this.
STEP1
Move the position of Processor1 to (0,0,0).
STEP2
Create Processor2 at (10,10,0).
STEP3
Rename Processor2 to "SubProcess".
STEP1 was found in the manual.
I found that I should write the script like this.
Object obj = Model.find ("Processor1");
obj.location = Vec3 (0,0,0);
However,
How should I write a script for STEP2 and STEP3?