How do I start the flypath by using code?

How do I start the flypath by using code?

mark_s3
Not applicable
62 Views
2 Replies
Message 1 of 3

How do I start the flypath by using code?

mark_s3
Not applicable

[ FlexSim 19.1.2 ]

How do I start the flypath flypath by using code? I want to start the flypath while the model is running, so I can follow the path and see how the model is running.

0 Likes
Accepted solutions (1)
63 Views
2 Replies
Replies (2)
Message 2 of 3

philboboADSK
Autodesk
Autodesk
Accepted solution

You can use the flypath() command.

For example:

// get a reference to the first open 3D view
treenode view = node("VIEW:/active>Documents/Perspective/1+/~");
// run the first flypath once
flypath(view, 1, 1);

run-flypath-by-code.fsm



Phil BoBo
Sr. Manager, Software Development
Message 3 of 3

benjamin_w2
Not applicable

Try

flystart(ownerview(c));

0 Likes