TypeId
's ( which have some discussion about the formulation of which in this issue ) would need to become ComponentId
's as they are ID's that must be unique to a specific component that may or may not be associated to a Rust type.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "test_bevy_retro" | |
version = "0.1.0" | |
edition = "2018" | |
[dependencies] | |
bevy = {version = "0.5", default-features = false} | |
bevy_retrograde = { version = "0.2", features = ["ldtk"] } | |
hex = "0.4.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Cargo Build Timings — naga-cli 0.4.0</title> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
html { | |
font-family: sans-serif; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub use shaderc; | |
pub use spirv_cross; | |
use spirv_cross::{glsl, spirv, ErrorCode}; | |
#[derive(thiserror::Error, Debug)] | |
pub enum Error { | |
#[error("Error compiling GLSL to SPIR-V: {0}")] | |
ShadercError(#[from] shaderc::Error), | |
#[error("Error compileing SPIR-V to GLSL: {0}")] | |
SpirvCrossError(#[from] ErrorCode), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use thiserror::Error; | |
use tracing as trc; | |
/// An error that indicates that the program should exit with the given code | |
#[derive(Error, Debug)] | |
#[error("Program exited {0}")] | |
struct Exit(i32); | |
fn run() { | |
// Install tracing for logs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[macro_use] | |
extern crate tectonic_cfg_support; | |
macro_rules! cfg_aliases { | |
// @config rules parse the cfg predicates and expand aliases inside of them | |
(@config not($config:tt)) => { | |
not(cfg_aliases!(@config $config)) | |
}; | |
(@config any($config:tt)) => { | |
any(cfg_aliases!(@config $config)) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ignore everything that has "gitignore" in the name, except for the .gitignore file | |
*gitignore* | |
!.gitignore | |
# This makes it super easy to backup source files and other resources that you happen to want in your repo | |
# dir at the moment, but that you don't want to end up accidentally commiting. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
lucky set-status active 'Installed' |