16 lines
309 B
Python
16 lines
309 B
Python
|
|
import mcrfpy
|
||
|
|
|
||
|
|
# Create a new scene
|
||
|
|
mcrfpy.createScene("intro")
|
||
|
|
|
||
|
|
# Add a text caption
|
||
|
|
caption = mcrfpy.Caption((50, 50), "Welcome to McRogueFace!")
|
||
|
|
caption.size = 48
|
||
|
|
caption.fill_color = (255, 255, 255)
|
||
|
|
|
||
|
|
# Add to scene
|
||
|
|
mcrfpy.sceneUI("intro").append(caption)
|
||
|
|
|
||
|
|
# Switch to the scene
|
||
|
|
mcrfpy.setScene("intro")
|
||
|
|
|