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 17:47]
root
devlogs:1_5_2022 [2023/10/19 15:25] (current)
Line 27: Line 27:
  
 {{:devlogs:snaketut.png?direct&600|}} {{:devlogs:snaketut.png?direct&600|}}
-lol+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.1651445240.txt.gz · Last modified: 2023/10/13 16:43 (external edit)