sandbox
Last change
on this file since 0249beb was f7b09c8, checked in by Kevin Chapman <victory2b@…>, 4 years ago |
First Draft of world test with working movement and loading screen.
|
-
Property mode
set to
100644
|
File size:
309 bytes
|
Rev | Line | |
---|
[f7b09c8] | 1 | extends Control
|
---|
| 2 |
|
---|
| 3 | func _ready():
|
---|
| 4 | # Set the OS label and the engine version label
|
---|
| 5 | $OS_Label.text = "OS:" + OS.get_name()
|
---|
| 6 | $Engine_Label.text = "Godot version:" + Engine.get_version_info()["string"]
|
---|
| 7 |
|
---|
| 8 | func _process(delta):
|
---|
| 9 | # Update the FPS label
|
---|
| 10 | $FPS_Label.text = "FPS:" + str(Engine.get_frames_per_second())
|
---|
Note:
See
TracBrowser
for help on using the repository browser.