Edward Taylor
Edward Taylor
Integrate bevy for the ECS system and all the useful game/rendering logic that comes with it. ECS will allow a simpler interface for extending nodes with new functionality The graph...
Need to implement it with a custom egui instance (with a dpi) that renders to a texture then is displayed inside another egui instance with regular UI Blackjack successfully does...
I want to parse the glsl expression and auto wrap type conversions to avoid boilerplate Currently this is minimally done with the glsl crate that allows identifier parsing. However, I...
### Steps to reproduce 1. Create an AutoComplete widget with a few items 2. Place that widget as a sibling in a column of other widgets 3. Enter Talkback on...
### Context In my app, we have two versions of a widget that are shown. The user clicks a button to swap between them. The widgets are pretty much completely...
I wrote this for some internal code, thought I would leave it here, free free to use it. ``` use std::{ net::{IpAddr, SocketAddr}, sync::Arc, time::Duration, }; use axum::http::Request; use governor::{clock::QuantaInstant,...
Without using utoipa-axum, tags were automatically being added to my endpoints based on the modules where they are defined. To replace this functionality, for now I'm just overriding the tag...