This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
devlogs:1_5_2022 [2022/05/01 14:19] root created |
devlogs:1_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Sunday, May 1st 2022 ====== | ====== Sunday, May 1st 2022 ====== | ||
+ | |||
+ | Still following this [[https:// | ||
+ | |||
+ | ==== Shit ===== | ||
+ | |||
+ | <code rust> | ||
+ | fn position_translation(windows: | ||
+ | fn convert(pos: | ||
+ | let tile_size = bound_window / bound_game; | ||
+ | pos / bound_game * bound_window - (bound_window / 2.) + (tile_size / 2.) | ||
+ | } | ||
+ | let window = windows.get_primary().unwrap(); | ||
+ | for (pos, mut transform) in q.iter_mut() { | ||
+ | transform.translation = Vec3::new( | ||
+ | convert(pos.x as f32, window.width() as f32, ARENA_WIDTH as f32), | ||
+ | convert(pos.y as f32, window.height() as f32, ARENA_HEIGHT as f32), | ||
+ | 0.0, | ||
+ | ); | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | <WRAP lo> explination from the dood ((the person whom wrote the tutorial)). </ | ||
+ | |||
+ | The position translation: | ||
+ | |||
+ | {{: | ||
+ | lol.jpg | ||
+ | \\ | ||
+ | |||
+ | <code rust> | ||
+ | fn spawn_segment(mut commands: Commands, position: Position) -> Entity { | ||
+ | commands | ||
+ | .spawn_bundle(SpriteBundle{ | ||
+ | sprite: Sprite{ | ||
+ | color: SNAKE_SEGMENT_COLOR, | ||
+ | ..default() | ||
+ | }, | ||
+ | ..default() | ||
+ | }) | ||
+ | .insert(SnakeSegment) | ||
+ | .insert(position) | ||
+ | .insert(Size:: | ||
+ | .id() // This is the entity as it is essentially an ID that connects some data together | ||
+ | } | ||
+ | </ | ||
+ | The above code is interesting as its returning an Entity, which is done with accessing the id() from the spawned spritebundle. \\ | ||
+ | |||
+ | <WRAP left important 60%> | ||
+ | The entity is essentially an ID that connects some data together | ||
+ | </ | ||
+ | \\ | ||
+ | \\ | ||
+ | \\ ggs | ||
+ | \\ | ||
+ | \\ | ||
+ | Yea this is sloooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooow 🤞🤞🤞🤞 on actually understanding this stuff better. | ||
+ | |||
+ | ~~DISCUSSION | Hallo~~ | ||
+ | |||
+ |