Adding log.gd
This commit is contained in:
parent
eb32d6614e
commit
4522259397
547 changed files with 46844 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
class_name CustomResourceTestClass
|
||||
extends Resource
|
||||
|
||||
func foo() -> String:
|
||||
return "foo"
|
||||
|
||||
func foo2():
|
||||
return "foo2"
|
||||
|
||||
func foo_void() -> void:
|
||||
pass
|
||||
|
||||
func bar(arg1 :int, arg2 :int = 23, name :String = "test") -> String:
|
||||
return "%s_%d" % [name, arg1+arg2]
|
||||
|
||||
func foo5():
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue