User Tools

Site Tools


devlogs:1_5_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:1_5_2022 [2022/05/01 14:30]
root
devlogs:1_5_2022 [2023/10/19 15:25] (current)
Line 25: Line 25:
  
 The position translation: if an item’s x coordinate is at 5 in our system, the width in our system is 10, and the window width is 200, then the coordinate should be 5 / 10 * 200 - 200 / 2. We subtract half the window width because our coordinate system starts at the bottom left, and Translation starts from the center. We then add half the size of a single tile, because we want our sprites bottom left corner to be at the bottom left of a tile, not the center. The position translation: if an item’s x coordinate is at 5 in our system, the width in our system is 10, and the window width is 200, then the coordinate should be 5 / 10 * 200 - 200 / 2. We subtract half the window width because our coordinate system starts at the bottom left, and Translation starts from the center. We then add half the size of a single tile, because we want our sprites bottom left corner to be at the bottom left of a tile, not the center.
 +
 +{{:devlogs:snaketut.png?direct&600|}}
 +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::square(0.65))
 +        .id() // This is the entity as it is essentially an ID that connects some data together
 +}
 +</code>
 +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
 +</WRAP>
 +\\
 +\\
 +\\ ggs
 +\\
 +\\
 +Yea this is sloooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooow 🤞🤞🤞🤞 on actually understanding this stuff better.
 +
 +~~DISCUSSION | Hallo~~
 +
  
devlogs/1_5_2022.1651433425.txt.gz · Last modified: 2023/10/13 16:43 (external edit)