-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b76214
commit d633dbb
Showing
3 changed files
with
81 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
object fondo_de_pausa{ | ||
var property position = game.origin() | ||
method image() = "pausa.png" | ||
} | ||
|
||
object ganaste{ | ||
var property position = game.at(0,3) | ||
method image() = "ganaste.png" | ||
} | ||
|
||
object menuPersonajes{ | ||
var property position = game.origin() | ||
method image() = "FondoSeleccion2.png" | ||
} | ||
|
||
object noSeleccionado{ | ||
var direccion = 1 | ||
method direccion(numero){ | ||
direccion = numero | ||
} | ||
method position() = if(direccion == 1) game.at(2,5) else game.at(10,5) | ||
method image() = "no.png" | ||
} | ||
|
||
object siSeleccionado{ | ||
var direccion = 0 | ||
method direccion(numero){ | ||
direccion = numero | ||
} | ||
method position() = if(direccion == 0) game.at(10,5) else game.at(2,5) | ||
method image() = "si.png" | ||
} | ||
|
||
object menuNiveles{ | ||
var property position = game.origin() | ||
method image() = "niveles.png" | ||
} | ||
|
||
object seleccion{ | ||
var property position = game.at(1, 11) | ||
method image() = "nivel_s.png" | ||
} | ||
|
||
object bloqueado{ | ||
var property position = game.at(1, 1) | ||
method image() = "bloqueado.png" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters