Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RBComb Sample Visualizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal Engeler
RBComb Sample Visualizer
Commits
6060a7f9
Commit
6060a7f9
authored
1 year ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Added t tracking
parent
259c2c7b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gui/src/input_state.cpp
+5
-0
5 additions, 0 deletions
gui/src/input_state.cpp
with
5 additions
and
0 deletions
gui/src/input_state.cpp
+
5
−
0
View file @
6060a7f9
...
...
@@ -18,6 +18,7 @@ float InputState::mwheelmot_y = 0.f;
bool
InputState
::
should_quit
=
false
;
bool
InputState
::
b_click
=
false
;
bool
InputState
::
s_click
=
false
;
bool
InputState
::
t_click
=
false
;
bool
InputState
::
g_click
=
false
;
bool
InputState
::
f1_click
=
false
;
bool
InputState
::
f2_click
=
false
;
...
...
@@ -32,6 +33,7 @@ void InputState::update(const unsigned width, const unsigned height) {
esc_click
=
false
;
b_click
=
false
;
s_click
=
false
;
t_click
=
false
;
g_click
=
false
;
f1_click
=
false
;
f2_click
=
false
;
...
...
@@ -150,6 +152,9 @@ void InputState::update(const unsigned width, const unsigned height) {
if
(
event
.
key
.
keysym
.
sym
==
SDLK_s
)
{
s_click
=
true
;
}
if
(
event
.
key
.
keysym
.
sym
==
SDLK_t
)
{
t_click
=
true
;
}
if
(
event
.
key
.
keysym
.
sym
==
SDLK_F1
)
{
f1_click
=
true
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment