User Tools

Site Tools


devlogs:30_4_2022

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
devlogs:30_4_2022 [2022/04/30 18:46]
root
devlogs:30_4_2022 [2023/10/19 15:25] (current)
Line 2: Line 2:
  
 <wrap lo> This is the first dev log </wrap> <wrap lo> This is the first dev log </wrap>
-\\ Today I started this log I guess... The plan is two fold. I want to learn the [[https://bevyengine.org/ | bevy]] framework and also break down super letter linker to try and make an exact copy of it. I am a lazy piece of shit so lets see how well this goes!! ๐Ÿคž๐Ÿคž๐Ÿคž+\\ Today I started this log I guess... The plan is two fold. I want to learn the [[https://bevyengine.org/ | bevy]] framework and also break down super letter linker to try and make an exact copy of it. I am a lazyso lets see how well this goes!! ๐Ÿคž๐Ÿคž๐Ÿคž
  
 Bevy is a strange engine to me. I do not have any experience with entity component systems but this seems like a cool paradigm.I am mostly using it to use rust to compile down to web assembly. Rust makes me feel like a 90s hacker kid. ((also dokuwiki is pretty cool)) Bevy is a strange engine to me. I do not have any experience with entity component systems but this seems like a cool paradigm.I am mostly using it to use rust to compile down to web assembly. Rust makes me feel like a 90s hacker kid. ((also dokuwiki is pretty cool))
Line 78: Line 78:
     }     }
 } }
-</code> \\+</code> 
 \\ \\
 +
 +==== TUTORIAL - Snake ====
 +[[https://mbuffett.com/posts/bevy-snake-tutorial/ | following this link]]
 +
 +I am following this tutorial to make a snake game to get an idea of how games are made in bevy while also seeing wtf rust is about.
 +
 +== Some interesting snippits ==
 +**code for sizing sprites in our tile system**
 +<code rust>
 +fn size_scaling(windows: Res<Windows>, mut q: Query<(&Size, &mut Transform)>) {
 +    let window = windows.get_primary().unwrap();
 +    for (sprite_size, mut transform) in q.iter_mut() {
 +        transform.scale = Vec3::new(
 +            sprite_size.width / ARENA_WIDTH as f32 * window.width() as f32,
 +            sprite_size.height / ARENA_HEIGHT as f32 * window.height() as f32,
 +            1.0,
 +        );
 +    }
 +}
 +</code>
 +
 +The sizing logic goes like so: if something has a width of 1 in a grid of 40, and the window is 400px across, then it should have a width of 10.
 +\\
 +\\
 +
 +Im gonna leave this at here for now and pick it up later
  
 ==== External links ==== ==== External links ====
Line 88: Line 114:
 [[https://bevy-cheatbook.github.io/ | Cheatbook]] \\  [[https://bevy-cheatbook.github.io/ | Cheatbook]] \\ 
  
-ย +~~DISCUSSION | wagsonwasoff~~
-ย +
  
  
devlogs/30_4_2022.1651362382.txt.gz ยท Last modified: 2023/10/13 16:43 (external edit)