1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 13:33:25 +01:00
TegraExplorer/scripts/ButtonTest.te

17 lines
379 B
Plaintext
Raw Normal View History

2021-07-23 00:10:03 +01:00
println("Testing pause")
x = pause()
println(x.raw, " ", x.a, "", x.power)
println("Testing masked pause")
2021-07-23 13:03:49 +01:00
x = pause(1 << 3)
2021-07-23 00:10:03 +01:00
println(x.raw, " ", x.a)
color(0xFF0000)
println("This text should be red!")
color(0x00FF00)
println("and this green!")
2021-07-23 13:03:49 +01:00
COLOR_RED = 0xFF0000
COLOR_BLUE = 0x0000FF
menu(["a", "b", "c"], 1, [COLOR_BLUE, COLOR_RED | 0x1000000, COLOR_BLUE]).print()
2021-07-23 00:10:03 +01:00
exit()