mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
d665ce329d
* Added widgets.rs to egui for reusable widgets * Added filterable_list egui widget * Reworked DebugShapeAction to be a more generic EguiAction which now allows for ChatCommands (used by admin tools) as well as DebugShape drawing requests. * Fixed egui event handling so that typing/clicking within egui windows now correctly doesn't pass these events onto the game itself * Removed /give_item limit for stackable items
20 lines
475 B
TOML
20 lines
475 B
TOML
[package]
|
|
authors = ["Ben Wallis <atomyc@gmail.com>"]
|
|
name = "veloren-voxygen-egui"
|
|
edition = "2018"
|
|
version = "0.9.0"
|
|
|
|
[features]
|
|
use-dyn-lib = ["voxygen-dynlib"]
|
|
be-dyn-lib = []
|
|
|
|
[dependencies]
|
|
client = {package = "veloren-client", path = "../../client"}
|
|
common = {package = "veloren-common", path = "../../common"}
|
|
egui = "0.12"
|
|
egui_winit_platform = "0.8"
|
|
lazy_static = "1.4.0"
|
|
voxygen-dynlib = {package = "veloren-voxygen-dynlib", path = "../dynlib", optional = true}
|
|
|
|
|