10 - Background
Let's draw a nice blue background for our bird to jump in, instead of the default white background we have now.
We add a t.rectangle
Texture as the first Sprite returned in the Level
Sprite render
method. Sprites are rendered in the order they're returned, so this way our background will always be drawn at the back.
We also want to fill the full view, not just the safe zone. To do this we need a rectangle the width and height of the view, plus the margins. Sprite methods also have a device
parameter with a size
field just for this.
We could set a position for the rectangle through an x
and y
prop, but actually the default x: 0, y: 0
position is exactly what we want. In Replay, the origin is directly in the center of the screen, and when you position a Sprite you're positioning its center point too. The y
axis is also positive upwards.
- JavaScript
- TypeScript