public override void CargarContenido() { fuenteTitulo = Cargador.ObtenerFuentes("Arial"); botonPlay = new Boton(Cargador.ObtenerTextura("buttonGreen"), new Vector2(200f, 200f), new Vector2(150f, 50f), "Iniciar", "Boton"); botonPlay.posicion.X = (Manejador.anchoPantalla / 2f) - (botonPlay.escala.X / 2f); botonPlay.Click += botonPlay_Click; objetosEnEscena.Add(botonPlay); Manejador.MostrarCursor = true; Manejador.puntaje = 0; }
public override void CargarContenido() { fuente = Cargador.ObtenerFuentes("Arial"); reiniciar = new Boton(Cargador.ObtenerTextura("buttonGreen"), new Vector2(200f, 200f), new Vector2(150f, 50f), "Reiniciar", "Boton"); reiniciar.Click += Reiniciar_Click; alMenu = new Boton(Cargador.ObtenerTextura("buttonGreen"), new Vector2(200f, 300f), new Vector2(150f, 50f), "Menu", "Boton"); alMenu.Click += AlMenu_Click; alMenu.posicion.X = (Manejador.anchoPantalla / 2f) - (alMenu.escala.X / 2f); reiniciar.posicion.X = (Manejador.anchoPantalla / 2f) - (reiniciar.escala.X / 2f); objetosEnEscena.Add(reiniciar); objetosEnEscena.Add(alMenu); Manejador.MostrarCursor = true; }
public override void CargarContenido() { fuente = Cargador.ObtenerFuentes("Arial"); }
public Boton(Texture2D _txt, Vector2 _pos, Vector2 _esc, string _texto, string _tag) : base(_txt, _pos, _esc, _tag) { esColisionable = false; texto = _texto; fuente = Cargador.ObtenerFuentes("Arial"); }