Skip to content

Instantly share code, notes, and snippets.

View ChristopherBiscardi's full-sized avatar
💭
Building stuff

Chris Biscardi ChristopherBiscardi

💭
Building stuff
View GitHub Profile
@ChristopherBiscardi
ChristopherBiscardi / main.rs
Created March 23, 2025 19:38
Vec3 asymmetrical serialization/deserialization
use bevy::reflect::erased_serde::__private::serde::de::DeserializeSeed;
use bevy::{
prelude::*,
reflect::{
TypeRegistry,
serde::{ReflectDeserializer, ReflectSerializer},
},
};
use serde_json::Value;
@ChristopherBiscardi
ChristopherBiscardi / fragment.wgsl
Created January 18, 2025 23:57
bevy 0.15 Custom Attribute StandardMaterial Extension Shader 360 flip
#import bevy_pbr::{
pbr_fragment::pbr_input_from_standard_material,
pbr_functions::alpha_discard,
}
#ifdef PREPASS_PIPELINE
#import bevy_pbr::{
prepass_io::{VertexOutput, FragmentOutput},
pbr_deferred_functions::deferred_output,
}
@ChristopherBiscardi
ChristopherBiscardi / curl-command.sh
Created December 25, 2024 22:46
Bevy http query for all transforms of all entities
curl -Xpost http://127.0.0.1:15702 -d '{"jsonrpc": "2.0", "method": "bevy/query", "params": {"data":{"components": ["bevy_transform::components::transform::Transform"]}}}'
@ChristopherBiscardi
ChristopherBiscardi / bevys-4th-birthday.org
Created September 8, 2024 22:36
Bevy's 4th Birthday

Bevy’s 4th birthday.

Its Bevy’s 4th birthday and while I’ve been around for a couple of previous birthday posts I’ve never written something myself.

This year I chose to step up into some additional maintainer duties on ecosystem crates like bevy_ecs_tilemap, which I consider foundational and important to update to new versions, and I started This Week in Bevy, which I’ll talk about a bit more later.

Why Bevy?

The overriding reason I started writing Rust in the first place is that it expanded the kinds of programs I could write. Game development falls into that category, so I started working with Bevy a number of years ago, before there were regular releases, but really ramped up when 0.8 introduced the Material APIs which really inspired me to dig deeper into rendering, and feel like this year was an

@ChristopherBiscardi
ChristopherBiscardi / changes.diff
Created August 27, 2024 23:43
center-of-tile bevy_ecs_tilemap
diff --git a/examples/mouse_to_tile.rs b/examples/mouse_to_tile.rs
index 9ea13ec..3b03fc0 100644
--- a/examples/mouse_to_tile.rs
+++ b/examples/mouse_to_tile.rs
@@ -1,4 +1,8 @@
-use bevy::{color::palettes, math::Vec4Swizzles};
+use bevy::{
+ color::palettes::{self, tailwind::GREEN_400},
+ math::Vec4Swizzles,
+ sprite::MaterialMesh2dBundle,
@ChristopherBiscardi
ChristopherBiscardi / main.rs
Created August 16, 2024 04:55
all events get read
use bevy::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_systems(
Update,
(
produce,
read_one.run_if(on_event::<MyEvent>()),
@ChristopherBiscardi
ChristopherBiscardi / insert_if.rs
Created July 21, 2024 22:14
InsertIf for Bevy
use bevy::{ecs::system::EntityCommand, prelude::*};
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_systems(Startup, (startup, log).chain())
.run();
}
fn startup(mut commands: Commands) {
@ChristopherBiscardi
ChristopherBiscardi / calculator.bevy.rs
Created July 19, 2024 19:29
A calculator in bevy! (codegolf)
use std::ops::Deref;
use bevy::{color::palettes::tailwind::*, prelude::*};
use calc::*;
use itertools::Itertools;
use rust_decimal::prelude::*;
fn main() {
App::new()
.insert_resource(ClearColor(SLATE_950.into()))
@ChristopherBiscardi
ChristopherBiscardi / _readme.md
Last active July 8, 2024 20:16
IceSentry Shield from Bevy 0.10 release post
@ChristopherBiscardi
ChristopherBiscardi / no_pow.asm
Created December 5, 2023 02:04
Assembly output of the detailed rust files using godbolt rust 1.73
# Compilation provided by Compiler Explorer at https://godbolt.org/
example::no_pow:
push rax
mov eax, edi
sub eax, 1
mov dword ptr [rsp + 4], eax
cmp edi, 1
setb al
test al, 1
jne .LBB0_2