Skip to content

Commit

Permalink
Update KeyCompound.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Fexcraft committed Sep 22, 2020
1 parent f99b90c commit e1ee614
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/net/fexcraft/app/fmt/utils/KeyCompound.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ public static void init(){
keys.add(new KeyFunction("open_polygon_tree", GLFW_KEY_P, action -> {
if(action == GLFW_PRESS) Trees.toggle("polygon");
}));
keys.add(new KeyFunction("open_texture_tree", GLFW_KEY_O, action -> {
if(action == GLFW_PRESS) Trees.toggle("helper");
}));
keys.add(new KeyFunction("open_helper_tree", GLFW_KEY_I, action -> {
if(action == GLFW_PRESS) Trees.toggle("helper");
}));
Expand Down

0 comments on commit e1ee614

Please sign in to comment.