I have a background image that takes up my whole window. It renders in front of my text, even when all in a group, and using sendToBack isn't working. It renders behind my graphics, which is good, but why isn't my text coming forward as well?
create: function(){
this.titles = this.game.add.group();
//background
this.bg= this.game.add.sprite(0,0, 'bg');
this.titles.add(this.bg);
this.bg.sendToBack();
//logo
this.logo = this.game.add.sprite(this.game.world.centerX, this.game.world.centerY -200, 'logo');
this.logo.anchor.setTo(0.5);