Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
egui -> 0.15.0
egui-stylist -> 0.1.1
egui-theme -> 0.1.1
  • Loading branch information
jacobsky committed Nov 2, 2021
1 parent 360a24a commit c7577e5
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
6 changes: 3 additions & 3 deletions egui_stylist_addon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ crate-type = ["cdylib"]

[dependencies]
gdnative = "0.9.3"
egui = "0.14.2"
egui = "0.15.0"
godot_egui = { path = "../godot_egui" }
egui-stylist = "0.1.0"
egui-theme = "0.1.0"
egui-stylist = "0.1.1"
egui-theme = "0.1.1"
ron = "0.6.4"
anyhow = "1.0.43"
serde = "1.0.130"
8 changes: 6 additions & 2 deletions egui_stylist_addon/addons/egui_stylist/egui_stylist.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,19 @@ __meta__ = {
[node name="godot_egui" type="Control" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
focus_mode = 1
mouse_filter = 2
size_flags_horizontal = 3
size_flags_vertical = 3
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
reactive_update = true
scroll_speed = 20.0
consume_mouse_events = true
input_mode = {
"None": {
}
}
disable_texture_filtering = false
EguiTheme = "res://addons/egui_stylist/godot-editor.eguitheme"

Expand Down
6 changes: 3 additions & 3 deletions example_project/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ crate-type = ["cdylib"]

[dependencies]
gdnative = "0.9.3"
egui = "0.14.2"
egui_demo_lib = "0.14"
godot_egui = { path = "../godot_egui" }
egui = "0.15.0"
egui_demo_lib = "0.15"
godot_egui = { path = "../godot_egui" }
4 changes: 4 additions & 0 deletions example_project/GodotEguiExample.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
handle_gui_input = true
handle_input = false

[node name="GodotEgui" type="Control" parent="."]
anchor_right = 1.0
Expand All @@ -21,4 +23,6 @@ script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
scroll_speed = 20.0
input_mode = 2
disable_texture_filtering = false
4 changes: 2 additions & 2 deletions godot_egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ workspace = ".."

[dependencies]
gdnative = "0.9.3"
egui = "0.14.2"
egui-theme = "0.1.0"
egui = "0.15.0"
egui-theme = "0.1.1"
ron = "0.6.4"
1 change: 0 additions & 1 deletion godot_egui/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ struct SyncedTexture {
texture_version: Option<u64>,
godot_texture: Ref<ImageTexture>,
}

/// Core type to draw egui-based controls in Godot.
/// The `update` or `update_ctx` methods can be used to draw a new frame.
#[derive(NativeClass)]
Expand Down

0 comments on commit c7577e5

Please sign in to comment.