Move scroll handling to GDScript

Just expose the underlying libtsm methods from gdnative, but write all
the logic in gdscript. Makes it much easier to customize and update.
This commit is contained in:
Leroy Hopson 2021-07-08 20:10:34 +07:00 committed by Leroy Hopson
parent 748941f7ff
commit fae28006cf
3 changed files with 44 additions and 35 deletions

View file

@ -56,6 +56,9 @@ public:
void write(String data);
void sb_up(int num);
void sb_down(int num);
enum UpdateMode {
DISABLED,
AUTO,