Can it support multiple input and output? #1392
-
In this Example ,I am trying to add two handles in the same location,They have all been rendered, but their positions are the same. Can they be sorted in order? Or there are plans to support input and output similar to litegraph. js |
Beta Was this translation helpful? Give feedback.
Answered by
bcakmakoglu
May 5, 2024
Replies: 1 comment
-
Use CSS to position your handles, there's nothing else to it. <Handle id="a" type="source" :position="Position.Right" :style="{ top: '10px' }" />
<Handle id="b" type="source" :position="Position.Right" :style="{ bottom: '10px', top: 'auto' }" /> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bcakmakoglu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use CSS to position your handles, there's nothing else to it.
Handles are simple
<div>
elements that useposition: absolute
for positioning, meaning the closest wrapping element withposition: relative
will be what the handle aligns itself with.