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

This commit is contained in:
lily 2025-04-21 18:59:33 -04:00
parent 3816c8567e
commit b78ad166c6
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 {