Hi dears.
I wrote a scene with:
Panel
> ScrollContainer
> HBoxContainer
> TextureRect1
> TextureRect2
> TextureRect3
> TextureRect4
I want to set by GDScript the Scroll position, so I used this code:
$ScrollContainer.scroll_horizontal = 200
This code is accepting values from 0 to 100, if I try to use any higher value don't works, eg.:
$ScrollContainer.scroll_horizontal = 200
print($ScrollContainer.scroll_horizontal)
The scroll moves just a little bit and displays 100. :-(
Could you please kindly help me?