浏览代码

:beetle: Add exported variable

Was reproducing the bug in inspector only.
DricomDragon 2 年之前
父节点
当前提交
d0233b8b32
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      BugReport_EditorOversizedCustomIcon/CustomNode.gd

+ 5 - 0
BugReport_EditorOversizedCustomIcon/CustomNode.gd

@@ -1,3 +1,8 @@
 @icon("res://icon.svg")
 class_name CustomNode
 extends Node2D
+
+@export var exp_var: String = "Hello"
+
+func _ready():
+	print("Exported var : ", exp_var)