question

Julius J2 avatar image
0 Likes"
Julius J2 asked Kavika F commented

How to Change Object Shape Visualization in Flexscript

I tried to change the shape visualization of an object, in my case a processor. The default would be

  1. fs3d\Processor\Processor.3ds

How to change this if I already created the object with the code below?

  1. Object ProcessorPath = createinstance(library().find("?Processor"), PlatformPath);

I tried using setobjectshapeindex but it failed. Thank you.

FlexSim 21.2.4
flexscriptprocessorobjectvisualization3d object
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Kavika F avatar image
0 Likes"
Kavika F answered Kavika F commented

Hey @Julius J2, setobjectshapeindex seemed to work for me. Here's my script:

  1. Object processor = createinstance(library().find("?Processor"), model());
  2. setobjectshapeindex(processor, getshapeindex("fs3d\\General\\Box.3ds"));

You can save the result of the createinstance function in an object variable (I called mine "processor"). The first parameter of createinstance is the object that you want to create and the second parameter is where you want to put it (in this case I just put it in the model() wherever it decides). Then you can set the shape of the object using setobjectshapeindex like above. It takes in the object you want to change as the first parameter and then an index of the new shape. These indices can be found in View -> Media Files; ensure that "Shapes" is selected at the top of the menu and then below is a dropdown list of different shapes and their indexes (on the left of the name).

If you run the script of the model I've attached, it should spawn a processor in the model that looks like a box. However, if you reset the model, it will go back to looking like a processor. I have two scripts saved in the model that you can load: "Make Processor Box" which will create a processor and change its shape to a box; and "Update to Box" which will simply change whatever shape I've got the reference to back into a box:

  1. setobjectshapeindex(Model.find("Processor1"), getshapeindex("fs3d\\General\\Box.3ds"));

If you run Update to Box after a reset, it will change the processor back into a box. You can run the model and it will carry out like normal.

Does this answer your question? If not, please provide some more details so I can understand your problem better. A test file could be helpful too if you've got one.

update-shape.fsm


update-shape.fsm (27.7 KiB)
· 4
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.