Set component properties from other component's output

I’d like to use one component’s output as a property in my custom component.

Do I have to create a new input or is there a built-in mecanism to “expose” the properties ?

Hello,

There is no mecanism to “expose” properties.
You can indeed create another input in your component.

OR

You could using standard components to modify the property without having to edit your code and recompile.

We have a couple of components called PropertyToOutput and InputToProperty .

As their name suggests, those components can send/read values to/from other component’s properties

For example, reading a randint max value would look like this :

Hope this helps,

1 Like