fix: use correct path for model static variable
All checks were successful
Build Zenyx ⚡ / 🔧 Setup Environment (push) Successful in 11s
Build Zenyx ⚡ / 🧪 Run Cargo Tests (push) Successful in 59s
Build Zenyx ⚡ / 🏗️ Build aarch64-unknown-linux-gnu (push) Successful in 4m26s
Build Zenyx ⚡ / 🏗️ Build x86_64-unknown-linux-gnu (push) Successful in 4m33s
Build Zenyx ⚡ / 🏗️ Build x86_64-pc-windows-msvc (push) Successful in 4m32s

This commit is contained in:
lily 2025-04-21 18:59:33 -04:00
parent 3fd318b59a
commit f6a2e9896f
Signed by: lily
GPG key ID: 601F3263FBCBC4B9

View file

@ -142,7 +142,7 @@ struct WgpuState {
}
static _ICON: &[u8] = include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/assets/Badge.png"));
static _PUMPKIN: &[u8] = include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/Pumpkin.obj"));
static _PUMPKIN: &[u8] = include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/assets/Pumpkin.obj"));
impl WgpuState {
fn new() -> Self {