Hi,everyone.
Have somebody know this:
How to model a Bucket Conveyor just like that in Demo Layout:Pick and Place ToyBlocks.vcmx?
How to select two same name frame so that to make a cycle path?
Hi,everyone.
Have somebody know this:
How to model a Bucket Conveyor just like that in Demo Layout:Pick and Place ToyBlocks.vcmx?
How to select two same name frame so that to make a cycle path?
You can check from Demo Layouts - Ball Bearing Production
BucketConveyor.vcmx (114.9 KB)
Yes,I also notice that.But I want to know how to accomplish it.
How to select the same Frame at the same time in a Path behavior?
I have a try,but it can only be selected once in the optional list.
Yes i see your point now.
It looks like you have to create a dummy python then youcan delete that python later.
Here is the script i used to add the same frame again.
from vcScript import *
comp = getComponent()
path = comp.findBehaviour('BucketPath')
frame = comp.findFeature('Frame_08_2_1')
frames = [frame,frame]
path.Path = frames