This shows you the differences between two versions of the page.
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: | 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~~ | ||
+ | |||