* Gets the position of an input slot, in graph co-ordinates. * * This method is preferred over the legacy getConnectionPos method. * @param slot Input slot index * @returns Position of the input slot
(slot: number)
| 3041 | * @returns Position of the input slot |
| 3042 | */ |
| 3043 | getInputPos(slot: number): Point { |
| 3044 | return this.getInputSlotPos(this.inputs[slot]) |
| 3045 | } |
| 3046 | |
| 3047 | /** |
| 3048 | * Gets the position of an input slot, in graph co-ordinates. |