diff --git a/script/demo02_base/MyClass.gd b/script/demo02_base/MyClass.gd index b806137..385c20a 100644 --- a/script/demo02_base/MyClass.gd +++ b/script/demo02_base/MyClass.gd @@ -58,7 +58,7 @@ func typeInfo(): print(StringUtils.format(template, [TYPE_INT, typeof(b), b])) print(StringUtils.format(template, [TYPE_INT, typeof(c), c])) print(StringUtils.format(template, [TYPE_STRING, typeof(s), s])) - print(StringUtils.format(template, [TYPE_ARRAY, typeof(arr), arr])) + # print(StringUtils.format(template, [TYPE_ARRAY, typeof(arr), arr])) print(StringUtils.format(template, [TYPE_DICTIONARY, typeof(dict), dict])) print(StringUtils.format(template, [TYPE_DICTIONARY, typeof(FOOD), FOOD])) print(StringUtils.format(template, [TYPE_DICTIONARY, typeof(FOOD.GOOD), FOOD.GOOD]))