mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 07:03:14 -04:00
Submenu buttons in menues now properly highlight when hovered and when opened. …plus a bunch of other cleanup
11 lines
258 B
Bash
Executable File
11 lines
258 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
cd "$script_path/.."
|
|
|
|
# Pre-requisites:
|
|
rustup target add wasm32-unknown-unknown
|
|
|
|
# For generating JS bindings:
|
|
cargo install --quiet wasm-bindgen-cli --version 0.2.89
|