mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-07-05 13:15:32 +02:00
Expose blink_on_time and blink_off_time properties
This commit is contained in:
parent
7de5e2a835
commit
930f3ef352
2 changed files with 45 additions and 0 deletions
|
@ -46,6 +46,12 @@ namespace godot
|
|||
void set_max_scrollback(const int p_max_scrollback);
|
||||
int get_max_scrollback() const;
|
||||
|
||||
void set_blink_on_time(const float p_blink_on_time);
|
||||
float get_blink_on_time() const;
|
||||
|
||||
void set_blink_off_time(const float p_blink_off_time);
|
||||
float get_blink_off_time() const;
|
||||
|
||||
void write(Variant data);
|
||||
|
||||
protected:
|
||||
|
@ -57,6 +63,9 @@ namespace godot
|
|||
unsigned int cols;
|
||||
unsigned int rows;
|
||||
|
||||
float blink_on_time;
|
||||
float blink_off_time;
|
||||
|
||||
RenderingServer *rs;
|
||||
|
||||
tsm_screen *screen;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue