-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
50 additions
and
14 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<script integrity=sha384-DXfxbHnmRjXl3uhZSP4S1IWEe3DfX/sHDa2A7iHxmUB6Ag+87PaP8wV2AtDOwHfm src=./restart-audio-context-8127143435824044.js type=module></script><link href=assets/favicon.png rel=icon><link href=./index-56627a79e0752a1c.css integrity=sha384-m/ivHNojsD/VAvwMMce+fhrN8VxOZuZt5hms1JExuO36KLCDKKRGDtjLXSlnQq0B rel=stylesheet><script nonce="EQsjDQ6rnZ8+uod9vZFYWA==" type=module>import init, * as bindings from './magiaboost-5bdd60a7011b2e87.js'; | ||
const wasm = await init('./magiaboost-5bdd60a7011b2e87_bg.wasm'); | ||
<script integrity=sha384-DXfxbHnmRjXl3uhZSP4S1IWEe3DfX/sHDa2A7iHxmUB6Ag+87PaP8wV2AtDOwHfm src=./restart-audio-context-8127143435824044.js type=module></script><link href=assets/favicon.png rel=icon><link href=./index-56627a79e0752a1c.css integrity=sha384-m/ivHNojsD/VAvwMMce+fhrN8VxOZuZt5hms1JExuO36KLCDKKRGDtjLXSlnQq0B rel=stylesheet><script nonce="7IE5vAKuIytAU3JO9g9JNQ==" type=module>import init, * as bindings from './magiaboost-5541238713fcb20e.js'; | ||
const wasm = await init('./magiaboost-5541238713fcb20e_bg.wasm'); | ||
|
||
|
||
window.wasmBindings = bindings; | ||
|
||
|
||
dispatchEvent(new CustomEvent("TrunkApplicationStarted", {detail: {wasm}}));</script><title>Magia Boost 0.1</title><link crossorigin href=./magiaboost-5bdd60a7011b2e87.js integrity=sha384-HuokoSX1m5iA3jc8vzMnKe6LFEcFwSJNEpfHS7B7cv1RUKY2hVupQ3b/bKH+p0W3 rel=modulepreload><link as=fetch crossorigin href=./magiaboost-5bdd60a7011b2e87_bg.wasm integrity=sha384-J8ia1MGPk5lt9YIPBEXM4ZSdTjGUgt8DhOL1xeMz0AIHiZ3/ra5R/Y/lmHuJeAJi rel=preload type=application/wasm></head><body></body></html> | ||
dispatchEvent(new CustomEvent("TrunkApplicationStarted", {detail: {wasm}}));</script><title>Magia Boost 0.1</title><link crossorigin href=./magiaboost-5541238713fcb20e.js integrity=sha384-r/wB2Fw0ATsCCcuxjHdHnayEZdvQ5dGc2xZDDU6WFJSuKUoaLxNe6kC2zGhMNY7U rel=modulepreload><link as=fetch crossorigin href=./magiaboost-5541238713fcb20e_bg.wasm integrity=sha384-SWEsD0uoX7GeDHiWcxb4030v3jQIE9s3Isiugx6VbtLF+a4YQ/JBp9oIksWGfoGJ rel=preload type=application/wasm></head><body></body></html> |
2 changes: 1 addition & 1 deletion
2
docs/magiaboost-5bdd60a7011b2e87.js → docs/magiaboost-5541238713fcb20e.js
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file renamed
BIN
+13.2 MB
docs/magiaboost-5bdd60a7011b2e87_bg.wasm → docs/magiaboost-5541238713fcb20e_bg.wasm
Binary file not shown.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
use crate::{constant::*, states::GameState}; | ||
use bevy::prelude::*; | ||
use bevy_aseprite_ultra::prelude::*; | ||
|
||
#[derive(Component)] | ||
pub struct BrokenMagicCircle; | ||
|
||
pub fn spawn_broken_magic_circle( | ||
commands: &mut Commands, | ||
aseprite: Handle<Aseprite>, | ||
x: f32, | ||
y: f32, | ||
) { | ||
commands.spawn(( | ||
Name::new("broken_magic_circle"), | ||
StateScoped(GameState::InGame), | ||
BrokenMagicCircle, | ||
AsepriteSliceBundle { | ||
aseprite: aseprite, | ||
slice: "broken_magic_circle".into(), | ||
transform: Transform::from_translation(Vec3::new(x, y, PAINT_LAYER_Z)), | ||
..default() | ||
}, | ||
)); | ||
} |
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
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
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
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
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