1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-06 21:54:48 -04:00
dressupzack/scripts/interface.gd
Tony Bark 9b849376ae Basic drag and drop functionality
Admittedly, I accidentally followed a far more simpler tutorial, but it works.
2023-12-07 07:28:32 -05:00

10 lines
318 B
GDScript

# This project is licensed under the Artistic-2.0 license.
# See the LICENSE file in the project root for more information.
extends Control
func _ready():
var version = ProjectSettings.get_setting("application/config/version")
var verLabel = $VersionLbl
verLabel.text = "v" + version
GameData.version = version