DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 85a6709aedf28354fcc2917bdf3d65f57295b9fd deck-builder/client/build.rs -rw-r--r-- 476 bytes
85a6709aJonni Liljamo chore(client): fmt 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use bevy_assets_bundler::*;

// build.rs
// encryption key: [u8; 16] array
// make sure the key is consistent between build.rs and main.rs
fn main() {
    let key = [
        25, 221, 123, 82, 182, 95, 251, 128, 83, 192, 172, 139, 92, 102, 34, 248,
    ];
    let mut options = AssetBundlingOptions::default();
    options.set_encryption_key(key);
    options.encode_file_names = true;
    options.enabled_on_debug_build = true;
    _ = AssetBundler::from(options).build();
}